/* lev.1krok.link – стилі.
   Брендова палітра: глибокий зелений + тепле тло.
   Без зайвих CSS-фреймворків, все вручну. */

:root {
    --ink: #1b2722;
    --muted: #67746e;
    --line: #e1dccb;
    --cream: #fbf7ee;
    --paper: #ffffff;
    --green: #2f5d3f;
    --green-dark: #163322;
    --green-soft: #e9efe8;
    --accent: #a87528;
    --accent-soft: #f1e4c8;
    --danger: #b94830;

    --r: 6px;
    --r-lg: 12px;

    --nav-h: 70px;
    --maxw: 1140px;

    --serif: 'Lora', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16.5px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--green-dark);
    text-decoration: underline;
    text-decoration-color: rgba(47, 93, 63, 0.35);
    text-underline-offset: 3px;
    transition: color .15s, text-decoration-color .15s;
}
a:hover {
    color: var(--green);
    text-decoration-color: var(--green);
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.22;
    color: var(--ink);
    margin: 0 0 0.4em;
    letter-spacing: -0.005em;
}
h1 { font-size: clamp(1.95rem, 4.4vw, 3.1rem); font-weight: 600; }
h2 { font-size: clamp(1.55rem, 3.3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p {
    margin: 0 0 1em;
}

ul, ol {
    margin: 0 0 1em;
    padding-left: 1.25em;
}

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

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.show {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}

/* ── Кнопки ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--r);
    font-weight: 600;
    font-size: 0.96rem;
    line-height: 1.2;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
    font-family: var(--sans);
}
.btn-solid {
    background: var(--green);
    color: #fff;
    text-decoration: none;
}
.btn-solid:hover {
    background: var(--green-dark);
    color: #fff;
    text-decoration: none;
}
.btn-line {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--green);
    text-decoration: none;
}
.btn-line:hover {
    background: var(--green);
    color: #fff;
}
.btn-amber {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}
.btn-amber:hover {
    background: #855b1c;
    color: #fff;
}
.btn-block {
    display: flex;
    width: 100%;
}
.btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
}

/* ── NAV ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-h);
    background: rgba(251, 247, 238, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.nav-row {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
}
.nav-brand:hover { text-decoration: none; }
.nav-mark {
    width: 42px;
    height: 42px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}
.nav-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
}
.nav-name small {
    display: block;
    font-family: var(--sans);
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.01em;
}
.nav-links {
    display: flex;
    gap: 22px;
    margin-left: auto;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.94rem;
}
.nav-links a:hover {
    color: var(--green);
    text-decoration: underline;
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-tel {
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
}
.nav-tel:hover { text-decoration: underline; }

.burger {
    display: none;
    width: 36px;
    height: 36px;
    padding: 0;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px auto;
    transition: transform .2s;
}

/* Мобільне меню */
.mob {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--cream);
    transform: translateY(-100%);
    transition: transform .25s ease;
    padding: 20px 24px 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mob.open {
    transform: none;
}
.mob-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.mob-close {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    color: var(--ink);
}
.mob-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.mob-list li {
    border-bottom: 1px solid var(--line);
}
.mob-list a {
    display: block;
    padding: 14px 4px;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.1rem;
}
.mob-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── HERO ── */
.hero {
    padding: 72px 0 80px;
    background: linear-gradient(180deg, var(--cream) 0%, #f4eedd 100%);
    border-bottom: 1px solid var(--line);
}
.hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}
.hero h1 {
    margin-bottom: 20px;
}
.hero-lead {
    font-size: 1.13rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.62;
    max-width: 540px;
}
.hero-lead strong {
    color: var(--ink);
    font-weight: 600;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-facts {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    font-size: 0.92rem;
    color: var(--muted);
}
.hero-facts b {
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 600;
    margin-right: 6px;
}

/* Hero ілюстрація / картка */
.hero-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: 0 16px 40px rgba(22, 51, 34, 0.06);
    position: relative;
}
.hero-card-tag {
    position: absolute;
    top: -14px;
    left: 28px;
    background: var(--green);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero-card h3 {
    font-family: var(--sans);
    font-size: 0.94rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    font-weight: 600;
    margin: 0 0 18px;
}
.hero-card-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--line);
}
.hero-card-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.hero-card-row b {
    font-family: var(--serif);
    font-size: 1.08rem;
    color: var(--ink);
    font-weight: 600;
}
.hero-card-row span {
    color: var(--muted);
    font-size: 0.92rem;
}
.hero-card-note {
    margin-top: 22px;
    font-size: 0.82rem;
    color: var(--muted);
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-style: italic;
}

/* ── Загальні секції ── */
section {
    padding: 80px 0;
}
.s-head {
    margin-bottom: 48px;
    max-width: 720px;
}
.s-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.s-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 14px;
}
.s-head p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── Хто ми ── */
.about {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 56px;
    align-items: start;
}
.about-portrait {
    background: var(--green-soft);
    border-radius: var(--r-lg);
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
    color: var(--green-dark);
    font-family: var(--serif);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.about-portrait::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(47, 93, 63, 0.12), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(168, 117, 40, 0.1), transparent 50%);
}
.about-portrait span {
    position: relative;
    font-size: 3.5rem;
}
.about-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(22, 51, 34, 0.78), transparent);
    color: #fff;
    padding: 24px 22px 18px;
    font-family: var(--sans);
    font-size: 0.92rem;
    line-height: 1.4;
    z-index: 1;
}
.about-caption b {
    display: block;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.about-body p {
    font-size: 1.04rem;
    line-height: 1.75;
}
.about-body p + p {
    margin-top: 1em;
}
.about-quote {
    margin-top: 32px;
    padding: 22px 26px;
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
    border-radius: 0 var(--r) var(--r) 0;
    font-family: var(--serif);
    font-size: 1.08rem;
    color: var(--green-dark);
    font-style: italic;
}

/* ── Послуги ── */
.services {
    background: var(--cream);
}
.svc-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.svc {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
}
.svc-num {
    font-family: var(--serif);
    font-size: 0.96rem;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}
.svc h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}
.svc-text {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
    flex: 1;
}
.svc-text strong {
    color: var(--ink);
    font-weight: 600;
}

