/* ============================================================
   DeviceDoc — styles
   ============================================================ */
:root {
  --blue: #0b5fff;
  --blue-dark: #0942b8;
  --blue-ink: #082a6b;
  --teal: #00b8a9;
  --wa: #25d366;
  --wa-dark: #1da851;
  --ink: #0e1525;
  --body: #3a4456;
  --muted: #6b7585;
  --line: #e6e9f0;
  --bg: #ffffff;
  --bg-alt: #f5f8ff;
  --bg-soft: #eef3ff;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(14, 21, 37, .06);
  --shadow: 0 12px 34px rgba(14, 21, 37, .10);
  --shadow-lg: 0 24px 60px rgba(11, 95, 255, .18);
  --maxw: 1160px;
  --head: "Plus Jakarta Sans", system-ui, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--head); color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }
a { color: var(--blue); text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--head); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 100px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap; text-align: center;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(11,95,255,.28); }
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 12px 26px rgba(11,95,255,.36); }
.btn--whatsapp { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.30); }
.btn--whatsapp:hover { background: var(--wa-dark); box-shadow: 0 12px 26px rgba(37,211,102,.38); }
.btn--ghost { background: #eef3ff; color: var(--blue-ink); }
.btn--ghost:hover { background: #e0eaff; }
.btn--light { background: #fff; color: var(--blue); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.btn--light:hover { background: #f3f6ff; }

/* ---------- Announcement ---------- */
.announce {
  background: linear-gradient(90deg, var(--blue-ink), var(--blue));
  color: #fff; font-size: 13px; font-weight: 600;
  display: flex; gap: 10px; align-items: center; justify-content: center;
  padding: 7px 14px; flex-wrap: wrap;
}
.announce .dot { opacity: .5; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: box-shadow .2s, border-color .2s;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 18px; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--head); font-weight: 800; font-size: 20px; color: var(--ink); }
.logo__text strong { color: var(--blue); }
.logo--light .logo__text { color: #fff; }
.nav { display: flex; gap: 26px; margin-left: 14px; }
.nav a { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--blue); }
.header__cta { margin-left: auto; display: flex; gap: 10px; }
.btn--call { font-size: 14px; padding: 10px 16px; }

.nav-toggle { display: none; margin-left: auto; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: radial-gradient(1200px 500px at 80% -10%, var(--bg-soft), transparent), linear-gradient(180deg, #fff, var(--bg-alt)); padding: 56px 0 48px; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line); color: var(--blue-ink);
  font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); margin: 18px 0 0; }
.grad { background: linear-gradient(90deg, var(--blue), var(--teal)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { font-size: 18px; margin-top: 18px; max-width: 540px; color: var(--body); }
.hero__actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; }
.hero__trust li { font-weight: 600; font-size: 14px; color: var(--ink); }

/* Quick card */
.hero__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 26px; }
.card-head h2 { font-size: 21px; }
.card-head p { font-size: 14.5px; margin-top: 6px; color: var(--muted); }
.quick-form { margin-top: 18px; display: grid; gap: 14px; }
.card-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 4px; }

/* ---------- Fields ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 13.5px; color: var(--ink); }
.field input, .field select {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,95,255,.14); }
.field .err { color: #d33; font-size: 12.5px; min-height: 0; display: none; }
.field.invalid input, .field.invalid select { border-color: #e35; }
.field.invalid .err { display: block; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Stats ---------- */
.stats { background: var(--blue-ink); color: #fff; padding: 22px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
.stat strong { font-family: var(--head); font-size: 26px; display: block; }
.stat span { font-size: 13px; opacity: .82; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.eyebrow { display: inline-block; font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); background: var(--bg-soft); padding: 5px 12px; border-radius: 100px; }
.eyebrow--light { color: #cfe0ff; background: rgba(255,255,255,.12); }
.section__head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 14px 0 10px; }
.section__head p { color: var(--muted); font-size: 17px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.step__num { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; font-family: var(--head); font-weight: 800; font-size: 20px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0ff; }
.service-card__icon { font-size: 30px; margin-bottom: 12px; }
.service-card h3 { font-size: 17px; margin-bottom: 6px; }
.service-card p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.from { display: inline-block; font-family: var(--head); font-weight: 700; font-size: 13.5px; color: var(--blue-ink); background: var(--bg-soft); padding: 5px 11px; border-radius: 100px; }
.services__note { text-align: center; margin-top: 28px; color: var(--muted); font-size: 15px; }

/* ---------- Brands ---------- */
.brands { padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.brands__title { text-align: center; font-weight: 600; color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.brands__row { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; }
.brands__row span { font-family: var(--head); font-weight: 700; font-size: 18px; color: #9aa6ba; transition: color .15s; }
.brands__row span:hover { color: var(--ink); }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why__item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.why__ic { font-size: 26px; flex-shrink: 0; }
.why__item h3 { font-size: 17px; margin-bottom: 4px; }
.why__item p { font-size: 14.5px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing { max-width: 880px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.price-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 8px; padding: 16px 22px; border-bottom: 1px solid var(--line); align-items: center; font-size: 15px; }
.price-row:last-child { border-bottom: 0; }
.price-row span:first-child { font-weight: 600; color: var(--ink); }
.price-row span:not(:first-child) { color: var(--body); }
.price-row--head { background: var(--bg-soft); font-family: var(--head); font-weight: 700; }
.price-row--head span { color: var(--blue-ink) !important; }
.pricing__cta { text-align: center; margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pricing__cta span { font-size: 13.5px; color: var(--muted); }

/* ---------- Booking ---------- */
.book { background: linear-gradient(160deg, var(--blue-ink), #0b3aa0); color: #fff; }
.book__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: start; }
.book__intro h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin: 14px 0 12px; }
.book__intro p { color: #d6e2ff; font-size: 16.5px; }
.book__points { list-style: none; margin: 22px 0; display: grid; gap: 10px; }
.book__points li { font-weight: 600; color: #eaf1ff; }
.book__or { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.book__or span { display: block; color: #cfe0ff; font-size: 14px; margin-bottom: 10px; }
.book__form { background: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); display: grid; gap: 14px; }

/* Post-submit confirmation + pay-token panel */
.book__done { margin-top: 4px; padding: 18px; border-radius: var(--radius); background: #f2f7ff; border: 1px solid #d5e4ff; display: grid; gap: 12px; animation: fadeInUp .35s ease; }
.book__done[hidden] { display: none; }
.book__done-title { font-family: var(--head); font-weight: 700; color: var(--ink); font-size: 16px; text-align: center; }
.book__pay { display: grid; gap: 10px; padding-top: 12px; border-top: 1px dashed #c7d9f7; }
.book__done-text { font-size: 13.5px; color: var(--muted); text-align: center; line-height: 1.5; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Time chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { font-family: var(--head); font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: .15s; }
.chip:hover { border-color: var(--blue); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* City picker on the simplified booking form */
.chips--city { gap: 10px; }
.chips--city .chip { flex: 1 1 30%; min-width: 96px; padding: 13px 16px; font-size: 15px; }
.book__serve { font-size: 13px; color: var(--muted); background: var(--bg-soft); border-radius: 12px; padding: 10px 13px; margin: 2px 0; }
.book__form--simple { align-content: start; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.stars { color: #ffb000; font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote { font-size: 15.5px; color: var(--ink); }
.review figcaption { margin-top: 14px; font-weight: 700; color: var(--muted); font-size: 14px; }

/* ---------- Areas ---------- */
.areas__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.areas__grid h2 { font-size: clamp(24px, 3vw, 34px); margin: 14px 0 10px; }
.areas__grid > div > p { color: var(--muted); font-size: 16.5px; }
.areas__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.areas__cols h4 { color: var(--blue-ink); font-size: 16px; margin-bottom: 6px; }
.areas__cols p { font-size: 14px; color: var(--muted); }
.areas__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.areas__card h3 { font-size: 20px; margin-bottom: 8px; }
.areas__card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; font-family: var(--head); font-weight: 700; color: var(--ink); font-size: 16px; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 24px; color: var(--blue); font-weight: 400; transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 18px; color: var(--muted); font-size: 15px; }

/* ---------- Final CTA ---------- */
.cta-final { background: linear-gradient(135deg, var(--blue), var(--teal)); padding: 64px 0; text-align: center; }
.cta-final h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); }
.cta-final p { color: #eaf4ff; font-size: 18px; margin: 12px 0 26px; }
.cta-final__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #0a1020; color: #aeb8c9; padding: 56px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.1fr 1fr; gap: 30px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer a { display: block; color: #aeb8c9; font-size: 14.5px; margin-bottom: 9px; }
.footer a:hover { color: #fff; }
.footer__tag { font-size: 14.5px; margin-top: 14px; max-width: 320px; }
.footer__hours { font-size: 13.5px; margin-top: 6px; color: #7e8aa0; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 18px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: #7e8aa0; flex-wrap: wrap; }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.5); animation: pulse 2.4s infinite;
}
.fab-whatsapp:hover { background: var(--wa-dark); }
@keyframes pulse { 0% { box-shadow: 0 10px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 10px 28px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0,0,0,.08); padding: 8px; gap: 8px; }
.mobile-cta a { flex: 1; text-align: center; font-family: var(--head); font-weight: 700; font-size: 14px; padding: 12px 6px; border-radius: 12px; }
.mobile-cta__call { background: #eef3ff; color: var(--blue-ink); }
.mobile-cta__wa { background: var(--wa); color: #fff; }
.mobile-cta__book { background: var(--blue); color: #fff; }

/* ============================================================
   Legal / policy pages
   ============================================================ */
.legal-hero { background: linear-gradient(180deg, var(--bg-soft), var(--bg-alt)); padding: 44px 0 36px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(28px, 4vw, 40px); margin: 12px 0 8px; }
.legal-hero p { color: var(--muted); font-size: 15.5px; }
.legal-hero .updated { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--blue-ink); background: #fff; border: 1px solid var(--line); padding: 5px 12px; border-radius: 100px; }

.legal { padding: 48px 0 64px; }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 22px; margin: 36px 0 12px; padding-top: 6px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 17px; margin: 22px 0 8px; color: var(--blue-ink); }
.legal p { margin-bottom: 14px; font-size: 15.5px; }
.legal ul, .legal ol { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; font-size: 15.5px; }
.legal strong { color: var(--ink); }
.legal a { font-weight: 600; }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }

.legal__toc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 30px; }
.legal__toc h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 10px; }
.legal__toc ol { margin: 0 0 0 18px; }
.legal__toc li { margin-bottom: 5px; font-size: 15px; }

.legal__box { background: var(--bg-soft); border: 1px solid #cfe0ff; border-left: 4px solid var(--blue); border-radius: 12px; padding: 18px 22px; margin: 20px 0; }
.legal__box p:last-child { margin-bottom: 0; }
.legal__box--warn { background: #fff8e6; border-color: #ffe0a3; border-left-color: #f0a020; }
.legal__box--good { background: #eafaf1; border-color: #b7e9cd; border-left-color: var(--wa-dark); }

.legal__table { width: 100%; border-collapse: collapse; margin: 18px 0 22px; font-size: 15px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.legal__table th { background: var(--bg-soft); color: var(--blue-ink); font-family: var(--head); font-weight: 700; text-align: left; padding: 12px 16px; font-size: 14.5px; }
.legal__table td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.legal__table td:first-child { font-weight: 600; color: var(--ink); }

.legal__contact { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-top: 12px; }
.legal__contact p { margin-bottom: 8px; }

.legal-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.legal-nav a { font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: 100px; background: var(--bg-alt); border: 1px solid var(--line); color: var(--blue-ink); }
.legal-nav a:hover { background: var(--bg-soft); border-color: #cfe0ff; }

.crumb { font-size: 14px; color: var(--muted); }
.crumb a { color: var(--muted); font-weight: 600; }
.crumb a:hover { color: var(--blue); }

@media (max-width: 720px) {
  .legal { padding: 34px 0 48px; }
  .legal h2 { font-size: 19px; margin-top: 28px; }
  .legal__table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__card { order: 2; }
  .steps, .why, .reviews { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: 1fr 1fr; }
  .book__grid { grid-template-columns: 1fr; gap: 30px; }
  .areas__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .header.nav-open .nav {
    display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 20px; gap: 4px; box-shadow: var(--shadow);
  }
  .header.nav-open .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .steps, .why, .reviews, .services, .areas__cols { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .price-row { grid-template-columns: 1fr; gap: 2px; padding: 14px 18px; text-align: left; }
  .price-row span:first-child { font-family: var(--head); margin-bottom: 4px; }
  .price-row span:not(:first-child)::before { content: attr(data-label); }
  .price-row--head { display: none; }
  .price-row span:not(:first-child) { font-size: 14px; color: var(--muted); }
  .mobile-cta { display: flex; }
  .fab-whatsapp { bottom: 76px; }
  body { padding-bottom: 64px; }
  .hero { padding: 36px 0 32px; }
  .section { padding: 52px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .cta-final__btns .btn, .hero__actions .btn { flex: 1; }
}

@media (max-width: 400px) {
  .announce { font-size: 11.5px; gap: 6px; }
  .announce .dot { display: none; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; animation: none !important; transition: none !important; }
}
