/* ========================================
   ZevsHost.net — Carbon V2 Theme
   Single emerald accent · Asymmetric layouts
   Plus Jakarta Sans + Outfit · No AI-purple
======================================== */

/* ===== CSS Variables — Carbon Dark ===== */
:root,
[data-theme="dark"] {
    /* Editorial display font (Geist) for headings; Plus Jakarta kept as fallback */
    --font-display: 'Geist', 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-heading: 'Outfit', 'Geist', system-ui, sans-serif;
    --font-mono: 'Geist Mono', 'JetBrains Mono', 'Fira Code', monospace;

    --bg-body: #09090b;
    --bg-section: #0d0d10;
    --bg-card: #111115;
    --bg-glass: rgba(255, 255, 255, 0.035);
    --bg-glass-hover: rgba(255, 255, 255, 0.06);

    --text-main: #ededed;
    --text-muted: #8f8f9d;
    --text-dim: #555560;

    --primary: #05c47c;
    --primary-dark: #04a368;
    --primary-glow: rgba(5, 196, 124, 0.18);
    --primary-subtle: rgba(5, 196, 124, 0.08);

    /* no gradients — single accent only */
    --gradient-primary: var(--primary);
    --gradient-hero: radial-gradient(ellipse at 12% 50%, rgba(5, 196, 124, 0.06) 0%, transparent 55%);

    --border-glass: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(5, 196, 124, 0.25);
    --border-card: rgba(255, 255, 255, 0.06);

    --radius: 14px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-xl: 2rem;          /* premium card radius */
    --radius-2xl: 2.5rem;       /* hero / showcase */

    /* Motion tokens — spring easings inspired by Apple/Material */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);   /* gentle overshoot */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);           /* fast-out, slow-in */
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.18s;
    --duration-base: 0.28s;
    --duration-slow: 0.5s;
    --transition: var(--duration-base) var(--ease-out);

    /* diffusion shadows — no pure black, tinted; layered for premium depth */
    --shadow-card: 0 12px 32px -8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    --shadow-glow: 0 16px 40px -12px rgba(5, 196, 124, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --shadow-diffuse: 0 30px 60px -20px rgba(0, 0, 0, 0.55), 0 6px 16px -8px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --shadow-float: 0 36px 72px -24px rgba(5, 196, 124, 0.22), 0 12px 28px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ===== Light Theme ===== */
[data-theme="light"] {
    --bg-body: #f6f6f8;
    --bg-section: #ffffff;
    --bg-card: #ffffff;
    --bg-glass: rgba(0, 0, 0, 0.03);
    --bg-glass-hover: rgba(0, 0, 0, 0.055);

    --text-main: #111118;
    --text-muted: #4f4f5e;
    --text-dim: #a0a0ae;

    --primary: #059660;
    --primary-dark: #047a4e;
    --primary-glow: rgba(5, 150, 96, 0.15);
    --primary-subtle: rgba(5, 150, 96, 0.06);

    --gradient-primary: var(--primary);
    --gradient-hero: radial-gradient(ellipse at 12% 50%, rgba(5, 150, 96, 0.04) 0%, transparent 55%);

    --border-glass: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(5, 150, 96, 0.2);
    --border-card: rgba(0, 0, 0, 0.07);

    --shadow-card: 0 4px 16px -4px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    --shadow-glow: 0 8px 24px -8px rgba(5, 150, 96, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    --shadow-diffuse: 0 30px 60px -20px rgba(15, 23, 42, 0.12), 0 6px 16px -8px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    --shadow-float: 0 36px 72px -24px rgba(5, 150, 96, 0.18), 0 12px 28px -12px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

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

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

/* subtle noise texture — fixed overlay, no GPU repaint on scroll */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

[data-theme="light"] body::after {
    opacity: 0.018;
}

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

a:hover {
    color: var(--text-main);
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: #031a0e;
    box-shadow: 0 4px 16px var(--primary-glow);
    transition: transform var(--duration-base) var(--ease-spring),
                background var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out),
                color var(--duration-fast) var(--ease-out);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--primary-glow), 0 2px 6px rgba(0, 0, 0, 0.18);
    color: #031a0e;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    transition-duration: var(--duration-fast);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
}

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

.btn-outline:active {
    transform: translateY(0) scale(0.98);
}

.btn-gold {
    background: #d4a017;
    color: #0a0700;
}

.btn-gold:hover {
    background: #c08b0e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.25);
}

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

.btn-sm {
    padding: 9px 18px;
    font-size: 0.82rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(9, 9, 11, 0.88);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 0;
}

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

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 4px 10px rgba(5, 196, 124, 0.28));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s;
}
.logo:hover .logo-icon {
    transform: rotate(-6deg) scale(1.05);
    filter: drop-shadow(0 6px 14px rgba(5, 196, 124, 0.4));
}
.mob-head .logo-icon { width: 30px; height: 30px; }
.footer-brand .logo-icon { width: 34px; height: 34px; }

