/* ═══════════════════════════════════════════════════════════════
   Бухгалтерська агенція ЛЕВ — lev.1krok.link
   Палітра: мохово-зелений + золото на теплому кремовому
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS variables ────────────────────────────────────────── */
:root {
    /* Бренд */
    --green: #468966;
    --green-dark: #174B23;
    --green-deep: #0F3318;
    --green-light: #5FA078;
    --green-pale: #E8EFE9;

    /* CTA-акцент */
    --gold: #D4A04C;
    --gold-dark: #B08234;
    --gold-light: #F4E0B5;

    /* Нейтральні */
    --bg: #FAF7F0;
    --bg-card: #FFFFFF;
    --text: #1A2E22;
    --text-muted: #5A6B62;
    --border: #E5DFD0;
    --error: #C84B31;

    /* Радіуси */
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Тіні */
    --shadow-sm: 0 2px 6px rgba(23, 75, 35, 0.06);
    --shadow: 0 6px 18px rgba(23, 75, 35, 0.08);
    --shadow-lg: 0 14px 44px rgba(23, 75, 35, 0.12);

    /* Шрифти */
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Layout */
    --nav-h: 72px;
    --max: 1200px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea {
    font: inherit;
    color: inherit;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text); }

/* ─── Reveal animation ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ─── Layout primitives ──────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 96px 0;
}
.section-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}
.eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-dark);
    margin-bottom: 16px;
}
.eyebrow.eyebrow-warning {
    color: var(--error);
}
.section-head p {
    color: var(--text-muted);
    font-size: 1.08rem;
    margin-top: 14px;
    line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: var(--r);
    border: 2px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
    line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 6px 18px rgba(212, 160, 76, 0.32);
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 10px 26px rgba(212, 160, 76, 0.42); }

.btn-ghost {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--green);
}
.btn-ghost:hover { background: var(--green); color: #fff; }

.btn-white {
    background: #fff;
    color: var(--green-dark);
}
.btn-white:hover { background: var(--green-pale); }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ─── 1. NAV ─────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}
.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-logo-svg {
    width: 42px;
    height: 42px;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-logo-text strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--green-dark);
}
.nav-logo-text span {
    font-size: 0.74rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
.nav-menu {
    display: flex;
    gap: 28px;
}
.nav-menu a {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
    transition: color 0.18s ease;
    position: relative;
}
.nav-menu a:hover { color: var(--green); }
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.25s ease;
}
.nav-menu a:hover::after { width: 100%; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-phone {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.15;
}
.nav-phone-num {
    font-weight: 700;
    color: var(--green-dark);
    font-size: 0.98rem;
}
.nav-phone-hours {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.nav-cta { padding: 11px 18px; font-size: 0.9rem; }

.burger {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: transform 0.25s ease;
}

/* ─── 2. MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.32s ease;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 32px;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--green-dark);
    border-radius: 50%;
}
.mobile-close:hover { background: var(--green-pale); }
.mobile-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}
.mobile-list a {
    display: block;
    padding: 14px 4px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.mobile-list a:hover { color: var(--green); }
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* ─── 3. HERO ────────────────────────────────────────────── */
.hero {
    padding: calc(var(--nav-h) + 56px) 0 80px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--green-pale) 100%);
    overflow: hidden;
}
.hero-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(70, 137, 102, 0.12);
    color: var(--green-dark);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 22px;
}
.hero-title {
    margin-bottom: 22px;
    color: var(--text);
}
.hero-sub {
    font-size: 1.18rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 580px;
}
.hero-sub strong { color: var(--green-dark); }
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.hero-trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}
.hero-trust-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    height: 460px;
}
.hero-bg-shape {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: var(--r-xl);
    box-shadow: 0 30px 70px rgba(23, 75, 35, 0.28);
}
.hero-bg-shape::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(212, 160, 76, 0.4), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-card {
    position: absolute;
    background: #fff;
    padding: 18px 22px;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    display: flex;
    gap: 14px;
    align-items: center;
    width: 280px;
    animation: floatHero 4.5s ease-in-out infinite;
}
.hero-card-icon {
    font-size: 1.7rem;
    flex-shrink: 0;
}
.hero-card strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 3px;
}
.hero-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.hero-card-1 { top: 8%;  left: -8%; animation-delay: 0s; }
.hero-card-2 { top: 42%; right: -10%; animation-delay: 1.2s; }
.hero-card-3 { bottom: 8%; left: 8%; animation-delay: 2.4s; }

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

