/* ========================================
   VoxType Chrome Extension Website
   Production-Ready Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary: #0052CC;
    --primary-dark: #003D99;
    --primary-light: #0066FF;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #22c55e;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-blue: #f0f7ff;
    --bg-blue-dark: #e8f4ff;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ========================================
   Keyboard Website Announcement Banner
   ======================================== */
.keyboard-announcement-banner {
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #047857 100%);
    padding: 12px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.keyboard-announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerBannerKeyboard 3s infinite;
}
@keyframes shimmerBannerKeyboard {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}
.keyboard-announcement-banner a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.keyboard-announcement-banner a:hover { transform: scale(1.02); }
.keyboard-announcement-banner .sparkle { animation: sparkleKeyboard 1.5s ease-in-out infinite; }
.keyboard-announcement-banner .sparkle:nth-child(2) { animation-delay: 0.5s; }
@keyframes sparkleKeyboard {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.keyboard-announcement-banner .android-icon {
    font-size: 1.1rem;
}
.keyboard-announcement-banner .arrow { transition: transform 0.3s ease; }
.keyboard-announcement-banner a:hover .arrow { transform: translateX(4px); }
@media (max-width: 768px) {
    .keyboard-announcement-banner { padding: 10px 15px; }
    .keyboard-announcement-banner a { font-size: 0.8rem; gap: 6px; }
}

/* Header wrapper - keeps banner and nav together */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .keyboard-announcement-banner {
    position: relative;
}

.site-header .nav {
    position: relative;
    top: auto;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    border-bottom: none;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 12px;
}

/* Stacked Logo Text */
.logo-text-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    text-align: center;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-sub {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .logo-text-stack {
        display: flex;
        align-items: center;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.75rem;
        font-weight: 800;
        margin-top: 1px;
    }
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    margin-left: 8px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Made in VT Badge */
.header-vt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 20px rgba(6, 95, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.header-vt-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(6, 95, 70, 0.4);
}

.header-vt-badge::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -40%;
    width: 60%;
    height: 220%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-120%);
    animation: vtSheen 3.6s ease-in-out infinite;
    pointer-events: none;
}

.header-vt-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes vtSheen {
    0% { transform: translateX(-120%); }
    50%, 100% { transform: translateX(220%); }
}

.header-vt-label {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.header-vt-label .heart {
    display: inline-block;
    animation: heartPulse 1.2s ease-in-out infinite;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

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

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

.btn-chrome {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
    background-size: 300% 100%;
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.4);
    animation: chromeGradient 4s ease infinite;
}

.btn-chrome:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(66, 133, 244, 0.5);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Section Backgrounds */
.section-white {
    background: #ffffff;
}

.section-blue {
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4ff 100%);
}

.section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

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

.section-header .badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-badge .chrome-icon {
    width: 20px;
    height: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Extension Popup Mockup */
.extension-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    width: 380px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-5deg) translateY(-15px); }
}

.mockup-header {
    background: linear-gradient(135deg, #fef7ed 0%, #fef3c7 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #fde68a;
}

.mockup-logo {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.mockup-title {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
}

.mockup-version {
    background: var(--bg-blue);
    color: var(--primary);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.mockup-body {
    padding: 30px;
    text-align: center;
}

.mockup-welcome {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.mockup-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.mockup-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.mockup-feature {
    text-align: center;
}

.mockup-feature-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.mockup-feature-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.mockup-signin {
    background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mockup-guest {
    color: var(--primary);
    font-size: 0.9rem;
}

.mockup-footer {
    background: var(--bg-alt);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.mockup-shortcut {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text);
}

/* Floating Elements */
.floating-mic {
    position: absolute;
    bottom: 20px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    animation: pulseMic 2s ease-in-out infinite;
    z-index: 10;
}

.floating-mic::before {
    content: "🎤";
    font-size: 1.5rem;
}

@keyframes pulseMic {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37, 99, 235, 0.6); }
}

/* ========================================
   Features Section
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 35px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   VoxGenie Section
   ======================================== */
.voxgenie-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.voxgenie-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.voxgenie-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.voxgenie-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.voxgenie-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-blue);
    border-radius: var(--radius);
}

.voxgenie-feature-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.voxgenie-feature span {
    font-weight: 500;
    color: var(--secondary);
}

/* VoxGenie Mockup */
.voxgenie-mockup {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.3);
}

.voxgenie-mockup-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.voxgenie-mockup-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.voxgenie-mockup-title .icon {
    font-size: 1.3rem;
}

