/* ─────────────────────────────────────────
   GLAGOL.AI  —  style.css
   ───────────────────────────────────────── */

/* ── FONTS ── */
@font-face {
    font-family: 'BoundedRegular';
    src: url('../fonts/Bounded-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ── VARIABLES ── */
:root {
    --ink:           #0D0D12;
    --ink-soft:      #3D3D4E;
    --ink-muted:     #7A7A8C;
    --accent:        #5B4FFF;
    --accent-dark:   #4438e8;
    --accent-bright: #7B6FFF;
    --accent-glow:   rgba(91, 79, 255, 0.18);
    --surface:       #F5F4FF;
    --surface-2:     #EDEEFF;
    --white:         #FFFFFF;
    --border:        rgba(91, 79, 255, 0.15);

    --font-display:  'BoundedRegular', 'Unbounded', sans-serif;
    --font-body:     'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius:    24px;
    --radius-lg: 40px;
    --transition: all 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overscroll-behavior-y: none; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* ── UTILITY ── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 50px 0; }

.section-eyebrow { text-align: center; margin-bottom: 12px; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--ink);
    line-height: 1.2;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--surface-2);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
}
.tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(91, 79, 255, 0.35);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(91, 79, 255, 0.45);
}
.btn-ghost {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--border);
    padding: 18px 36px;
    font-size: 17px;
}
.btn-ghost:hover { background: var(--surface); }
.btn-lg  { padding: 18px 36px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }


/* ════════════════════════════════════════
   HEADER  —  Liquid Glass (как в оригинале)
   ════════════════════════════════════════ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1160px;
    z-index: 1000;
    border-radius: 100px;
    padding: 0;

    /* Liquid glass base */
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(20px) saturate(300%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

/* Glass sheen overlay */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 100px;
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.header-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.header-logo span { color: var(--accent); }

.header-nav {
    display: flex;
    list-style: none;
    gap: 40px;
}
.header-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: var(--transition);
}
.header-nav a:hover { color: var(--accent); }

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

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-toggle span {
    display: block;
    width: 25px; height: 3px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile dropdown */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 0 30px 24px;
    position: relative;
    z-index: 1;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu ul a { font-size: 16px; font-weight: 500; color: var(--ink-soft); text-decoration: none; }
.mobile-menu ul a:hover { color: var(--accent); }
.mobile-menu .btn { align-self: flex-start; }

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 36px;
    font-weight: 300;
}

.header-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.paragraph-img {
    height: 48px;
    width: auto;
    display: block;
    text-align: center; 
    gap: 8px;
    font-size: 36px;
    font-weight: 300;
}

.paragraph-title {
    text-align: center; 
    color: var(--accent);
    align-items: center;
    gap: 8px;
    font-size: 48px;
    font-weight: 200;
    display: flex;
    justify-content: center;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(91, 79, 255, 0.08) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='%235B4FFF' fill-opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
}

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

.hero-badge { margin-bottom: 20px; }
.hero-badge .tag { animation: pulse-badge 2s ease-in-out infinite; }
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(91, 79, 255, 0.2); }
    50%       { box-shadow: 0 0 0 6px rgba(91, 79, 255, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--ink);
}
.hero-title em { font-style: normal; color: var(--accent); }

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-fine { font-size: 13px; color: var(--ink-muted); }
.hero-fine a { color: var(--accent); text-decoration: none; }