.logo-highlight {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
}

/* Nav */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
}

.nav-links a {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 7px 13px;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    background: var(--bg-glass);
}

/* ===== NAV DROPDOWN ===== */
.nav-has-drop {
    position: relative;
}
.nav-drop-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 7px 13px;
    border-radius: var(--radius-xs);
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    transition: all var(--transition);
}
.nav-drop-trigger:hover,
.nav-has-drop.active .nav-drop-trigger,
.nav-has-drop.open .nav-drop-trigger {
    color: var(--text-main);
    background: var(--bg-glass);
}
.nav-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.nav-has-drop.open .nav-chevron { transform: rotate(180deg); }

.nav-drop-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-card, #18181b);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 8px;
    min-width: 280px;
    box-shadow: var(--shadow-card, 0 16px 40px rgba(0,0,0,0.25));
    z-index: 1100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
[data-theme="light"] .nav-drop-panel {
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.nav-has-drop.open .nav-drop-panel { display: block; }

.nav-drop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-xs);
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.15s;
}
.nav-drop-item:hover,
.nav-drop-item.active { background: var(--bg-glass); }
.nav-drop-icon {
    font-size: 1.05rem;
    width: 34px; height: 34px;
    background: var(--bg-glass);
    border-radius: var(--radius-xs);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav-drop-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}
.nav-drop-item small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.3;
    margin-top: 2px;
}
.nav-drop-divider {
    height: 1px;
    background: var(--border-glass);
    margin: 6px 2px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xs);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.theme-toggle:hover {
    border-color: var(--border-glow);
    background: var(--primary-subtle);
    color: var(--primary);
}

.theme-icon {
    font-size: 0.95rem;
    line-height: 1;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xs);
    padding: 6px 12px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: all var(--transition);
    color: var(--text-main);
}

.lang-current:hover {
    border-color: var(--border-glow);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 6px;
    display: none;
    flex-direction: column;
    gap: 2px;
    min-width: 150px;
    z-index: 1100;
    box-shadow: var(--shadow-card);
}

.lang-dropdown.show {
    display: flex;
}

.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: var(--font-body);
    cursor: pointer;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
}

.lang-option:hover,
.lang-option.active {
    background: var(--primary-subtle);
    color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xs);
    cursor: pointer;
    padding: 0;
    width: 38px;
    height: 34px;
    align-items: center;
    position: relative;
    z-index: 1205;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-appearance: none;
    appearance: none;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text-main);
    transition: all var(--transition);
    border-radius: 2px;
    pointer-events: none;
}

