/* ============================================================
   ГЕРКУЛЕС КЛУБ — Клуб відновлення ветеранів
   Палітра: графіт + крем + помаранчевий бренду + олива
   Шрифти: Oswald (display) + Manrope (body)
   ============================================================ */

:root {
    --bg-dark: #16181c;
    --bg-darker: #101216;
    --surface: #1e2127;
    --surface-2: #24272e;
    --cream: #f4f1ea;
    --cream-2: #ebe7dc;
    --text-light: #e8e6e0;
    --text-dark: #1a1c20;
    --text-muted: #9a988f;
    --text-muted-dark: #6c6a62;
    --accent: #f07f13;
    --accent-hover: #d96e0a;
    --accent-soft: rgba(240, 127, 19, 0.1);
    --olive: #8a8d5f;
    --olive-dark: #6f7249;
    --border: rgba(255, 255, 255, 0.1);
    --border-dark: rgba(0, 0, 0, 0.08);

    --maxw: 1180px;
    --radius: 14px;
    --radius-sm: 10px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .display {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.5px;
}

a { color: inherit; text-decoration: none; }

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(240, 127, 19, 0.3);
}
.btn-ghost {
    border-color: var(--border);
    color: var(--text-light);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-dark {
    background: var(--text-dark);
    color: var(--cream);
}
.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(16, 18, 22, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo .mark {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.logo .club { color: var(--accent); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-light); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    width: 24px; height: 2px;
    background: var(--text-light);
    transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 90px 0 100px;
    background:
        radial-gradient(circle at 80% 0%, rgba(240, 127, 19, 0.12), transparent 45%),
        radial-gradient(circle at 0% 90%, rgba(138, 141, 95, 0.1), transparent 40%),
        var(--bg-dark);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.price-chip {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 16px 12px 22px;
    font-size: 15px;
    color: var(--text-muted);
}
.price-chip strong { white-space: nowrap; }
.price-chip strong {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}
.price-chip .tag {
    background: var(--accent-soft);
    color: var(--accent);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 50px;
}

/* Hero side card */
.hero-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
}
.hero-card::before {
    content: "";
    position: absolute;
    top: 0; left: 32px; right: 32px;
    height: 3px;
    background: var(--accent);
    border-radius: 0 0 3px 3px;
}
.hero-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.hero-card .sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 22px;
}
.hero-card ul { list-style: none; }
.hero-card li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    font-size: 15px;
}
.hero-card li svg { flex-shrink: 0; margin-top: 3px; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-head {
    max-width: 680px;
    margin-bottom: 56px;
}
.section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    text-transform: uppercase;
}
.section-head p {
    color: var(--text-muted);
    font-size: 17px;
    margin-top: 16px;
}
.section-light {
    background: var(--cream);
    color: var(--text-dark);
}
.section-light .section-head p { color: var(--text-muted-dark); }
.section-light .eyebrow { color: var(--olive-dark); }
.section-light .eyebrow::before { background: var(--olive-dark); }

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.about-portrait {
    background: linear-gradient(160deg, var(--surface-2), var(--bg-darker));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.about-portrait .portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
}
.about-portrait .portrait-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(16,18,22,0.92) 0%, rgba(16,18,22,0.45) 40%, rgba(16,18,22,0) 70%);
}
.about-portrait .badge { z-index: 2; }
.about-portrait .name,
.about-portrait .role { position: relative; z-index: 2; }
.about-portrait .badge {
    position: absolute;
    top: 24px; left: 24px;
    background: var(--accent);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 6px;
}
.about-portrait .name {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    line-height: 1.1;
}
.about-portrait .role { color: var(--text-muted); font-size: 14px; margin-top: 6px; }
.about-text h2 { font-size: clamp(28px, 4vw, 42px); text-transform: uppercase; margin-bottom: 22px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-text .lead { color: var(--text-light); font-size: 18px; }

/* ---------- Membership components ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.feature {
    background: #fff;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 30px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}
.feature .ic {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature h3 {
    font-size: 21px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.feature p { color: var(--text-muted-dark); font-size: 15px; }

/* ---------- Directions ---------- */
.dir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.dir {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    position: relative;
    transition: border-color 0.25s, transform 0.25s var(--ease);
}
.dir:hover { border-color: var(--accent); transform: translateY(-4px); }
.dir .ic {
    width: 46px; height: 46px;
    color: var(--olive);
    margin-bottom: 18px;
}
.dir:hover .ic { color: var(--accent); }
.dir h3 {
    font-size: 19px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.dir p { color: var(--text-muted); font-size: 14px; }

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    counter-reset: step;
}
.step {
    position: relative;
    padding: 32px 26px;
    background: #fff;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
}
.step::before {
    counter-increment: step;
    content: "0" counter(step);
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}
.step h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.step p { color: var(--text-muted-dark); font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.price-card {
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.price-card::after {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
}
.price-card .plan {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 16px;
}
.price-card .amount {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}
.price-card .amount span { font-size: 20px; color: var(--text-muted); font-weight: 400; }
.price-card .period { color: var(--text-muted); margin: 8px 0 26px; }
.price-card ul { list-style: none; margin-bottom: 30px; }
.price-card li {
    display: flex;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid var(--border);
    font-size: 15px;
}
.price-card li svg { flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.price-card .btn { width: 100%; }
.pricing-note h2 { font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; margin-bottom: 20px; }
.pricing-note p { color: var(--text-muted); margin-bottom: 16px; }
.pricing-note .hl { color: var(--accent); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border-dark);
    padding: 4px 0;
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 24px 40px 24px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    position: relative;
    display: flex;
    align-items: center;
}
.faq-q::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 26px;
    color: var(--accent);
    transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}
.faq-a p {
    padding: 0 0 24px;
    color: var(--text-muted-dark);
    font-size: 15px;
}

/* ---------- Telegram community ---------- */
.tg-banner {
    --tg: #29a9ea;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(150deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.tg-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--tg);
}
.tg-content h2 { font-size: clamp(26px, 3.5vw, 40px); text-transform: uppercase; margin-bottom: 16px; }
.tg-content > p { color: var(--text-muted); max-width: 560px; margin-bottom: 24px; }
.tg-list { list-style: none; margin-bottom: 30px; }
.tg-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 9px 0;
    font-size: 15px;
}
.tg-list li svg { color: var(--tg); flex-shrink: 0; margin-top: 2px; }
.btn-tg { background: var(--tg); color: #fff; }
.btn-tg:hover { background: #1d8fcc; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(41, 169, 234, 0.32); }
.tg-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg);
}
.tg-glow {
    position: absolute;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(41, 169, 234, 0.25), transparent 70%);
    border-radius: 50%;
}
.tg-visual svg { position: relative; opacity: 0.92; }

