/* ============================================================
   KAIZEN APPS - UNIFIED DESIGN SYSTEM
   main.css — shared across ALL pages
   ============================================================ */

/* --- 1. CSS VARIABLES / DESIGN TOKENS --- */
:root {
    /* Primary palette */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-lighter: #dbeafe;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --accent-dark: #d97706;

    /* Product accent colors */
    --speech-studio-color: #2563eb;
    --ocr-color: #0052CC;
    --focus-color: #6366F1;
    --focus-parent: #EC4899;
    --focus-employer: #3B82F6;
    --focus-productivity: #10B981;
    --auto-mouse-color: #7c3aed;

    /* Neutrals */
    --dark: #1f2937;
    --text: #374151;
    --text-light: #6b7280;
    --text-lighter: #64748b;
    --border: #e5e7eb;
    --light: #f3f4f6;
    --lighter: #f9fafb;
    --white: #ffffff;

    /* Danger / Warning */
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
    --info: #3b82f6;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 50%, #fefce8 100%);

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 70px;
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text);
}

/* --- 3. LAYOUT --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-lg {
    padding: 120px 0;
}

.grid {
    display: grid;
    gap: 24px;
}

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

.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }

/* --- 4. TOP BAR --- */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 6px 0;
    font-size: 0.8rem;
    text-align: center;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    transition: var(--transition);
}

.top-bar a:hover {
    opacity: 1;
    color: var(--accent);
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.15);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
}

.badge-pill i {
    font-size: 0.7rem;
}

/* --- 5. HEADER / NAVIGATION --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo img {
    width: 36px;
    height: 36px;
}

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

/* Desktop Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition-fast);
    position: relative;
}

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown .nav-link i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    margin-top: 4px;
}

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

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mega dropdown for products */
.mega-dropdown {
    min-width: 580px;
    padding: 16px;
}

.mega-dropdown .dropdown-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-lighter);
    padding: 4px 12px 8px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--light);
}

.dropdown-item .dropdown-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
}

.dropdown-item .dropdown-icon.speech-studio { background: var(--speech-studio-color); }
.dropdown-item .dropdown-icon.ocr { background: var(--ocr-color); }
.dropdown-item .dropdown-icon.focus { background: var(--focus-color); }
.dropdown-item .dropdown-icon.auto-mouse { background: var(--auto-mouse-color); }
.dropdown-item .dropdown-icon.shoonya { background: #f59e0b; }
.dropdown-item .dropdown-icon.fast-clicker { background: #ef4444; }

.dropdown-item-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.dropdown-item-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.4;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

/* Simple dropdown */
.simple-dropdown {
    min-width: 180px;
}

.simple-dropdown a {
    display: block;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text);
}

.simple-dropdown a:hover {
    background: var(--light);
    color: var(--primary);
}

/* Header CTA */
.header-cta {
    margin-left: 8px;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 1.3rem;
    color: var(--text);
}

.mobile-toggle:hover {
    background: var(--light);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 1.3rem;
    color: var(--text);
}

.mobile-nav-close:hover {
    background: var(--light);
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
}

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

.mobile-nav-section {
    margin-bottom: 8px;
}

.mobile-nav-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-lighter);
    padding: 8px 16px 4px;
}

.mobile-nav-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius);
}

.mobile-nav-product:hover {
    background: var(--light);
}

.mobile-nav-product .product-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    min-width: 10px;
}

/* --- 6. BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

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

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

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

.btn-white:hover {
    background: var(--light);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark:hover {
    background: #111827;
    border-color: #111827;
    color: var(--white);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: var(--light);
    border-color: var(--text-light);
    color: var(--dark);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius);
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- 7. CARDS --- */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

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

.card-flat {
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.product-card .product-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-card .product-features {
    text-align: left;
    margin-bottom: 24px;
}

.product-card .product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text);
}

