/*
Theme Name: Rijschool Les4Less
Theme URI: https://les4less.nl
Author: Baarslag Digital
Description: Custom WordPress theme voor Rijschool Les4Less Amsterdam
Version: 3.0.0
Text Domain: les4less
*/

/* ========================================
   TOKENS
   ======================================== */
:root {
    --ink: #1c1917;
    --ink-light: #44403c;
    --muted: #78716c;
    --subtle: #a8a29e;
    --border: #e7e5e4;
    --surface: #fafaf9;
    --paper: #ffffff;
    --warm: #f5f0eb;

    --accent: #e8590c;
    --accent-hover: #c2410c;
    --accent-soft: #fff7ed;
    --accent-mid: #fed7aa;
    --green: #16a34a;
    --green-soft: #f0fdf4;
    --red-soft: #fef2f2;

    --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1100px;
    --container-sm: 700px;
    --header-h: 72px;
    --section-gap: 100px;
    --r: 16px;
    --r-lg: 24px;
    --r-full: 999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--ink-light); background: var(--surface); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--paper); }

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 { font-weight: 700; color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.0625rem; }
p { color: var(--muted); line-height: 1.75; }

.overline {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}
h1 em, h2 em { font-style: normal; color: var(--accent); }

/* ========================================
   LAYOUT
   ======================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-gap) 0; }
.section--warm { background: var(--warm); }
.section--white { background: var(--paper); }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    background: var(--paper);
    transition: box-shadow 0.3s var(--ease);
}
.header.is-scrolled {
    box-shadow: 0 1px 0 var(--border);
}
.header__bar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 10;
}
.logo span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    border-radius: var(--r);
    transition: color 0.2s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active { font-weight: 600; }

.header__cta { margin-left: 16px; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}
.burger span {
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   BUTTONS
   ======================================== */
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
    color: var(--ink);
    text-decoration: none;
}
.button svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s var(--ease); }
.button:hover svg { transform: translateX(3px); }

.button.button--fill { background: var(--accent); color: #fff; }
.button.button--fill:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(232,89,12,0.35); }
.button.button--fill svg { color: #fff; }

.button.button--dark { background: var(--ink); color: #fff; }
.button.button--dark:hover { background: var(--ink-light); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(28,25,23,0.25); }
.button.button--dark svg { color: #fff; }

.button.button--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--border); }
.button.button--outline:hover { box-shadow: inset 0 0 0 1.5px var(--subtle); }

.button.button--white { background: var(--paper); color: var(--ink); }
.button.button--white:hover { background: var(--surface); }

.button.button--ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.button.button--ghost:hover { background: rgba(255,255,255,0.2); }

.button--lg { padding: 15px 32px; font-size: 0.9375rem; }
.button--block { width: 100%; justify-content: center; }

/* ========================================
   HERO (Full-width Background Image)
   ======================================== */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 80px) 0 100px;
    text-align: center;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    min-height: 750px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,25,23,0.72) 0%, rgba(28,25,23,0.55) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero .overline { font-size: 0.875rem; color: var(--accent-mid); }
.hero h1 { max-width: 700px; margin: 0 auto 20px; color: var(--paper); }
.hero h1 em { color: var(--accent-mid); }
.hero__sub {
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
}
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   NUMBERS
   ======================================== */
.numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.numbers__val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.numbers__label {
    font-size: 0.8125rem;
    color: var(--muted);
    font-weight: 500;
}

/* ========================================
   FEATURE ROWS (Zigzag)
   ======================================== */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.feature + .feature { margin-top: 80px; }
.feature--reverse .feature__media { order: 2; }
.feature--reverse .feature__body { order: 1; }

.feature__media {
    border-radius: var(--r-lg);
    overflow: hidden;
}
.feature__media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.feature__body .overline { margin-bottom: 8px; }
.feature__body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.feature__body p { margin-bottom: 12px; }
.feature__body .button { margin-top: 20px; }

.feature__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.feature__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-light);
}
.feature__list-icon {
    width: 24px; height: 24px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature__list-icon svg { width: 14px; height: 14px; }

/* ========================================
   TESTIMONIAL (Single Featured)
   ======================================== */
.testimonial { text-align: center; }
.testimonial__slides { position: relative; overflow: hidden; }
.testimonial__slide { transition: opacity 0.4s ease; }
.testimonial__mark {
    font-size: 4rem;
    color: var(--accent-mid);
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}
.testimonial__text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.7;
    color: var(--ink-light);
    max-width: 660px;
    margin: 0 auto 28px;
    font-weight: 400;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; justify-content: center; text-align: left; }
