/* ============================================
   BLEZZA — Salon Management Software
   Premium Gold Theme
   ============================================ */

/* ---------- Screen Reader Only (AI + Accessibility) ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- CSS Variables ---------- */
:root {
    /* Gold Palette */
    --gold-50: #FDF8E8;
    --gold-100: #F5E6B8;
    --gold-200: #EDDA8E;
    --gold-300: #E2C764;
    --gold-400: #D4AF37;
    --gold-500: #C5A028;
    --gold-600: #A88620;
    --gold-700: #8B6D18;
    --gold-800: #6E5512;
    --gold-900: #4A3A0C;

    /* Neutrals */
    --black: #000000;
    --gray-950: #0A0A0B;
    --gray-900: #111113;
    --gray-850: #161619;
    --gray-800: #1C1C21;
    --gray-700: #27272E;
    --gray-600: #3E3E48;
    --gray-500: #62627A;
    --gray-400: #8E8EA0;
    --gray-300: #B4B4C4;
    --gray-200: #D5D5E0;
    --gray-100: #EBEBF0;
    --gray-50: #F7F7F8;
    --white: #FFFFFF;

    /* Semantic */
    --bg-primary: var(--gray-950);
    --bg-secondary: var(--gray-900);
    --bg-tertiary: var(--gray-850);
    --bg-card: var(--gray-800);
    --border-color: rgba(212, 175, 55, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --text-primary: var(--gray-50);
    --text-secondary: var(--gray-400);
    --text-tertiary: var(--gray-500);
    --accent: var(--gold-400);
    --accent-hover: var(--gold-300);
    --accent-glow: rgba(212, 175, 55, 0.15);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ---------- Theme: Dim (Balanced) ---------- */
[data-theme="dim"] {
    --bg-primary: #1A1A2E;
    --bg-secondary: #1F1F35;
    --bg-tertiary: #24243D;
    --bg-card: #292946;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --text-primary: #EAEAF0;
    --text-secondary: #9898B0;
    --text-tertiary: #6E6E8A;
    --accent-glow: rgba(212, 175, 55, 0.12);
}

/* ---------- Theme: Light ---------- */
[data-theme="light"] {
    --bg-primary: #FAFAF8;
    --bg-secondary: #F0EFE8;
    --bg-tertiary: #E8E7DF;
    --bg-card: #FFFFFF;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-color: rgba(180, 150, 30, 0.18);
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A6E;
    --text-tertiary: #8A8A9A;
    --accent-glow: rgba(212, 175, 55, 0.1);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(250, 250, 248, 0.88);
}

[data-theme="light"] .hero-glow-1 {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
}

[data-theme="light"] .hero-glow-2 {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
}

[data-theme="light"] .hero-grid {
    background-image:
        linear-gradient(rgba(180, 150, 30, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 150, 30, 0.05) 1px, transparent 1px);
}

[data-theme="light"] ::selection {
    background: rgba(212, 175, 55, 0.25);
    color: #1A1A1A;
}

[data-theme="light"] .nav-links.active {
    background: rgba(250, 250, 248, 0.97);
}

[data-theme="light"] .btn-secondary {
    border-color: rgba(0, 0, 0, 0.15);
    color: #1A1A1A;
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .feature-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .pricing-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .pricing-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="dim"] .navbar.scrolled {
    background: rgba(26, 26, 46, 0.88);
}

[data-theme="dim"] .nav-links.active {
    background: rgba(26, 26, 46, 0.97);
}

/* ---------- Theme Switcher UI ---------- */
.theme-switcher {
    position: relative;
    margin-right: 12px;
}

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--duration-fast) var(--ease-smooth);
    position: relative;
    z-index: 2;
}

.theme-btn i {
    pointer-events: none;
}

.theme-btn:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.06);
}

.theme-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 6px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--duration-fast) var(--ease-out);
    z-index: 1001;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.theme-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}

.theme-option:hover {
    background: rgba(212, 175, 55, 0.06);
    color: var(--text-primary);
}

