/* ============================================================
   Lev Maltsev — Computer Repair Master
   Light, calm, trust-driven design with deep blue + green accents.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    /* Palette — белый/тёмно-синий/графит/светло-серый + мягкий синий и зелёный */
    --white: #FFFFFF;
    --bg: #F7F9FC;
    --bg-elev: #FFFFFF;
    --surface-2: #EEF2F8;
    --border: #E2E8F0;
    --border-strong: #CBD5E1;

    --ink-1: #0F2240;   /* тёмно-синий, основной текст и hero */
    --ink-2: #1E3A5F;
    --ink-3: #475569;   /* графит */
    --ink-4: #64748B;
    --ink-5: #94A3B8;

    --accent: #2E6BE6;      /* мягкий синий */
    --accent-hover: #1F54C0;
    --accent-soft: #E5EEFE;

    --green: #14A371;
    --green-hover: #0F8159;
    --green-soft: #DCFCE7;

    --warn: #F59E0B;
    --danger: #DC2626;

    /* Typography */
    --font-display: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container: 1200px;
    --pad: 24px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(15, 34, 64, 0.05);
    --shadow-md: 0 4px 14px -2px rgba(15, 34, 64, 0.08);
    --shadow-lg: 0 16px 40px -8px rgba(15, 34, 64, 0.12);
    --shadow-xl: 0 28px 60px -12px rgba(15, 34, 64, 0.18);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
    --duration: 0.35s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-2);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--ink-1); margin: 0; line-height: 1.2; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ---------- Common atoms ---------- */
.kicker {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.kicker--light {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 18px 0 0;
}
.section-title--light { color: var(--white); }

.section-sub {
    font-size: 18px;
    color: var(--ink-3);
    margin: 18px 0 0;
    line-height: 1.65;
}

.ico { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    text-align: center;
    transition: transform 0.2s var(--easing), box-shadow 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 18px -4px rgba(46, 107, 230, 0.45);
}
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 10px 26px -6px rgba(46, 107, 230, 0.55); }

.btn--green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 6px 18px -4px rgba(20, 163, 113, 0.45);
}
.btn--green:hover { background: var(--green-hover); }

.btn--outline {
    background: var(--bg-elev);
    color: var(--ink-1);
    border: 1.5px solid var(--border-strong);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); }

.btn--telegram {
    background: #229ED9;
    color: var(--white);
    box-shadow: 0 6px 18px -4px rgba(34, 158, 217, 0.45);
}
.btn--telegram:hover { background: #1A85B6; box-shadow: 0 10px 26px -6px rgba(34, 158, 217, 0.55); }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--ink-1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 9px 0;
}
.topbar__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item .ico { color: rgba(255, 255, 255, 0.7); }
.topbar__item--accent { color: #7DDDB6; }
.topbar__item--accent .ico { color: var(--green); }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.header.is-scrolled { box-shadow: var(--shadow-md); }

.header__row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 16px 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.logo__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--ink-1), var(--accent));
    color: var(--white);
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    box-shadow: var(--shadow-md);
}
.logo__text { display: flex; flex-direction: column; gap: 2px; }
.logo__title { font-family: var(--font-display); font-weight: 800; color: var(--ink-1); font-size: 17px; line-height: 1; }
.logo__sub { font-size: 12px; color: var(--ink-4); }

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}
.nav a {
    color: var(--ink-2);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 6px 0;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--easing);
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { width: 100%; }

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 100px;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.header__phone:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
}
.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink-1);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface-2) 100%);
    padding: 60px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(15, 34, 64, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 34, 64, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}
.hero__glow--1 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -100px; left: -120px;
}
.hero__glow--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    bottom: -150px; right: -100px;
    opacity: 0.4;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
    box-shadow: var(--shadow-sm);
}
.hero__dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(20, 163, 113, 0.2);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(20, 163, 113, 0.2); }
    50%      { box-shadow: 0 0 0 8px rgba(20, 163, 113, 0); }
}

