/* ========================================
   AutoMarketing.cz — Dark Tech SaaS Theme
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --bg: #0a0f1a;
    --bg-surface: #111827;
    --bg-surface-hover: #1a2332;
    --border: #1e293b;
    --border-light: #2d3a4d;
    --accent: #20808D;
    --cyan: #00e5ff;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --emerald: #10b981;
    --gold: #f59e0b;
    --gold-dim: #d97706;
    --gradient: linear-gradient(135deg, #20808D, #00e5ff);
    --gradient-subtle: linear-gradient(135deg, rgba(32,128,141,0.15), rgba(0,229,255,0.08));
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-glow: 0 0 40px rgba(0, 229, 255, 0.15);
    --shadow-glow-accent: 0 0 40px rgba(32, 128, 141, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan); }

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

/* --- Background Effects --- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(30, 41, 59, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 41, 59, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}
.bg-orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(32,128,141,0.35), transparent 70%);
    top: -200px; left: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}
.bg-orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,229,255,0.2), transparent 70%);
    top: 40%; right: -150px;
    animation: orbFloat2 25s ease-in-out infinite;
}
.bg-orb--3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.15), transparent 70%);
    bottom: 10%; left: 20%;
    animation: orbFloat3 22s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(80px, 60px); }
    66% { transform: translate(-40px, 100px); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-60px, -80px); }
    66% { transform: translate(40px, -40px); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, -60px); }
}

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

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Hero reveals should animate in immediately on load */
.hero .reveal {
    animation: heroReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero .reveal:nth-child(1) { animation-delay: 0.1s; }
.hero .reveal:nth-child(2) { animation-delay: 0.25s; }
.hero .reveal:nth-child(3) { animation-delay: 0.4s; }
.hero .reveal:nth-child(4) { animation-delay: 0.55s; }
.hero .reveal:nth-child(5) { animation-delay: 0.7s; }
@keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(32,128,141,0.3);
    border-radius: 100px;
    background: rgba(32,128,141,0.08);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(32,128,141,0.3);
}
.btn--primary:hover {
    box-shadow: 0 6px 30px rgba(0,229,255,0.35);
    transform: translateY(-2px);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--cyan);
    background: rgba(32,128,141,0.08);
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn--outline:hover {
    background: rgba(32,128,141,0.1);
    color: var(--cyan);
    border-color: var(--cyan);
}

.btn--gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0a0f1a;
}
.btn--gold:hover {
    box-shadow: 0 6px 30px rgba(245,158,11,0.35);
    transform: translateY(-2px);
    color: #0a0f1a;
}

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: var(--gradient);
    z-index: -1;
    filter: blur(12px);
    opacity: 0.4;
    transition: opacity var(--transition);
}
.btn--glow:hover::before { opacity: 0.7; }

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}
.nav--scrolled {
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
    padding: 10px 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}
.nav__logo:hover { color: var(--text); }
.nav__logo-icon { display: flex; align-items: center; }
.nav__logo-highlight { color: var(--cyan); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
}
.nav__link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav__cta { flex-shrink: 0; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}
.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
    display: none;
    flex-direction: column;
    padding: 20px 24px 24px;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav__mobile.active { display: flex; }
.nav__mobile-link {
    padding: 14px 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(30, 41, 59, 0.3);
}
.nav__mobile-link:hover { color: var(--text); }

@media (max-width: 900px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Animated mesh background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    max-width: 900px;
    max-height: 900px;
    background: conic-gradient(from 180deg at 50% 50%, rgba(32,128,141,0.25), rgba(0,229,255,0.1), rgba(16,185,129,0.08), rgba(32,128,141,0.25));
    border-radius: 50%;
    filter: blur(80px);
    animation: heroMesh 15s ease-in-out infinite;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: conic-gradient(from 0deg at 50% 50%, rgba(0,229,255,0.1), rgba(32,128,141,0.2), transparent, rgba(0,229,255,0.1));
    border-radius: 50%;
    filter: blur(80px);
    animation: heroMesh2 18s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroMesh {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(30deg) scale(1.1); }
}
@keyframes heroMesh2 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-20deg) scale(1.05); }
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cyan);
    padding: 8px 18px;
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 100px;
    background: rgba(0,229,255,0.06);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}
.hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16,185,129,0.5);
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 740px;
}