.voxgenie-mockup-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.voxgenie-mockup-body {
    background: #1e3a5f;
    padding: 30px;
    min-height: 300px;
}

.voxgenie-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.voxgenie-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.voxgenie-suggestion {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.voxgenie-mockup-footer {
    background: #1e3a5f;
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.voxgenie-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 14px 20px;
    border-radius: 25px;
    color: white;
    font-size: 0.95rem;
}

.voxgenie-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.voxgenie-mic-btn,
.voxgenie-send-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.voxgenie-mic-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.voxgenie-send-btn {
    background: var(--primary);
    color: white;
}

/* ========================================
   AI Shortcuts Section
   ======================================== */
.ai-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ai-shortcut {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.ai-shortcut:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.ai-shortcut-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.ai-shortcut-label {
    font-weight: 600;
    color: var(--secondary);
}

/* Templates */
.templates-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.templates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.templates-header h3 {
    font-size: 1.2rem;
    color: var(--secondary);
}

.template-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.template-item:hover {
    background: var(--bg-blue);
}

.template-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.template-info h4 {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.template-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   Cross-Platform Sync Section
   ======================================== */
.sync-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sync-visual {
    position: relative;
}

.sync-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sync-cloud {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 60px 60px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.sync-lines {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.sync-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
}

.sync-line::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--primary-light);
}

.sync-devices {
    display: flex;
    gap: 40px;
}

.sync-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sync-device-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.sync-device-label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

.sync-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.sync-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.sync-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sync-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-blue);
    border-radius: var(--radius);
}

.sync-feature-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sync-feature-text h4 {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.sync-feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pro-plus-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 20px;
}

/* ========================================
   Compatibility Section
   ======================================== */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.compat-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.compat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.compat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.compat-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.how-it-works-grid::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    z-index: 0;
}

.step-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

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

/* ========================================
   Privacy Section
   ======================================== */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.privacy-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.privacy-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-blue);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.privacy-content {
    text-align: center;
}

.privacy-content h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

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

/* ========================================
   Pricing Section
   ======================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--success);
    font-weight: 700;
}

.pricing-features .cross {
    color: var(--text-muted);
}

/* ========================================
   Vermont Section
   ======================================== */
.vermont-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vermont-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.vermont-heart {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: heartBeat 1.5s ease-in-out infinite;
}

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

.vermont-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.vermont-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.vermont-values {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.vermont-value {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 30px;
}

.vermont-value-icon {
    font-size: 1.3rem;
}

.vermont-value-text {
    font-weight: 600;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-question span:first-child {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--bg-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

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

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

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

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translateX(-10%); }
    50% { transform: translateX(10%); }
}

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

.cta-section h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 16px 32px;
}

