/* ============================================
   NETWORK AI LANDING PAGE
   Premium light-theme with AI-powered aesthetic
   ============================================ */

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

:root {
    /* Colors - Petal Palette */
    --color-primary: #06D6A0; /* Neon Aqua */
    --color-secondary: #7C3AED; /* Violet */
    --color-accent: #F59E0B; /* Amber */
    --color-success: #10B981; /* Emerald */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #06D6A0 100%);
    --gradient-bg: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.05) 0%, rgba(6, 214, 160, 0.05) 50%, transparent 100%);
    
    /* Neutrals */
    --color-bg: #F8FAFF;
    --color-white: #FFFFFF;
    --color-text: #1F2937;
    --color-text-light: #6B7280;
    --color-border: #E5E7EB;
    
    /* Spacing (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-base: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--space-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: calc(var(--space-md) * -1);
    margin-bottom: var(--space-xl);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.35);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: scale(1.02);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-bg);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.brand-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--color-secondary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.hero-microcopy {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Hero Visual - AI Core */
.hero-visual {
    position: relative;
    height: 600px;
}

.ai-core-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-core-node {
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.core-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: pulse-glow 2s ease-in-out infinite;
}

.core-inner {
    position: absolute;
    inset: 0;
    background-image: url('https://s3.ap-south-1.amazonaws.com/bs.in-static-1/network-ai/lpassets/hero-ai-core-orb.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Signal Rings */
.signal-ring {
    position: absolute;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 4s ease-out infinite;
}

.signal-ring.ring-1 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.signal-ring.ring-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.3s;
}

.signal-ring.ring-3 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2.6s;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Floating Expert Cards (Hero Section) */
.hero-expert-card {
    position: absolute;
    width: 280px;
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: float 8s ease-in-out infinite;
    transition: all 0.3s var(--transition-base);
}

.hero-expert-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
}

.hero-expert-card.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background-image: url('https://s3.ap-south-1.amazonaws.com/bs.in-static-1/network-ai/lpassets/hero-expert-card-1.png');
}

.hero-expert-card.card-2 {
    top: 40%;
    right: -15%;
    animation-delay: 2.6s;
    background-image: url('https://s3.ap-south-1.amazonaws.com/bs.in-static-1/network-ai/lpassets/hero-expert-card-2.png');
}

.hero-expert-card.card-3 {
    bottom: 10%;
    left: 0%;
    animation-delay: 5.2s;
    background-image: url('https://s3.ap-south-1.amazonaws.com/bs.in-static-1/network-ai/lpassets/hero-expert-card-3.png');
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(0px) rotate(-1deg);
    }
    75% {
        transform: translateY(10px) rotate(1deg);
    }
}

/* Tagline Chips */
.tagline-chip {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.tagline-chip.chip-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.tagline-chip.chip-2 {
    top: 45%;
    left: 0%;
    animation-delay: 1.5s;
}

.tagline-chip.chip-3 {
    bottom: 25%;
    right: 5%;
    animation-delay: 3s;
}

.tagline-chip.chip-4 {
    bottom: 10%;
    right: 30%;
    animation-delay: 4.5s;
}

/* ========== VALUE PROPOSITION SECTION ========== */
.value-prop-section {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.pillar {
    text-align: center;
    padding: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.pillar:nth-child(1) { animation-delay: 0.1s; }
.pillar:nth-child(2) { animation-delay: 0.2s; }
.pillar:nth-child(3) { animation-delay: 0.3s; }

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

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    border-radius: var(--radius-lg);
}

.pillar-icon svg {
    stroke: var(--color-primary);
}

.pillar-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.pillar p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: var(--space-2xl);
    position: relative;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 16px rgba(6, 214, 160, 0.3);
    z-index: 2;
    position: relative;
}

.step-connector {
    position: absolute;
    top: 28px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(6, 214, 160, 0.3) 100%);
    z-index: 1;
}

.timeline-step:last-child .step-connector {
    display: none;
}

.step-card {
    width: 100%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.step-visual {
    padding: var(--space-md);
    background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
}

.mockup-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s var(--transition-base);
}

.mockup-image:hover {
    transform: scale(1.02);
}

.step-content {
    padding: var(--space-lg);
    text-align: center;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-dark);
}

.step-content p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Business Alternative */
.business-alternative {
    margin-top: var(--space-3xl);
    padding-top: var(--space-3xl);
    border-top: 2px dashed rgba(6, 214, 160, 0.2);
}