/* ── Ціни (таблиця) ── */
.pricing {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 26px;
    background: var(--cream);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.price-table caption {
    text-align: left;
    padding: 16px 20px;
    font-family: var(--serif);
    font-size: 1.15rem;
    background: var(--green-soft);
    color: var(--green-dark);
    caption-side: top;
    border-bottom: 1px solid var(--line);
}
.price-table th,
.price-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.96rem;
    border-bottom: 1px solid var(--line);
}
.price-table th {
    font-weight: 600;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255,255,255,0.5);
}
.price-table tr:last-child td {
    border-bottom: none;
}
.price-table td.price {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--green-dark);
    white-space: nowrap;
    text-align: right;
}
.price-note {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.pricing-extras {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
}
.pricing-extras dt {
    font-weight: 500;
    color: var(--ink);
}
.pricing-extras dd {
    margin: 0;
    color: var(--green-dark);
    font-family: var(--serif);
    font-weight: 600;
    text-align: right;
}

/* ── Як працюємо ── */
.flow {
    background: var(--green-dark);
    color: #fff;
}
.flow .s-eyebrow {
    color: var(--accent-soft);
}
.flow h2 {
    color: #fff;
}
.flow .s-head p {
    color: rgba(255,255,255,0.78);
}
.flow-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.flow-step {
    border-top: 2px solid rgba(255,255,255,0.18);
    padding-top: 22px;
}
.flow-step b {
    display: block;
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.flow-step h3 {
    color: #fff;
    font-size: 1.15rem;
    font-family: var(--sans);
    font-weight: 600;
    margin-bottom: 10px;
}
.flow-step p {
    color: rgba(255,255,255,0.7);
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Кому підходить (текстовий блок) ── */
.audience {
    background: var(--cream);
}
.audience-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
}
.audience-grid h2 {
    margin-bottom: 18px;
}
.audience-grid > div p {
    color: var(--ink);
    font-size: 1.04rem;
    line-height: 1.75;
}
.audience-grid > div p + p {
    margin-top: 1em;
}
.audience-list {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 30px;
}
.audience-list h4 {
    font-family: var(--sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin: 0 0 18px;
    font-weight: 600;
}
.audience-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.audience-list li {
    padding: 11px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
    font-size: 0.98rem;
}
.audience-list li:last-child {
    border-bottom: none;
}
.audience-list li b {
    font-family: var(--serif);
    color: var(--green-dark);
    margin-right: 6px;
    font-weight: 600;
}

/* ── Відгуки ── */
.reviews {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.review {
    border-top: 1px solid var(--line);
    padding: 36px 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
}
.review:last-child {
    border-bottom: 1px solid var(--line);
}
.review-meta {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.review-meta b {
    display: block;
    font-family: var(--serif);
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.review-meta .stars {
    color: var(--accent);
    margin-top: 8px;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}
.review-body p {
    font-size: 1.04rem;
    line-height: 1.72;
    color: var(--ink);
}
.review-body p + p {
    margin-top: 0.8em;
}
.reviews-foot {
    text-align: center;
    margin-top: 30px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ── FAQ ── */
.faq {
    background: var(--cream);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 6px 0;
}
.faq-item:first-child {
    border-top: 1px solid var(--line);
}
.faq-item summary {
    padding: 18px 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--green-dark);
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: transform .2s;
}
.faq-item[open] summary::after {
    content: '–';
}
.faq-answer {
    padding: 0 4px 18px;
    color: var(--muted);
    line-height: 1.72;
}
.faq-answer p {
    margin-bottom: 0.8em;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ── Форма / контакт ── */
.contact {
    background: var(--green-dark);
    color: #fff;
}
.contact .s-eyebrow {
    color: var(--accent-soft);
}
.contact h2 {
    color: #fff;
}
.contact-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
.contact-left p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.72;
}
.contact-points {
    list-style: none;
    padding: 0;
    margin: 26px 0 32px;
}
.contact-points li {
    padding: 9px 0 9px 24px;
    position: relative;
    color: rgba(255,255,255,0.92);
}
.contact-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-soft);
    font-weight: 700;
}
.contact-direct {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
}
.contact-direct b {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.contact-direct .row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

form.lev-form {
    background: var(--paper);
    color: var(--ink);
    padding: 32px 30px;
    border-radius: var(--r-lg);
    box-shadow: 0 22px 48px rgba(0,0,0,0.18);
}
form.lev-form h3 {
    margin: 0 0 6px;
    font-size: 1.3rem;
}
form.lev-form > p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 22px;
}
.field {
    margin-bottom: 14px;
}
.field label {
    display: block;
    font-size: 0.84rem;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    font-size: 0.96rem;
    color: var(--ink);
    font-family: var(--sans);
    transition: border-color .15s, background .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green);
    background: #fff;
}
.field textarea {
    resize: vertical;
    min-height: 80px;
}
.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.form-status {
    font-size: 0.9rem;
    min-height: 18px;
    margin-top: 12px;
    text-align: center;
    color: var(--danger);
}
.form-status.good {
    color: var(--green);
}
.form-foot {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.55;
}

/* ── Footer ── */
.foot {
    background: #0e2117;
    color: rgba(255,255,255,0.72);
    padding: 56px 0 24px;
    font-size: 0.94rem;
}
.foot-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
.foot-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.foot-brand .nav-mark {
    /* footer використовує img/lev-white.png — без додаткових стилів */
}
.foot-brand b {
    font-family: var(--serif);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}
.foot-tag {
    color: rgba(255,255,255,0.55);
    font-style: italic;
    font-size: 0.92rem;
}
.foot h4 {
    color: var(--accent-soft);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    margin: 0 0 14px;
    font-weight: 600;
    font-family: var(--sans);
}
.foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.foot li {
    padding: 4px 0;
}
.foot a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
}
.foot a:hover {
    color: #fff;
    text-decoration: underline;
}
.foot-soc {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}
.foot-soc a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background .15s;
}
.foot-soc a:hover {
    background: var(--accent);
}
.foot-soc svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
}
.foot-bottom a {
    color: var(--accent-soft);
}

/* ── Responsive ── */
@media (max-width: 980px) {
    .nav-links { display: none; }
    .burger { display: block; }
    .nav-tel { display: none; }
    .nav-cta .btn-line { display: none; }

    .hero-row,
    .audience-grid,
    .about-grid,
    .contact-row { grid-template-columns: 1fr; gap: 36px; }

    .svc-row,
    .flow-list { grid-template-columns: repeat(2, 1fr); }

    .foot-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    section,
    .hero { padding: 56px 0; }
    .s-head { margin-bottom: 32px; }

    .hero-row { gap: 28px; }
    .hero-ctas .btn { flex: 1 1 auto; }
    .hero-card { padding: 24px 22px; }

    .svc-row,
    .flow-list { grid-template-columns: 1fr; }

    .price-table th,
    .price-table td { padding: 10px 14px; font-size: 0.9rem; }
    .price-table caption { font-size: 1rem; padding: 14px 16px; }
    .pricing-extras { grid-template-columns: 1fr; }
    .pricing-extras dd { text-align: left; }

    .review { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
    .review-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; }
    .review-meta b { margin: 0; }

    form.lev-form { padding: 26px 22px; }

    .foot-row { grid-template-columns: 1fr; gap: 24px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
}
