@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&display=swap');

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

:root {
    --primary: #5b9bff;
    --primary-dark: #2f6ae0;
    --secondary: #6ea8ff;
    --accent: #5b9bff;
    --background: #06080d;
    --surface: #0b1019;
    --surface-2: #101626;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(110, 168, 255, 0.26);
    --text: #eef2f8;
    --text-secondary: #8b94a7;
    --gradient: linear-gradient(135deg, #5b9bff 0%, #2f6ae0 100%);
    --gradient-text: linear-gradient(180deg, #ffffff 0%, #9dc2ff 100%);
    --glow: 0 18px 50px rgba(0, 0, 0, 0.5);
    --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3,
.hero-title, .section-title, .search-title, .cta-banner h2 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

::selection {
    background: rgba(91, 155, 255, 0.28);
    color: #fff;
}

.section-tag,
.pricing-tag,
.powered-by,
.pricing-label,
.pricing-includes,
.hero-badge {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
}

.page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 40% at 50% 18%, rgba(47, 106, 224, 0.12) 0%, transparent 62%),
        radial-gradient(ellipse 70% 50% at 50% 105%, rgba(4, 8, 16, 0.92) 0%, transparent 55%),
        linear-gradient(180deg, #04060a 0%, #06080d 45%, #030508 100%);
}

.bg-core {
    position: absolute;
    width: min(880px, 92vw);
    height: min(480px, 55vh);
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(47, 106, 224, 0.2) 0%, rgba(91, 155, 255, 0.06) 42%, transparent 72%);
    filter: blur(48px);
    animation: bgCorePulse 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 38% at 50% 32%, rgba(91, 155, 255, 0.07) 0%, transparent 65%);
    animation: bgSpotlight 10s ease-in-out infinite alternate;
}

.page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 88% 78% at 50% 48%, transparent 32%, rgba(0, 0, 0, 0.62) 100%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(110, 168, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 168, 255, 0.028) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 55% at 50% 32%, #000 8%, transparent 68%);
    -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 32%, #000 8%, transparent 68%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
    will-change: transform, opacity;
}

.bg-orb--a {
    width: min(360px, 38vw);
    height: min(360px, 38vw);
    top: 2%;
    left: 18%;
    background: radial-gradient(circle, rgba(47, 106, 224, 0.1) 0%, transparent 68%);
    animation: bgOrbA 30s ease-in-out infinite alternate;
}

.bg-orb--b {
    width: min(300px, 32vw);
    height: min(300px, 32vw);
    top: 10%;
    right: 14%;
    background: radial-gradient(circle, rgba(0, 170, 210, 0.07) 0%, transparent 70%);
    animation: bgOrbB 34s ease-in-out infinite alternate;
}

.bg-aurora {
    position: absolute;
    width: 130%;
    height: 48%;
    left: -15%;
    top: 14%;
    background: linear-gradient(
        118deg,
        transparent 0%,
        rgba(47, 106, 224, 0.05) 28%,
        rgba(91, 155, 255, 0.09) 48%,
        rgba(0, 200, 240, 0.04) 58%,
        transparent 82%
    );
    filter: blur(44px);
    transform: rotate(-6deg);
    animation: bgAurora 26s ease-in-out infinite alternate;
    opacity: 0.8;
}

.bg-noise {
    position: absolute;
    inset: 0;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' 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: 160px 160px;
    mix-blend-mode: overlay;
}

.page-bg .bg-beam {
    display: none;
}

@keyframes bgSpotlight {
    0% { opacity: 0.65; }
    100% { opacity: 1; }
}

@keyframes bgCorePulse {
    0% { opacity: 0.75; transform: translateX(-50%) scale(0.98); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.03); }
}

@keyframes bgOrbA {
    0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    100% { transform: translate(3%, 2%) scale(1.06); opacity: 1; }
}

@keyframes bgOrbB {
    0% { transform: translate(0, 0) scale(1); opacity: 0.75; }
    100% { transform: translate(-2%, 3%) scale(1.05); opacity: 1; }
}

@keyframes bgAurora {
    0% { transform: rotate(-6deg) translateX(0); opacity: 0.7; }
    100% { transform: rotate(-4deg) translateX(2.5%); opacity: 0.95; }
}

