/* ===================================
   VANSASUTRA - DIGITAL LEGACY PLATFORM
   Modern Indian Aesthetics with Animations
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Modern Indian Color Palette */
    --primary-navy: #0A1628;
    --deep-teal: #0D3B4F;
    --rich-burgundy: #6B1B3D;
    --saffron-gold: #D4A574;
    --bright-gold: #F4C430;
    --peacock-teal: #008B8B;
    --cream: #FFF8DC;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-teal) 100%);
    --gradient-gold: linear-gradient(135deg, var(--saffron-gold) 0%, var(--bright-gold) 100%);
    --gradient-accent: linear-gradient(135deg, var(--peacock-teal) 0%, var(--deep-teal) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(244, 196, 48, 0.3);
    
    /* Transitions - International Standard Easing */
    --transition-fast: 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-navy);
    background: var(--cream);
    overflow-x: hidden;
}

/* ===== ANIMATED BACKGROUND PARTICLES ===== */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, rgba(244, 196, 48, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 139, 139, 0.05) 0%, transparent 50%);
    animation: particlesFloat 16s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes particlesFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(-20px); }
}

/* ===== ENTRANCE ANIMATION ===== */
.entrance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.entrance-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.vault-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vault-door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #1a2332 0%, #0A1628 100%);
    border: 4px solid var(--bright-gold);
    transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vault-left {
    left: 0;
    border-right: 2px solid var(--bright-gold);
}

.vault-right {
    right: 0;
    border-left: 2px solid var(--bright-gold);
}

.entrance-overlay.active .vault-left {
    transform: translateX(-100%);
}

.entrance-overlay.active .vault-right {
    transform: translateX(100%);
}

.vault-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.lock-circle {
    width: 100%;
    height: 100%;
    border: 6px solid var(--bright-gold);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(244, 196, 48, 0.6),
                inset 0 0 40px rgba(244, 196, 48, 0.3);
    animation: lockRotate 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

@keyframes lockRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lock-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 60px;
    background: var(--bright-gold);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(244, 196, 48, 0.8);
}

#entrance-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.entrance-content {
    position: relative;
    z-index: 11;
    text-align: center;
    color: var(--cream);
    opacity: 0;
    animation: entranceFadeIn 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) 0.3s forwards;
}

@keyframes entranceFadeIn {
    to { opacity: 1; }
}

.entrance-logo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.logo-spiral {
    width: 100%;
    height: 100%;
    border: 6px solid var(--bright-gold);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: spiralSpin 2.5s cubic-bezier(0.4, 0.0, 0.6, 1) infinite;
    box-shadow: 0 0 40px rgba(244, 196, 48, 0.5);
}

@keyframes spiralSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-flame {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50% 50% 0 0;
    animation: flameDance 1.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    box-shadow: 0 0 30px rgba(244, 196, 48, 0.8);
}

@keyframes flameDance {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1) translateY(-5px); }
}

.entrance-text {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--bright-gold);
    text-shadow: 0 0 30px rgba(244, 196, 48, 0.6);
    margin-bottom: 1rem;
}

.entrance-subtext {
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--bright-gold);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-spiral-small {
    width: 100%;
    height: 100%;
    border: 3px solid var(--bright-gold);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: spiralSpin 2.5s cubic-bezier(0.4, 0.0, 0.6, 1) infinite;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-gold);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--bright-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bright-gold);
    transition: all var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(244, 196, 48, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0, 139, 139, 0.1) 0%, transparent 60%);
    animation: gradientShift 12s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.3) 0%, transparent 70%);
    animation: orbFloat 16s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    33% { transform: translate(30px, -50px) scale(1.1); opacity: 0.5; }
    66% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    color: var(--cream);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(244, 196, 48, 0.2);
    border: 2px solid var(--bright-gold);
    border-radius: 50px;
    color: var(--bright-gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: badgePulse 3s cubic-bezier(0.4, 0.0, 0.6, 1) infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(244, 196, 48, 0.3); }
    50% { box-shadow: 0 0 25px rgba(244, 196, 48, 0.6); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: titleSlideUp 1s ease-out;
}

@keyframes titleSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextShift 5s ease infinite;
}