.hero__sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero__trust-label {
    font-size: 0.82rem;
    color: var(--text-dim);
    font-weight: 500;
}
.hero__trust-logos { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-logo {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    padding: 5px 12px;
    border: 1px solid rgba(30, 41, 59, 0.5);
    border-radius: 6px;
    background: rgba(17, 24, 39, 0.5);
    transition: all var(--transition);
}
.trust-logo:hover {
    border-color: var(--accent);
    color: var(--text-muted);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    padding: 48px 0;
    border-top: 1px solid rgba(30, 41, 59, 0.3);
    border-bottom: 1px solid rgba(30, 41, 59, 0.3);
    background: rgba(17, 24, 39, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.trust-bar__label {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 24px;
}
.trust-bar__track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trust-bar__slide {
    display: flex;
    gap: 40px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--transition);
}
.trust-bar__item:hover { color: var(--text-muted); }
.trust-bar__item svg { opacity: 0.5; flex-shrink: 0; }

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

/* ========================================
   HOW IT WORKS (STEPS)
   ======================================== */
.steps {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.steps__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.steps__card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}
.steps__card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-accent);
    transform: translateY(-4px);
}

.steps__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 12px;
}

.steps__icon {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(32,128,141,0.1);
    border: 1px solid rgba(32,128,141,0.2);
}

.steps__card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.steps__card-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.steps__connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    flex-shrink: 0;
}

@media (max-width: 800px) {
    .steps__grid { flex-direction: column; align-items: center; gap: 16px; }
    .steps__connector { padding-top: 0; transform: rotate(90deg); }
    .steps__card { max-width: 100%; }
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services__card {
    padding: 36px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.services__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity var(--transition);
}
.services__card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-accent);
    transform: translateY(-4px);
    background: var(--bg-surface-hover);
}
.services__card:hover::before { opacity: 1; }

.services__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(32,128,141,0.1);
    border: 1px solid rgba(32,128,141,0.2);
    margin-bottom: 20px;
}

.services__card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.services__card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services__grid { grid-template-columns: 1fr; }
}

/* ========================================
   WHY US
   ======================================== */
.why {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why__stat {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.why__stat:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-accent);
    transform: translateY(-4px);
}

.why__stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.why__stat-line {
    width: 40px;
    height: 2px;
    background: var(--gradient);
    margin: 16px auto;
    border-radius: 1px;
}

.why__stat-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .why__grid { grid-template-columns: 1fr; }
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing__card {
    padding: 40px 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}
.pricing__card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

/* Featured card */
.pricing__card--featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(32,128,141,0.08) 0%, var(--bg-surface) 100%);
    box-shadow: 0 0 60px rgba(32,128,141,0.15), 0 0 120px rgba(0,229,255,0.05);
    transform: scale(1.04);
    z-index: 2;
}
.pricing__card--featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 0 80px rgba(32,128,141,0.25), 0 0 160px rgba(0,229,255,0.08);
}

.pricing__card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--gradient);
    color: #fff;
    border-radius: 100px;
    white-space: nowrap;
}

/* Premium card */
.pricing__card--premium {
    border-color: rgba(245,158,11,0.25);
}
.pricing__card--premium:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(245,158,11,0.15);
}

.pricing__card-header { margin-bottom: 24px; }
.pricing__card-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.pricing__card-desc {
    color: var(--text-dim);
    font-size: 0.88rem;
}

.pricing__card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.pricing__amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}
.pricing__card--featured .pricing__amount {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing__card--premium .pricing__amount {
    color: var(--gold);
}
.pricing__currency {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.pricing__features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.pricing__features li svg { flex-shrink: 0; margin-top: 2px; }

/* Pricing footer */
.pricing__footer {
    margin-top: 56px;
    text-align: center;
    padding: 36px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.pricing__footer h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.pricing__footer-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
}
.pricing__footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing__card--featured { transform: none; }
    .pricing__card--featured:hover { transform: translateY(-4px); }
}

/* ========================================
   REGISTRATION
   ======================================== */
.registration {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.registration__form-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(10, 15, 26, 0.6);
    color: var(--text);
    transition: all var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(32,128,141,0.15);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-group select option {
    background: var(--bg-surface);
    color: var(--text);
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 16px;
}

.registration__success {
    text-align: center;
    padding: 32px 0;
    animation: fadeInUp 0.5s ease-out;
}
.registration__success-icon {
    margin-bottom: 20px;
    animation: successPop 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.registration__success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 12px;
}
.registration__success p {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes successPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .registration__form-wrap { padding: 28px 20px; }
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-surface);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq__item:hover { border-color: rgba(32,128,141,0.3); }
.faq__item.active { border-color: var(--accent); }

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color var(--transition);
}
.faq__question:hover { color: var(--cyan); }

.faq__chevron {
    flex-shrink: 0;
    color: var(--text-dim);
    transition: transform var(--transition), color var(--transition);
}
.faq__item.active .faq__chevron {
    transform: rotate(180deg);
    color: var(--cyan);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}
.faq__item.active .faq__answer {
    max-height: 300px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(32,128,141,0.1);
    border: 1px solid rgba(32,128,141,0.2);
    flex-shrink: 0;
}

.contact__info-item h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.contact__info-item a {
    font-size: 1rem;
    font-weight: 500;
}

.contact__socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.contact__social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: all var(--transition);
}
.contact__social:hover {
    color: var(--cyan);
    border-color: var(--accent);
    background: rgba(32,128,141,0.08);
}

