:root {
    /* MyEncore Brand Colors - Light Mode */
    --primary-color: #7bdcb5;      /* Mint green - main brand color */
    --secondary-color: #444CE7;     /* Vibrant blue - accent color */
    --dark-color: #101828;          /* Dark navy - text and headers */
    --gray-color: #475467;          /* Muted gray - secondary text */
    --light-gray: #F9FAFB;          /* Light background */
    --white: #ffffff;
    --success-green: #10b981;
    --hover-primary: #5dc39a;       /* Darker mint for hover */
    --hover-secondary: #3730a3;     /* Darker blue for hover */
    
    /* Extended Color Palette */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Design System Spacing */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */
    
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    
    /* Background and text colors - Dark Mode Default */
    --bg-color: var(--gray-900);
    --text-color: var(--gray-100);
    --text-secondary: var(--gray-200);
    --text-muted: var(--gray-300);
    --card-bg: var(--gray-800);
    --section-bg: var(--gray-800);
    --border-color: var(--gray-700);
    --shadow: rgba(0,0,0,0.3);
    --shadow-lg: rgba(0,0,0,0.4);

    /* Animation & Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.2s var(--ease-out-expo);
    --transition-slow: 0.4s var(--ease-out-expo);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);

    /* Gradient accents */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-radial: radial-gradient(circle at 30% 20%, rgba(123, 220, 181, 0.15), transparent 50%);
}

[data-theme="light"] {
    /* Light mode overrides */
    --bg-color: var(--white);
    --text-color: var(--dark-color);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --card-bg: var(--white);
    --section-bg: var(--gray-50);
    --border-color: var(--gray-200);
    --shadow: rgba(0,0,0,0.05);
    --shadow-lg: rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Global link styling */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hover-primary);
    text-decoration: underline;
}

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