@media (max-width: 768px) {
    .tg-banner { grid-template-columns: 1fr; padding: 36px 28px; }
    .tg-visual { display: none; }
}

/* Access condition highlight */
.access-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(41, 169, 234, 0.12);
    border: 1px solid rgba(41, 169, 234, 0.35);
    border-left: 4px solid var(--tg);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin: 4px 0 28px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-light);
}
.access-note svg { color: var(--tg); flex-shrink: 0; margin-top: 2px; }
.access-note strong { display: block; margin-bottom: 4px; color: #fff; }

/* Hero secondary consultation link (subordinate to primary CTA) */
.hero-consult-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    font-size: 14.5px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.hero-consult-link strong { color: var(--olive); font-weight: 600; transition: color 0.2s; }
.hero-consult-link .hcl-ic {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(138, 141, 95, 0.14);
    color: var(--olive);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.hero-consult-link:hover { color: var(--text-light); }
.hero-consult-link:hover strong { color: #a4a774; }
.hero-consult-link:hover .hcl-ic { background: rgba(138, 141, 95, 0.26); }

/* Olive button + eyebrow */
.btn-olive { background: var(--olive); color: #fff; }
.btn-olive:hover { background: var(--olive-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(138, 141, 95, 0.32); }
.eyebrow-olive { color: var(--olive-dark); }
.eyebrow-olive::before { background: var(--olive-dark); }

/* Personal consultation band */
.consult-band {
    position: relative;
    display: flex;
    align-items: center;
    gap: 34px;
    background: linear-gradient(150deg, #3a3d2a, #25271a);
    border: 1px solid rgba(138, 141, 95, 0.3);
    border-radius: var(--radius);
    padding: 44px 48px;
    overflow: hidden;
}
.consult-band::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--olive);
}
.consult-glow {
    position: absolute;
    top: -60px; right: -40px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(138, 141, 95, 0.3), transparent 70%);
    pointer-events: none;
}
.consult-icon {
    flex-shrink: 0;
    width: 96px; height: 96px;
    border-radius: 20px;
    background: rgba(138, 141, 95, 0.18);
    color: #c2c592;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.consult-text { position: relative; z-index: 1; }
.consult-text h2 { font-size: clamp(26px, 3.5vw, 38px); text-transform: uppercase; color: var(--cream); margin-bottom: 12px; }
.consult-text p { color: rgba(244, 241, 234, 0.72); max-width: 640px; margin: 0 0 24px; }
.consult-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.consult-hint { font-size: 13px; color: rgba(244, 241, 234, 0.5); max-width: 200px; }

@media (max-width: 768px) {
    .consult-band { flex-direction: column; align-items: flex-start; padding: 34px 26px; gap: 22px; }
    .consult-icon { width: 72px; height: 72px; }
    .consult-actions { width: 100%; }
    .consult-actions .btn { width: 100%; }
    .consult-hint { max-width: none; text-align: center; }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 64px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 320px; }
.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 18px;
    color: var(--text-light);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col span {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

/* Legal / requisites — verified merchant block */
.footer-legal {
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}
.footer-requisites {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer-requisites strong { color: var(--text-light); }
.footer-requisites .mcc {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 50px;
    margin-top: 6px;
}
.footer-copy {
    font-size: 13px;
    color: var(--text-muted-dark);
    text-align: right;
}

/* ---------- Legal pages (oferta / privacy / contacts) ---------- */
.page-hero {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border);
    padding: 64px 0 48px;
}
.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    text-transform: uppercase;
}
.page-hero .crumb {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
}
.page-hero .crumb a { color: var(--accent); }
.doc {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 90px;
}
.doc .rev { color: var(--text-muted); font-size: 14px; font-style: italic; margin-bottom: 30px; }
.doc h2 {
    font-size: 24px;
    text-transform: uppercase;
    margin: 38px 0 16px;
    color: var(--text-light);
}
.doc h3 { font-size: 19px; margin: 26px 0 12px; color: var(--text-light); }
.doc p { color: var(--text-muted); margin-bottom: 14px; }
.doc ul, .doc ol { color: var(--text-muted); margin: 0 0 16px 22px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent); }
.doc hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.doc .req-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 24px 26px;
    margin-top: 24px;
}
.doc .req-box strong { color: var(--text-light); }

/* Contacts page cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: transform 0.25s var(--ease), border-color 0.25s;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.contact-card .ic {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card .lbl { font-size: 13px; color: var(--text-muted); }
.contact-card .val { font-family: 'Oswald', sans-serif; font-size: 18px; }

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-portrait {
        aspect-ratio: auto;
        height: 58vh;
        min-height: 320px;
        max-height: 440px;
    }
    .about-portrait .portrait-img { object-position: center 18%; }
    .pricing { grid-template-columns: 1fr; gap: 32px; }
    .feature-grid { grid-template-columns: 1fr; }
    .dir-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 72px 0 auto 0;
        flex-direction: column;
        background: var(--bg-darker);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        gap: 6px;
        transform: translateY(-120%);
        transition: transform 0.35s var(--ease);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { padding: 12px 0; width: 100%; font-size: 17px; }
    .nav-cta .btn { display: none; }
    .burger { display: flex; }
}

@media (max-width: 560px) {
    .section { padding: 64px 0; }
    .hero { padding: 60px 0 70px; }
    .dir-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-legal { flex-direction: column; }
    .footer-copy { text-align: left; }
    .price-card { padding: 28px; }
    .hero-actions .btn { width: 100%; }
}
