/* =========================================================
   Emmera Infra — Global Stylesheet
   Light theme + shared components
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    /* Greens */
    --green-900: #15301f;
    --green-800: #1f3d2b;
    --green-700: #2e5d3b;
    --green-600: #3f7350;
    --green-100: #e7efe8;

    /* Accents */
    --gold:        #ffc20d;
    --gold-soft:   #c9a24b;
    --terracotta:  #d15835;
    --charcoal:    #444345;

    /* Neutrals */
    --ink:    #2a2a2b;
    --muted:  #6f7370;
    --line:   #e3e0d8;
    --paper:  #ffffff;
    --cream:  #f4f2ec;
    --cream-2:#efece3;

    /* System */
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(20,30,20,.06), 0 1px 2px rgba(20,30,20,.04);
    --shadow-md: 0 6px 24px rgba(20,40,25,.08);
    --container: 1180px;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0; color: var(--charcoal); letter-spacing: .2px; }
.display { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 500; }
.display em, .accent-it { font-style: italic; color: var(--green-700); font-weight: 500; }
.h-section { font-size: clamp(2rem, 4vw, 2.9rem); }
.h-section em { font-style: italic; color: var(--gold-soft); }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 620px; }

.eyebrow {
    font-family: var(--sans);
    font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-soft); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold-soft); display: inline-block; }
.eyebrow--center { justify-content: center; }