.orb {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 8, 16, 0.82);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 40px;
    min-height: 64px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.header .logo {
    gap: 14px;
}

.header .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
}

.header .logo-mark::before {
    opacity: 0.35;
}

.header .logo-bolt {
    width: 24px;
    height: 34px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 70, 140, 0.35);
    border: 1px solid rgba(80, 190, 255, 0.35);
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    box-shadow:
        inset 0 0 16px rgba(0, 140, 255, 0.12),
        0 0 0 1px rgba(0, 200, 255, 0.08);
    animation: markCharge 2.4s ease-in-out infinite;
}

/* Halo tournant discret */
.logo-mark::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 180, 255, 0.22) 70deg,
        rgba(160, 240, 255, 0.45) 110deg,
        transparent 160deg,
        transparent 360deg
    );
    animation: markRing 2.4s linear infinite;
    opacity: 0.55;
    pointer-events: none;
}

/* Trait d'énergie qui descend lors de la frappe */
.logo-mark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -30%;
    width: 2px;
    height: 55%;
    margin-left: -1px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(160, 230, 255, 0.15) 35%,
        rgba(230, 250, 255, 0.95) 100%
    );
    opacity: 0;
    filter: blur(0.5px);
    pointer-events: none;
    animation: markStrike 2.4s ease-in-out infinite;
}

.logo-bolt {
    width: 22px;
    height: 32px;
    display: block;
    position: relative;
    z-index: 1;
    color: #6ecfff;
    animation: boltElectric 2.4s ease-in-out infinite;
}

.logo-bolt path {
    fill: currentColor;
    stroke: rgba(230, 250, 255, 0.65);
    stroke-width: 0.5;
    stroke-linejoin: round;
}

@keyframes markRing {
    to {
        transform: rotate(360deg);
    }
}

@keyframes markCharge {
    0%,
    68%,
    100% {
        box-shadow:
            inset 0 0 16px rgba(0, 140, 255, 0.12),
            0 0 0 1px rgba(0, 200, 255, 0.08);
        border-color: rgba(80, 190, 255, 0.35);
    }
    72%,
    76% {
        box-shadow:
            inset 0 0 28px rgba(180, 240, 255, 0.35),
            0 0 18px rgba(0, 160, 255, 0.45);
        border-color: rgba(180, 235, 255, 0.75);
    }
}

@keyframes markStrike {
    0%,
    66%,
    100% {
        opacity: 0;
        transform: translateY(-100%) scaleY(0.4);
    }
    70% {
        opacity: 0.85;
        transform: translateY(0) scaleY(1);
    }
    74% {
        opacity: 0;
        transform: translateY(20%) scaleY(0.6);
    }
}

/* Repos lumineux → disparition → double frappe → retour */
@keyframes boltElectric {
    0%,
    62%,
    100% {
        opacity: 0.55;
        transform: scale(0.96) translateY(0);
        color: #5eb8e8;
        filter: drop-shadow(0 0 5px rgba(80, 190, 255, 0.45));
    }
    8%,
    18% {
        opacity: 0.72;
        color: #8edfff;
        filter: drop-shadow(0 0 9px rgba(120, 220, 255, 0.55));
    }
    66% {
        opacity: 0;
        transform: scale(0.88) translateY(-3px);
        filter: none;
    }
    70% {
        opacity: 1;
        transform: scale(1.1) translateY(2px);
        color: #f2fcff;
        filter:
            drop-shadow(0 0 18px rgba(255, 255, 255, 0.95))
            drop-shadow(0 0 10px rgba(0, 180, 255, 0.9));
    }
    73% {
        opacity: 0.05;
        transform: scale(1.02) translateY(1px);
    }
    76% {
        opacity: 1;
        transform: scale(1.06) translateY(3px);
        color: #e8faff;
        filter:
            drop-shadow(0 0 22px rgba(240, 255, 255, 1))
            drop-shadow(0 0 12px rgba(50, 170, 255, 0.95));
    }
    82% {
        opacity: 0.7;
        transform: scale(1) translateY(0);
        color: #7ed4ff;
        filter: drop-shadow(0 0 10px rgba(100, 210, 255, 0.7));
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-mark,
    .logo-mark::before,
    .logo-mark::after,
    .logo-bolt {
        animation: none;
    }

    .logo-bolt {
        opacity: 1;
        color: #7ee8ff;
    }
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text);
    line-height: 1.1;
}