.testimonial__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
}
.testimonial__name { font-weight: 600; color: var(--ink); font-size: 0.9375rem; }
.testimonial__detail { font-size: 0.8125rem; color: var(--muted); }

.testimonial__nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
}
.testimonial__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}
.testimonial__dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ========================================
   CTA STRIP
   ======================================== */
section.section--warm:last-of-type:has(.cta-strip) {
    padding-bottom: calc(var(--section-gap) / 2);
}
.cta-strip {
    background: var(--accent);
    border-radius: var(--r-lg);
    padding: 64px 48px;
    text-align: center;
}
.cta-strip h2 { color: var(--paper); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-strip__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   PRICING
   ======================================== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.price-card {
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s var(--ease);
    position: relative;
}
.price-card:hover { border-color: var(--subtle); }
.price-card--featured { border-color: var(--accent); }
.price-card--featured:hover { border-color: var(--accent); }
.price-card__badge {
    position: absolute;
    top: -11px; left: 28px;
    background: var(--accent);
    color: var(--paper);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: var(--r-full);
}

.price-card h4 { margin-bottom: 16px; }
.price-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
}
.price-card__amount sup { font-size: 1.125rem; font-weight: 600; vertical-align: super; }
.price-card__per { font-size: 0.8125rem; color: var(--subtle); margin-top: 4px; margin-bottom: 24px; }

.price-card__list { flex: 1; margin-bottom: 24px; }
.price-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--ink-light);
    border-bottom: 1px solid var(--surface);
}
.price-card__list li:last-child { border: none; }
.price-card__list svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.tariff-table {
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.tariff-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--surface);
}
.tariff-row:last-child { border: none; }
.tariff-row span { color: var(--ink-light); }
.tariff-row strong { color: var(--ink); font-weight: 700; }

/* ========================================
   TIMELINE (Vertical Process)
   ======================================== */
.timeline { position: relative; max-width: 560px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    left: 19px; top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline__step {
    position: relative;
    padding-left: 56px;
    padding-bottom: 40px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__num {
    position: absolute;
    left: 0; top: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 1;
}
.timeline__step h3 { margin-bottom: 4px; }
.timeline__step p { font-size: 0.9375rem; }

/* ========================================
   PAGE HEADER (Light, not dark)
   ======================================== */
.page-header {
    padding: calc(var(--header-h) + 64px) 0 72px;
    background: var(--warm);
    text-align: center;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { max-width: 500px; margin-inline: auto; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.8125rem;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 12px; height: 12px; color: var(--subtle); }
.breadcrumb > span { color: var(--ink); font-weight: 500; }

/* ========================================
   VALUES
   ======================================== */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
    text-align: center;
    padding: 36px 24px;
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    transition: border-color 0.2s var(--ease);
}
.value:hover { border-color: var(--accent-mid); }
.value__icon {
    width: 52px; height: 52px;
    margin: 0 auto 16px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
}
.value__icon svg { width: 24px; height: 24px; }
.value h3 { margin-bottom: 8px; }
.value p { font-size: 0.875rem; }

/* ========================================
   CONTACT / FORMS
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info .overline { margin-bottom: 8px; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 28px; }

.info-list { display: flex; flex-direction: column; gap: 20px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row__icon {
    width: 40px; height: 40px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-row__icon svg { width: 18px; height: 18px; }
.info-row h4 { font-size: 0.8125rem; margin-bottom: 1px; }
.info-row p { font-size: 0.875rem; margin: 0; }
.info-row a { color: var(--accent); font-weight: 600; }
.info-row a:hover { color: var(--accent-hover); }

.form-card {
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    background: var(--surface);
    color: var(--ink);
    transition: all 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--subtle); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23a8a29e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}
.form-submit { margin-top: 8px; }

.alert { padding: 14px 18px; border-radius: var(--r); margin-bottom: 20px; font-size: 0.875rem; }
.alert--ok { background: var(--green-soft); color: #14532d; }
.alert--err { background: var(--red-soft); color: #991b1b; }
.alert strong { display: block; margin-bottom: 2px; }

/* ========================================
   WHATSAPP
   ======================================== */
.wa-btn {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 90;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s var(--ease);
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 26px; height: 26px; }

/* ========================================
   FOOTER (Warm)
   ======================================== */
.footer {
    background: var(--warm);
    padding: 64px 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer__brand .logo { margin-bottom: 12px; }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; max-width: 320px; color: var(--muted); }
.footer__brand .button { margin-top: 20px; }

.footer__col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.footer__col a, .footer__col span {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted);
    padding: 3px 0;
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }

.footer__contact-item {
    display: flex !important;
    align-items: center;
    gap: 8px;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }

.footer__bottom {
    padding: 16px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}
.footer__bottom p { font-size: 0.75rem; color: var(--subtle); margin: 0; }

/* ========================================
   WP EDITOR CONTENT (page.php)
   ======================================== */
.container--sm h2 { margin-top: 40px; margin-bottom: 12px; }
.container--sm h3 { margin-top: 32px; margin-bottom: 8px; }
.container--sm p { margin-bottom: 16px; }
.container--sm ul, .container--sm ol { margin-bottom: 16px; padding-left: 24px; color: var(--ink-light); }
.container--sm ul { list-style: disc; }
.container--sm ol { list-style: decimal; }
.container--sm li { margin-bottom: 6px; line-height: 1.75; }
.container--sm img { border-radius: var(--r-lg); margin: 24px 0; }
.container--sm a { color: var(--accent); font-weight: 500; }
.container--sm a:hover { color: var(--accent-hover); }
.container--sm blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    margin: 24px 0;
    background: var(--accent-soft);
    border-radius: 0 var(--r) var(--r) 0;
}
.container--sm blockquote p { color: var(--ink-light); margin: 0; }