/* Header & Navigation */
.header {
    background: var(--bg-color);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.2s ease;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

/* Optimized scroll animations using CSS classes */
.animate-on-scroll {
    opacity: 0.85;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

.nav-logo a {
    text-decoration: none;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

/* Navigation Dropdown */
.nav-menu > li {
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown > a::after {
    content: '▼';
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    padding: 1rem;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    text-decoration: none;
}

.dropdown-menu a small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.dropdown-menu a:hover small {
    color: var(--dark-color);
    opacity: 0.8;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1rem;
        background: transparent;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: grid;
    }
    
    .nav-dropdown > a::after {
        content: '+';
        font-size: 1rem;
    }
    
    .nav-dropdown.active > a::after {
        content: '-';
    }
}

/* Navigation CTA Button */
.nav-cta {
    margin-left: 1rem;
}

.btn-nav-cta {
    background: var(--primary-color) !important;
    color: var(--dark-color) !important;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    white-space: nowrap;
    line-height: 1.2;
}

.btn-nav-cta:hover {
    background: var(--hover-primary) !important;
    color: var(--dark-color) !important;
    border-color: var(--hover-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(123, 220, 181, 0.3);
    text-decoration: none !important;
}

.nav-cta {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Pricing Notes */
.pricing-note {
    margin-top: 1rem;
    padding: 0.5rem;
    background: var(--section-bg);
    border-radius: 6px;
    text-align: center;
}

.pricing-note small {
    color: var(--text-secondary);
    font-style: italic;
}

/* Podcast Section */
.podcast-section {
    padding: var(--space-4xl) 0;
    background: var(--section-bg);
}

.podcast-player-container {
    background: var(--card-bg);
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: 0 4px 6px var(--shadow);
    max-width: 600px;
    margin: 0 auto;
    min-height: 200px;
}

.podcast-info {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.podcast-info h3 {
    color: var(--text-color);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.podcast-info p {
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.podcast-controls {
    text-align: center;
}

.podcast-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.podcast-btn:hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 220, 181, 0.3);
}

.podcast-note {
    margin-top: var(--space-md);
    text-align: center;
}

.podcast-note small {
    color: var(--text-secondary);
    font-style: italic;
}

/* Persistent Audio Player */
.persistent-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow-lg);
    width: 300px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: none; /* Hidden by default, shown via JS when needed */
}

.player-content {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-info {
    flex: 1;
}

.player-title {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.player-status {
    display: block;
    color: var(--text-secondary);
    font-size: var(--text-xs);
}

.player-controls {
    display: flex;
    gap: var(--space-sm);
}

.control-btn {
    background: none;
    border: none;
    font-size: var(--text-lg);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.control-btn:hover {
    background: var(--section-bg);
}

.close-btn {
    font-size: var(--text-sm);
}

.player-progress {
    height: 3px;
    background: var(--section-bg);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease;
}

/* Podcast Modal */
.podcast-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.podcast-modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.podcast-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.podcast-modal-header h3 {
    color: var(--white);
    font-size: var(--text-xl);
    font-weight: 600;
    margin: 0;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: var(--text-lg);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.podcast-modal-body {
    padding: var(--space-xl);
}

.podcast-modal-body .podcast-info {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.podcast-modal-body .podcast-info h4 {
    color: var(--text-color);
    font-size: var(--text-lg);
    font-weight: 600;
    margin: 0 0 var(--space-sm) 0;
}

.podcast-modal-body .podcast-info p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    margin: 0;
}

.podcast-control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto var(--space-lg) auto;
    min-width: 120px;
}

.podcast-control-btn:hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 220, 181, 0.3);
}

.control-icon {
    font-size: var(--text-lg);
}

.progress-container {
    background: var(--section-bg);
    height: 8px;
    border-radius: 4px;
    margin-bottom: var(--space-md);
    overflow: hidden;
    position: relative;
}

.progress-container .progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.1s ease;
}

.time-display {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
}

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

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

/* Mobile responsiveness for podcast modal */
@media (max-width: 768px) {
    .podcast-modal-content {
        width: 95%;
        margin: var(--space-lg);
    }
    
    .podcast-modal-header {
        padding: var(--space-md);
    }
    
    .podcast-modal-body {
        padding: var(--space-lg);
    }
}

/* Responsive adjustments for persistent player */
@media (max-width: 768px) {
    .persistent-player {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 48px;
    height: 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.dark-mode-toggle:hover {
    border-color: var(--primary-color);
}

.toggle-icon {
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

[data-theme="light"] .toggle-icon {
    left: calc(100% - 20px);
    background: var(--secondary-color);
}

.toggle-icon::before {
    content: "☀️";
    font-size: 0.6rem;
}

[data-theme="light"] .toggle-icon::before {
    content: "🌙";
    font-size: 0.6rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.03"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: var(--space-md) var(--space-xl);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid transparent;
    min-height: 48px;
    white-space: nowrap;
    will-change: background-color;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--hover-primary);
    border-color: var(--hover-primary);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: var(--card-bg);
    color: var(--secondary-color);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-placeholder p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: var(--space-4xl) 0;
    background: var(--section-bg);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-3xl);
    color: var(--text-color);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--text-lg);
    text-align: center;
    margin-bottom: var(--space-3xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.feature-card {
    background: var(--card-bg);
    padding: var(--space-2xl);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1; /* Ensure cards are visible by default */
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

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

/* App Downloads Section */
.app-downloads {
    padding: var(--space-4xl) 0;
    background: var(--section-bg);
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: var(--space-md) var(--space-lg);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: 0 4px 6px var(--shadow);
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-lg);
    border-color: var(--primary-color);
}

.download-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playstore-btn .download-icon {
    color: #34A853;
}

.appstore-btn .download-icon {
    color: #007AFF;
}

.huawei-btn .download-icon {
    color: #FF6B35;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1;
    margin-bottom: 2px;
}

.download-store {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
}

.web-access {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.web-text {
    color: var(--text-secondary);
    margin: 0 0 var(--space-md) 0;
    font-size: var(--text-base);
}

.web-app-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--text-base);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(68, 76, 231, 0.2);
}

.web-app-btn:hover {
    background: var(--hover-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(68, 76, 231, 0.3);
}

.web-icon {
    font-size: var(--text-lg);
}

.web-text-btn {
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: var(--space-4xl) 0;
    background: var(--section-bg);
}

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

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

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

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
}

.features-list li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--hover-secondary) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Detailed */
.features-detailed {
    padding: var(--space-4xl) 0;
    background: var(--bg-color);
}

.feature-section {
    margin-bottom: 80px;
}

.feature-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.feature-detail {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
}

.feature-detail .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-detail p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-detail ul {
    list-style: none;
    padding: 0;
}

.feature-detail ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-detail ul li::before {
    content: "→";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Platform Features */
.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-feature {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
}

.platform-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.platform-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navigation Active State */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Contact Section */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--section-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.demo-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.demo-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.demo-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.demo-info ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.demo-info ul li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Form */
.contact-form-container {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
}

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 220, 181, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    color: var(--text-secondary);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    text-align: center;
}

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

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--card-bg);
    padding: var(--space-xl);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

/* Store Page Styles */
.pricing-detailed {
    padding: var(--space-4xl) 0;
    background: var(--section-bg);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    border-radius: 30px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--card-bg);
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background-color: var(--primary-color);
}

.toggle-switch input:checked + label:before {
    transform: translateX(30px);
}

.discount-badge {
    background: var(--success-green);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    overflow: hidden;
    transition: transform 0.2s ease;
    position: relative;
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-3px);
}

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

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.card-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-pricing {
    padding: 0 2rem 1rem;
    text-align: center;
}

.price-display {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: var(--text-secondary);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.annual-note {
    font-size: 0.8rem;
    color: var(--success-green);
    font-weight: 500;
}

.card-features {
    padding: 1rem 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.card-features li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-footer {
    padding: 2rem;
    text-align: center;
}

.card-footer .btn {
    width: 100%;
    padding: 0.75rem;
}

/* Features Comparison */
.features-comparison {
    padding: var(--space-4xl) 0;
    background: var(--bg-color);
}

.features-comparison h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--section-bg);
    font-weight: 600;
    color: var(--text-color);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Add-ons Section */
.add-ons {
    padding: var(--space-4xl) 0;
    background: var(--section-bg);
}

.add-ons h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.add-on-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: transform 0.3s;
}

.add-on-card:hover {
    transform: translateY(-5px);
}

.add-on-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.add-on-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.add-on-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.add-on-card ul {
    list-style: none;
    padding: 0;
}

.add-on-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.add-on-card li::before {
    content: "→";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Pricing FAQ */
.pricing-faq {
    padding: var(--space-4xl) 0;
    background: var(--card-bg);
}

.pricing-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: var(--text-sm);
}

.footer-links a,
.footer-links a:link,
.footer-links a:visited {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:active,
.footer-links a:focus {
    color: var(--hover-primary) !important;
    text-decoration: underline !important;
}

/* Additional specificity for stubborn browsers */
.footer-bottom .footer-links a {
    color: var(--primary-color) !important;
}

.footer-bottom .footer-links a:hover {
    color: var(--hover-primary) !important;
}

/* Force override any browser defaults - maximum specificity */
footer .footer-bottom .footer-links a,
footer .footer-bottom .footer-links a:link,
footer .footer-bottom .footer-links a:visited {
    color: #7bdcb5 !important;
}

footer .footer-bottom .footer-links a:hover,
footer .footer-bottom .footer-links a:active {
    color: #5dc39a !important;
}

/* Terms Banner - Non-intrusive approach */
.terms-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    display: block !important; /* Always block, controlled by transform */
}

.terms-banner.show {
    transform: translateY(0);
    display: block !important;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banner-text h3 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.banner-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.banner-text a {
    color: white !important;
    text-decoration: underline;
    font-weight: 500;
}

.banner-text a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.banner-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.btn-accept-banner,
.btn-later,
.btn-dismiss {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept-banner {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
}

.btn-accept-banner:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-later {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-later:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-dismiss {
    background: none;
    color: white;
    border: none;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0.7;
}

.btn-dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* Terms Modal - Only for critical actions */
.terms-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.terms-modal.show {
    display: block;
}

.terms-modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.terms-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.terms-modal-body {
    padding: 30px;
    color: var(--text-color);
}

.terms-modal-body p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-align: center;
}

.terms-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    padding: 20px;
    background: var(--section-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.terms-links a {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.terms-links a:hover {
    background: var(--primary-color);
    color: var(--dark-color) !important;
    text-decoration: none;
}

.terms-checkbox {
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.terms-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-color);
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-text {
    flex: 1;
    line-height: 1.5;
    font-size: 0.95rem;
}

.terms-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.terms-accept-btn,
.terms-decline-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.terms-accept-btn {
    background: var(--primary-color);
    color: var(--dark-color);
}

.terms-accept-btn:disabled {
    background: var(--gray-400);
    color: var(--gray-600);
    cursor: not-allowed;
}

.terms-accept-btn:not(:disabled):hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
}

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

.terms-decline-btn:hover {
    background: var(--text-secondary);
    color: var(--bg-color);
}

.terms-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-banner {
        padding: 12px 16px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .banner-text h3 {
        font-size: 1rem;
    }
    
    .banner-text p {
        font-size: 0.85rem;
    }
    
    .banner-actions {
        gap: 6px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-accept-banner,
    .btn-later {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .terms-modal-content {
        width: 95%;
        margin: 10px auto;
    }
    
    .terms-modal-header {
        padding: 15px 20px;
    }
    
    .terms-modal-body {
        padding: 20px;
    }
    
    .terms-links {
        padding: 15px;
    }
    
    .terms-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .terms-accept-btn,
    .terms-decline-btn {
        width: 100%;
        max-width: 200px;
    }
}

.footer-links span {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.75rem;
    }
    
    .footer-links span {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        opacity: 1; /* Ensure menu is visible when shown */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .download-btn {
        width: 100%;
        max-width: 280px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Store page responsive */
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .add-ons-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .download-buttons {
        gap: var(--space-sm);
    }
    
    .download-btn {
        min-width: 160px;
        padding: var(--space-sm) var(--space-md);
    }
    
    .download-text {
        gap: 1px;
    }

    .feature-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .nav-logo .logo {
        height: 36px;
    }

    .footer-logo {
        height: 50px;
    }
    
    .dark-mode-toggle {
        width: 42px;
        height: 22px;
    }
    
    .toggle-icon {
        width: 16px;
        height: 16px;
    }
    
    .nav-controls {
        gap: 0.5rem;
    }
}

/* Features Guarantee Section */
.features-guarantee {
    padding: var(--space-4xl) 0;
    background: var(--section-bg);
}

.features-guarantee h2 {
    text-align: center;
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-guarantee .section-subtitle {
    text-align: center;
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.guarantee-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-lg);
    border-color: var(--primary-color);
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    display: block;
}

.guarantee-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--text-base);
}

/* ========================================
   Global Landing Page Styles
   ======================================== */

/* Section Labels */
.section-label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: block;
}

/* Global Hero */
.global-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.global-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-radial);
    pointer-events: none;
}

.global-hero .container {
    position: relative;
    z-index: 1;
}

.global-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-eyebrow {
    display: block;
    font-size: var(--text-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: var(--space-sm);
}

.global-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

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

.btn-primary-hero:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--secondary-color);
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-hero:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Hero Trust Indicator */
.hero-trust-inline {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.85;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-trust-inline span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Trust Strip */
.trust-strip {
    background: var(--card-bg);
    padding: 1.5rem 20px;
    border-bottom: 1px solid var(--border-color);
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-text {
    font-weight: 500;
    color: var(--text-color);
}

/* Features Section (Global) */
.features-section {
    padding: 80px 20px;
    background: var(--section-bg);
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s var(--ease-out-expo);
    border-top: 3px solid transparent;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow);
    border-top-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

/* Region Section */
.region-section {
    padding: 80px 20px;
}

.region-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.region-section > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.region-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s var(--ease-out-expo);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow);
    border-color: var(--primary-color);
    text-decoration: none;
    color: var(--text-color);
}

.region-card .region-pricing {
    display: none;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.region-card:hover .region-pricing {
    display: block;
}

.region-flag {
    font-size: 2rem;
    line-height: 1;
}

.region-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* CTA Section (Global) */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(68, 76, 231, 0.3), transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: white;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s var(--ease-out-expo);
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--secondary-color);
}

/* Social Proof Strip */
.social-proof {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Built for Schools Section */
.built-for-schools {
    padding: 80px 20px;
    background: var(--background, var(--bg-color));
}

.built-for-schools .container {
    max-width: 1100px;
    margin: 0 auto;
}

.schools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.schools-value-props {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-prop {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-prop-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.value-prop h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.value-prop p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.schools-differentiators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diff-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s var(--ease-out-expo);
}

.diff-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px var(--shadow);
}

.diff-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.diff-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Stats Strip */
.stats-strip {
    padding: 60px 20px;
    background: var(--section-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-card {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: var(--bg-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(123, 220, 181, 0.3);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sticky Floating CTA */
.sticky-cta {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-expo);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(68, 76, 231, 0.35);
    transition: all 0.3s var(--ease-out-expo);
    border: none;
    cursor: pointer;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(68, 76, 231, 0.45);
    text-decoration: none;
    color: white;
}

.sticky-cta-dismiss {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-700);
    color: white;
    border: none;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.sticky-cta-dismiss:hover {
    background: var(--gray-600);
}

/* AI Chat Widget */
.ai-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.ai-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(68, 76, 231, 0.35);
    transition: all 0.3s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(68, 76, 231, 0.45);
}

.ai-chat-panel {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    max-height: 500px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: gsSlideUp 0.3s ease;
}

.ai-chat-panel.active {
    display: flex;
    flex-direction: column;
}

.ai-chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 1.25rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.ai-chat-header p {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    opacity: 0.85;
}

.ai-chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 250px;
    max-height: 350px;
}

.ai-message {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.ai-message.bot {
    justify-content: flex-start;
}

.ai-message.user {
    justify-content: flex-end;
}

.ai-message .bubble {
    max-width: 80%;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ai-message.bot .bubble {
    background: var(--section-bg);
    color: var(--text-color);
    border-bottom-left-radius: 4px;
}

.ai-message.user .bubble {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.ai-chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-color);
    background: var(--card-bg);
}

.ai-chat-input input {
    flex: 1;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
}

.ai-chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.ai-chat-input button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.ai-chat-input button:hover {
    opacity: 0.9;
}

/* Get Started Modal (moved from inline) */
.gs-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: gsFadeIn 0.3s ease;
}

.gs-modal-overlay.active {
    display: flex;
}

.gs-modal {
    background: var(--card-bg);
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: gsSlideUp 0.3s ease;
}

.gs-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gs-modal-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.gs-modal-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

.gs-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.gs-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gs-modal-body {
    padding: 2rem;
}

.gs-form-group {
    margin-bottom: 1.25rem;
}

.gs-form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.gs-form-group input,
.gs-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s;
    font-family: inherit;
}

.gs-form-group input:focus,
.gs-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 220, 181, 0.15);
}