.theme-option.active {
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.08);
}

.theme-option i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-smooth);
}

ul {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 600;
}

.text-gold {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.15em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--black);
    border-color: var(--gold-400);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.35), 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    background: var(--accent-glow);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ---------- Section Utilities ---------- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-400);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover {
    color: var(--gold-400);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--duration-fast);
    border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    bottom: 10%;
    right: 10%;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-400);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold-400), transparent);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    30% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    60% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   TRUSTED BAR
   ============================================ */
.trusted-bar {
    padding: 48px 0;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.trusted-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trusted-item i {
    font-size: 1.25rem;
    color: var(--gold-400);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 0.5;
}

.feature-card-large {
    grid-column: span 1;
    background: linear-gradient(160deg, var(--bg-secondary), rgba(212, 175, 55, 0.03));
    border-color: rgba(212, 175, 55, 0.1);
    padding: 40px;
}

.feature-card-large .feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.18);
}

.feature-card-large .feature-icon i {
    font-size: 1.6rem;
}

.feature-card-large h3 {
    font-size: 1.25rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.35rem;
    color: var(--gold-400);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.feature-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* ============================================
   BUSINESS INTELLIGENCE
   ============================================ */
.biz-intel {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

/* --- KPI Showcase Grid --- */
.kpi-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.kpi-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition: all var(--duration-normal) var(--ease-out);
}

.kpi-card:hover {
    border-color: rgba(212, 175, 55, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.kpi-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kpi-icon i {
    font-size: 1.2rem;
    color: var(--gold-400);
}

.kpi-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

/* --- Graph Showcase --- */
.graph-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.graph-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--duration-normal) var(--ease-out);
    text-align: center;
}

.graph-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.graph-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.graph-icon i {
    font-size: 1.5rem;
    color: var(--gold-400);
}

.graph-card h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.graph-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================
   WHY BLEZZA
   ============================================ */
.why-blezza {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-primary);
    transition: all var(--duration-normal) var(--ease-out);
}

.why-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.why-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.35);
    font-family: var(--font-display);
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
    padding: var(--section-padding) 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.comparison-table thead {
    background: var(--bg-secondary);
}

.comparison-table th {
    padding: 18px 24px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    white-space: nowrap;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.02);
}

.highlight-col {
    background: rgba(212, 175, 55, 0.04) !important;
}

.comparison-table th.highlight-col {
    color: var(--gold-400) !important;
    font-weight: 700;
}

.check-yes {
    color: var(--gold-400);
    font-size: 1.3rem;
}

.check-no {
    color: var(--gray-600);
    font-size: 1.3rem;
}

.check-partial {
    color: var(--gray-500);
    font-size: 1.3rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-400);
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-400), rgba(212, 175, 55, 0.2));
    flex-shrink: 0;
    margin-top: 28px;
}

/* ============================================
   NUMBERS
   ============================================ */
.numbers-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.number-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold-400);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.number-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

/* Country Selector */
.country-selector-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}
.country-selector {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full, 100px);
    padding: 10px 20px;
    transition: border-color var(--duration-normal) var(--ease-out);
}
.country-selector:hover,
.country-selector:focus-within {
    border-color: var(--gold-400);
}
.country-selector i {
    font-size: 1.2rem;
    color: var(--gold-400);
}
.country-selector select {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    padding-right: 8px;
    -webkit-appearance: none;
    appearance: none;
}
.country-selector select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.15);
}

.pricing-featured {
    border-color: var(--gold-400);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, var(--bg-primary) 100%);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-header h3 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
}

.pricing-amount .original-price {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-decoration: line-through;
    margin-bottom: 2px;
    opacity: 0.7;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-400);
}

.pricing-amount .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 4px;
}

.custom-price {
    font-size: 2rem !important;
    color: var(--gold-400) !important;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--gold-400);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--duration-fast);
}

.faq-question:hover {
    color: var(--gold-400);
}