.hero__title {
    margin-top: 22px;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink-1);
}
.hero__title-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__sub {
    margin-top: 20px;
    font-size: clamp(17px, 1.6vw, 19px);
    color: var(--ink-3);
    line-height: 1.6;
    max-width: 580px;
}

.hero__offer {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--bg-elev);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.55;
}
.hero__offer strong { display: block; color: var(--ink-1); font-size: 19px; font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 36px;
    font-size: 14px;
    color: var(--ink-4);
}
.hero__tags li {
    position: relative;
    padding-left: 18px;
}
.hero__tags li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Hero card */
.hero__card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.hero__card-head { display: flex; align-items: center; gap: 16px; }
.hero__avatar { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
.hero__avatar svg { width: 100%; height: 100%; border-radius: 50%; }
.hero__avatar-pulse {
    position: absolute;
    right: 4px; bottom: 4px;
    width: 14px; height: 14px;
    background: var(--green);
    border: 3px solid var(--bg-elev);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(20, 163, 113, 0.3);
    animation: pulseDot 2s infinite;
}
.hero__card-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-1); }
.hero__card-role { font-size: 13px; color: var(--ink-4); margin-top: 2px; }

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 24px 0;
    margin: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.hero__stat { text-align: center; }
.hero__stat-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--ink-1);
    letter-spacing: -0.02em;
}
.hero__stat-label { font-size: 12px; color: var(--ink-4); margin-top: 2px; }

.hero__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-2);
}
.check {
    display: inline-grid;
    place-items: center;
    width: 22px; height: 22px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

/* ---------- Trust block ---------- */
.trust {
    padding: 100px 0;
    background: var(--bg-elev);
}
.trust__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.trust__lead {
    font-size: 18px;
    color: var(--ink-3);
    line-height: 1.7;
}
.trust__lead p { margin: 0 0 16px; }
.trust__lead strong { color: var(--ink-1); font-weight: 600; }
.trust__lead em {
    font-style: normal;
    background: linear-gradient(180deg, transparent 65%, var(--green-soft) 65%);
    padding: 0 4px;
    font-weight: 600;
    color: var(--ink-1);
}

.trust__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.trust__list li {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.trust__list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.trust__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
}
.trust__icon svg { width: 24px; height: 24px; }
.trust__icon--1 { background: var(--accent-soft); color: var(--accent); }
.trust__icon--2 { background: var(--green-soft); color: var(--green); }
.trust__icon--3 { background: #FEF3C7; color: #B45309; }
.trust__icon--4 { background: #EDE9FE; color: #6D28D9; }
.trust__icon--5 { background: var(--green-soft); color: var(--green); }
.trust__icon--6 { background: var(--accent-soft); color: var(--accent); }

.trust__list h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.trust__list p { font-size: 14px; color: var(--ink-4); margin: 0; line-height: 1.5; }

/* ---------- Services ---------- */
.services { padding: 100px 0; background: var(--bg); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--easing), box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
}
.service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 107, 230, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.service:hover::before { opacity: 1; }
.service:hover .service__icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(-6deg) scale(1.08);
}

.service__icon {
    width: 56px; height: 56px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: all 0.3s var(--easing);
}
.service__icon svg { width: 28px; height: 28px; }

.service h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.service ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--ink-3);
    padding: 6px 0;
}
.service ul li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--ink-5);
    border-radius: 50%;
    flex-shrink: 0;
}