.header .logo h1 {
    font-size: 22px;
    letter-spacing: 0.07em;
}

.header .powered-by {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    opacity: 0.7;
}

.powered-by {
    display: block;
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.nav-main {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 8px 32px;
    padding: 0 12px;
    background: none;
    border: none;
    min-width: 0;
}

.nav-main a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 8px 2px;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.nav-main a:hover {
    color: var(--primary);
    background: none;
}

/* Ancien header (container sans header-inner) */
.header > .container:not(.header-inner) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
}

.header > .container:not(.header-inner) > nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px 36px;
}

.header > .container:not(.header-inner) > nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 2px;
    transition: color 0.25s ease;
}

.header > .container:not(.header-inner) > nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0;
    justify-self: end;
    flex-shrink: 0;
    margin-left: 16px;
}

.header-actions .language-selector,
.header-actions #langSelector {
    margin-right: 0;
    flex-shrink: 0;
}

.header-actions .header-cta {
    margin-left: 16px;
}

.header-actions .header-live-chip {
    margin-right: 16px;
}

/* Compteur live — pill horizontal */
.live-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(47, 106, 224, 0.14) 0%, rgba(91, 155, 255, 0.06) 100%);
    border: 1px solid rgba(91, 155, 255, 0.2);
    box-shadow: 0 4px 20px rgba(47, 106, 224, 0.1);
    line-height: 1;
}

.live-stat-pill[hidden] {
    display: none !important;
}

.live-stat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5b9bff;
    box-shadow: 0 0 8px rgba(91, 155, 255, 0.75);
    animation: liveStatPulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

.live-stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #c5e0ff;
    letter-spacing: -0.03em;
}

.live-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.header-live-chip.live-stat-pill {
    padding: 7px 14px;
    gap: 8px;
    box-shadow: none;
    background: rgba(47, 106, 224, 0.1);
}

.header-live-chip .live-stat-num {
    font-size: 14px;
    color: #9ec8ff;
}

.header-live-chip .live-stat-label {
    font-size: 12px;
}

.hero-live-pill {
    margin: 0 auto 28px;
}

@keyframes liveStatPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(91, 155, 255, 0.75); }
    50% { opacity: 0.55; box-shadow: 0 0 4px rgba(91, 155, 255, 0.4); }
}

.header-cta {
    padding: 11px 26px;
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(47, 106, 224, 0.28);
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(47, 106, 224, 0.38);
}

.header-cta--connected {
    background: rgba(20, 241, 149, 0.14);
    border: 1px solid rgba(20, 241, 149, 0.35);
    color: #86efac;
    box-shadow: none;
}

.header-cta--connected:hover {
    background: rgba(20, 241, 149, 0.22);
    box-shadow: 0 4px 14px rgba(20, 241, 149, 0.15);
}

.header-cta--connected::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
    vertical-align: middle;
}

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

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

/* Language Selector */
.language-selector {
    display: flex;
    gap: 6px;
    align-items: center;
}

.lang-btn {
    padding: 7px 12px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

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

.lang-btn.active {
    background: rgba(91, 155, 255, 0.12);
    border-color: rgba(91, 155, 255, 0.35);
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 72px 0 56px;
}

.hero-spotlight {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0 64px;
    overflow: hidden;
    text-align: center;
}

.hero-spotlight-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 28px;
    border-radius: 999px;
    border: 1px solid rgba(91, 155, 255, 0.22);
    background: rgba(91, 155, 255, 0.08);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9dc2ff;
}

.hero-pill-ic {
    width: 14px;
    height: 14px;
    fill: #7ec8ff;
}

.hero-spotlight-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.8vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-spotlight-brand {
    display: inline-block;
    margin: 0 0.12em;
    color: #8ec8ff;
    text-shadow:
        0 0 30px rgba(91, 155, 255, 0.45),
        0 0 70px rgba(47, 106, 224, 0.25);
}