.section { padding: 84px 0; }
.section--cream { background: var(--cream); }
.section--tight { padding: 60px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head .lead { margin: 14px auto 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--sans); font-weight: 600; font-size: .9rem;
    padding: 13px 22px; border-radius: var(--radius); border: 1.5px solid transparent;
    transition: all .2s ease; line-height: 1; white-space: nowrap;
}
.btn--solid { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn--solid:hover { background: var(--green-800); border-color: var(--green-800); }
.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn--outline:hover { border-color: var(--green-700); color: var(--green-700); }
.btn--light { background: #fff; color: var(--green-800); border-color: #fff; }
.btn--light:hover { background: var(--cream); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--gold { background: var(--gold); color: #3a2c00; border-color: var(--gold); }
.btn--gold:hover { background: #ecb200; border-color: #ecb200; }
.btn--sm { padding: 10px 16px; font-size: .82rem; }
.btn--block { width: 100%; }
.filter-chip.is-active { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* ---------- Utility bar ---------- */
.utilbar { background: var(--green-900); color: rgba(255,255,255,.82); font-size: .76rem; }
.utilbar__inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.utilbar__left, .utilbar__right { display: flex; align-items: center; gap: 10px; }
.utilbar__chip { color: var(--gold); font-weight: 600; }
.utilbar__muted { color: rgba(255,255,255,.7); }
.utilbar__dot { color: rgba(255,255,255,.3); }
.utilbar__phone { color: #fff; font-weight: 600; }
.utilbar__phone:hover { color: var(--gold); }

/* ---------- Navbar ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.nav.is-stuck { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { height: 34px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 36px; }
.nav__list { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: .92rem; font-weight: 500; color: var(--charcoal); padding: 6px 0; position: relative; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green-700); transition: width .2s; }
.nav__link:hover { color: var(--green-700); }
.nav__link.is-active { color: var(--green-700); }
.nav__link.is-active::after { width: 100%; }
.nav__caret { font-size: .7rem; }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__phone { font-weight: 600; color: var(--green-700); font-size: .9rem; }

/* dropdown */
.nav__has-drop { position: relative; }
.nav__drop {
    position: absolute; top: 100%; left: -16px; min-width: 220px; background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md);
    padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s; margin-top: 10px;
}
.nav__has-drop:hover .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop li a { display: block; padding: 9px 12px; border-radius: var(--radius); font-size: .88rem; color: var(--charcoal); }
.nav__drop li a:hover { background: var(--cream); color: var(--green-700); }

/* hamburger */
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--charcoal); transition: .25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .82rem; color: var(--muted); padding: 22px 0 0; }
.breadcrumb a:hover { color: var(--green-700); }

/* ---------- Hero (light pages) ---------- */
.pagehead { padding: 26px 0 46px; border-bottom: 1px solid var(--line); }
.pagehead__title { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 10px 0 14px; }
.pagehead__title em { font-style: italic; color: var(--green-700); }
.pagehead .lead { margin-bottom: 24px; }
.pagehead__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Home hero (dark) ---------- */
.hero {
    position: relative; color: #fff;
    background:
        linear-gradient(115deg, rgba(13,28,18,.94) 0%, rgba(20,42,27,.82) 45%, rgba(31,61,43,.6) 100%),
        radial-gradient(120% 120% at 80% 10%, #2c5639 0%, #16301f 60%, #0c1c12 100%);
}
.hero__inner { padding: 70px 0 0; min-height: 540px; position: relative; }
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
    background: rgba(255,194,13,.1); border: 1px solid rgba(255,194,13,.3);
    padding: 7px 14px; border-radius: 50px; margin-bottom: 26px;
}
.hero__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero__title { font-size: clamp(2.8rem, 6.5vw, 5rem); color: #fff; max-width: 11ch; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__text { color: rgba(255,255,255,.72); max-width: 440px; margin: 22px 0 30px; font-size: 1.02rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__glance {
    position: absolute; right: 0; top: 80px; width: 230px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg); padding: 22px 24px; backdrop-filter: blur(4px);
}
.hero__glance .eyebrow { color: rgba(255,255,255,.6); margin-bottom: 16px; }
.hero__glance .eyebrow::before { background: rgba(255,255,255,.4); }
.glance-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.glance-item:last-child { border-bottom: 0; }
.glance-item b { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); font-weight: 500; display: block; line-height: 1; }
.glance-item span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ---------- Stat strip (dark band) ---------- */
.statstrip { background: #1a1a1b; color: #fff; }
.statstrip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.statstrip__item { text-align: center; padding: 40px 16px; border-right: 1px solid rgba(255,255,255,.08); }
.statstrip__item:last-child { border-right: 0; }
.statstrip__num { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; line-height: 1; }
.statstrip__label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 10px; }
.statstrip--gold .statstrip__num { color: var(--gold); }

/* ---------- Split intro ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media { background: var(--cream-2); border-radius: var(--radius-lg); min-height: 360px; display: grid; place-items: center; color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--line); }

/* image placeholder helper */
.ph {
    background:
        repeating-linear-gradient(45deg, rgba(0,0,0,.015) 0 12px, transparent 12px 24px),
        var(--cream-2);
    display: grid; place-items: center; color: var(--muted);
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; text-align: center; padding: 16px;
}
.ph__icon { font-size: 1.6rem; margin-bottom: 6px; opacity: .6; }

/* ---------- Card grid (pillars / services) ---------- */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.card--bordertop { border-top: 3px solid var(--green-700); }
.card__icon { font-size: 1.6rem; margin-bottom: 14px; }
.card__title { font-size: 1.4rem; margin-bottom: 8px; }
.card__text { color: var(--muted); font-size: .92rem; margin: 0 0 16px; }
.card__list { margin: 0 0 18px; }
.card__list li { font-size: .88rem; color: var(--charcoal); padding: 6px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.card__list li::before { content: "✓"; color: var(--green-600); font-weight: 700; }
.card__link { font-size: .85rem; font-weight: 600; color: var(--green-700); }
.card__link:hover { color: var(--green-800); }

/* numbered service card */
.scard { display: flex; gap: 18px; }
.scard__no { font-family: var(--serif); font-size: 1.8rem; color: var(--gold-soft); font-weight: 600; line-height: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 14px; }
.tag { font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-700); background: var(--green-100); padding: 4px 10px; border-radius: 50px; }

/* ---------- Advantage grid (icon + text) ---------- */
.adv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.adv__item { padding: 30px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.adv__item:nth-child(3n) { border-right: 0; }
.adv__icon { width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center; font-size: 1.1rem; margin-bottom: 14px; background: var(--green-100); }
.adv__title { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.adv__text { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- How it works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.steps::before { content: ""; position: absolute; top: 22px; left: 10%; right: 10%; height: 1px; background: var(--line); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__num { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--green-700); color: var(--green-700); background: var(--cream); display: grid; place-items: center; font-weight: 700; margin: 0 auto 16px; font-size: .9rem; }
.section--cream .step__num { background: var(--cream); }
.step__title { font-family: var(--sans); font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--charcoal); }
.step__text { font-size: .8rem; color: var(--muted); margin: 0; }

/* ---------- Project cards ---------- */
.pcard { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: transform .2s, box-shadow .2s; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pcard__media { aspect-ratio: 16/10; position: relative; }
.pcard__badge { position: absolute; top: 14px; left: 14px; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 50px; }
.badge--ongoing { background: var(--gold); color: #3a2c00; }
.badge--completed { background: var(--green-700); color: #fff; }
.pcard__body { padding: 22px; }
.pcard__title { font-size: 1.4rem; margin-bottom: 8px; }
.pcard__meta { font-size: .8rem; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }
.pcard__meta span::after { content: "·"; margin-left: 8px; color: var(--line); }
.pcard__meta span:last-child::after { content: ""; }
.pcard__price { font-family: var(--serif); font-size: 1.5rem; color: var(--green-700); margin-top: 14px; font-weight: 600; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--green-700); border-radius: var(--radius); padding: 26px; }
.quote__text { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--charcoal); line-height: 1.5; margin: 0 0 18px; }
.quote__who b { display: block; font-family: var(--sans); font-size: .9rem; }
.quote__who span { font-size: .78rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.ctaband { background: var(--green-800); color: #fff; text-align: center; }
.ctaband__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff; }
.ctaband__text { color: rgba(255,255,255,.75); max-width: 560px; margin: 14px auto 26px; }
.ctaband__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ctaband--dark { background: #1a1a1b; }
.ctaband--split { text-align: left; }
.ctaband--split .ctaband__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.ctaband--split .ctaband__actions { justify-content: flex-end; }

/* ---------- Timeline (milestones) ---------- */
.timeline { max-width: 880px; }
.tl-item { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.tl-item:last-child { border-bottom: 0; }
.tl-dot { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--green-600); color: var(--green-700); display: grid; place-items: center; font-size: .78rem; font-weight: 700; }
.tl-year { font-family: var(--sans); font-weight: 700; font-size: .95rem; color: var(--charcoal); margin-bottom: 4px; }
.tl-text { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card__photo { aspect-ratio: 1/1; border-radius: var(--radius-lg); margin-bottom: 14px; }
.team-card__name { font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--charcoal); }
.team-card__role { font-size: .82rem; color: var(--muted); }

/* ---------- Contact cards ---------- */
.cc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cc__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.cc__icon { width: 40px; height: 40px; border-radius: 8px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; margin-bottom: 16px; font-size: 1.1rem; }
.cc__label { font-family: var(--sans); font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--charcoal); }
.cc__val { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.cc__val a:hover { color: var(--green-700); }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.form-card__title { font-family: var(--sans); font-weight: 700; font-size: 1.2rem; margin-bottom: 22px; color: var(--charcoal); }
.form-card__note { text-align: center; font-size: .78rem; color: var(--muted); margin: 12px 0 0; }
.form-field { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
    font-family: inherit; font-size: .92rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: 0; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(46,93,59,.1);
}
.form-field input.is-invalid, .form-field textarea.is-invalid { border-color: var(--terracotta); }
.form-field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-alert { padding: 12px 16px; border-radius: var(--radius); font-size: .88rem; margin-bottom: 18px; }
.form-alert--ok { background: var(--green-100); color: var(--green-800); border: 1px solid #c8ddc9; }
.form-alert--err { background: #fbe6df; color: #8a3417; border: 1px solid #f0c4b4; }

/* note callout */
.note-callout { display: flex; gap: 12px; background: #fdf6ec; border: 1px solid #f0e2c8; border-radius: var(--radius); padding: 14px 16px; font-size: .82rem; color: #6b5a30; margin-top: 18px; }
.note-callout b { background: var(--terracotta); color: #fff; font-size: .64rem; letter-spacing: .1em; padding: 3px 7px; border-radius: 4px; height: fit-content; white-space: nowrap; }

/* ---------- Legal / prose content ---------- */
.prose { max-width: 820px; }
.prose .updated { font-size: .82rem; color: var(--muted); margin: 0 0 32px; }
.prose h2 { font-family: var(--sans); font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin: 34px 0 12px; }
.prose h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin: 22px 0 8px; }
.prose p { color: var(--muted); margin: 0 0 14px; font-size: .96rem; }
.prose ul.bullets { margin: 0 0 16px; padding: 0; }
.prose ul.bullets li { position: relative; padding: 6px 0 6px 22px; color: var(--muted); font-size: .96rem; }
.prose ul.bullets li::before { content: ""; position: absolute; left: 4px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); }
.prose a { color: var(--green-700); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose .legal-note { background: var(--cream); border: 1px solid var(--line); border-left: 3px solid var(--gold-soft); border-radius: var(--radius); padding: 16px 18px; font-size: .88rem; color: var(--charcoal); margin: 28px 0 0; }

/* map placeholder */
.mapph { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-lg); min-height: 380px; display: grid; place-items: center; text-align: center; color: var(--muted); position: relative; }
.mapph a { margin-top: 12px; }

/* ---------- Footer ---------- */
.footer { background: #1a1a1b; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; }
.footer__logo { height: 30px; margin-bottom: 18px; }
.footer__about { font-size: .88rem; line-height: 1.7; margin: 0 0 14px; max-width: 340px; }
.footer__rera { font-size: .76rem; color: rgba(255,255,255,.4); margin: 0 0 18px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; display: grid; place-items: center; font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.6); }
.footer__social a:hover { background: var(--gold); color: #2a2200; border-color: var(--gold); }
.footer__head { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__col ul li { margin-bottom: 10px; font-size: .88rem; }
.footer__col a:hover { color: #fff; }
.footer__contact li { line-height: 1.5; }
.footer__indent { padding-left: 16px; }
.footer__hours { color: rgba(255,255,255,.5) !important; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px; }
.footer__legal a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); z-index: 90; transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .statstrip__grid { grid-template-columns: repeat(2, 1fr); }
    .statstrip__item:nth-child(2) { border-right: 0; }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .steps::before { display: none; }
    .adv { grid-template-columns: repeat(2, 1fr); }
    .adv__item:nth-child(3n) { border-right: 1px solid var(--line); }
    .adv__item:nth-child(2n) { border-right: 0; }
    .cc { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .hero__glance { position: static; width: 100%; margin-top: 36px; display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
    .hero__glance .eyebrow { grid-column: 1 / -1; }
    .glance-item { border-bottom: 0; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 760px) {
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed; inset: 72px 0 auto 0; background: #fff; flex-direction: column;
        align-items: stretch; gap: 0; padding: 12px 24px 24px; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md); transform: translateY(-120%); transition: transform .28s ease; max-height: calc(100vh - 72px); overflow-y: auto;
    }
    .nav__menu.is-open { transform: translateY(0); }
    .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav__link { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
    .nav__link::after { display: none; }
    .nav__drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; margin: 0; }
    .nav__has-drop:hover .nav__drop { transform: none; }
    .nav__cta { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 16px; }
    .nav__cta .btn { width: 100%; }
    .utilbar { display: none; }
    .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .statstrip__grid { grid-template-columns: 1fr 1fr; }
    .adv { grid-template-columns: 1fr; }
    .adv__item { border-right: 0 !important; }
    .cc { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .ctaband--split { text-align: center; }
    .ctaband--split .ctaband__inner { flex-direction: column; }
    .ctaband--split .ctaband__actions { justify-content: center; }
    .section { padding: 56px 0; }
    .hero__glance { grid-template-columns: 1fr; }
}