.services__cta {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, var(--ink-1) 0%, var(--ink-2) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.services__cta p { margin: 0; font-size: 18px; font-weight: 500; }

/* ---------- Process ---------- */
.process {
    padding: 100px 0;
    background: var(--bg-elev);
}
.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
.process__steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border-strong) 0, var(--border-strong) 6px, transparent 6px, transparent 14px);
    z-index: 0;
}
.process__step {
    position: relative;
    z-index: 1;
    background: var(--bg);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.process__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.process__num {
    width: 56px; height: 56px;
    background: var(--ink-1);
    color: var(--white);
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px -4px rgba(15, 34, 64, 0.35);
}
.process__step:nth-child(2) .process__num { background: var(--accent); box-shadow: 0 8px 20px -4px rgba(46, 107, 230, 0.45); }
.process__step:nth-child(3) .process__num { background: var(--accent-hover); box-shadow: 0 8px 20px -4px rgba(31, 84, 192, 0.5); }
.process__step:nth-child(4) .process__num { background: var(--green); box-shadow: 0 8px 20px -4px rgba(20, 163, 113, 0.5); }

.process__step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.process__step p { font-size: 14px; color: var(--ink-4); margin: 0; line-height: 1.55; }

/* ---------- Advantage ---------- */
.advantage {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ink-1) 0%, #0a1a30 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.advantage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 400px at 80% 20%, rgba(46, 107, 230, 0.25), transparent),
        radial-gradient(circle 400px at 20% 80%, rgba(20, 163, 113, 0.18), transparent);
    pointer-events: none;
}
.advantage__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}
.advantage__lead {
    margin-top: 24px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}
.advantage__fears {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.advantage__fear,
.advantage__win {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
}
.advantage__fear-x {
    display: grid;
    place-items: center;
    width: 24px; height: 24px;
    background: rgba(220, 38, 38, 0.2);
    color: #FCA5A5;
    border-radius: 6px;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 14px;
}
.advantage__win-ok {
    display: grid;
    place-items: center;
    width: 24px; height: 24px;
    background: rgba(20, 163, 113, 0.25);
    color: #7DDDB6;
    border-radius: 6px;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 14px;
}
.advantage__bridge {
    margin: 28px 0 16px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}
.advantage__wins {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.advantage__quote {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(8px);
}
.advantage__qmark {
    width: 50px; height: 50px;
    color: var(--accent);
    margin-bottom: 14px;
}
.advantage__quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--white);
}
.advantage__sig {
    margin-top: 22px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
}

/* ---------- Reviews ---------- */
.reviews { padding: 100px 0; background: var(--bg); }
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.review {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review__stars { color: #F59E0B; letter-spacing: 2px; font-size: 17px; margin-bottom: 14px; }
.review__stav { display: none; }  /* стилевой fallback на случай опечатки в HTML */
.review__text { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0 0 24px; }
.review__author { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--border); }
.review__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.review__avatar--1 { background: linear-gradient(135deg, #2E6BE6, #1E3A8A); }
.review__avatar--2 { background: linear-gradient(135deg, #14A371, #0F8159); }
.review__avatar--3 { background: linear-gradient(135deg, #6D28D9, #4C1D95); }
.review__avatar--4 { background: linear-gradient(135deg, #DC2626, #991B1B); }
.review__name { font-weight: 700; color: var(--ink-1); font-size: 15px; }
.review__meta { font-size: 13px; color: var(--ink-4); margin-top: 2px; }

.reviews__cta {
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-elev);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    text-align: center;
    color: var(--ink-3);
    font-size: 15px;
}
.reviews__links { display: inline-flex; gap: 20px; margin-left: 10px; }
.reviews__links a { color: var(--accent); font-weight: 600; }
.reviews__links a:hover { color: var(--accent-hover); text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: var(--bg-elev); }
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.faq__item summary {
    list-style: none;
    padding: 22px 24px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink-1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, background 0.3s;
}
.faq__item[open] summary { color: var(--accent); }
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq__item p {
    padding: 0 24px 22px;
    margin: 0;
    color: var(--ink-3);
    line-height: 1.65;
}

/* ---------- Blog teaser ---------- */
.blog-teaser { padding: 100px 0; background: var(--bg); }
.blog-teaser__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 12px;
}

.article-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s var(--easing), box-shadow 0.3s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card:hover .article-card__cover { transform: scale(1.05); }

.article-card__cover {
    height: 180px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--ink-1) 100%);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--easing);
}
.article-card__cover::before,
.article-card__cover::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.article-card__cover::before { width: 120px; height: 120px; background: var(--green); top: -30px; right: -30px; opacity: 0.6; }
.article-card__cover::after  { width: 100px; height: 100px; background: var(--white); bottom: -20px; left: -20px; opacity: 0.3; }

.article-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.article-card__date {
    font-size: 13px;
    color: var(--ink-4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.article-card__title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--ink-1);
}
.article-card__excerpt {
    font-size: 14px;
    color: var(--ink-3);
    margin: 0 0 20px;
    line-height: 1.55;
    flex: 1;
}
.article-card__link {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

.blog-teaser__more { text-align: center; margin-top: 48px; }

/* ---------- Contact ---------- */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ink-1) 0%, #0a1a30 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 350px at 10% 20%, rgba(46, 107, 230, 0.25), transparent),
        radial-gradient(circle 350px at 90% 90%, rgba(20, 163, 113, 0.2), transparent);
    pointer-events: none;
}

.contact__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__lead {
    margin-top: 22px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.contact__channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}
.contact__channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.contact__channel:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}
.contact__channel-icon {
    width: 44px; height: 44px;
    background: rgba(46, 107, 230, 0.2);
    color: var(--accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact__channel-icon svg { width: 22px; height: 22px; }
.contact__channel-name { font-size: 12px; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: 0.05em; }
.contact__channel-value { font-weight: 600; color: var(--white); margin-top: 2px; font-size: 15px; }

.contact__area {
    margin-top: 36px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
}
.contact__area-title { font-family: var(--font-display); font-weight: 700; color: var(--white); margin-bottom: 6px; font-size: 16px; }
.contact__area p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 14px; }

/* Form */
.form {
    background: var(--white);
    color: var(--ink-2);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
    position: relative;
}
.form__head { margin-bottom: 28px; }
.form__head h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.form__head p { margin: 0; color: var(--ink-4); font-size: 14px; }

.form__field { margin-bottom: 18px; }
.form__field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    margin-bottom: 8px;
}
.form__opt { color: var(--ink-5); font-weight: 400; }

.form__field input,
.form__field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink-1);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    resize: vertical;
}
.form__field input:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(46, 107, 230, 0.12);
}
.form__field textarea { min-height: 100px; }