.contact__form {
    padding: 36px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .contact__grid { grid-template-columns: 1fr; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
    background: rgba(10, 15, 26, 0.8);
    position: relative;
    z-index: 1;
}

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

.footer__brand { max-width: 320px; }
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__desc {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__nav h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.footer__nav a {
    color: var(--text-dim);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer__nav a:hover { color: var(--text); }

.footer__bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer__bottom p {
    color: var(--text-dim);
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer__grid { grid-template-columns: 1fr; }
}

/* ========================================
   FLOATING PARTICLES (Hero)
   ======================================== */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(17, 24, 39, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
}
.cookie-banner__text {
    margin-bottom: 1rem;
}
.cookie-banner__text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text);
}
.cookie-banner__text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}
.cookie-banner__text a {
    color: var(--primary);
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}
.cookie-btn--accept {
    background: var(--primary);
    color: #fff;
}
.cookie-btn--accept:hover {
    background: var(--secondary);
    color: var(--bg);
}
.cookie-btn--necessary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.cookie-btn--necessary:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.cookie-btn--settings {
    background: transparent;
    color: var(--text-muted);
    font-weight: 400;
    text-decoration: underline;
    padding: 0.6rem 0.5rem;
}
.cookie-btn--save {
    background: var(--cta);
    color: #fff;
    margin-top: 0.5rem;
}
.cookie-settings {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
    flex-wrap: wrap;
}
.cookie-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.cookie-toggle span {
    font-weight: 600;
}
.cookie-toggle small {
    color: var(--text-muted);
    font-size: 0.8rem;
    width: 100%;
    padding-left: 2.5rem;
    margin-top: -0.4rem;
}

/* GDPR MODAL */
.gdpr-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.gdpr-modal__content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: var(--text);
}
.gdpr-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}
.gdpr-modal__close:hover {
    color: var(--text);
}
.gdpr-modal__content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}
.gdpr-modal__content h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: var(--text);
}
.gdpr-modal__content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.gdpr-modal__content li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.gdpr-modal__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.gdpr-modal__content a {
    color: var(--primary);
}

@media (max-width: 768px) {
    .cookie-banner { padding: 1rem; }
    .cookie-banner__actions { flex-direction: column; }
    .cookie-btn { width: 100%; text-align: center; }
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.legal-page__container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-page__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    transition: all var(--transition);
    margin-bottom: 32px;
}
.legal-page__back:hover {
    color: var(--cyan);
    border-color: var(--accent);
    background: rgba(32,128,141,0.08);
}
.legal-page__back--bottom {
    margin-top: 48px;
    margin-bottom: 0;
}

.legal-page__article {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 48px 56px;
}

.legal-page__header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.legal-page__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-top: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page__meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-page__article h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    letter-spacing: -0.01em;
}

.legal-section:first-of-type h2 {
    border-top: none;
    padding-top: 0;
}

.legal-page__article h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page__article h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page__article p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-page__article ul,
.legal-page__article ol {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page__article li {
    margin-bottom: 6px;
}

.legal-page__article strong {
    color: var(--text);
    font-weight: 600;
}

.legal-page__article a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-page__article a:hover {
    color: var(--cyan);
}

.legal-table-wrap {
    overflow-x: auto;
    margin: 16px 0 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.legal-page__article table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.legal-page__article thead th {
    background: rgba(32,128,141,0.1);
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.legal-page__article tbody td {
    color: var(--text-muted);
    padding: 10px 16px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.3);
}

.legal-page__article tbody tr:last-child td {
    border-bottom: none;
}

.legal-page__article tbody tr:hover {
    background: rgba(32,128,141,0.04);
}

.legal-page__effective {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.legal-page__effective p {
    color: var(--text-dim);
    font-size: 0.88rem;
}

@media (max-width: 600px) {
    .legal-page__article {
        padding: 28px 20px 36px;
    }
    .legal-page__meta {
        flex-direction: column;
        gap: 4px;
    }
    .legal-page__article h2 {
        font-size: 1.2rem;
    }
}