.hero-spotlight-sub {
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 18px;
    margin-bottom: 32px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.hero-trust-metric {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.hero-trust-metric strong {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text);
}

.hero-trust-reviews {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 13px;
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: inherit;
    position: relative;
    z-index: 2;
}

.hero-trust-reviews:hover {
    color: var(--text);
}

.hero-trust-text {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.hero-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.hero-btn--primary {
    background: linear-gradient(135deg, #5b9bff 0%, #2f6ae0 55%, #1e4fad 100%);
    color: #fff;
    border: 1px solid rgba(126, 200, 255, 0.35);
    box-shadow: 0 10px 36px rgba(47, 106, 224, 0.38);
}

.hero-btn--main {
    min-width: 190px;
    padding: 15px 42px;
    font-size: 16px;
}

.hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(47, 106, 224, 0.48);
}

.hero-btn--ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-btn--ghost:hover {
    border-color: rgba(91, 155, 255, 0.35);
    background: rgba(91, 155, 255, 0.06);
}

.hero-btn-meta {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    width: 100%;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-perk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    font-size: 12px;
    color: var(--text-secondary);
}

.hero-perk i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5b9bff;
    box-shadow: 0 0 10px rgba(91, 155, 255, 0.7);
    flex-shrink: 0;
}

/* Bandeau défilant — avis + garanties (sous le hero) */
.hero-ticker {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: -8px;
    margin-bottom: 8px;
    border-top: 1px solid rgba(91, 155, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 9, 16, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-ticker[hidden] {
    display: none !important;
}

.hero-ticker-viewport {
    overflow: hidden;
    width: 100%;
    padding: 13px 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    will-change: transform;
}

.hero-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(200, 210, 228, 0.72);
}

.hero-ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #5b9bff;
    box-shadow: 0 0 8px rgba(91, 155, 255, 0.55);
    flex-shrink: 0;
}

@keyframes heroTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-ticker:hover .hero-ticker-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .hero-ticker-track {
        animation: none !important;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 8px 0;
    }

    .hero-ticker-viewport {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(47, 106, 224, 0.35);
}

.cta-button.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text);
}

.cta-button.ghost:hover {
    border-color: rgba(91, 155, 255, 0.4);
    background: rgba(91, 155, 255, 0.05);
    box-shadow: none;
}

.hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-spec {
    flex: 1;
    min-width: 110px;
    padding: 18px 22px 0 0;
}