.gs-error {
    display: none;
    background: #fef2f2;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
}

[data-theme="dark"] .gs-error {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.gs-submit-btn {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    font-family: inherit;
}

.gs-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.gs-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.gs-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
}

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

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

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-hero-title {
    animation: fadeInUp 0.7s var(--ease-out-expo) both;
}

.animate-hero-subtitle {
    animation: fadeInUp 0.7s var(--ease-out-expo) 0.15s both;
}

.animate-hero-cta {
    animation: fadeInUp 0.7s var(--ease-out-expo) 0.3s both;
}

.animate-hero-trust {
    animation: fadeInUp 0.7s var(--ease-out-expo) 0.45s both;
}

/* Responsive: Global Landing Page */
@media (max-width: 768px) {
    .global-hero h1 { font-size: 2rem; }
    .global-hero { padding: 100px 20px 60px; }
    .hero-eyebrow { font-size: var(--text-base); }
    .trust-content {
        gap: 1.5rem;
    }
    .trust-stat {
        flex: 1 1 100%;
        justify-content: center;
    }
    .schools-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .steps-container::before {
        display: none;
    }
    .hero-trust-inline {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    .ai-chat-panel {
        width: 320px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .gs-modal {
        width: 95%;
        margin: 1rem;
    }
    .gs-modal-body {
        padding: 1.5rem;
    }
    .gs-modal-header {
        padding: 1.25rem 1.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .ai-chat-panel {
        width: calc(100vw - 32px);
        right: -8px;
    }
    .sticky-cta {
        bottom: 88px;
        right: 16px;
    }
}

/* Social Share Bar */
.social-share-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.social-share-bar .share-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
    text-decoration: none;
    color: var(--text-color);
}

.social-share-btn.linkedin:hover { background: #0077B5; color: white; border-color: #0077B5; }
.social-share-btn.facebook:hover { background: #1877F2; color: white; border-color: #1877F2; }
.social-share-btn.twitter:hover { background: #000; color: white; border-color: #000; }
.social-share-btn.whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }
.social-share-btn.email-share:hover { background: var(--primary-color); color: var(--dark-color); border-color: var(--primary-color); }