.product-card .product-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Feature Card */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

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

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Feature icon color variants */
.feature-icon.green  { background: linear-gradient(135deg, #059669 0%, #10b981 100%); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25); }
.feature-icon.purple { background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25); }
.feature-icon.orange { background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25); }
.feature-icon.red    { background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25); }
.feature-icon.teal   { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%); box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25); }
.feature-icon.pink   { background: linear-gradient(135deg, #db2777 0%, #ec4899 100%); box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25); }
.feature-icon.indigo { background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%); box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25); }
.feature-icon.sky    { background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%); box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25); }
.feature-icon.amber  { background: linear-gradient(135deg, #b45309 0%, #d97706 100%); box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25); }
.feature-icon.rose   { background: linear-gradient(135deg, #be123c 0%, #f43f5e 100%); box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25); }

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* Blog Card */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gradient-hero);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 20px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-card-meta .tag {
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.75rem;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

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

.blog-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card .read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card .read-more:hover {
    gap: 10px;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0 4px;
}

.pricing-card .price-period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.pricing-card .price-original {
    font-size: 1rem;
    color: var(--text-lighter);
    text-decoration: line-through;
    margin-bottom: 20px;
}

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

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

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

.pricing-card .pricing-features li i {
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
}

.pricing-card .pricing-features li i.fa-check {
    color: var(--secondary);
}

.pricing-card .pricing-features li i.fa-xmark {
    color: var(--text-lighter);
}

/* --- 8. HERO SECTIONS --- */
.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    background: var(--gradient-hero);
}

.hero-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.hero-dark h1,
.hero-dark h2,
.hero-dark h3,
.hero-dark p {
    color: var(--white);
}

.hero-dark p {
    opacity: 0.85;
}

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

.hero-content {
    max-width: 600px;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

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

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

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

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

.hero-stat .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* --- 9. SECTION HEADERS --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- 10. PRICING SECTION --- */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.money-back {
    text-align: center;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.money-back i {
    color: var(--secondary);
}

/* --- 11. FORMS --- */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

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

/* Email signup */
.email-signup {
    display: flex;
    gap: 8px;
    max-width: 480px;
}

.email-signup .form-input {
    flex: 1;
}

/* --- 12. FAQ / ACCORDION --- */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    background: var(--white);
    transition: var(--transition-fast);
}

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

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-answer-content {
    padding: 0 24px 18px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* --- 13. BLOG ARTICLE --- */
.article-hero {
    padding: 60px 0 40px;
    background: var(--lighter);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-meta .tag {
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
}

.article-content {
    padding: 48px 0;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-body h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.article-body p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.article-body ul,
.article-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.article-body ul {
    list-style: disc;
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--lighter);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text);
}

.article-body img {
    border-radius: var(--radius-lg);
    margin: 24px 0;
    box-shadow: var(--shadow-md);
}

.article-body code {
    background: var(--light);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    font-family: 'Fira Code', monospace;
}

/* CTA Banner (in blog posts) */
.cta-banner {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-banner h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* --- 14. FOOTER --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 280px;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* --- 15. YOUTUBE VIDEO EMBED --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 24px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-lg);
}

/* --- 16. TABS --- */
.tabs {
    display: flex;
    gap: 4px;
    background: var(--light);
    padding: 4px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    overflow-x: auto;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* --- 17. BADGES & TAGS --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-primary {
    background: var(--primary-lighter);
    color: var(--primary);
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* --- 18. TESTIMONIALS / SOCIAL PROOF --- */
.social-proof {
    text-align: center;
    padding: 40px 0;
}

.social-proof-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.proof-badge img {
    width: 20px;
    height: 20px;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px 0;
}

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

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

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

/* --- 19. SCREENSHOT GALLERY --- */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.screenshot-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.screenshot-item:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.screenshot-item img {
    width: 100%;
    height: auto;
}

.screenshot-caption {
    padding: 12px 16px;
    background: var(--lighter);
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

/* Screenshot Slider (horizontal scroll) */
.screenshot-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light);
}

.screenshot-slider::-webkit-scrollbar {
    height: 6px;
}

.screenshot-slider::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 3px;
}

.screenshot-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.screenshot-slider .screenshot-item {
    flex: 0 0 auto;
    width: 340px;
    scroll-snap-align: start;
}

.screenshot-slider .screenshot-item img {
    width: 340px;
    height: 220px;
    object-fit: cover;
}

/* Product hero image */
.product-hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 520px;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Product card thumbnail */
.product-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -24px -24px 16px -24px;
    width: calc(100% + 48px);
}

.product-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* --- 20. COMPARISON TABLE --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

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

.comparison-table th {
    background: var(--lighter);
    font-weight: 700;
    color: var(--dark);
}

.comparison-table tr:hover td {
    background: var(--lighter);
}

.comparison-table .check { color: var(--secondary); }
.comparison-table .cross { color: var(--text-lighter); }

/* --- 21. BREADCRUMBS --- */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 16px 0;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-light);
}

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

.breadcrumbs .separator {
    color: var(--text-lighter);
}

.breadcrumbs .current {
    color: var(--dark);
    font-weight: 500;
}

/* --- 22. COMING SOON --- */
.coming-soon-hero {
    text-align: center;
    padding: 100px 0;
    background: var(--gradient-hero);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

/* --- 23. REDIRECT PAGE --- */
.redirect-page {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.redirect-page h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.redirect-page p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* --- 24. UTILITIES --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--dark); }
.text-white { color: var(--white); }

.bg-light { background: var(--light); }
.bg-lighter { background: var(--lighter); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); }
.bg-gradient { background: var(--gradient-hero); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-normal { font-weight: 400; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.max-w-md { max-width: 600px; }
.max-w-lg { max-width: 800px; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* --- Keyboard Focus Styles --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.tab-btn:focus-visible,
.faq-question:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--primary);
}

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- 25a. TAB SPLIT LAYOUT --- */
.tab-split {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tab-split .tab-text {
    flex: 1 1 50%;
}

.tab-split .tab-image {
    flex: 1 1 50%;
}

.tab-split .tab-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* --- 25b. CHECK LIST --- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.check-list li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* --- 25. RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-card.featured { transform: none; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .section { padding: 60px 0; }
    .hero { padding: 60px 0 40px; }
    .hero h1 { font-size: 2rem; }
    .hero p.hero-description { font-size: 1rem; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    /* Navigation */
    .nav { display: none; }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    .tab-split { flex-direction: column; }
    .tab-split .tab-image { order: -1; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item .stat-number { font-size: 2rem; }
    .screenshot-gallery { grid-template-columns: 1fr; }

    .btn-group { flex-direction: column; align-items: stretch; }
    .email-signup { flex-direction: column; }

    .cta-banner { padding: 24px; }
    .cta-banner h3 { font-size: 1.25rem; }

    .tabs { flex-direction: column; }
    .tab-btn { text-align: left; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    .hero h1 { font-size: 1.75rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-bar { font-size: 0.75rem; }
    .top-bar .container { gap: 10px; }
}

/* --- 26. DOWNLOAD OVERLAY --- */
.download-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.download-overlay.active {
    display: flex;
}

.download-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

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

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

.download-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.75rem;
}

.download-modal h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.download-modal p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.download-progress {
    height: 4px;
    background: var(--light);
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
}

.download-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0;
    animation: progressAnim 2.5s ease-in-out forwards;
}

@keyframes progressAnim {
    0% { width: 0; }
    60% { width: 80%; }
    100% { width: 100%; }
}

.download-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.download-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.download-fallback {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.download-fallback a {
    color: var(--primary);
    font-weight: 500;
}

.download-modal .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-light);
    cursor: pointer;
}

/* --- 27. PRINT --- */
@media print {
    .header, .top-bar, .footer, .mobile-nav, .cta-banner { display: none; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}

/* --- EXIT INTENT POPUP --- */
.exit-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.exit-popup-overlay.active {
    display: flex;
}
.exit-popup {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    text-align: center;
    animation: exitPopupIn 0.4s ease;
}
@keyframes exitPopupIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-popup-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none; border: none;
    font-size: 1.5rem; color: var(--text-light);
    cursor: pointer; line-height: 1;
}
.exit-popup-close:hover { color: var(--text); }
.exit-popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}
.exit-popup h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark);
}
.exit-popup .exit-popup-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.5;
}
.exit-popup-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}
.exit-popup-divider::before,
.exit-popup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.exit-popup-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.exit-popup-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
.exit-popup-social a:hover { opacity: 0.9; transform: translateY(-1px); }
.exit-popup-social .share-linkedin { background: #0077b5; }
.exit-popup-social .share-twitter { background: #1da1f2; }
.exit-popup-social .share-facebook { background: #1877f2; }
.exit-popup-social .share-instagram { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); }
.exit-popup-email {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.6;
}
.exit-popup-email a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}
.exit-popup-discount {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px dashed #f59e0b;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 8px;
}
.exit-popup-discount .price-big {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}
.exit-popup-discount .price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 8px;
}
.exit-popup-discount .price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}
@media (max-width: 480px) {
    .exit-popup { padding: 28px 20px; }
    .exit-popup h2 { font-size: 1.3rem; }
    .exit-popup-social a { padding: 8px 14px; font-size: 0.8rem; }
}
