/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors inspired by the new hero image - purple to pink gradient theme */
    --primary-color: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --secondary-color: #EC4899;
    --accent-color: #F97316;
    
    /* Neutral colors */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --background: #F8F8F7;
    --background-light: #F9FAFB;
    --background-darker: #F3F4F6;
    --border-color: #E5E7EB;
    
    /* Gradients matching the hero image */
    --gradient-primary: linear-gradient(135deg, #8B5CF6, #EC4899);
    --gradient-secondary: linear-gradient(135deg, #EC4899, #F97316);
    --gradient-accent: linear-gradient(135deg, #A78BFA, #DDD6FE);
    --gradient-hero: linear-gradient(135deg, #FECACA 0%, #E0E7FF 25%, #C4B5FD 50%, #A78BFA 75%, #8B5CF6 100%);
    --gradient-hero-overlay: radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    
    /* Typography */
    --font-primary: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 24px;
    --border-radius: 12px;
    --border-radius-large: 20px;
    
    /* 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(15px);
    border-bottom: none;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;

}

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

.nav-logo h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: none;

    
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    margin-left: 16px;
}

/* Buttons */
.cta-button {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section - Redesigned with Aura.build inspired effects */
.hero {
    padding: 140px 0 100px;
    background: var(--background);
    overflow: hidden;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Wave Background Elements */
.wave-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%238B5CF6' fill-opacity='0.08' d='M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,181.3C960,181,1056,139,1152,133.3C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.7;
}

.wave-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23EC4899' fill-opacity='0.06' d='M0,224L60,229.3C120,235,240,245,360,229.3C480,213,600,171,720,170.7C840,171,960,213,1080,218.7C1200,224,1320,192,1380,176L1440,160L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.7;
}

/* Decorative Blur Elements */
.hero-blur-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.blur-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatBlur 20s ease-in-out infinite;
}

.blur-1 {
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation-delay: 0s;
}

.blur-2 {
    bottom: 30%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    animation-delay: 7s;
}

.blur-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.25) 0%, transparent 70%);
    animation-delay: 14s;
}

@keyframes floatBlur {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.1); }
    50% { transform: translate(-15px, 20px) scale(0.9); }
    75% { transform: translate(25px, 10px) scale(1.05); }
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    filter: blur(0.3px);
    transform-style: preserve-3d;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    z-index: 2;
}

.floating-icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.floating-icon-4 {
    top: 45%;
    right: 8%;
    animation-delay: 3s;
}

.floating-icon-5 {
    bottom: 15%;
    right: 20%;
    animation-delay: 4s;
}

.floating-icon-6 {
    top: 60%;
    left: 15%;
    animation-delay: 5s;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 10;
}

.hero-content-centered {
    text-align: center;
    z-index: 2;
}

.hero-title-large {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 3;
}

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

.hero-subtitle-large {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 3;
    font-weight: 500;
}

.hero-cta-centered {
    display: flex;
    gap: 24px;
    margin-bottom: 72px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    z-index: 3;
}