/* ===== HERO — asymmetric left-aligned ===== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
}

/* dot-grid background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        var(--gradient-hero),
        radial-gradient(circle at 70% 30%, rgba(5, 196, 124, 0.04) 0%, transparent 45%);
    z-index: 0;
}

/* decorative rings — right side, slow perpetual rotation */
.hero-bg::before {
    content: '';
    position: absolute;
    right: -120px;
    top: 50%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(5, 196, 124, 0.08);
    box-shadow:
        0 0 0 60px rgba(5, 196, 124, 0.03),
        0 0 0 120px rgba(5, 196, 124, 0.015);
    transform: translateY(-50%) rotate(0deg);
    animation: zh-orbit 90s linear infinite;
    will-change: transform;
}

@keyframes zh-orbit {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* dot grid overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 65%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary-subtle);
    border: 1px solid rgba(5, 196, 124, 0.2);
    border-radius: var(--radius-xs);
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.2vw, 5.6rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 10px;
    /* Editorial entrance — stagger handled by .hero-content */
    opacity: 0;
    animation: zh-rise 0.7s var(--ease-out) 0.05s forwards;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    color: var(--text-muted);
    opacity: 0;
    animation: zh-rise 0.7s var(--ease-out) 0.18s forwards;
}

@keyframes zh-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* override: single emerald accent, no purple-cyan gradient */
.gradient-text {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 660px;
    margin: 0 0 40px;
    line-height: 1.75;
    opacity: 0;
    animation: zh-rise 0.7s var(--ease-out) 0.3s forwards;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 64px;
    flex-wrap: wrap;
    opacity: 0;
    animation: zh-rise 0.7s var(--ease-out) 0.42s forwards;
}

/* stats bar — left-aligned, separator style */
.hero-stats {
    display: flex;
    gap: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-glass);
    padding-top: 32px;
    opacity: 0;
    animation: zh-rise 0.7s var(--ease-out) 0.55s forwards;
}

.stat-item {
    text-align: left;
    padding: 0 32px 0 0;
    margin-right: 32px;
    border-right: 1px solid var(--border-glass);
}

.stat-item:last-child {
    border-right: none;
    margin-right: 0;
}

.stat-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-header h1,
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

/* ===== FEATURES — bento grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* bento: 1px gap acts as border between cells */
    gap: 1px;
    background: var(--border-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-card {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    padding: 36px 28px;
    transition: background var(--transition), transform var(--transition);
    position: relative;
}

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

.feature-card:hover {
    background: var(--bg-glass-hover);
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

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

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 18px;
    display: block;
    line-height: 1;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ===== PRICING ===== */
.pricing-tabs {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 44px;
    flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 5px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
}

.pricing-tab {
    flex: 1;
    min-width: 100px;
    padding: 10px 20px;
    border-radius: var(--radius-xs);
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.pricing-tab.active,
.pricing-tab:hover {
    background: var(--primary);
    color: #031a0e;
    border-color: transparent;
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.pricing-grid.active {
    display: grid;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-diffuse);
    transition: transform var(--duration-base) var(--ease-spring),
                box-shadow var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out),
                background var(--duration-fast) var(--ease-out);
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
    border-color: var(--border-glow);
}

.pricing-card.popular {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(5, 196, 124, 0.045) 100%);
    border: 1px solid rgba(5, 196, 124, 0.28);
    box-shadow: var(--shadow-float);
}

.pricing-card.popular::before {
    /* subtle ambient glow that breathes */
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(ellipse at 50% 0%, rgba(5, 196, 124, 0.18) 0%, transparent 55%);
    pointer-events: none;
    opacity: 0.7;
    animation: zh-breathe 4s ease-in-out infinite;
}

@keyframes zh-breathe {
    0%, 100% { opacity: 0.55; }
    50%      { opacity: 0.95; }
}

[data-theme="light"] .pricing-card.popular {
    background: linear-gradient(180deg, #fff 0%, rgba(5, 150, 96, 0.04) 100%);
    border-color: rgba(5, 150, 96, 0.22);
}

.pricing-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transform: none;
    background: var(--primary);
    color: #031a0e;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.pricing-badge::before {
    /* pulsing dot — "live" feel */
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: zh-pulse-dot 1.6s ease-in-out infinite;
}

@keyframes zh-pulse-dot {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.5; }
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 0;
    letter-spacing: -0.02em;
}