@keyframes gradientTextShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 248, 220, 0.9);
    animation: subtitleFadeIn 1s ease-out 0.3s both;
}

@keyframes subtitleFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: ctaFadeIn 1s ease-out 0.6s both;
}

@keyframes ctaFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-trust {
    font-size: 0.875rem;
    color: rgba(255, 248, 220, 0.7);
    animation: trustFadeIn 1s ease-out 0.9s both;
}

@keyframes trustFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-secondary:hover {
    background: rgba(255, 248, 220, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--cream);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(244, 196, 48, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(244, 196, 48, 0.8); }
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===== SECTIONS ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--peacock-teal);
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--deep-teal);
}

/* ===== PROBLEM SECTION ===== */
.problem {
    background: linear-gradient(180deg, var(--cream) 0%, #f5f0e8 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.visible {
    animation: statCardSlideUp 0.8s ease-out forwards;
}

@keyframes statCardSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-circle-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.stat-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 12;
}

.stat-circle-progress {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 2s ease-out;
    filter: drop-shadow(0 0 10px rgba(244, 196, 48, 0.5));
}

.stat-card.visible .stat-circle-progress {
    animation: statCircleProgress 2s ease-out forwards;
}

@keyframes statCircleProgress {
    to { stroke-dashoffset: 0; }
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-navy);
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.stat-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--deep-teal);
}

/* ===== SOLUTION SECTION ===== */
.solution {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
}

.step-card.visible {
    animation: stepCardSlideUp 0.8s ease-out forwards;
}

@keyframes stepCardSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.step-card:hover {
    border-color: var(--bright-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.step-number-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--peacock-teal);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.step-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--deep-teal);
    margin-bottom: 2rem;
}

.step-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 139, 139, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--peacock-teal);
    font-weight: 600;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: linear-gradient(180deg, #f5f0e8 0%, var(--cream) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    animation: featureCardSlideUp 0.8s ease-out forwards;
}

@keyframes featureCardSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--bright-gold);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--deep-teal);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border-left: 4px solid var(--bright-gold);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    animation: testimonialSlideUp 0.8s ease-out forwards;
}

@keyframes testimonialSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--bright-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--deep-teal);
    margin-bottom: 2rem;
    font-style: italic;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--peacock-teal);
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: linear-gradient(180deg, #f5f0e8 0%, var(--cream) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card {
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.visible {
    animation: pricingCardSlideUp 0.8s ease-out forwards;
}

@keyframes pricingCardSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    border-color: var(--bright-gold);
    border-width: 3px;
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-gold);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.pricing-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.pricing-description {
    font-size: 1rem;
    color: var(--deep-teal);
    margin-bottom: 2rem;
    min-height: 60px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--bright-gold);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--deep-teal);
}

.pricing-features li::before {
    content: '✓';
    color: var(--peacock-teal);
    font-weight: 700;
    margin-right: 0.75rem;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    animation: faqSlideUp 0.6s ease-out forwards;
}

@keyframes faqSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #f8f9fa 100%);
}

.faq-icon {
    transition: transform var(--transition-medium);
    color: var(--peacock-teal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--deep-teal);
    line-height: 1.8;
}

/* ===== WAITLIST SECTION ===== */
.waitlist {
    background: var(--gradient-primary);
    color: var(--cream);
}

.waitlist-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.waitlist-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 248, 220, 0.9);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--primary-navy) 100%);
    color: var(--cream);
    text-align: center;
    padding: var(--spacing-xl) 2rem;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.final-cta-description {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 248, 220, 0.9);
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-navy);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bright-gold);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 248, 220, 0.8);
    margin-bottom: 0.5rem;
}

.footer-sanskrit {
    font-size: 0.875rem;
    color: rgba(255, 248, 220, 0.6);
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bright-gold);
}

.footer-column a {
    display: block;
    color: rgba(255, 248, 220, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--bright-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 248, 220, 0.2);
    color: rgba(255, 248, 220, 0.6);
    font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .steps-grid,
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .entrance-text {
        font-size: 2.5rem;
    }
    
    .entrance-subtext {
        font-size: 1rem;
    }
}