/* ─── 4. PAINS ───────────────────────────────────────────── */
.pains {
    padding: 96px 0;
    background: var(--bg);
}
.pains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 56px;
}
.pain-item {
    background: #fff;
    border-radius: var(--r);
    padding: 22px 24px 22px 22px;
    border-left: 4px solid var(--error);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.pain-mark {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(200, 75, 49, 0.12);
    color: var(--error);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}
.pain-item p {
    color: var(--text);
    line-height: 1.55;
    font-size: 0.96rem;
}

.pains-bridge {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 44px 48px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(23, 75, 35, 0.18);
}
.pains-bridge h3 {
    color: #fff;
    margin-bottom: 16px;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
}
.pains-bridge p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

/* ─── 5. SERVICES ────────────────────────────────────────── */
.services {
    padding: 96px 0;
    background: var(--green-pale);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.service-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.service-card-featured {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 160, 76, 0.18);
}
.service-badge {
    position: absolute;
    top: -12px;
    right: 22px;
    background: var(--gold);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.service-card-featured .service-icon {
    background: var(--gold-light);
    color: var(--gold-dark);
}
.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}
.service-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.service-list {
    margin-bottom: 22px;
    flex: 1;
}
.service-list li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 0.92rem;
    color: var(--text);
}
.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--green);
    font-weight: 800;
}
.service-link {
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }

/* ─── 6. CALCULATOR ──────────────────────────────────────── */
.calc-section {
    padding: 96px 0;
    background: var(--bg);
}
.calc-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}
.calc-form {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}
.calc-q {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px dashed var(--border);
}
.calc-q:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.calc-q h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
}
.calc-q h3 small {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.calc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
}
.calc-options {
    display: grid;
    gap: 10px;
}
.calc-options-2 { grid-template-columns: repeat(2, 1fr); }
.calc-options-3 { grid-template-columns: repeat(3, 1fr); }
.calc-options-4 { grid-template-columns: repeat(4, 1fr); }
.calc-checks {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.calc-opt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    background: #f4f1e8;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    user-select: none;
}
.calc-opt input { display: none; }
.calc-opt:has(input:checked) {
    background: var(--green);
    color: #fff;
}
.calc-check {
    justify-content: flex-start;
    text-align: left;
}
.calc-check span {
    position: relative;
    padding-left: 28px;
}
.calc-check span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: #fff;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.calc-check:has(input:checked) span::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-55%);
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
}
.calc-check:has(input:checked) span::before {
    background: var(--green);
    border-color: var(--green);
}

.calc-result {
    position: sticky;
    top: calc(var(--nav-h) + 16px);
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: 0 20px 50px rgba(23, 75, 35, 0.22);
    overflow: hidden;
    position: sticky;
}
.calc-result::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(212, 160, 76, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.calc-result-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    position: relative;
}
.calc-result h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.35rem;
    position: relative;
}
.calc-result-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    margin-bottom: 26px;
    position: relative;
}
.calc-price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    position: relative;
}
.calc-price-from {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
    position: relative;
}
.calc-price-unit { font-size: 1.4rem; vertical-align: 0.18em; margin-left: 4px; color: rgba(244, 224, 181, 0.85); }

.calc-includes {
    margin-bottom: 24px;
    position: relative;
}
.calc-includes li {
    padding: 7px 0 7px 26px;
    position: relative;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
}
.calc-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--gold-light);
    font-weight: 800;
}
.calc-result .btn {
    position: relative;
    width: 100%;
}
.calc-note {
    position: relative;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    margin-top: 16px;
    line-height: 1.5;
}