.pricing-location {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-glass);
}

.price-value {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.price-period {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    padding: 9px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    padding-left: 18px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
}

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

/* Plan Addons */
.plan-addons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
    justify-content: flex-start;
}

.addon-tag-sm {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xs);
    padding: 3px 9px;
    font-size: 0.68rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

/* Addons Bar */
.addons-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
    padding: 22px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
}

.addons-bar strong {
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 700;
}

.addon-tag {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xs);
    padding: 6px 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.addon-tag:hover {
    border-color: var(--border-glow);
    color: var(--primary);
    background: var(--primary-subtle);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    box-shadow: var(--shadow-diffuse);
    transition: transform var(--duration-base) var(--ease-spring),
                box-shadow var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out),
                background var(--duration-fast) var(--ease-out);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
    border-color: var(--border-glow);
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 18px;
    display: block;
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 8px;
    color: var(--primary);
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.news-card {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    padding: 28px;
    transition: background var(--transition);
}

.news-card:hover {
    background: var(--bg-glass-hover);
    transform: none;
    border-color: transparent;
}

.news-date {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}

.news-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* News Page */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-article {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 1px;
    transition: background var(--transition);
}

.news-article:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.news-article:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
    margin-bottom: 0;
}

.news-article:only-child {
    border-radius: var(--radius);
}

.news-article:hover {
    background: var(--bg-glass-hover);
}

.news-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

.news-article h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
}

.news-body {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.about-stat-card {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    padding: 28px;
    text-align: center;
    transition: background var(--transition);
}

.about-stat-card:hover {
    background: var(--bg-glass-hover);
    border-color: transparent;
}

.stat-big {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -0.04em;
    color: var(--primary);
}

.dc-card {
    position: relative;
}

.dc-card::after {
    /* "online" live indicator — top-right corner */
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: zh-live 2.2s ease-out infinite;
}

@keyframes zh-live {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);   }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0);   }
}

.dc-card .stat-big {
    /* flag emoji at smaller size, with subtle hover lift inherited */
    font-size: 2.2rem;
    line-height: 1;
}

.dc-card small {
    display: block;
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-top: 4px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

.about-stat-card.dc-card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-2px);
    transition: background var(--duration-fast) var(--ease-out),
                transform var(--duration-base) var(--ease-spring);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-glass);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    gap: 16px;
    transition: color var(--transition);
    letter-spacing: -0.01em;
}

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

.faq-arrow {
    font-size: 0.7rem;
    color: var(--text-dim);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

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

.faq-answer p {
    padding: 0 0 20px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.9rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-diffuse);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-body);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xs);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238f8f9d'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.form-status {
    margin-top: 14px;
    font-size: 0.875rem;
    min-height: 22px;
}

.form-status.success {
    color: var(--primary);
}

.form-status.error {
    color: #f66;
}

[data-theme="light"] .form-status.success {
    color: var(--primary);
}

[data-theme="light"] .form-status.error {
    color: #cc2200;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 22px 24px;
    box-shadow: var(--shadow-diffuse);
    transition: transform var(--duration-base) var(--ease-spring),
                box-shadow var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out),
                background var(--duration-fast) var(--ease-out);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
    border-color: var(--border-glow);
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-info-card a {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 4px;
    transition: color var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary);
}

/* ===== CTA ===== */
.cta-section {
    padding: 96px 0;
    text-align: center;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

/* subtle grid pattern behind CTA */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-glass) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-glass) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

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

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    padding: 72px 0 36px;
    background: var(--bg-section);
    border-top: 1px solid var(--border-glass);
}

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

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.footer-social-link {
    display: inline-block;
    color: var(--primary) !important;
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

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

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

.footer-col a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border-glass);
    font-size: 0.8rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--text-dim);
}

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