.hero-spec + .hero-spec {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-spec dt {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-spec dd {
    margin: 0;
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-visual {
    position: relative;
    min-height: 360px;
}

.preview-panel {
    background: rgba(8, 12, 22, 0.88);
    border: 1px solid rgba(91, 155, 255, 0.14);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-secondary);
}

.preview-domain {
    color: var(--text);
    letter-spacing: 0.04em;
}

.preview-status {
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.preview-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    border-radius: 50%;
    background: #34d399;
    vertical-align: middle;
}

.preview-body {
    padding: 18px 16px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

.preview-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.preview-type {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 11px;
}

.preview-type.is-active {
    background: rgba(91, 155, 255, 0.14);
    border-color: rgba(91, 155, 255, 0.3);
    color: #b8d4ff;
}

.preview-query {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}

.preview-query-label {
    color: #64748b;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.preview-query-value {
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    padding: 9px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.preview-row-type {
    color: var(--primary);
    text-transform: lowercase;
}

.preview-row-value {
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-foot {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #64748b;
    font-size: 11px;
}

.terminal-window {
    background: rgba(8, 12, 22, 0.9);
    border: 1px solid rgba(91, 155, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--glow), 0 24px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s;
}

.terminal-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.terminal-title {
    margin-left: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.9;
}

.t-dim { color: #64748b; }
.t-cmd { color: var(--primary); font-weight: 600; }
.t-arg { color: #a78bfa; }
.t-success { color: #34d399; }
.t-highlight { color: #fbbf24; }
.t-cursor {
    color: var(--primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(13, 19, 32, 0.95);
    border: 1px solid rgba(91, 155, 255, 0.2);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.hero-float-card span:last-child {
    font-size: 12px;
    color: var(--text-secondary);
}

.float-icon {
    font-size: 24px;
}

.hero-float-key {
    top: -16px;
    right: -20px;
    animation-delay: 0s;
}

.hero-float-quota {
    bottom: 24px;
    left: -24px;
    animation-delay: -3s;
}

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

.arrow {
    font-size: 20px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-single {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.pricing-single::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(91, 155, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 60%, rgba(47, 106, 224, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.pricing-tag {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 20px;
    background: rgba(91, 155, 255, 0.1);
    border: 1px solid rgba(91, 155, 255, 0.25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
}

.pricing-single .section-subtitle {
    margin-bottom: 0;
}

.pricing-showcase {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.pricing-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 30% 50%, rgba(91, 155, 255, 0.15) 0%, transparent 55%),
                radial-gradient(circle at 70% 50%, rgba(47, 106, 224, 0.12) 0%, transparent 55%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.pricing-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(91, 155, 255, 0.2);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 24px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(91, 155, 255, 0.08);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.pricing-panel:hover {
    border-color: rgba(91, 155, 255, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 32px 100px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(91, 155, 255, 0.12);
}

.pricing-panel-left {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(160deg, rgba(91, 155, 255, 0.06) 0%, transparent 60%);
}

.pricing-panel-right {
    padding: 48px 44px;
    background: rgba(0, 0, 0, 0.15);
}

.pricing-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.pricing-badge {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gradient);
    color: white;
}

.pricing-badge-muted {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
}

.pricing-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.pricing-price-hero {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    line-height: 0.9;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}

.pricing-price-meta {
    display: flex;
    flex-direction: column;
    padding-top: 14px;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-note {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    font-size: 17px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(47, 106, 224, 0.35);
}

.pricing-cta .cta-icon {
    font-size: 20px;
}

.pricing-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s;
}

.pricing-secondary-cta:hover {
    color: var(--text);
    border-color: rgba(91, 155, 255, 0.3);
    background: rgba(91, 155, 255, 0.05);
}

.pricing-includes {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pricing-features-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-features-grid li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: border-color 0.3s, background 0.3s;
}

.pricing-features-grid li:hover {
    border-color: rgba(91, 155, 255, 0.2);
    background: rgba(91, 155, 255, 0.04);
}

.feature-icon-sm {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.pricing-features-grid strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.pricing-features-grid span {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-steps {
    display: flex;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(91, 155, 255, 0.12);
    border: 1px solid rgba(91, 155, 255, 0.25);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 64px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1) 0%, rgba(20, 241, 149, 0.05) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gradient);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-icon {
    font-size: 48px;
}

.card-header h3 {
    font-size: 24px;
    margin: 16px 0;
}

.price {
    margin: 24px 0;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 18px;
    color: var(--text-secondary);
}

.features {
    list-style: none;
    margin: 32px 0;
}

.features li {
    padding: 12px 0;
    color: var(--text-secondary);
}

.select-btn {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.select-btn.premium {
    background: var(--gradient);
    border: none;
}

.select-btn.premium:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: rgba(91, 155, 255, 0.08);
    border: 1px solid rgba(91, 155, 255, 0.2);
    border-radius: 999px;
}

.features .section-subtitle {
    margin-bottom: 0;
}

.cap-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.cap-item {
    display: flex;
    gap: 18px;
    padding: 28px 26px;
    background: rgba(8, 12, 22, 0.72);
    transition: background 0.25s;
}

.cap-item:hover {
    background: rgba(91, 155, 255, 0.05);
}

.cap-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.06em;
    padding-top: 3px;
    flex-shrink: 0;
}

.cap-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.cap-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.feature-icon-sm svg,
.float-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-icon-sm {
    color: var(--accent);
}

.float-icon {
    color: var(--accent);
    display: inline-flex;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* CTA Banner */
.cta-banner {
    padding: 0 0 100px;
}

.cta-banner-inner {
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.cta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.cta-inline {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}

.cta-inline:hover {
    color: var(--text);
}

.features-section {
    padding: 80px 0;
    background: var(--surface);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.06em;
}

.footer-brand .logo-mark {
    width: 36px;
    height: 36px;
}

.footer-brand .logo-bolt {
    width: 18px;
    height: 27px;
}

.faq-section {
    padding: 72px 0 48px;
}

.faq-legal-hint {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(91, 155, 255, 0.2);
    background: rgba(91, 155, 255, 0.06);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.faq-question {
    cursor: pointer;
    list-style: none;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-item[open] .faq-question {
    color: var(--accent);
}

.faq-answer {
    padding: 0 18px 16px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.faq-more {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.faq-more a {
    color: var(--accent);
    text-decoration: none;
}

.faq-more a:hover {
    text-decoration: underline;
}

.footer-legal {
    max-width: 640px;
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-secondary);
    opacity: 0.85;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

.reviews-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    pointer-events: auto;
    touch-action: manipulation;
}

.reviews-modal[hidden] {
    display: none !important;
}

html.reviews-modal-open,
body.reviews-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.reviews-modal-panel {
    width: min(560px, 100%);
    max-height: min(86vh, 720px);
    overflow: auto;
    background: #0b1019;
    border: 1px solid rgba(91, 155, 255, 0.2);
    border-radius: 18px;
    padding: 22px 22px 26px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.reviews-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.reviews-modal-head h2 {
    margin: 0;
    font-size: 22px;
}

.reviews-modal-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    max-height: 42vh;
    overflow: auto;
    padding-right: 4px;
}

.review-card {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
}

.review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.review-card-head strong {
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
}

.review-card-stars,
.reviews-form-stars {
    display: flex;
    gap: 2px;
}

.review-star,
.reviews-form-stars button {
    border: none;
    background: transparent;
    color: #4b5563;
    font-size: 16px;
    padding: 0;
    cursor: pointer;
}

.review-star.is-on,
.reviews-form-stars button.is-on {
    color: #fbbf24;
}

.review-card-text {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
}

.review-card-date {
    font-size: 11px;
    color: #64748b;
}

.reviews-empty,
.reviews-loading {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 20px 8px;
}

.reviews-login-hint {
    margin: 0 0 8px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(91, 155, 255, 0.06);
    border: 1px solid rgba(91, 155, 255, 0.15);
    font-size: 14px;
    color: var(--text-secondary);
}

.reviews-login-hint a {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 600;
}

.reviews-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.reviews-form-stars {
    margin-bottom: 16px;
}

.reviews-form-input,
.reviews-form textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
}

.reviews-form-input {
    margin-bottom: 16px;
}

.reviews-form textarea {
    resize: vertical;
}

.reviews-form-error {
    min-height: 18px;
    margin: 0 0 12px;
    font-size: 13px;
    color: #f87171;
}

.reviews-form-error.is-success {
    color: #34d399;
}

.reviews-form .hero-btn {
    width: 100%;
}

button.hero-btn {
    cursor: pointer;
    font-family: inherit;
}

/* Responsive */
@media (max-width: 1024px) {
    .cap-list {
        grid-template-columns: 1fr;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        row-gap: 10px;
        column-gap: 16px;
    }

    .header .logo {
        grid-column: 1;
    }

    .header-actions {
        grid-column: 2;
    }

    .nav-main {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 28px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-main a {
        font-size: 14px;
        padding: 6px 4px;
    }
}

@media (max-width: 768px) {
    .hero-spotlight {
        min-height: auto;
        padding: 40px 0 48px;
    }

    .hero-spotlight-title {
        font-size: 32px;
    }

    .hero-trust {
        border-radius: 18px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-perks {
        gap: 8px;
    }

    .hero-perk {
        font-size: 11px;
    }

    .cta-banner-inner {
        padding: 20px 18px;
    }

    .cta-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions .header-cta {
        display: none;
    }

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

    .pricing-panel-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 36px 28px;
    }

    .pricing-panel-right {
        padding: 36px 28px;
    }

    .pricing-amount {
        font-size: 72px;
    }

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

    .pricing-steps {
        flex-direction: column;
    }

    .pricing-step {
        flex-direction: row;
        text-align: left;
    }

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

.jarvis-bait-link {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