.btn-white:hover {
    background: var(--bg-alt);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 16px 32px;
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo-main {
    color: white;
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
    z-index: 9999;
}

#scrollToTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

#scrollToTopBtn svg {
    stroke: white;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .extension-mockup {
        transform: none;
        animation: floatMockupMobile 4s ease-in-out infinite;
    }

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

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .voxgenie-showcase,
    .sync-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-shortcuts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compatibility-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-grid::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-vt-badge {
        display: none;
    }

    .nav-right-group .btn {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .extension-mockup {
        width: 100%;
        max-width: 340px;
    }

    .floating-mic {
        right: 10px;
        bottom: -10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .ai-shortcuts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ai-shortcut {
        padding: 16px;
    }

    .ai-shortcut-icon {
        font-size: 1.5rem;
    }

    .ai-shortcut-label {
        font-size: 0.85rem;
    }

    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .compat-item {
        padding: 20px 15px;
    }

    .compat-icon {
        font-size: 2rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .sync-devices {
        gap: 20px;
    }

    .sync-device-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .vermont-section h2 {
        font-size: 1.8rem;
    }

    .vermont-values {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stat-value {
        font-size: 1.2rem;
    }

    .mockup-features {
        gap: 16px;
    }

    .mockup-feature-icon {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }

    .ai-shortcuts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sync-lines {
        gap: 40px;
    }

    .sync-devices {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-cta {
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* ========================================
   Pricing Toggle - Monthly/Annual
   ======================================== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--primary);
    font-weight: 600;
}

.save-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.4s;
    border-radius: 32px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

/* ========================================
   Mystery Bonus Banner
   ======================================== */
.mystery-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: var(--radius-lg);
    padding: 20px 30px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mystery-icon {
    font-size: 2.5rem;
}

.mystery-content {
    text-align: left;
}

.mystery-content strong {
    color: #92400e;
    font-size: 1.1rem;
}

.mystery-content p {
    color: #a16207;
    margin: 4px 0 0;
    font-size: 0.9rem;
}

.mystery-content .highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.mystery-sparkle {
    font-size: 2rem;
    animation: sparkleRotate 2s ease-in-out infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

/* ========================================
   Pricing Card Updates
   ======================================== */
.pricing-card {
    position: relative;
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-price.monthly-price,
.pricing-price.annual-price {
    display: none;
}

.pricing-price.active {
    display: block;
}

.annual-breakdown {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

.savings-callout {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.savings-tag {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.trial-note {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 12px;
}

.proplus-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-card.proplus {
    border-color: #f59e0b;
}

/* ========================================
   Money Back Guarantee
   ======================================== */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px 30px;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee strong {
    color: var(--secondary);
    font-size: 1rem;
    display: block;
}

.guarantee p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 4px 0 0;
}

/* ========================================
   VoxType Family Section
   ======================================== */
.family-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.family-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.family-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.family-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.family-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.family-card.active {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.family-card.voxpm {
    border-color: #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
}

.family-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.family-badge {
    display: inline-block;
    background: var(--bg-blue);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.family-badge.current {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.family-badge.proplus-exclusive {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.family-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.family-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 12px 0;
}

.family-features {
    text-align: left;
    margin: 0 auto 16px auto;
    padding-left: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.family-features li {
    padding: 4px 0;
}

.family-badge {
    padding: 4px 12px;
    font-size: 0.75rem;
}

.family-card .btn {
    display: inline-block;
    padding: 12px 24px;
}

.family-card .btn-wrapper {
    display: block;
    text-align: center;
    margin-top: 16px;
    clear: both;
}

.family-features li {
    color: var(--text);
    font-size: 0.85rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

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

.family-sync-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sync-icon {
    font-size: 2.5rem;
}

.sync-text {
    text-align: left;
}

.sync-text strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.sync-text p {
    color: var(--text-light);
    margin: 4px 0 0;
    font-size: 0.9rem;
}

/* ========================================
   Simplified Vermont Header Badge
   ======================================== */
.header-vt-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
}

.header-vt-label .heart {
    color: #ef4444;
    display: inline-block;
    animation: heartPulse 1.2s ease-in-out infinite;
}

/* ========================================
   Footer Updates
   ======================================== */
.footer-family-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 16px;
}

.footer-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.footer-links a.active {
    color: white;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* ========================================
   Responsive: Family Grid
   ======================================== */
@media (max-width: 1024px) {
    .family-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .family-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
        gap: 16px;
    }

    .family-card {
        padding: 20px 16px;
    }

    .pricing-toggle {
        flex-wrap: wrap;
        gap: 10px;
    }

    .mystery-bonus {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .mystery-content {
        text-align: center;
    }

    .family-sync-note {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .sync-text {
        text-align: center;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    /* Prevent horizontal overflow on all sections */
    section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Ensure all images scale properly */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix pricing cards on mobile */
    .pricing-grid {
        padding: 0 8px;
    }

    .pricing-card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Ensure buttons fit on mobile */
    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Fix hero section on mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .save-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}

/* ========================================
   Global Mobile Fixes - Prevent Horizontal Scroll
   ======================================== */
@media (max-width: 768px) {
    /* Force all elements to respect viewport width */
    * {
        max-width: 100vw;
    }

    /* Ensure sections don't overflow */
    section,
    .section-white,
    .section-blue,
    .section-dark,
    .section-light {
        overflow-x: hidden;
        width: 100%;
    }

    /* Fix any full-width backgrounds */
    .hero,
    .cta-section,
    .vermont-section,
    .footer {
        width: 100%;
        overflow-x: hidden;
    }

    /* Ensure grids are responsive */
    .features-grid,
    .pricing-grid,
    .family-grid,
    .privacy-grid,
    .faq-grid {
        width: 100%;
        padding: 0;
    }

    /* Fix inline flex elements */
    [style*="display: flex"],
    [style*="display: grid"] {
        flex-wrap: wrap;
    }

    /* Ensure all text wraps properly */
    h1, h2, h3, h4, h5, h6, p, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Fix any absolute positioned elements */
    .floating-mic {
        right: 10px;
    }

    /* Ensure tables are responsive */
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
    }
}