/* ===== PARTNER PAGE ===== */
.partner-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.partner-step {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    padding: 36px 28px;
    text-align: left;
    transition: background var(--transition);
}

.partner-step:hover {
    background: var(--bg-glass-hover);
    transform: none;
    border-color: transparent;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    background: var(--primary);
    color: #031a0e;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}

.partner-step h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.partner-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.75;
}

.partner-conditions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.conditions-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 36px;
}

.conditions-list {
    list-style: none;
}

.conditions-list li {
    padding: 10px 0;
    padding-left: 22px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-glass);
}

.conditions-list li:last-child {
    border-bottom: none;
}

.conditions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
}

.partner-highlight {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.highlight-stat {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    padding: 28px;
    text-align: center;
    transition: background var(--transition);
}

.highlight-stat:hover {
    background: var(--bg-glass-hover);
    border-color: transparent;
}

.highlight-stat .stat-big {
    font-size: 2.2rem;
    -webkit-text-fill-color: var(--primary);
    color: var(--primary);
}

.highlight-stat span:not(.stat-big) {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* staggered reveal for grid children */
.features-grid .reveal:nth-child(2),
.services-grid .reveal:nth-child(2),
.news-grid .reveal:nth-child(2) {
    transition-delay: 0.07s;
}

.features-grid .reveal:nth-child(3),
.services-grid .reveal:nth-child(3),
.news-grid .reveal:nth-child(3) {
    transition-delay: 0.14s;
}

/* ===== OS BADGES ===== */
.os-badges {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}

.os-badge {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xs);
    padding: 6px 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all var(--transition);
    font-family: var(--font-mono);
}

.os-badge:hover {
    border-color: var(--border-glow);
    color: var(--primary);
    background: var(--primary-subtle);
}

/* ===== AI BADGE BAR ===== */
.ai-badge-bar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 18px;
    background: var(--primary-subtle);
    border: 1px solid rgba(5, 196, 124, 0.2);
    border-radius: var(--radius-xs);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.02em;
    animation: none;
}

/* AI Feature Card Highlight — uses emerald instead of purple */
.feature-ai {
    border-color: rgba(5, 196, 124, 0.15) !important;
    background: rgba(5, 196, 124, 0.03) !important;
}

.feature-ai:hover {
    box-shadow: none !important;
    background: rgba(5, 196, 124, 0.06) !important;
}

/* ===== DOMAIN CHECKER ===== */
.domain-checker {
    max-width: 680px;
    margin: 0 auto 56px;
}

.domain-form {
    display: flex;
    gap: 10px;
}

.domain-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition);
}

.domain-form input:focus {
    border-color: var(--primary);
}

.domain-result {
    margin-top: 16px;
    padding: 18px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.domain-available {
    background: rgba(5, 196, 124, 0.06);
    border: 1px solid rgba(5, 196, 124, 0.2);
}

.domain-taken {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.domain-error {
    background: rgba(234, 179, 8, 0.06);
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.domain-status {
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-heading);
}

/* ===== TLD GRID ===== */
.tld-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.tld-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 56px;
}

.tld-card {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    padding: 24px 16px;
    text-align: center;
    transition: background var(--transition);
}

.tld-card:hover {
    background: var(--bg-glass-hover);
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.tld-zone {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    letter-spacing: -0.03em;
}

.tld-price {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* ===== BUNDLE OFFER ===== */
.bundle-offer {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin-bottom: 36px;
}

.bundle-offer h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
}

.bundle-offer p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.bundle-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAYMENT PAGE ===== */
.payment-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 8px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xs);
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.payment-grid {
    display: grid;
    gap: 1px;
    max-width: 800px;
    margin: 0 auto 56px;
    background: var(--border-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    padding: 22px 24px;
    transition: background var(--transition);
}

.payment-card:hover {
    background: var(--bg-glass-hover);
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.payment-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.payment-info {
    flex: 1;
}

.payment-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}

.payment-info p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.payment-timing {
    background: var(--primary-subtle);
    border: 1px solid rgba(5, 196, 124, 0.2);
    border-radius: var(--radius-xs);
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.payment-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    margin-bottom: 40px;
}

.payment-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
}

.payment-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding-top: 140px;
}