.form__legal {
    margin-top: 16px;
    font-size: 12px;
    color: var(--ink-5);
    line-height: 1.5;
    text-align: center;
}

.form__result {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
}
.form__result.is-ok { background: var(--green-soft); color: var(--green-hover); border: 1px solid #A7F3D0; }
.form__result.is-err { background: #FEE2E2; color: var(--danger); border: 1px solid #FECACA; }

/* ---------- Footer ---------- */
.footer {
    background: #0a1a30;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 24px;
}
.footer__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer__col h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer__col ul li { padding: 5px 0; }
.footer__col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.logo--footer { margin-bottom: 18px; }
.logo--footer .logo__title { color: var(--white); }
.logo--footer .logo__sub { color: rgba(255, 255, 255, 0.5); }

.footer__about { font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, 0.55); max-width: 320px; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}
.footer__credit { font-style: italic; }

/* ---------- Floating call ---------- */
.float-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    width: 60px; height: 60px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px -5px rgba(20, 163, 113, 0.5);
    transition: transform 0.25s, background 0.25s;
}
.float-call:hover { background: var(--green-hover); transform: scale(1.08); }
.float-call svg { width: 26px; height: 26px; }
.float-call__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--green);
    animation: floatPulse 2s infinite;
}
@keyframes floatPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--easing), transform 0.6s var(--easing); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-visible { transform: none; transition: opacity 0.3s; }
    .hero__dot, .hero__avatar-pulse, .float-call__pulse { animation: none; }
}

/* ===== Admin-controlled block ordering ===== */
.site-blocks {
    display: flex;
    flex-direction: column;
}

.hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

/* ===== Custom scrollbar ===== */
html {
    scrollbar-width: thin;
    scrollbar-color: #56C596 #0B1220;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0B1220;
}

::-webkit-scrollbar-thumb {
    border: 3px solid #0B1220;
    border-radius: 999px;
    background: linear-gradient(180deg, #56C596, #7AA7FF);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7FE0B5, #A9C4FF);
}

.article-card__cover--image,
.article-cover-banner--image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