/* ========================================
   ANIMATIONS (Simple fade only)
   ======================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ========================================
   STYLEGUIDE
   ======================================== */
.sg-section { padding: 32px 0; border-bottom: 1px solid var(--border); }
.sg-section:last-child { border: none; }
.sg-label { margin-bottom: 16px; font-size: 1.25rem; font-weight: 700; color: var(--ink); line-height: 1.15; }
.sg-swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
.sg-swatch { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.sg-swatch__color { height: 64px; }
.sg-swatch__label { padding: 8px 10px; font-size: 0.75rem; font-weight: 500; }
.sg-swatch__label code { display: block; color: var(--subtle); font-size: 0.6875rem; margin-top: 1px; }
.sg-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }

/* ========================================
   RESPONSIVE: TABLET
   ======================================== */
@media (max-width: 1024px) {
    :root { --section-gap: 80px; }
    .feature { grid-template-columns: 1fr; gap: 32px; }
    .feature--reverse .feature__media { order: 0; }
    .feature--reverse .feature__body { order: 0; }
    .pricing { grid-template-columns: 1fr 1fr; }
    .numbers { grid-template-columns: repeat(4, 1fr); }
    .values { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer__inner { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .footer__brand { grid-column: 1 / -1; }
}

/* ========================================
   RESPONSIVE: MOBILE
   ======================================== */
@media (max-width: 768px) {
    :root { --section-gap: 64px; --header-h: 64px; }
    .container { padding: 0 20px; }
    .hero { padding: calc(var(--header-h) + 48px) 0 64px; min-height: 420px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .button { width: 100%; justify-content: center; max-width: 320px; }

    .burger { display: flex; }
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100dvh;
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 32px;
        gap: 2px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.06);
        transition: right 0.3s var(--ease);
        z-index: 100;
    }
    .nav.open { right: 0; }
    .nav a { padding: 12px; font-size: 0.9375rem; }
    .header__cta { margin-left: 0; margin-top: 12px; }
    .header__cta .button { width: 100%; justify-content: center; }

    .feature__media img { height: 260px; }
    .numbers { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .numbers__val { font-size: 2rem; }
    .pricing, .values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 20px; }
    .cta-strip { padding: 48px 24px; border-radius: var(--r); }
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; gap: 4px; text-align: center; }
    .page-header { padding: calc(var(--header-h) + 40px) 0 48px; }
    .wa-btn { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .wa-btn svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
    .numbers { grid-template-columns: 1fr 1fr; }
}