/* Score card */
.hero-visual {
    display: flex;
    justify-content: center;
}
.score-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: 0 20px 60px rgba(91, 79, 255, 0.12);
    width: 100%;
    max-width: 420px;
    animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.score-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.score-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-muted);
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
    margin-bottom: 4px;
}
.score-big {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.score-big span { font-size: 20px; color: var(--ink-muted); font-weight: 400; }
.score-progress { text-align: right; }
.score-delta { font-size: 20px; font-weight: 700; color: #2E7D32; }

.score-bars { display: flex; flex-direction: column; gap: 10px; }
.score-bar-row { display: flex; align-items: center; gap: 10px; }
.score-bar-name { font-size: 12px; color: var(--ink-soft); width: 100px; flex-shrink: 0; }
.score-bar-track {
    flex: 1; height: 6px;
    background: var(--surface-2);
    border-radius: 3px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    border-radius: 3px;
    transform-origin: left;
    animation: bar-in 1.2s ease forwards;
}
@keyframes bar-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.score-bar-val { font-size: 12px; font-weight: 600; color: var(--ink); width: 28px; text-align: right; }

.score-badge-row { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.score-badge {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}
.score-badge.warn { background: #FFF0F0; color: #E53935; }
.score-badge.ok   { background: #F0FFF4; color: #2E7D32; }


/* ── FOR WHO ── */
.forwho { background: var(--white); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.persona-card--wide { grid-column: span 1; }

.persona-card {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid transparent;
    transition: var(--transition);
}
.persona-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--accent-glow);
}
.persona-icon { font-size: 32px; margin-bottom: 14px; }
.persona-role {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.persona-text { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }


/* ── EMOTIONAL BRIDGE ── */
.bridge {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ink) 0%, #1A1730 100%);
    position: relative;
    overflow: hidden;
}
.bridge::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(91, 79, 255, 0.25) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.bridge-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.bridge-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    line-height: 1.1;
}
.bridge-title em { font-style: normal; color: var(--accent-bright); }
.bridge-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 40px;
}
.bridge-text strong { color: var(--white); font-weight: 600; }
.bridge-cta { margin-top: 40px; }


/* ── CHECKLIST ── */
.checklist-section { background: var(--white); }

.checklist-wrap { max-width: 700px; margin: 0 auto; }

.check-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}
.check-item:hover { background: var(--surface); border-color: var(--accent); }
.check-item.checked { background: var(--surface); border-color: var(--accent); }
.check-item input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}
.check-item span { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }

.check-cta { text-align: center; }
.check-fine { font-size: 13px; color: var(--ink-muted); margin-top: 12px; }


/* ── HOW IT WORKS ── */
.hiw { background: var(--surface); }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.step-card:hover { box-shadow: 0 16px 40px var(--accent-glow); }
.step-num {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: var(--surface-2);
    line-height: 1;
    margin-bottom: 16px;
    user-select: none;
}
.step-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
    letter-spacing: -0.3px;
}
.step-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.step-highlight { color: var(--accent); font-weight: 600; }

.hiw-cta { text-align: center; margin-top: 48px; }


/* ── WHY ── */
.why { background: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.why-card {
    padding: 36px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid transparent;
    transition: var(--transition);
}
.why-card:hover { border-color: var(--border); box-shadow: 0 12px 32px var(--accent-glow); }
.why-card--accent {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent) 0%, #7B6FFF 100%);
    color: var(--white);
}
.why-card--accent .why-card-title { color: var(--white); }
.why-card--accent .why-card-text  { color: rgba(255, 255, 255, 1); }
.why-icon { font-size: 28px; margin-bottom: 14px; }
.why-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ink);
    letter-spacing: -0.3px;
}
.why-card-text { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }


/* ── STATS ── */
.stats {
    padding: 80px 0;
    background: var(--ink);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--accent-bright);
    letter-spacing: -2px;
}
.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
    line-height: 1.4;
}


/* ── TIMELINE ── */
.timeline { background: var(--white); }

.timeline-items {
    display: flex;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-item {
    flex: 1;
    padding: 32px 28px;
    position: relative;
}
.timeline-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -12px; top: 36px;
    font-size: 20px;
    color: var(--border);
}
.timeline-period {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}
.timeline-title { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 8px; }
.timeline-text  { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }


/* ── PRICING ── */
.pricing {
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(91, 79, 255, 0.06) 0%, transparent 70%);
}
.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent);
    padding: 52px;
    box-shadow: 0 32px 80px rgba(91, 79, 255, 0.15);
    text-align: center;
    position: relative;
}
.pricing-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    font-family: var(--font-display);
    letter-spacing: 0.3px;
}
.pricing-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}
.pricing-sub { font-size: 15px; color: var(--ink-soft); margin-bottom: 32px; line-height: 1.6; }
.pricing-amount { margin-bottom: 8px; }
.price {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -3px;
}
.per { font-size: 18px; color: var(--ink-muted); font-weight: 400; }
.pricing-old { font-size: 15px; color: var(--ink-muted); margin-bottom: 32px; }
.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.counter { margin-top: 20px; }
.counter-label { font-size: 13px; color: var(--ink-muted); margin-bottom: 8px; }
.counter-bar {
    height: 6px;
    background: var(--surface-2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.counter-fill { height: 100%; background: var(--accent); border-radius: 3px; width: 17%; }
.counter-text { font-size: 14px; font-weight: 600; color: var(--ink); }
.counter-text span { color: var(--accent); }
.pricing-fine { font-size: 13px; color: var(--ink-muted); margin-top: 16px; line-height: 1.6; }


/* ── INTERVIEW ── */
.interview { background: var(--surface); }

.interview-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 48px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.interview-emoji { font-size: 64px; flex-shrink: 0; }
.interview-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.interview-text { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }


/* ── FAQ ── */
.faq { background: var(--white); }

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-q {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 28px 22px; font-size: 15px; color: var(--ink-soft); line-height: 1.75; }


/* ── FINAL CTA ── */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--ink) 0%, #1A1730 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(91, 79, 255, 0.2) 0%, transparent 60%);
    top: -300px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.final-cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.7;
}
.final-cta-fine { font-size: 14px; color: rgba(255, 255, 255, 0.35); margin-top: 16px; }


/* ── FOOTER ── */
.footer {
    padding: 56px 0 32px;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 12px;
}
.footer-logo span { color: var(--accent-bright); }
.footer-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.4); line-height: 1.6; }
.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 980px) {
    .header-nav { display: none; }
    .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero-inner { grid-template-columns: 1fr; }
    .score-card { max-width: 360px; }

    .cards-grid { grid-template-columns: 1fr 1fr; }
    .persona-card--wide { grid-column: span 1; }

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

    .why-grid { grid-template-columns: 1fr; }
    .why-card--accent { grid-column: span 1; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

    .timeline-items { flex-direction: column; }
    .timeline-item::after { display: none; }

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

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

@media (max-width: 640px) {
    .header {
        top: 10px;
        width: calc(100% - 20px);
    }
    .header-inner { padding: 15px 20px; }

    .cards-grid { grid-template-columns: 1fr; }
    .persona-card--wide { grid-column: span 1; }

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

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

    .pricing-card { padding: 36px 24px; }

    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-lg { font-size: 15px; padding: 16px 28px; }
}

/* ── COOKIE NOTICE ── */
#cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 16px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
#cookie-notice .cookie-notice__inner {
    pointer-events: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(91, 79, 255, 0.18);
    padding: 16px 20px;
    max-width: 640px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}
#cookie-notice p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
}
#cookie-notice a {
    color: var(--accent);
    text-decoration: underline;
}
#cookie-notice a:hover {
    text-decoration: none;
}
#cookie-notice button {
    flex-shrink: 0;
    height: 40px;
    padding: 0 20px;
    border-radius: 100px;
    border: none;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}
#cookie-notice button:hover {
    background: var(--accent-dark);
}
@media (max-width: 480px) {
    #cookie-notice .cookie-notice__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    #cookie-notice button {
        width: 100%;
    }
}

/* ── MOBILE & TABLET adjustments ── */
@media (max-width: 980px) {
    /* 1. Спрятать гамбургер-меню целиком */
    .mobile-menu-toggle,
    .mobile-menu {
        display: none !important;
    }

    /* 2. Спрятать hero-badge (плашку «Для первых 100») */
    .hero-badge {
        display: none;
    }

    /* 3. Спрятать hero-fine (мелкий текст под кнопками) */
    .hero-fine {
        display: none;
    }
}