/* ================================================
   INDEX.CSS - IMPROVED PROFESSIONAL VERSION
   Enhanced SEO Optimized Index Page Styles
   Import main.css before this file
   ================================================ */

/* ===== CSS Variables for Enhanced Design ===== */
:root {
    --gradient-primary: linear-gradient(135deg, #6D94C5 0%, #5A7BA8 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    --shadow-sm: 0 2px 8px rgba(109, 148, 197, 0.08);
    --shadow-md: 0 4px 16px rgba(109, 148, 197, 0.12);
    --shadow-lg: 0 8px 32px rgba(109, 148, 197, 0.16);
    --shadow-xl: 0 16px 48px rgba(109, 148, 197, 0.2);
    --shadow-2xl: 0 24px 64px rgba(109, 148, 197, 0.25);
}

/* ===== Body Display Override for Index Page ===== */
body {
    display: block;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* ===== Enhanced Header with Glass Effect ===== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: var(--spacing-lg) var(--spacing-4xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 0 rgba(109, 148, 197, 0.1), var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(109, 148, 197, 0.08);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header:hover::before {
    opacity: 1;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
}

.header .logo-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(109, 148, 197, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.header .logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header .logo-icon:hover {
    transform: translateY(-4px) rotate(-5deg) scale(1.05);
    box-shadow: 0 12px 32px rgba(109, 148, 197, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.header .logo-icon:hover::before {
    opacity: 1;
}

.header .logo-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.header .logo-icon:hover svg {
    transform: scale(1.1);
}

.header .logo-text {
    font-size: 26px;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--color-text-primary) 0%, #5A7BA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* ===== Enhanced Navigation Links ===== */
.nav-links {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

/* Hide mobile menu elements on desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 148, 197, 0.08) 0%, rgba(109, 148, 197, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 18px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: calc(100% - 36px);
}

.cta-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 4px 16px rgba(109, 148, 197, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(109, 148, 197, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* ===== Enhanced Hero Section with Animated Gradient ===== */
.hero-section {
    position: relative;
    z-index: var(--z-content);
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px var(--spacing-3xl) 100px;
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-title {
    font-size: 58px;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--color-text-primary) 0%, #5A7BA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    line-height: 1.15;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
    text-shadow: 0 2px 20px rgba(109, 148, 197, 0.1);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-description {
    max-width: 820px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-description p {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.9;
    font-weight: var(--font-weight-normal);
    position: relative;
    padding: 28px 36px;
    background: var(--gradient-surface);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(109, 148, 197, 0.08);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 48px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.primary-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 22px 52px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: var(--font-weight-extrabold);
    box-shadow: 0 12px 36px rgba(109, 148, 197, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.primary-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 48px rgba(109, 148, 197, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.primary-cta:hover svg {
    transform: translateX(6px);
}

.primary-cta:active {
    transform: translateY(-3px) scale(1.01);
}

.secondary-cta {
    background: white;
    color: var(--color-text-primary);
    padding: 22px 46px;
    border: 2px solid rgba(109, 148, 197, 0.2);
    border-radius: 16px;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 148, 197, 0.05) 0%, rgba(109, 148, 197, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secondary-cta:hover::before {
    opacity: 1;
}

.secondary-cta:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== Enhanced Features Section with Staggered Animation ===== */
.features-section {
    position: relative;
    z-index: var(--z-content);
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 var(--spacing-3xl);
}

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

.feature-card {
    background: var(--gradient-surface);
    backdrop-filter: blur(20px);
    padding: 42px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(109, 148, 197, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(109, 148, 197, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.5);
}

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    box-shadow: 0 8px 24px rgba(109, 148, 197, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: translateY(-8px) rotate(-5deg) scale(1.1);
    box-shadow: 0 16px 40px rgba(109, 148, 197, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-title {
    font-size: 24px;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--color-primary);
}

.feature-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-weight: var(--font-weight-normal);
}

/* Add staggered animation on scroll */
.feature-card:nth-child(1) {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.feature-card:nth-child(2) {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.feature-card:nth-child(3) {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* ===== Enhanced Content Sections ===== */
.content-section {
    position: relative;
    z-index: var(--z-content);
    padding: 120px var(--spacing-3xl);
}

.content-section.alt-bg {
    background: linear-gradient(180deg, rgba(245, 239, 230, 0.2) 0%, rgba(245, 239, 230, 0.4) 50%, rgba(245, 239, 230, 0.2) 100%);
    position: relative;
}

.content-section.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109, 148, 197, 0.2), transparent);
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 46px;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--color-text-primary) 0%, #5A7BA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 36px;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-content {
    font-size: 18px;
    line-height: 1.9;
}

.intro-text {
    font-size: 21px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

/* ===== Enhanced Info Box with Glassmorphism ===== */
.info-box {
    background: var(--gradient-surface);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    margin-top: 40px;
    border-right: 6px solid var(--color-primary);
    border: 1px solid rgba(109, 148, 197, 0.12);
    border-right-width: 6px;
    border-right-color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(109, 148, 197, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-box:hover::before {
    opacity: 1;
}

.info-box:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-2xl),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.info-box h3 {
    font-size: 23px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box h3::before {
    content: '';
    width: 6px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 16px 0;
    padding-right: 40px;
    position: relative;
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(109, 148, 197, 0.08);
    transition: all 0.3s ease;
}

.info-box ul li:last-child {
    border-bottom: none;
}

.info-box ul li:hover {
    color: var(--color-text-primary);
    padding-right: 44px;
}

.info-box ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 16px;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(109, 148, 197, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-box ul li:hover::before {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 16px rgba(109, 148, 197, 0.35);
}

/* ===== Enhanced Benefits Grid ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
    margin-top: 56px;
}

.benefit-item {
    background: var(--gradient-surface);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(109, 148, 197, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-color: rgba(109, 148, 197, 0.2);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(109, 148, 197, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-6px) rotate(-8deg) scale(1.1);
    box-shadow: 0 14px 36px rgba(109, 148, 197, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-item h3 {
    font-size: 21px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.benefit-item:hover h3 {
    color: var(--color-primary);
}

.benefit-item p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ===== Enhanced Steps Container ===== */
.steps-container {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 28px;
    background: var(--gradient-surface);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-items: flex-start;
    border: 1px solid rgba(109, 148, 197, 0.08);
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px 24px 0 0;
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-item:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-2xl),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.step-number {
    min-width: 68px;
    height: 68px;
    background: var(--gradient-primary);
    color: white;
    font-size: 32px;
    font-weight: var(--font-weight-extrabold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(109, 148, 197, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.step-item:hover .step-number {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 32px rgba(109, 148, 197, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.step-content h3 {
    font-size: 23px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.step-item:hover .step-content h3 {
    color: var(--color-primary);
}

.step-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ===== Enhanced Audience Grid ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
    margin-top: 56px;
}

.audience-card {
    background: var(--gradient-surface);
    backdrop-filter: blur(20px);
    padding: 44px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    border: 1px solid rgba(109, 148, 197, 0.08);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(109, 148, 197, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.5);
}

.audience-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.audience-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-2xl),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-color: rgba(109, 148, 197, 0.2);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(109, 148, 197, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.audience-card:hover .audience-icon {
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 14px 36px rgba(109, 148, 197, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.audience-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.audience-card h3 {
    font-size: 21px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.audience-card:hover h3 {
    color: var(--color-primary);
}

.audience-card p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ===== Enhanced Roadmap with Connection Lines ===== */
.roadmap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-top: 56px;
    flex-wrap: wrap;
}

.roadmap-item {
    background: var(--gradient-surface);
    backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    border: 2px solid rgba(109, 148, 197, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.roadmap-item.current {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset,
                0 0 0 4px rgba(109, 148, 197, 0.1);
}

.roadmap-item.current::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.2;
}

.roadmap-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-2xl),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.roadmap-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    color: white;
    font-size: 32px;
    font-weight: var(--font-weight-extrabold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(109, 148, 197, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.roadmap-item:hover .roadmap-icon {
    transform: scale(1.2) rotate(-15deg);
    box-shadow: 0 12px 32px rgba(109, 148, 197, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.roadmap-item h3 {
    font-size: 19px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.roadmap-item:hover h3 {
    color: var(--color-primary);
}

.roadmap-item p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.roadmap-arrow {
    font-size: 36px;
    color: var(--color-primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.roadmap-arrow:hover {
    transform: scale(1.3);
}

/* ===== Enhanced Final CTA Section ===== */
.final-cta-section {
    position: relative;
    z-index: var(--z-content);
    padding: 120px var(--spacing-3xl);
    background: linear-gradient(135deg, rgba(109, 148, 197, 0.08) 0%, rgba(232, 223, 202, 0.15) 100%);
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(109, 148, 197, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 223, 202, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--color-text-primary) 0%, #5A7BA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-description {
    font-size: 22px;
    color: var(--color-text-secondary);
    margin-bottom: 52px;
    line-height: 1.6;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.large-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 26px 60px;
    border-radius: 18px;
    font-size: 24px;
    font-weight: var(--font-weight-extrabold);
    box-shadow: 0 16px 48px rgba(109, 148, 197, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

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

.large-cta:hover::before {
    width: 400px;
    height: 400px;
}

.large-cta svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.large-cta:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 24px 64px rgba(109, 148, 197, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.large-cta:hover svg {
    transform: translateX(10px);
}

.large-cta:active {
    transform: translateY(-6px) scale(1.02);
}

.cta-note {
    margin-top: 24px;
    font-size: 15px;
    color: var(--color-text-muted);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* ===== Professional Footer Redesign ===== */
.footer-new {
    position: relative;
    z-index: var(--z-content);
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--color-primary), transparent) 1;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px var(--spacing-3xl) 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-4xl);
}

/* Column Styles */
.footer-column-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Brand Column */
.footer-brand {
    padding-left: 20px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(109, 148, 197, 0.25);
}

.footer-logo-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--color-text-primary) 0%, #5A7BA8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: white;
    border: 2px solid rgba(109, 148, 197, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(109, 148, 197, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text-secondary);
    transition: fill 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(109, 148, 197, 0.3);
}

.social-link:hover svg {
    fill: white;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 15px;
    font-weight: var(--font-weight-normal);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-right: 18px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-right: 22px;
}

.footer-links a:hover::before {
    opacity: 1;
    right: 4px;
}

/* Email Link */
.footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 0 !important;
}

.email-icon {
    width: 18px;
    height: 18px;
    fill: var(--color-text-secondary);
    transition: fill 0.3s ease;
    flex-shrink: 0;
}

.footer-email:hover .email-icon {
    fill: var(--color-primary);
}

.footer-email::before {
    display: none;
}

/* Bottom Bar */
.footer-bottom {
    background: linear-gradient(180deg, rgba(109, 148, 197, 0.05) 0%, rgba(109, 148, 197, 0.08) 100%);
    border-top: 1px solid rgba(109, 148, 197, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px var(--spacing-3xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

.footer-love {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.heart {
    color: #e74c3c;
    font-size: 16px;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.15); }
    20%, 40% { transform: scale(1); }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-3xl);
    }

    .footer-brand {
        padding-left: 0;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px var(--spacing-lg) 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .footer-brand {
        text-align: center;
        border-bottom: 2px solid rgba(109, 148, 197, 0.1);
        padding-bottom: 32px;
        margin-bottom: 8px;
    }

    .footer-logo-section {
        justify-content: center;
    }

    .footer-brand-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column-title {
        text-align: center;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        padding-right: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        padding-right: 0;
    }

    .footer-email {
        justify-content: center;
    }

    .footer-bottom-content {
        padding: 24px var(--spacing-lg);
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 50px var(--spacing-md) 35px;
    }

    .footer-grid {
        gap: var(--spacing-xl);
    }

    .footer-logo-icon {
        width: 42px;
        height: 42px;
    }

    .footer-logo-icon svg {
        width: 22px;
        height: 22px;
    }

    .footer-logo-text {
        font-size: 19px;
    }

    .footer-brand-desc {
        font-size: 14px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-column-title {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom-content {
        padding: 20px var(--spacing-sm);
    }

    .footer-copyright,
    .footer-love {
        font-size: 13px;
    }
}
/* ===== Enhanced FAQ Section with Accordion ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 56px;
}

.faq-item {
    background: var(--gradient-surface);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    border: 1px solid rgba(109, 148, 197, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transform: translateY(-4px);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    text-align: right;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109, 148, 197, 0.15), transparent);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.faq-question[aria-expanded="true"]::before {
    opacity: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.faq-question:hover h3 {
    color: var(--color-primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(109, 148, 197, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(135deg);
    box-shadow: 0 6px 16px rgba(109, 148, 197, 0.35);
}

.faq-question:hover .faq-icon {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(109, 148, 197, 0.35);
}

.faq-question[aria-expanded="true"]:hover .faq-icon {
    transform: rotate(135deg) scale(1.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
}

.faq-answer p {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin: 0;
    padding-bottom: 28px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s,
                transform 0.4s ease 0.1s;
}

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

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-container {
        margin-top: 40px;
    }

    .faq-item {
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .faq-question {
        padding: 22px 24px;
        gap: 16px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-icon svg {
        width: 16px;
        height: 16px;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-answer p {
        font-size: 16px;
        line-height: 1.8;
        padding-bottom: 22px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 20px;
        gap: 12px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        font-size: 15px;
        padding-bottom: 20px;
    }
}
/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .benefits-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-3xl);
    }

    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 900px) {
    /* Compact Header for Mobile */
    .header {
        padding: 12px var(--spacing-lg);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    /* Hamburger Menu Container */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        gap: 0;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 24px rgba(109, 148, 197, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    /* Active state for mobile menu */
    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        text-align: right;
        padding: 16px 20px;
        font-size: 18px;
        border-bottom: 1px solid rgba(109, 148, 197, 0.1);
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 20px;
        padding: 16px 32px;
        font-size: 18px;
    }

    /* Compact Logo for Mobile */
    .header .logo-text {
        font-size: 18px;
    }

    .header .logo-icon {
        width: 42px;
        height: 42px;
    }

    .header .logo-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 1002;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--color-primary);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(9px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-9px);
    }

    /* Overlay for mobile menu */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Hero Section Adjustments */
    .hero-section {
        padding: 60px var(--spacing-lg) 50px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-description {
        margin-bottom: 36px;
    }

    .hero-description p {
        font-size: 16px;
        padding: 20px 24px;
        line-height: 1.7;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
        margin-top: 36px;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 36px;
        font-size: 17px;
    }

    /* Content Sections */
    .content-section {
        padding: 60px var(--spacing-lg);
    }

    .content-section.alt-bg {
        padding: 60px var(--spacing-lg);
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .intro-text {
        font-size: 18px;
        margin-bottom: 32px;
    }

    /* Features Section */
    .features-section {
        margin: 60px auto;
        padding: 0 var(--spacing-lg);
    }

    /* Roadmap */
    .roadmap {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .roadmap-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .roadmap-item {
        max-width: 100%;
    }

    /* Steps */
    .step-item {
        flex-direction: row;
        padding: 28px 20px;
        gap: var(--spacing-lg);
    }

    .step-number {
        min-width: 56px;
        height: 56px;
        font-size: 26px;
    }

    /* Benefits and Audience Cards */
    .benefit-item,
    .audience-card {
        padding: 32px 24px;
    }

    /* Info Box */
    .info-box {
        padding: 28px 24px;
    }

    /* Footer */
    .footer {
        padding: 60px var(--spacing-lg) 32px;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 80px var(--spacing-lg);
    }

    .cta-title {
        font-size: 34px;
    }

    .cta-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .large-cta {
        padding: 20px 40px;
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    /* Even more compact for smaller phones */
    .header {
        padding: 10px var(--spacing-md);
    }

    .header .logo-text {
        font-size: 16px;
    }

    .header .logo-icon {
        width: 38px;
        height: 38px;
    }

    .header .logo-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Hero Adjustments */
    .hero-section {
        padding: 50px var(--spacing-md) 40px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-description p {
        font-size: 15px;
        padding: 18px 20px;
    }

    /* Sections */
    .content-section {
        padding: 50px var(--spacing-md);
    }

    .section-title {
        font-size: 26px;
    }

    .intro-text {
        font-size: 17px;
    }

    /* Features */
    .features-section {
        margin: 50px auto;
        padding: 0 var(--spacing-md);
    }

    .feature-card {
        padding: 28px 20px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-text {
        font-size: 15px;
    }

    /* Benefits & Audience */
    .benefit-item,
    .audience-card {
        padding: 28px 20px;
    }

    .benefit-icon,
    .audience-icon {
        width: 52px;
        height: 52px;
    }

    .benefit-icon svg,
    .audience-icon svg {
        width: 26px;
        height: 26px;
    }

    .benefit-item h3,
    .audience-card h3 {
        font-size: 18px;
    }

    .benefit-item p,
    .audience-card p {
        font-size: 15px;
    }

    /* Steps */
    .step-item {
        padding: 24px 18px;
        gap: var(--spacing-md);
    }

    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-content h3 {
        font-size: 19px;
    }

    .step-content p {
        font-size: 15px;
    }

    /* Info Box */
    .info-box {
        padding: 24px 20px;
    }

    .info-box h3 {
        font-size: 19px;
    }

    .info-box ul li {
        font-size: 15px;
        padding: 12px 0;
        padding-right: 36px;
    }

    .info-box ul li::before {
        width: 24px;
        height: 24px;
        top: 12px;
    }

    /* Roadmap */
    .roadmap-item {
        padding: 28px 24px;
    }

    .roadmap-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    /* Footer */
    .footer {
        padding: 50px var(--spacing-md) 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        margin-bottom: 40px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 60px var(--spacing-md);
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-description {
        font-size: 17px;
    }

    .large-cta {
        padding: 18px 36px;
        font-size: 18px;
    }

    .large-cta svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    /* Ultra compact header for small phones */
    .header {
        padding: 8px var(--spacing-sm);
    }

    .header .logo-text {
        font-size: 15px;
    }

    .header .logo-icon {
        width: 36px;
        height: 36px;
    }

    .header .logo-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Mobile menu adjustments */
    .nav-links {
        width: 100%;
        right: -100%;
        padding: 70px 20px 20px;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
        gap: 5px;
    }

    .mobile-menu-toggle span {
        height: 2.5px;
    }

    /* Hero - Very compact */
    .hero-section {
        padding: 40px var(--spacing-sm) 35px;
    }

    .hero-title {
        font-size: 26px;
        letter-spacing: -0.5px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-description {
        margin-bottom: 30px;
    }

    .hero-description p {
        font-size: 14px;
        padding: 16px 18px;
        line-height: 1.65;
    }

    .hero-cta {
        gap: 12px;
        margin-top: 30px;
    }

    .primary-cta {
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 14px;
    }

    .primary-cta svg {
        width: 20px;
        height: 20px;
    }

    .secondary-cta {
        padding: 16px 32px;
        font-size: 15px;
        border-radius: 14px;
    }

    /* Features Section */
    .features-section {
        margin: 40px auto;
        padding: 0 var(--spacing-sm);
    }

    .features-grid {
        gap: var(--spacing-lg);
    }

    .feature-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: var(--spacing-md);
        border-radius: 16px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-title {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .feature-text {
        font-size: 14px;
        line-height: 1.65;
    }

    /* Content Sections */
    .content-section {
        padding: 45px var(--spacing-sm);
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .intro-text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .section-content {
        font-size: 15px;
    }

    /* Info Box */
    .info-box {
        padding: 20px 18px;
        border-radius: 20px;
        margin-top: 28px;
    }

    .info-box h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .info-box h3::before {
        width: 5px;
        height: 24px;
    }

    .info-box ul li {
        font-size: 14px;
        padding: 10px 0;
        padding-right: 32px;
        line-height: 1.65;
    }

    .info-box ul li::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
        top: 10px;
    }

    /* Benefits & Audience Grids */
    .benefits-grid,
    .audience-grid {
        gap: var(--spacing-lg);
        margin-top: 32px;
    }

    .benefit-item,
    .audience-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefit-item h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .benefit-item p {
        font-size: 14px;
        line-height: 1.65;
    }

    .audience-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .audience-icon svg {
        width: 32px;
        height: 32px;
    }

    .audience-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .audience-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    /* Steps Container */
    .steps-container {
        margin-top: 32px;
        gap: var(--spacing-lg);
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
        gap: var(--spacing-md);
        border-radius: 20px;
    }

    .step-number {
        min-width: 48px;
        height: 48px;
        font-size: 22px;
        margin: 0 auto;
        border-radius: 14px;
    }

    .step-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    /* Roadmap */
    .roadmap {
        margin-top: 32px;
        gap: var(--spacing-md);
    }

    .roadmap-item {
        padding: 24px 20px;
        border-radius: 20px;
        min-width: 100%;
    }

    .roadmap-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .roadmap-item h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .roadmap-item p {
        font-size: 13px;
    }

    .roadmap-arrow {
        font-size: 28px;
        margin: 8px 0;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 50px var(--spacing-sm);
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 36px;
        line-height: 1.55;
    }

    .large-cta {
        padding: 16px 32px;
        font-size: 17px;
        border-radius: 16px;
    }

    .large-cta svg {
        width: 24px;
        height: 24px;
    }

    .cta-note {
        margin-top: 20px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 45px var(--spacing-sm) 24px;
    }

    .footer-content {
        gap: 32px;
        margin-bottom: 36px;
    }

    .footer-section h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .footer-section h4::after {
        width: 30px;
        height: 2.5px;
    }

    .footer-section p {
        font-size: 14px;
        line-height: 1.65;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* ===== Accessibility Enhancements ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 8px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 4px;
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .footer,
    .hero-cta,
    .final-cta-section,
    .background-shapes {
        display: none;
    }

    body {
        background: white;
    }

    .content-section {
        page-break-inside: avoid;
    }

    * {
        box-shadow: none !important;
    }
}

/* ===== Smooth Scroll Behavior ===== */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ===== Loading State (Optional Enhancement) ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg,
        rgba(109, 148, 197, 0.05) 0%,
        rgba(109, 148, 197, 0.15) 50%,
        rgba(109, 148, 197, 0.05) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ================================================
   MOBILE MENU FIX - SIMPLE APPROACH
   Replace the mobile section in your CSS with this
   ================================================ */

@media (max-width: 900px) {
    /* ===== SIMPLE COMPACT HEADER ===== */
    .header {
        padding: 12px var(--spacing-lg);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: sticky;
        top: 0;
        z-index: 9999; /* Very high to stay on top */
    }

    /* ===== MOBILE NAVIGATION ===== */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;

        /* BRIGHT WHITE BACKGROUND - NO TRANSPARENCY */
        background: #FFFFFF;

        flex-direction: column;
        gap: 0;
        padding: 100px 30px 30px;

        /* Strong shadow for depth */
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);

        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);

        /* HIGHEST z-index - ABOVE EVERYTHING */
        z-index: 99999;

        overflow-y: auto;
    }

    /* When menu is active/open */
    .nav-links.active {
        right: 0;
    }

    /* ===== MENU ITEMS ===== */
    .nav-link {
        width: 100%;
        text-align: right;
        padding: 18px 20px;
        font-size: 19px;
        font-weight: 600;
        color: #2C3E50; /* Dark text for contrast */
        border-bottom: 1px solid #E8E8E8;
        background: transparent;
    }

    .nav-link:hover {
        background: #F5F5F5;
        color: #6D94C5;
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 20px;
        padding: 16px 32px;
        font-size: 18px;
        background: linear-gradient(135deg, #6D94C5 0%, #5A7BA8 100%);
        color: white;
    }

    /* ===== HAMBURGER BUTTON ===== */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        z-index: 99999; /* Same as menu */
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #6D94C5;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* X shape when menu is open */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(9px);
        background: #2C3E50;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-9px);
        background: #2C3E50;
    }

    /* ===== OVERLAY - SIMPLE VERSION ===== */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9998; /* BELOW menu but above content */
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* ===== LOGO COMPACT ===== */
    .header .logo-text {
        font-size: 17px;
    }

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

    .header .logo-icon svg {
        width: 20px;
        height: 20px;
    }

    /* ===== HERO & CONTENT ADJUSTMENTS ===== */
    .hero-section {
        padding: 60px var(--spacing-lg) 50px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-description {
        margin-bottom: 36px;
    }

    .hero-description p {
        font-size: 16px;
        padding: 20px 24px;
        line-height: 1.7;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
        margin-top: 36px;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 36px;
        font-size: 17px;
    }

    .content-section {
        padding: 60px var(--spacing-lg);
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .intro-text {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .features-section {
        margin: 60px auto;
        padding: 0 var(--spacing-lg);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .benefits-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .roadmap {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .roadmap-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .roadmap-item {
        max-width: 100%;
    }

    .step-item {
        flex-direction: row;
        padding: 28px 20px;
        gap: var(--spacing-lg);
    }

    .step-number {
        min-width: 56px;
        height: 56px;
        font-size: 26px;
    }

    .benefit-item,
    .audience-card {
        padding: 32px 24px;
    }

    .info-box {
        padding: 28px 24px;
    }

    .footer {
        padding: 60px var(--spacing-lg) 32px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-3xl);
    }

    .final-cta-section {
        padding: 80px var(--spacing-lg);
    }

    .cta-title {
        font-size: 34px;
    }

    .cta-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .large-cta {
        padding: 20px 40px;
        font-size: 19px;
    }
}

/* ===== SMALLER PHONES ===== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px var(--spacing-sm);
    }

    .nav-links {
        width: 85%;
    }

    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}