.hero-cta-centered .cta-button {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.hero-cta-centered .cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.hero-cta-centered .cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.hero-cta-centered .cta-button span {
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Removed .hero-image styles as image is no longer used */

/* New Hero Content Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: fadeInUp 0.6s ease-out, badgePulse 3s ease-in-out infinite 2s;
}

.badge-icon {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

/* Hero Features Carousel */
.hero-features-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 56px 0;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-features-carousel {
    margin: 56px 0;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius-large);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 28px;
}

.carousel-track .hero-feature-enhanced {
    flex: 0 0 calc(33.333% - 19px);
    min-width: 0;
}

.carousel-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-dot:hover {
    background: rgba(139, 92, 246, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.hero-feature-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 36px 24px;
    border-radius: var(--border-radius-large);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.hero-feature-enhanced:nth-child(1) { animation-delay: 0.4s; }
.hero-feature-enhanced:nth-child(2) { animation-delay: 0.5s; }
.hero-feature-enhanced:nth-child(3) { animation-delay: 0.6s; }
.hero-feature-enhanced:nth-child(4) { animation-delay: 0.7s; }
.hero-feature-enhanced:nth-child(5) { animation-delay: 0.8s; }
.hero-feature-enhanced:nth-child(6) { animation-delay: 0.9s; }
.hero-feature-enhanced:nth-child(7) { animation-delay: 1.0s; }
.hero-feature-enhanced:nth-child(8) { animation-delay: 1.1s; }
.hero-feature-enhanced:nth-child(9) { animation-delay: 1.2s; }

.hero-feature-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.hero-feature-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(139, 92, 246, 0.2);
}

.hero-feature-enhanced:hover::before {
    left: 100%;
}

.feature-icon-large {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.feature-gif {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-feature-enhanced:hover .feature-gif {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.2));
}

.feature-icon-emoji {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.hero-feature-enhanced:hover .feature-icon-emoji {
    transform: scale(1.1);
}

.hero-social-proof-centered {
    margin-top: 48px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    position: relative;
    z-index: 3;
}

.trust-indicators-enhanced {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 28px 40px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.trust-item-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number-large {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1;
}

.trust-label-enhanced {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.trust-separator {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 8px;
}

/* Remove old image-related styles as they're no longer needed */


@keyframes sparkle {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(139, 92, 246, 0.25);
    }
}

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

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

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Different Section - Redesigned */
.why-different {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-different-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-particles {
    position: relative;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 20%; right: 15%; animation-delay: 1s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 2s; }
.particle-4 { bottom: 20%; right: 10%; animation-delay: 3s; }
.particle-5 { top: 40%; left: 70%; animation-delay: 4s; }
.particle-6 { bottom: 40%; left: 40%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.section-header-new {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    animation: gentle-pulse 3s ease-in-out infinite;
}

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

.section-header-new h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Comparison Card */
.comparison-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 64px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

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

.comparison-card[data-delay="0"] { animation-delay: 0.2s; }

.comparison-sides {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
}

.traditional-side, .talktoguru-side {
    padding: 32px;
    border-radius: 16px;
    position: relative;
}

.traditional-side {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 2px solid #cbd5e1;
}

.talktoguru-side {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.talktoguru-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    pointer-events: none;
}

.side-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.side-icon {
    font-size: 32px;
    margin-right: 16px;
}

.gradient-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.side-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #94a3b8;
}

.comparison-list.enhanced li {
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-list.enhanced li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.divider-line {
    position: relative;
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-badge {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

/* Unique Features Grid */
.unique-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card.modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
    transition: all 0.3s ease;
}

.feature-card.modern[data-delay="200"] { animation-delay: 0.4s; }
.feature-card.modern[data-delay="400"] { animation-delay: 0.6s; }
.feature-card.modern[data-delay="600"] { animation-delay: 0.8s; }

.feature-card.modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card.modern:hover .feature-glow {
    opacity: 1;
}

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

.feature-card.modern h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card.modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Experience Preview */
.experience-preview {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.experience-preview[data-delay="800"] { animation-delay: 1s; }

.experience-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    pointer-events: none;
}

.preview-content {
    position: relative;
    z-index: 1;
}

.preview-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.experience-preview h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-preview p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    font-style: italic;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .why-different {
        padding: 80px 0;
    }
    
    .section-header-new h2 {
        font-size: 36px;
    }
    
    .header-subtitle {
        font-size: 18px;
    }
    
    .comparison-card {
        padding: 32px 24px;
        margin-bottom: 48px;
    }
    
    .comparison-sides {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .divider-line {
        width: 120px;
        height: 2px;
        margin: 0 auto;
    }
    
    .vs-badge {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .unique-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card.modern {
        padding: 32px 24px;
    }
    
    .experience-preview {
        padding: 32px 24px;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Spiritual Guides Gallery */
/* Spiritual Guides Gallery - Elegant Design */
.guides-gallery {
    padding: 120px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.guides-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.guides-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
}

.section-header-elegant {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-ornament {
    font-size: 2rem;
    opacity: 0.7;
    margin-bottom: 16px;
    display: block;
    animation: gentleFloat 4s ease-in-out infinite;
}

.section-header-elegant h2 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-header-elegant p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.header-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-card-elegant {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.card-glass-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-card-elegant:hover .card-glass-effect {
    opacity: 1;
}

.guide-card-elegant:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.guide-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
}

.image-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.2;
    animation: gentlePulse 3s ease-in-out infinite;
    filter: blur(8px);
}

.guide-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.guide-card-elegant:hover .guide-image {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
}

.custom-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.avatar-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #A78BFA, #DDD6FE, #EC4899);
    animation: gradientShift 4s ease-in-out infinite;
}

.custom-icon {
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.availability-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10B981, #34D399);
    border-radius: 50%;
    border: 3px solid white;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    animation: subtlePulse 2s ease-in-out infinite;
}

.guide-content h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-specialty {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.guide-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    padding: 0 12px;
    position: relative;
}

.guide-quote::before,
.guide-quote::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: var(--font-primary);
}

.guide-traits {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trait {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.guide-card-elegant:hover .trait {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.guide-card-elegant:hover .card-shine {
    left: 100%;
}

.custom-guide {
    border: 2px dashed rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.02);
}

.custom-guide:hover {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.05);
}

/* Animations */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes gentlePulse {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.3; 
        transform: scale(1.05);
    }
}

@keyframes subtlePulse {
    0%, 100% { 
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
        transform: scale(1.1);
    }
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #A78BFA, #DDD6FE, #EC4899);
    }
    50% { 
        background: linear-gradient(135deg, #EC4899, #A78BFA, #DDD6FE);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .guides-gallery {
        padding: 80px 0;
    }
    
    .section-header-elegant h2 {
        font-size: 2.5rem;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    
    .guide-card-elegant {
        padding: 32px 24px;
    }
    
    .guide-image-container {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
    
    .guide-content h3 {
        font-size: 1.5rem;
    }
}

/* Floating Particles for Guides Gallery */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle-2 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle-3 {
    top: 30%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle-4 {
    top: 70%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle-5 {
    top: 10%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.particle-6 {
    top: 80%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 7s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.6;
    }
}

/* Guide Interaction Demo */
.guides-interaction {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-large);
    padding: 40px;
    text-align: center;
    color: white;
}

.interaction-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.demo-avatar {
    position: relative;
    width: 100px;
    height: 100px;
}

.avatar-ring-large {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringRotate 4s linear infinite;
}

.avatar-face-large {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.speaking-indicator {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: pulsate 2s ease-in-out infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

.demo-text p {
    font-size: 18px;
    font-style: italic;
    margin: 0;
    animation: textFade 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

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

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

@keyframes pulsate {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes textFade {
    0%, 90%, 100% { opacity: 1; }
    45%, 55% { opacity: 0.7; }
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Enhanced Feature Card Visuals */
.feature-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.feature-avatars {
    display: flex;
    gap: 4px;
}

.mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    animation: miniFloat 3s ease-in-out infinite;
}

.mini-avatar:nth-child(2) {
    animation-delay: 0.5s;
}

.growth-visual {
    display: flex;
    align-items: center;
    gap: 8px;
}

.growth-bar {
    width: 40px;
    height: 4px;
    background: var(--background-darker);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.growth-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-accent);
    animation: growthProgress 3s ease-in-out infinite;
}

.growth-indicator {
    font-size: 16px;
    animation: bounce 2s ease-in-out infinite;
}

.daily-visual {
    display: flex;
    align-items: center;
    gap: 8px;
}

.daily-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.daily-message {
    font-size: 10px;
    color: var(--text-light);
    background: var(--background-darker);
    padding: 2px 6px;
    border-radius: 8px;
    animation: messageGlow 4s ease-in-out infinite;
}

.energy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.energy-waves {
    display: flex;
    gap: 2px;
}

.energy-wave {
    width: 3px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: energyPulse 2s ease-in-out infinite;
}

.energy-wave:nth-child(1) { animation-delay: 0s; }
.energy-wave:nth-child(2) { animation-delay: 0.3s; }
.energy-wave:nth-child(3) { animation-delay: 0.6s; }

.safe-visual {
    display: flex;
    align-items: center;
    gap: 8px;
}

.safe-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    animation: heartbeat 2s ease-in-out infinite;
}

.safe-indicator {
    color: var(--accent-color);
    font-weight: bold;
    animation: checkmark 3s ease-in-out infinite;
}

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

@keyframes growthProgress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 0; }
}

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

@keyframes messageGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes energyPulse {
    0%, 100% { transform: scaleY(0.3); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

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

@keyframes checkmark {
    0%, 90%, 100% { opacity: 1; }
    45%, 55% { opacity: 0.5; }
}

/* Enhanced Transformation Journey Section - Desktop First */
.transformation-journey {
    padding: 140px 0;
    background: linear-gradient(135deg, #faf7ff 0%, #f3f0ff 30%, #f8faff 70%, #faf7ff 100%);
    position: relative;
    overflow: hidden;
}

.journey-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.section-header-transformation {
    text-align: center;
    margin-bottom: 100px;
}

.section-header-transformation h2 {
    font-size: 3.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-header-transformation .header-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Journey Path - Desktop First */
.journey-path-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1600px;
    margin: 0 auto 100px;
    position: relative;
    padding: 0 40px;
}

/* Connecting Line System */
.journey-connection-line {
    position: absolute;
    top: 120px;
    left: 50%;
    right: 50%;
    height: 4px;
    pointer-events: none;
    z-index: 1;
}

.connection-segment {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.3;
}

.segment-1 {
    left: -600px;
    width: 500px;
    transform: translateX(0);
    animation: connectLine 1.5s ease-out 0.8s forwards;
}

.segment-2 {
    left: -50px;
    width: 500px;
    transform: translateX(0);
    animation: connectLine 1.5s ease-out 1.2s forwards;
}

.connection-progress {
    position: absolute;
    left: -600px;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: progressLine 2s ease-out 0.8s forwards;
}

/* Enhanced Stage Layout */
.journey-stage-enhanced {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFadeEnhanced 1s ease-out forwards;
}

.journey-stage-enhanced:nth-child(2) { animation-delay: 0.3s; }
.journey-stage-enhanced:nth-child(3) { animation-delay: 0.6s; }
.journey-stage-enhanced:nth-child(4) { animation-delay: 0.9s; }

.stage-indicator-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.stage-circle-enhanced {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 3px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
    margin-bottom: 16px;
}

.stage-circle-enhanced.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    transform: scale(1.1);
    animation: pulseEnhanced 3s infinite;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.stage-icon-enhanced {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.stage-circle-enhanced.active .stage-icon-enhanced {
    filter: brightness(0) invert(1);
}

.stage-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Stage Cards */
.stage-card-enhanced {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.stage-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

.card-header-enhanced {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.card-header-enhanced h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.card-decoration {
    width: 80px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
}

.current-decoration {
    background: linear-gradient(90deg, #f87171, #fb7185);
}

.process-decoration {
    background: var(--gradient-primary);
}

.transformation-decoration {
    background: linear-gradient(90deg, #10b981, #059669);
}

/* Current State - Enhanced Struggles */
.stage-struggles-enhanced {
    display: grid;
    gap: 24px;
    flex: 1;
}

.struggle-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(248, 113, 113, 0.06);
    border-radius: 20px;
    border-left: 5px solid #f87171;
    transition: all 0.3s ease;
}

.struggle-item-enhanced:hover {
    background: rgba(248, 113, 113, 0.1);
    transform: translateX(8px);
}

.struggle-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(248, 113, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.struggle-icon {
    font-size: 1.75rem;
}

.struggle-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.struggle-content p {
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Process State - Enhanced Features */
.process-card {
    background: rgba(139, 92, 246, 0.03);
    border: 2px solid rgba(139, 92, 246, 0.15);
}

.process-features-enhanced {
    display: grid;
    gap: 28px;
    flex: 1;
}

.process-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeftEnhanced 0.8s ease-out forwards;
    border: 1px solid rgba(139, 92, 246, 0.08);
}

.process-item-enhanced[data-delay="0.2s"] { animation-delay: 0.2s; }
.process-item-enhanced[data-delay="0.4s"] { animation-delay: 0.4s; }
.process-item-enhanced[data-delay="0.6s"] { animation-delay: 0.6s; }

.process-item-enhanced:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(12px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.2);
}

.process-icon-enhanced {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.feature-gif-small {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.process-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.process-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Transformation State - Enhanced Outcomes */
.transformation-card {
    background: rgba(16, 185, 129, 0.03);
    border: 2px solid rgba(16, 185, 129, 0.15);
}

.transformation-outcomes-enhanced {
    display: grid;
    gap: 24px;
    flex: 1;
}

.outcome-item-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.06);
    border-radius: 20px;
    border-left: 5px solid #10b981;
    transition: all 0.3s ease;
}

.outcome-item-enhanced:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(8px);
}

.outcome-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-icon {
    font-size: 1.75rem;
}

.outcome-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.outcome-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Transformation Stats */
.transformation-stats {
    margin-bottom: 80px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out forwards;
}

.stat-card[data-delay="0.3s"] { animation-delay: 0.3s; }
.stat-card[data-delay="0.5s"] { animation-delay: 0.5s; }
.stat-card[data-delay="0.7s"] { animation-delay: 0.7s; }

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
}

/* Transformation CTA */
.transformation-cta {
    text-align: center;
}

.cta-content-transformation {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-transformation h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content-transformation p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.transformation-btn {
    position: relative;
    overflow: hidden;
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transformation-btn .button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.transformation-btn:hover .button-glow {
    left: 100%;
}

/* Enhanced Animations */
@keyframes slideUpFadeEnhanced {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeftEnhanced {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseEnhanced {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
        transform: scale(1.1);
    }
    50% {
        box-shadow: 0 25px 60px rgba(139, 92, 246, 0.4);
        transform: scale(1.15);
    }
}

@keyframes connectLine {
    to {
        opacity: 0.6;
    }
}

@keyframes progressLine {
    to {
        width: 1000px;
        opacity: 1;
    }
}

/* Legacy animations for compatibility */
@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    }
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-buttons .cta-button.primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: 70vh;
    }
    
    .hero-title-large {
        font-size: 2.75rem;
        margin-bottom: 24px;
    }
    
    .hero-subtitle-large {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
    
    .hero-features-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
    
    /* Wave backgrounds responsive */
    .wave-bg-bottom, .wave-bg-top {
        height: 120px;
    }
    
    /* Blur elements responsive */
    .blur-1, .blur-2, .blur-3 {
        width: 200px;
        height: 200px;
        filter: blur(40px);
        opacity: 0.3;
    }
    
    .hero-features-carousel {
        margin: 40px 0;
        padding: 0 16px;
    }
    
    .carousel-container {
        gap: 12px;
    }
    
    .carousel-track {
        gap: 16px;
    }
    
    .carousel-track .hero-feature-enhanced {
        flex: 0 0 calc(50% - 8px);
        min-width: unset;
        max-width: unset;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-feature-enhanced {
        padding: 24px 16px;
    }
    
    .feature-icon-large {
        font-size: 2rem;
    }
    
    .hero-cta-centered {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 48px;
    }
    
    .trust-indicators-enhanced {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }
    
    .trust-separator {
        display: none;
    }
    
    .floating-icon {
        font-size: 1.5rem;
        opacity: 0.1;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .differences-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Enhanced Transformation Journey Responsive */
    .transformation-journey {
        padding: 100px 0 80px;
    }
    
    .section-header-transformation {
        margin-bottom: 60px;
    }
    
    .section-header-transformation h2 {
        font-size: 2.75rem;
    }
    
    .section-header-transformation .header-subtitle {
        font-size: 1.125rem;
        max-width: 90%;
    }
    
    /* Mobile Journey Path */
    .journey-path-enhanced {
        display: flex;
        flex-direction: column;
        gap: 60px;
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 60px;
    }
    
    /* Hide desktop connection lines on mobile */
    .journey-connection-line {
        display: none;
    }
    
    /* Mobile stage layout */
    .journey-stage-enhanced {
        position: relative;
    }
    
    .stage-indicator-enhanced {
        margin-bottom: 24px;
    }
    
    .stage-circle-enhanced {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .stage-icon-enhanced {
        font-size: 2rem;
    }
    
    /* Mobile stage cards */
    .stage-card-enhanced {
        padding: 36px 28px;
        border-radius: 24px;
        min-height: auto;
    }
    
    .card-header-enhanced {
        margin-bottom: 28px;
    }
    
    .card-header-enhanced h3 {
        font-size: 1.625rem;
    }
    
    /* Mobile struggles */
    .struggle-item-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    
    .struggle-icon-wrapper {
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }
    
    .struggle-content h4 {
        font-size: 1.125rem;
    }
    
    /* Mobile process items */
    .process-item-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }
    
    .process-icon-enhanced {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .process-content h4 {
        font-size: 1.25rem;
    }
    
    /* Mobile outcome items */
    .outcome-item-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    
    .outcome-icon-wrapper {
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }
    
    .outcome-content h4 {
        font-size: 1.125rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-card {
        padding: 32px 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content-transformation h3 {
        font-size: 2.25rem;
    }
    
    .transformation-btn {
        padding: 18px 36px;
        font-size: 1.125rem;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .hero-title-large {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle-large {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .hero-features-grid-expanded {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 32px 0;
    }
    
    /* Wave backgrounds for mobile */
    .wave-bg-bottom, .wave-bg-top {
        height: 80px;
    }
    
    /* Blur elements for mobile */
    .blur-1, .blur-2, .blur-3 {
        width: 150px;
        height: 150px;
        filter: blur(30px);
        opacity: 0.2;
    }
    
    .hero-features-carousel {
        margin: 32px 0;
        padding: 0 12px;
    }
    
    .carousel-container {
        gap: 8px;
    }
    
    .carousel-track {
        gap: 12px;
    }
    
    .carousel-track .hero-feature-enhanced {
        flex: 0 0 calc(100% - 6px);
        min-width: unset;
        max-width: unset;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
    }
    
    .hero-feature-enhanced {
        padding: 20px 12px;
        font-size: 14px;
    }
    
    .feature-icon-large {
        font-size: 1.75rem;
    }
    
    .hero-cta-centered {
        margin-bottom: 40px;
    }
    
    .cta-button.large {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
    
    .trust-number-large {
        font-size: 1.5rem;
    }
    
    .trust-label-enhanced {
        font-size: 0.75rem;
    }
    
    .floating-icon {
        font-size: 1.25rem;
        opacity: 0.08;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

/* Old hero animation references removed */

.difference-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Interactive Features Section */
.features-interactive {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--text-primary);
    overflow: hidden;
    position: relative;
}

.features-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Column - Content */
.features-content {
    padding-right: 40px;
    position: sticky;
    top: 120px;
}

.features-intro {
    margin-bottom: 48px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.features-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.features-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.features-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Right Column - Interactive Cards */
.features-interactive-panel {
    position: relative;
}

.interactive-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.interactive-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease-out forwards;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.interactive-card:nth-child(1) { animation-delay: 0.1s; }
.interactive-card:nth-child(2) { animation-delay: 0.2s; }
.interactive-card:nth-child(3) { animation-delay: 0.3s; }
.interactive-card:nth-child(4) { animation-delay: 0.4s; }
.interactive-card:nth-child(5) { animation-delay: 0.5s; }
.interactive-card:nth-child(6) { animation-delay: 0.6s; }

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.interactive-card:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.interactive-card:hover::before {
    left: 100%;
}

.card-button {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.card-button:hover {
    background: rgba(139, 92, 246, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-accent);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-button:hover .card-icon-wrapper {
    background: var(--gradient-primary);
    border-color: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.card-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.card-icon-interactive {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-button:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
}

.card-title-section {
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

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

.chevron {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.card-button[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

.card-content {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.card-content.expanded {
    max-height: 200px;
    opacity: 1;
    padding-top: 8px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
}

.feature-highlight svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-content {
        padding-right: 0;
        position: static;
    }
    
    .features-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .features-interactive {
        padding: 80px 0;
    }
    
    .features-container {
        padding: 0 16px;
        gap: 48px;
    }
    
    .features-title {
        font-size: 32px;
    }
    
    .features-description {
        font-size: 16px;
    }
    
    .card-button {
        padding: 16px;
    }
    
    .card-header {
        gap: 12px;
    }
    
    .card-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .card-icon {
        font-size: 18px;
    }
    
    .card-title {
        font-size: 15px;
    }
    
    .card-subtitle {
        font-size: 13px;
    }
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

/* Guide Introduction Modal */
.guide-intro-modal .modal-content {
    max-width: 450px;
    text-align: center;
}

.guide-intro-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.avatar-glow-large {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    animation: breathe 3s ease-in-out infinite;
}

.guide-face-intro {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.speaking-rings {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.speak-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: speakPulse 3s ease-in-out infinite;
}

.speak-ring:nth-child(1) { animation-delay: 0s; }
.speak-ring:nth-child(2) { animation-delay: 1s; }
.speak-ring:nth-child(3) { animation-delay: 2s; }

.guide-specialty-intro {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.guide-message {
    background: var(--background-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.guide-message p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.voice-demo {
    margin: 20px 0;
}

.voice-preview-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.voice-preview-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.guide-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

@keyframes speakPulse {
    0% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Selected Guide State */
.guide-card.selected {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-color);
}

.guide-card.selected::before {
    transform: scaleX(1);
}

.guide-card.selected .availability-indicator {
    background: var(--primary-color);
    animation: selectedPulse 1s ease-in-out infinite;
}

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