/* ─── 7. PROCESS ─────────────────────────────────────────── */
.process {
    padding: 96px 0;
    background: var(--green-pale);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 44px;
}
.process-step {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.process-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
    display: block;
}
.process-step h3 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    margin-bottom: 10px;
}
.process-step p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}
.process-cta {
    background: #fff;
    border: 2px dashed var(--green);
    border-radius: var(--r-lg);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.process-cta p {
    font-size: 1.08rem;
    color: var(--green-dark);
    font-weight: 600;
    max-width: 640px;
    margin: 0;
}

/* ─── 8. AUDIENCE ────────────────────────────────────────── */
.audience {
    padding: 96px 0;
    background: var(--bg);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}
.audience-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.audience-emoji {
    font-size: 2.4rem;
    margin-bottom: 14px;
    line-height: 1;
}
.audience-card h3 {
    font-family: var(--font-body);
    font-size: 1.04rem;
    margin-bottom: 10px;
}
.audience-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.audience-tags {
    background: var(--green-pale);
    border-radius: var(--r-lg);
    padding: 28px 36px;
    text-align: center;
}
.audience-tags h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 16px;
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.tag {
    background: #fff;
    color: var(--green-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

/* ─── 9. VALUES ──────────────────────────────────────────── */
.values {
    padding: 96px 0;
    background: var(--green-pale);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.value-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.value-emoji {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}
.value-card h3 {
    font-family: var(--font-body);
    font-size: 1.04rem;
    margin-bottom: 8px;
}
.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ─── 10. GUARANTEES ─────────────────────────────────────── */
.guarantees {
    padding: 96px 0;
    background: var(--bg);
}
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.guarantee-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 30px 26px;
    border: 2px solid var(--green-pale);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.22s ease, transform 0.22s ease;
}
.guarantee-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
}
.guarantee-emoji {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}
.guarantee-card h3 {
    font-family: var(--font-body);
    font-size: 1.08rem;
    margin-bottom: 10px;
    color: var(--green-dark);
}
.guarantee-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ─── 11. REVIEWS ────────────────────────────────────────── */
.reviews {
    padding: 96px 0;
    background: var(--green-pale);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.review-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
}
.review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    flex-shrink: 0;
}
.review-avatar-1 { background: var(--green); }
.review-avatar-2 { background: var(--green-dark); }
.review-avatar-3 { background: var(--green-light); }
.review-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.review-meta strong {
    font-size: 0.98rem;
    color: var(--text);
}
.review-meta span {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.review-stars {
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.review-card p {
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.65;
}
.reviews-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.reviews-note a {
    color: var(--green-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* ─── 12. FAQ ────────────────────────────────────────────── */
.faq {
    padding: 96px 0;
    background: var(--bg);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    font-size: 1rem;
    line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    transition: transform 0.22s ease, background 0.22s ease;
}
.faq-item[open] summary::after {
    content: '−';
    background: var(--green);
    color: #fff;
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 22px 22px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.96rem;
}
.faq-answer a {
    color: var(--green-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* ─── 13. CTA + FORM ─────────────────────────────────────── */
.cta-section {
    padding: 96px 0;
    background: linear-gradient(140deg, var(--green-dark) 0%, var(--green-deep) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 160, 76, 0.16), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
}
.cta-left .eyebrow {
    color: var(--gold-light);
}
.cta-left h2 {
    color: #fff;
    margin-bottom: 18px;
}
.cta-left > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.cta-bullets {
    margin-bottom: 32px;
}
.cta-bullets li {
    position: relative;
    padding: 9px 0 9px 32px;
    color: rgba(255, 255, 255, 0.92);
}
.cta-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 9px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-or {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.cta-or-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
    font-size: 0.92rem;
}
.cta-direct {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-card {
    background: #fff;
    color: var(--text);
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.form-card h3 {
    margin-bottom: 22px;
    font-size: 1.4rem;
}
.form-row {
    margin-bottom: 14px;
}
.form-row label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 13px 14px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.98rem;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--green);
    background: #fff;
}
.form-row textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}
.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.form-card .btn {
    width: 100%;
    margin-top: 6px;
}
.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-top: 12px;
    text-align: center;
}
.form-status {
    margin-top: 14px;
    font-size: 0.92rem;
    text-align: center;
    min-height: 18px;
}
.form-status-error { color: var(--error); }
.form-status-ok { color: var(--green); }

/* ─── 14. FOOTER ─────────────────────────────────────────── */
.footer {
    background: var(--green-deep);
    color: rgba(255, 255, 255, 0.78);
    padding: 64px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-brand-logo strong {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1.3rem;
}
.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}
.footer h4 {
    font-family: var(--font-body);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 18px;
}
.footer ul li {
    padding: 5px 0;
    font-size: 0.94rem;
}
.footer ul li a:hover { color: #fff; }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer-partner a {
    color: var(--gold-light);
    font-weight: 600;
}
.footer-partner a:hover { color: #fff; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .burger { display: flex; }
    .nav-phone-hours { display: none; }
    .nav-cta { display: none; }

    .hero-wrap { grid-template-columns: 1fr; }
    .hero-visual { height: 360px; margin-top: 16px; }
    .hero-card { width: 240px; }
    .hero-card-1 { left: 0%; }
    .hero-card-2 { right: 0%; }
    .hero-card-3 { left: 16%; }
    .hero-trust { grid-template-columns: repeat(2, 1fr); }

    .pains-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-wrap { grid-template-columns: 1fr; }
    .calc-result { position: relative; top: auto; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .cta-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section,
    .pains, .services, .calc-section, .process,
    .audience, .values, .guarantees, .reviews, .faq, .cta-section {
        padding: 64px 0;
    }
    .section-head { margin-bottom: 40px; }

    .nav-phone { display: none; }
    .nav-logo-text span { display: none; }

    .hero { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 56px; }
    .hero-ctas .btn { width: 100%; }
    .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-trust-item strong { font-size: 1.1rem; }
    .hero-visual { height: 320px; }
    .hero-card { width: 220px; padding: 14px 16px; }
    .hero-card strong { font-size: 0.88rem; }
    .hero-card span { font-size: 0.74rem; }

    .pains-bridge { padding: 32px 24px; }
    .calc-form { padding: 24px; }
    .calc-options-3, .calc-options-4, .calc-checks {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-cta { flex-direction: column; text-align: center; }
    .form-card { padding: 28px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.55rem; }
    .pains-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .guarantees-grid { grid-template-columns: 1fr; }
    .calc-options-2, .calc-options-3, .calc-options-4, .calc-checks {
        grid-template-columns: 1fr;
    }
    .hero-card-1 { left: -4%; width: 200px; }
    .hero-card-2 { right: -4%; width: 200px; }
    .hero-card-3 { left: 10%; width: 200px; }
    .hero-visual { height: 280px; }
    .calc-price { font-size: 2.4rem; }
    .footer { padding: 48px 0 20px; }
}
