/* Modern Professional Design with Indian Roots + Advanced Animations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Indian Color Palette */
    --primary-navy: #0A1628;
    --deep-teal: #0D3B4F;
    --rich-burgundy: #6B1B3D;
    --royal-purple: #4A1942;
    --emerald-green: #0F5C4F;
    --saffron-gold: #D4A574;
    --bright-gold: #F4C430;
    --terracotta: #C85A3E;
    --indigo-blue: #3949AB;
    --peacock-teal: #008B8B;
    
    /* Neutrals */
    --cream: #F8F6F3;
    --warm-white: #FDFBF7;
    --soft-grey: #E8E6E3;
    --charcoal: #2C2C2C;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A1628 0%, #4A1942 100%);
    --gradient-gold: linear-gradient(135deg, #D4A574 0%, #F4C430 100%);
    --gradient-teal: linear-gradient(135deg, #0D3B4F 0%, #008B8B 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--warm-white);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Vault Opening Animation */
.vault-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOutVault 0.8s ease 3.5s forwards;
}

.vault-door {
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom, #1a2332 0%, #0A1628 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.vault-left {
    left: 0;
    border-right: 3px solid var(--saffron-gold);
    animation: openVaultLeft 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s forwards;
}

.vault-right {
    right: 0;
    border-left: 3px solid var(--saffron-gold);
    animation: openVaultRight 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s forwards;
}

.vault-lock {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 10001;
    animation: unlockVault 2s ease forwards;
}

.lock-circle {
    width: 200px;
    height: 200px;
    border: 8px solid var(--saffron-gold);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 60px rgba(212, 165, 116, 0.6),
                inset 0 0 40px rgba(212, 165, 116, 0.3);
    animation: rotateLock 2s ease-in-out;
}

.lock-mechanism {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(244, 196, 48, 0.8);
    animation: pulseLock 1s ease-in-out infinite;
}

.lock-mechanism::before,
.lock-mechanism::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 50px;
    background: var(--primary-navy);
    transform-origin: center;
}

.lock-mechanism::before {
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateHandle1 2s ease;
}

.lock-mechanism::after {
    transform: translate(-50%, -50%) rotate(90deg);
    animation: rotateHandle2 2s ease;
}

#vaultCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

@keyframes openVaultLeft {
    to { transform: translateX(-100%); }
}

@keyframes openVaultRight {
    to { transform: translateX(100%); }
}

@keyframes unlockVault {
    0% { opacity: 1; transform: scale(1); }
    80% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
}

@keyframes rotateLock {
    0%, 50% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes rotateHandle1 {
    0%, 50% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(180deg); }
}

@keyframes rotateHandle2 {
    0%, 50% { transform: translate(-50%, -50%) rotate(90deg); }
    100% { transform: translate(-50%, -50%) rotate(270deg); }
}

@keyframes fadeOutVault {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--saffron-gold);
}

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

.cta-nav {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 60px 100px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(74, 25, 66, 0.15) 0%, transparent 50%);
    animation: floatBg 20s ease-in-out infinite;
}

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

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 30px;
    color: var(--saffron-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-headline {
    font-size: 72px;
    font-weight: 800;
    color: var(--warm-white);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    font-family: var(--font-display);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 35px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.button-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.hero-trust {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    animation: fadeInUp 0.8s ease 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

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

/* Mechanical Network Section */
.mechanical-network-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2332 0%, #0A1628 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mechanical-network-section .section-title,
.mechanical-network-section .section-description {
    color: var(--warm-white);
}

.mechanical-network-section .section-label {
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.network-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    margin-top: 60px;
}

#mechanicalCanvas {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.network-tooltip {
    position: absolute;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    color: var(--warm-white);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    max-width: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.network-tooltip.visible {
    opacity: 1;
}

.network-tooltip h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--saffron-gold);
    margin-bottom: 8px;
}

.network-tooltip p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Radial Constellation Section */
.radial-constellation-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0D3B4F 0%, #0A1628 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.radial-constellation-section .section-title,
.radial-constellation-section .section-description {
    color: var(--warm-white);
}

.radial-constellation-section .section-label {
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.constellation-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    margin-top: 60px;
}

#constellationCanvas {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.constellation-tooltip {
    position: absolute;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    color: var(--warm-white);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    max-width: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.constellation-tooltip.visible {
    opacity: 1;
}

.constellation-tooltip h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--saffron-gold);
    margin-bottom: 8px;
}

.constellation-tooltip p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    color: var(--saffron-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    padding: 140px 0;
    background: var(--warm-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.stat-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.stat-animation {
    margin-bottom: 30px;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

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

.stat-circle-bg {
    fill: none;
    stroke: var(--soft-grey);
    stroke-width: 8;
}

.stat-circle-progress {
    fill: none;
    stroke: url(#goldGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: fillCircle 2s ease-out forwards;
}

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

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 800;
    color: var(--saffron-gold);
    font-family: var(--font-display);
}

.stat-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.stat-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--primary-navy) 100%);
}

.how-it-works .section-title,
.how-it-works .section-description {
    color: var(--warm-white);
}

.how-it-works .section-label {
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 165, 116, 0.3);
}

.step-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 72px;
    font-weight: 800;
    color: rgba(212, 165, 116, 0.1);
    font-family: var(--font-display);
}

.step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.step-icon {
    font-size: 48px;
    position: relative;
    z-index: 2;
}

.step-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--warm-white);
    margin-bottom: 16px;
}

.step-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    padding: 6px 14px;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 20px;
    color: var(--saffron-gold);
    font-size: 12px;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 140px 0;
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 165, 116, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 140px 0;
    background: var(--warm-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    border-left: 4px solid var(--saffron-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    padding: 140px 0;
    background: var(--gradient-primary);
}

.pricing .section-title,
.pricing .section-description {
    color: var(--warm-white);
}

.pricing .section-label {
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 165, 116, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--saffron-gold);
    transform: scale(1.05);
}

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

.pricing-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--warm-white);
    margin-bottom: 12px;
}

.pricing-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--saffron-gold);
    font-family: var(--font-display);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
    content: "✓";
    color: var(--saffron-gold);
    font-weight: 700;
    margin-right: 12px;
}

.pricing-cta {
    width: 100%;
    padding: 16px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

/* FAQ Section */
.faq {
    padding: 140px 0;
    background: var(--cream);
}

.faq-grid {
    max-width: 900px;
    margin: 80px auto 0;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 165, 116, 0.3);
}

.faq-question {
    width: 100%;
    padding: 28px 32px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-icon {
    font-size: 24px;
    color: var(--saffron-gold);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 32px 28px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Waitlist Section */
.waitlist-section {
    padding: 100px 0;
    background: var(--gradient-teal);
    text-align: center;
}

.waitlist-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--warm-white);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.waitlist-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

.waitlist-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
}

/* Final CTA Section */
.final-cta {
    padding: 140px 0;
    background: var(--warm-white);
    text-align: center;
}

.cta-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-display);
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--warm-white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-sanskrit {
    font-size: 14px;
    color: var(--saffron-gold);
    letter-spacing: 1px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--saffron-gold);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--warm-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-headline {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-cta-group,
    .cta-buttons {
        flex-direction: column;
    }
    
    .stats-grid,
    .steps-container,
    .features-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .network-container,
    .constellation-container {
        height: 50vh;
        min-height: 400px;
    }
}