.alternative-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-lg);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.business-step-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.business-visual {
    padding: var(--space-md);
    background: linear-gradient(135deg, #F8F5FF 0%, #FFFFFF 100%);
    border-radius: var(--radius-md);
}

.business-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-dark);
}

.business-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* ========== CONVERSION SECTION ========== */
.conversion-section {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.conversion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.conversion-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--transition-base);
}

.conversion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

.card-icon svg {
    stroke: var(--color-white);
}

.card-illustration {
    width: 100%;
    /* height: 200px; */
    margin-bottom: var(--space-lg);
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    overflow: hidden;
}

.illustration-image {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

.conversion-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.card-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.card-footer {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.feature-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--color-text-light);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ========== AI AGENT SHOWCASE ========== */
.ai-agent-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-bg);
}

.ai-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.ai-orb-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-orb {
    position: relative;
    width: 250px;
    height: 250px;
}

.orb-glow {
    position: absolute;
    inset: -30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: pulse-glow 3s ease-in-out infinite;
}

.orb-core {
    position: absolute;
    inset: 0;
    background-image: url('https://s3.ap-south-1.amazonaws.com/bs.in-static-1/network-ai/lpassets/showcase-ai-orb-detailed.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.orb-pattern {
    position: absolute;
    inset: 20%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Micro-cards */
.micro-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.micro-card svg {
    stroke: var(--color-primary);
}

.micro-card.card-suggested {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.micro-card.card-booked {
    top: 50%;
    right: 0%;
    animation-delay: 2s;
}

.micro-card.card-summary {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.ai-showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.showcase-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.capabilities-grid {
    display: grid;
    gap: var(--space-md);
}

.capability {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--transition-base);
}

.capability:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(8px);
}

.capability svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--transition-base);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    border-radius: var(--radius-md);
}

.feature-icon svg {
    stroke: var(--color-primary);
}

.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== SOCIAL PROOF SECTION ========== */
.social-proof-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.03) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-3xl);
}

/* Trust Logos Grid - 12 Logos */
.trust-logos-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.trust-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    justify-items: center;
}

.trust-logo-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.trust-logo-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
}

.trust-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s var(--transition-base);
}

.trust-logo-card.expert-card::before {
    background: var(--gradient-primary);
}

.trust-logo-card.business-card::before {
    background: var(--gradient-secondary);
}

.trust-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.trust-logo-card:hover::before {
    opacity: 1;
}

.trust-logo-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    transition: transform 0.3s var(--transition-base);
}

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

.trust-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-badge {
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: var(--color-primary);
}

.business-badge {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    color: var(--color-secondary);
}

/* ========== WHY NETWORK AI SECTION ========== */
.why-section {
    padding: var(--space-3xl) 0 var(--space-3xl);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFF 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://s3.ap-south-1.amazonaws.com/bs.in-static-1/network-ai/lpassets/why-section-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.why-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.why-tagline {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: start;
}

.why-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Impact Stat Cards */
.impact-stat-card {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--transition-base);
    border: 2px solid rgba(6, 214, 160, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.impact-stat-card[data-animate="fade-up"] {
    animation: fadeInUp 0.6s ease-out forwards;
}

.impact-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.impact-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.impact-trend {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-accent-emerald);
    font-size: 0.75rem;
    font-weight: 600;
}

.impact-trend svg {
    width: 16px;
    height: 16px;
}

.impact-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.impact-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Value Proposition Cards */
.value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.value-prop-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--transition-base);
    border: 2px solid rgba(6, 214, 160, 0.1);
    opacity: 0;
    transform: translateX(20px);
}

.value-prop-card[data-animate="slide-in"] {
    animation: slideInRight 0.6s ease-out forwards;
}

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

.value-prop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

.value-prop-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.value-prop-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: var(--color-secondary);
    position: relative;
}

.highlight-icon {
    background: var(--gradient-secondary);
    color: var(--color-white);
}

.highlight-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--color-bg);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-question .chevron {
    stroke: var(--color-text-light);
    transition: transform 0.3s var(--transition-base);
}

.faq-item.active .chevron {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--transition-base);
}

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

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-bg);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.final-cta-section > p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.final-ctas {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-md);
    flex-wrap: wrap;
}

.cta-microcopy {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ========== FOOTER ========== */
.landing-footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: var(--space-xs);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid,
    .ai-showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-visual,
    .ai-orb-container {
        height: 400px;
    }
    
    .pillars-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .conversion-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .why-visual {
        gap: var(--space-lg);
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: var(--space-2xl);
    }
    
    .step-connector {
        display: none;
    }
    
    .business-step-card {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}