.page-hero .section-header {
    text-align: left;
}

/* ===== MOBILE DRAWER ===== */
/* Uses right positioning (not transform) for Safari iOS reliability,
   since transform:translateX(100%) creates horizontal overflow on iOS */
#mobDrawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    height: 100dvh;
    z-index: 1200;
    background: var(--bg-body);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.3s;
}
#mobDrawer.is-open {
    right: 0;
    visibility: visible;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s;
}
body.drawer-open {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}
html { overflow-x: hidden; }
#mobOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1199;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0s 0.3s;
}
#mobOverlay.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0s 0s;
}
.mob-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-glass);
    flex-shrink: 0;
}
.mob-close {
    width: 38px; height: 38px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.mob-close:hover {
    background: var(--primary-subtle);
    border-color: var(--border-glow);
    color: var(--primary);
}
.mob-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 18px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.mob-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    margin-bottom: 10px;
    padding-left: 4px;
}
.mob-service-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mob-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.mob-service-item:active {
    background: var(--bg-glass);
    border-color: var(--border-glass);
    transform: scale(0.98);
}
.mob-service-icon {
    font-size: 1.1rem;
    width: 40px; height: 40px;
    background: var(--primary-subtle);
    border-radius: var(--radius-xs);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mob-service-item strong {
    display: block;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.005em;
}
.mob-service-item small {
    display: block;
    font-size: 0.73rem;
    color: var(--text-dim);
    margin-top: 2px;
}
.mob-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid var(--border-glass);
    padding-top: 14px;
    margin-top: 4px;
}
.mob-link {
    display: block;
    padding: 11px 14px;
    border-radius: var(--radius-xs);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.mob-link:active, .mob-link.active {
    background: var(--bg-glass);
    color: var(--text-main);
}
.mob-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--border-glass);
}
.mob-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    font-size: 0.95rem;
}
.mob-contacts {
    margin-top: 6px;
    padding: 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mob-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
}
.mob-contact-row:active { color: var(--primary); }
.mob-contact-row .mob-contact-icon {
    width: 28px; height: 28px;
    background: var(--bg-body);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid,
    .services-grid,
    .news-grid,
    .pricing-grid.active {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

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

@media (max-width: 900px) {
    .header .container > nav { display: none; }
    .menu-toggle { display: flex; }
    .header-actions .btn { display: none; }
}

@media (max-width: 768px) {

    .features-grid,
    .services-grid,
    .news-grid,
    .pricing-grid.active,
    .partner-steps {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .partner-conditions {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: -0.035em;
    }

    .hero-bg::before {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 0;
    }

    .stat-item {
        padding: 0 20px 0 0;
        margin-right: 20px;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 36px;
        text-align: center;
    }

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

    .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .btn-lg {
        padding: 13px 26px;
        font-size: 0.93rem;
    }

    .pricing-tabs {
        max-width: 100%;
    }

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

    .contact-form {
        padding: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .news-article {
        padding: 24px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .domain-form {
        flex-direction: column;
    }

    .domain-result {
        flex-direction: column;
        text-align: center;
    }

    .payment-card {
        flex-direction: column;
        text-align: center;
    }

    .os-badges {
        gap: 5px;
    }

    .os-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

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

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

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

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        border-top: 1px solid var(--border-glass);
        padding-top: 28px;
    }

    .stat-item {
        border-right: none;
        margin-right: 0;
        padding: 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .pricing-tabs {
        gap: 3px;
    }

    .pricing-tab {
        padding: 9px 14px;
        font-size: 0.78rem;
    }

    .addons-bar {
        flex-direction: column;
        text-align: center;
    }

    .bundle-actions {
        flex-direction: column;
    }

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