.hero {
    padding: 140px 2rem 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F0F7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../background.jpg');
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.hero-badge span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.trust-item svg {
    color: var(--success);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(7, 39, 64, 0.2);
    background: var(--primary);
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

.stats-bar {
    background: white;
    padding: 3rem 2rem;
    box-shadow: 0 4px 30px var(--shadow);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    animation: fadeIn 1s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.value-props {
    padding: 100px 2rem;
    background: white;
}

.props-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.prop-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.prop-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 60px var(--shadow-lg);
    transform: translateY(-8px);
}

.prop-card:hover::before {
    transform: scaleX(1);
}

.prop-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.prop-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.prop-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.prop-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.prop-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.prop-link:hover {
    gap: 1rem;
}

.product-overview {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0D2336 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.product-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 90, 142, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-content h2 .highlight {
    color: var(--accent);
}

.product-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateX(10px);
}

.product-feature svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-feature-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-visual {
    position: relative;
}

.product-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-preview {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.dashboard-metric {
    text-align: right;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--success);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.chart-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8F0F7 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, transparent 100%);
    clip-path: polygon(0 100%, 0 80%, 15% 70%, 30% 75%, 45% 60%, 60% 65%, 75% 50%, 90% 55%, 100% 40%, 100% 100%);
}

.membership-preview {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.membership-container {
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card.featured {
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-cta {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.trust-security {
    padding: 100px 2rem;
    background: white;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trust-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.trust-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--bg-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.trust-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.trust-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: white;
}

.disclaimer {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 2rem;
    border-radius: 12px;
    margin: 4rem auto;
    max-width: 1200px;
}

.disclaimer-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.disclaimer-icon {
    flex-shrink: 0;
    color: #F59E0B;
}

.disclaimer-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400E;
    margin-bottom: 0.5rem;
}

.disclaimer-text p {
    color: #78350F;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonials {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Community */
.community {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.community-container {
    max-width: 900px;
    margin: 0 auto;
}

.community h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.community p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.community-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.community-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--bg-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}




.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-container,
    .product-container {
        gap: 3rem;
    }

    .props-container,
    .plans-grid,
    .trust-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .hero {
        padding: 120px 1.5rem 60px;
    }

    .hero-container,
    .product-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .props-container,
    .plans-grid,
    .trust-grid,
    .testimonials-grid,
    .community-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .product-visual {
        order: -1;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .video-container iframe {
        height: 250px;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Index-specific helpers */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.centered-action {
    text-align: center;
    margin-top: 3rem;
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.plan-name.accent {
    color: var(--accent);
}

.plan-price.accent {
    color: var(--accent);
}

.plan-card.accent {
    border-color: var(--accent);
}

.inline-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #B8941F 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.plan-features svg.accent {
    color: var(--accent);
}