.faq-question i {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    transition: transform var(--duration-normal) var(--ease-out);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold-400);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 22px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-tertiary);
    transition: all var(--duration-fast);
}

.footer-social a:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.06);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    transition: color var(--duration-fast);
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ============================================
   LEAD CAPTURE MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--duration-fast);
    z-index: 1;
}

.modal-close:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
}

.modal-close i { pointer-events: none; }

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group .req {
    color: var(--gold-400);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color var(--duration-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%238E8EA0' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 72px;
}

/* Phone input with country code prefix */
.phone-input-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--duration-fast);
}
.phone-input-wrap:focus-within {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}
.phone-code {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    border-right: 1px solid var(--border-subtle);
    user-select: none;
}
.phone-input-wrap input {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 1;
    min-width: 0;
}
.phone-input-wrap input:focus {
    box-shadow: none !important;
    border: none !important;
}

/* Country detect badge */
.country-detect-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.country-detect-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--gold-400);
    font-weight: 500;
}
.country-detect-badge i {
    font-size: 0.85rem;
}

/* PIN/ZIP code input with loader */
.pin-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.pin-input-wrap input {
    width: 100%;
}
.pin-loader {
    position: absolute;
    right: 10px;
    display: inline-flex;
    align-items: center;
    color: var(--gold-400);
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Readonly city field (auto-filled from PIN) */
.form-group input[readonly] {
    background: var(--bg-secondary);
    cursor: not-allowed;
    opacity: 0.8;
}

.form-submit-btn {
    width: 100%;
    margin-top: 8px;
    font-size: 1rem;
    padding: 14px 24px;
}

.form-disclaimer {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.form-disclaimer a {
    color: var(--gold-400);
}

/* Success State */
.form-success {
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    font-size: 3.5rem;
    color: #4ADE80;
    margin-bottom: 16px;
}

.form-success h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: 
        opacity var(--duration-slow) var(--ease-out),
        transform var(--duration-slow) var(--ease-out);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kpi-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .graph-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 11, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-actions .btn {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        grid-column: span 1;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .kpi-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .graph-showcase {
        grid-template-columns: 1fr;
    }

    .modal-card {
        padding: 28px 20px;
        max-height: 95vh;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, var(--gold-400), rgba(212, 175, 55, 0.2));
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    margin-top: 48px;
    overflow: hidden;
    position: relative;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
}

.download-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
}

.download-info {
    flex: 1;
}

.download-version-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.download-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.download-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 480px;
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.download-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.download-meta span i {
    color: var(--accent);
    font-size: 1rem;
}

.download-action {
    flex-shrink: 0;
    text-align: center;
}

.download-action .download-btn {
    white-space: nowrap;
    padding: 16px 32px;
    font-size: 1.05rem;
    box-shadow: 0 4px 24px var(--accent-glow);
    transition: all var(--duration-normal) var(--ease-out);
}

.download-action .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
}

.download-note {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-top: 12px;
}

/* Download Steps */
.download-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 48px 40px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-tertiary);
}

.download-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 260px;
}

.step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-glow);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.step-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.step-text span {
    color: var(--text-tertiary);
    font-size: 0.78rem;
    line-height: 1.4;
}

.download-step-arrow {
    color: var(--gold-600);
    font-size: 1rem;
    opacity: 0.5;
    flex-shrink: 0;
}

/* System Requirements */
.download-requirements {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download-requirements h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.download-requirements h4 i {
    color: var(--accent);
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}

.req-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.req-grid span i {
    color: var(--gold-500);
    font-size: 0.9rem;
}

/* Download Section Responsive */
@media (max-width: 768px) {
    .download-card-inner {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .download-desc {
        max-width: none;
    }

    .download-meta {
        justify-content: center;
    }

    .download-action .download-btn {
        width: 100%;
    }

    .download-steps {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .download-step {
        max-width: none;
        width: 100%;
    }

    .download-step-arrow {
        transform: rotate(90deg);
    }

    .req-grid {
        grid-template-columns: 1fr;
    }
}
