/* ==========================================================================
   WiFi XL SATU Jakarta – landing page styles
   Mobile-first. Tokens derived from XL SATU promotional materials.
   ========================================================================== */

:root {
  --navy: #0B2A66;
  --navy-deep: #071C47;
  --blue: #1E4FD8;
  --blue-bright: #2F6BFF;
  --green: #17B357;
  --green-deep: #0E8F45;
  --wa: #25D366;
  --wa-deep: #1BB157;
  --yellow: #FFC93C;
  --ice: #EEF3FF;
  --ice-2: #F7F9FF;
  --ink: #0F1F45;
  --muted: #55627F;
  --line: #DCE4F5;
  --white: #FFFFFF;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --r-card: 20px;
  --r-btn: 14px;
  --shadow: 0 14px 36px rgba(11, 42, 102, .12);
  --shadow-sm: 0 6px 18px rgba(11, 42, 102, .10);
  --nav-h: 64px;
  --sticky-h: 72px;
  --container: 1120px;
  --gutter: 18px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width: 1023px) {
  body { padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom)); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 7.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4.6vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
@media (min-width: 768px) { :root { --gutter: 32px; } }

.ico { width: 1.25em; height: 1.25em; flex: none; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 10px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; border-radius: 6px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 13px 20px; border-radius: var(--r-btn);
  font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none; text-align: center;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn--wa { background: var(--wa); color: #06331A; box-shadow: 0 8px 20px rgba(37, 211, 102, .32); }
.btn--wa:hover { background: var(--wa-deep); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--sm { padding: 9px 14px; font-size: .92rem; border-radius: 11px; }
.btn--lg { padding: 15px 24px; font-size: 1.05rem; }
.btn--xl { padding: 18px 28px; font-size: 1.12rem; border-radius: 16px; }
.btn--full { width: 100%; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav__logo img { width: 104px; height: auto; }
.nav__links { display: none; gap: 28px; }
.nav__links a { color: var(--navy); text-decoration: none; font-weight: 700; font-size: .95rem; }
.nav__links a:hover { color: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 10px; border: 0; background: transparent; border-radius: 10px; cursor: pointer;
}
.nav__burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px var(--gutter) 12px;
  }
  .nav__links.is-open a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links.is-open a:last-child { border-bottom: 0; }
}
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__logo img { width: 124px; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue) 100%);
  padding-block: 40px 56px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; color: rgba(255,255,255,.22); }
.hero__arcs { position: absolute; right: -20%; top: 50%; width: 120%; max-width: 900px; transform: translateY(-50%); }
.arc { stroke-dasharray: 100; stroke-dashoffset: 100; animation: arc-draw 3.2s ease-out forwards, arc-pulse 6s ease-in-out 3.2s infinite; }
.a1 { animation-delay: .1s, 3.3s; }
.a2 { animation-delay: .35s, 3.55s; }
.a3 { animation-delay: .6s, 3.8s; }
.a4 { animation-delay: .85s, 4.05s; }
.a5 { animation-delay: 1.1s, 4.3s; }
@keyframes arc-draw { to { stroke-dashoffset: 0; } }
@keyframes arc-pulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

.hero__grid { position: relative; display: grid; gap: 36px; }
.hero__copy { animation: rise .7s ease-out both; }
.hero__visual { animation: rise .7s ease-out .15s both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 10px; border-radius: 999px;
  background: rgba(23, 179, 87, .18); border: 1px solid rgba(23, 179, 87, .55);
  color: #C9F5DA; font-weight: 700; font-size: .85rem;
}
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(23,179,87,.25); }
.hero h1 { color: #fff; margin-top: 18px; max-width: 12ch; }
.hero__lead { margin-top: 16px; font-size: 1.08rem; color: rgba(255,255,255,.86); max-width: 46ch; }
.hero__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.hero__note { margin-top: 14px; font-size: .88rem; color: rgba(255,255,255,.7); }

.hero__visual { position: relative; }
.hero__product {
  margin: 0 auto; max-width: 400px; position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  background: #fff;
}
.hero__product img { width: 100%; aspect-ratio: 520 / 600; object-fit: cover; }
.hero__spec {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(7, 28, 71, .82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 16px; padding: 10px 14px; color: #fff;
}
.hero__spec-num { font-size: 2.4rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.hero__spec-unit { font-weight: 700; line-height: 1.1; }
.hero__spec-unit small { display: block; font-weight: 500; font-size: .7rem; color: rgba(255,255,255,.7); }

.hero__rep {
  position: relative; margin-top: -28px; margin-inline: auto; max-width: 380px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink); text-decoration: none;
  border-radius: 18px; padding: 12px 14px; box-shadow: var(--shadow);
}
.hero__rep img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; border: 3px solid var(--ice); }
.hero__rep-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.hero__rep-text strong { color: var(--navy); font-size: .98rem; }
.hero__rep-text span { font-size: .82rem; color: var(--muted); }
.hero__rep-badge {
  margin-left: auto; width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--wa); color: #fff; font-size: 1.1rem;
}

@media (min-width: 560px) {
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
}
@media (min-width: 900px) {
  .hero { padding-block: 72px 88px; }
  .hero__grid { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 56px; }
  .hero__arcs { right: -30%; width: 90%; }
  .hero__product { max-width: 440px; margin-right: 0; }
  .hero__rep { max-width: 400px; margin-right: 24px; }
}

/* --------------------------------------------------------------------------
   Benefits bar
   -------------------------------------------------------------------------- */
.benefits { background: var(--white); border-bottom: 1px solid var(--line); }
.benefits__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 14px; padding-block: 18px;
}
.benefits__list li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .92rem; color: var(--navy); padding: 8px 0; }
.benefits__list .ico { width: 34px; height: 34px; padding: 7px; border-radius: 10px; background: var(--ice); color: var(--blue); }
@media (min-width: 768px) {
  .benefits__list { grid-template-columns: repeat(4, 1fr); padding-block: 14px; }
  .benefits__list li { justify-content: center; }
}

/* --------------------------------------------------------------------------
   Section heads + reveal
   -------------------------------------------------------------------------- */
section { padding-block: 64px; }
@media (min-width: 900px) { section { padding-block: 96px; } }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 1.02rem; }

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

.tag {
  display: inline-block; vertical-align: middle; margin-left: 8px;
  padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .02em;
  background: var(--ice); color: var(--blue);
}
.tag--green { background: #E3F7EA; color: var(--green-deep); }

/* --------------------------------------------------------------------------
   Packages
   -------------------------------------------------------------------------- */
.packages { background: var(--ice-2); }
.pkg-group { margin-top: 40px; }
.pkg-group:first-of-type { margin-top: 0; }
.pkg-group__head { margin-bottom: 20px; }
.pkg-group__head h3 { font-size: 1.35rem; }
.pkg-group__head p { margin-top: 6px; color: var(--muted); max-width: 60ch; }
.pkg-group__note { margin-top: 16px; font-size: .82rem; color: var(--muted); max-width: 80ch; }

.pkg-grid { display: grid; gap: 16px; }
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-card); padding: 22px 20px;
}
.pkg--hot { border-color: var(--green); box-shadow: 0 18px 44px rgba(23, 179, 87, .18); }
.pkg--best { border-color: var(--yellow); }
.pkg__badge {
  position: absolute; top: -13px; left: 16px;
  padding: 5px 12px; border-radius: 999px; font-size: .74rem; font-weight: 800;
  background: var(--green); color: #fff; white-space: nowrap; max-width: calc(100% - 32px); overflow: hidden; text-overflow: ellipsis;
}
.pkg__badge--yellow { background: var(--yellow); color: #4A3600; }
.pkg__name { font-size: 1.05rem; color: var(--navy); }
.pkg__speed { margin-top: 8px; font-weight: 800; color: var(--blue); font-size: 1.1rem; line-height: 1; }
.pkg__speed span { font-size: 3rem; letter-spacing: -0.04em; }
.pkg__boost { margin-top: 8px; font-size: .86rem; font-weight: 700; color: var(--green-deep); min-height: 1.4em; }
.pkg__price { margin-top: 14px; display: flex; flex-direction: column; }
.pkg__rp { font-size: 1.7rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; }
.pkg__per { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.pkg__after { margin-top: 6px; font-size: .84rem; font-weight: 700; color: var(--ink); }
.pkg__device {
  margin-top: 14px; display: flex; gap: 8px; align-items: flex-start;
  font-size: .86rem; color: var(--ink); background: var(--ice); border-radius: 12px; padding: 10px 12px;
}
.pkg__device .ico { color: var(--blue); margin-top: 2px; }
.pkg__list { margin-top: 14px; display: grid; gap: 8px; font-size: .92rem; }
.pkg__list li { position: relative; padding-left: 24px; }
.pkg__list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.pkg .btn { margin-top: auto; padding-top: 14px; padding-bottom: 14px; }
.pkg__list + .btn { margin-top: 20px; }
.pkg--compact .pkg__speed span { font-size: 2.5rem; }
.pkg--compact .pkg__rp { font-size: 1.45rem; }
.pkg--compact .btn { font-size: .92rem; padding-inline: 12px; white-space: nowrap; }

@media (min-width: 640px) {
  .pkg-grid--2 { grid-template-columns: 1fr 1fr; }
}
/* Fiber plans: horizontal scroll-snap on phones, grid on desktop */
.pkg-scroller { margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-block: 16px 6px; }
.pkg-scroller::-webkit-scrollbar { display: none; }
.pkg-grid--5 { grid-auto-flow: column; grid-auto-columns: min(78vw, 300px); }
.pkg-grid--5 .pkg { scroll-snap-align: start; }
@media (min-width: 1024px) {
  .pkg-scroller { margin-inline: 0; padding-inline: 0; overflow: visible; }
  .pkg-grid--5 { grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); grid-auto-columns: auto; gap: 12px; }
  .pkg--compact { padding: 20px 16px; }
  .pkg--compact .pkg__speed span { font-size: 2.2rem; }
  .pkg--compact .pkg__rp { font-size: 1.3rem; }
  .pkg--compact .pkg__device { font-size: .8rem; }
}

.packages__help {
  margin-top: 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  background: var(--navy); color: #fff; border-radius: var(--r-card); padding: 22px;
}
.packages__help img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.25); }
.packages__help p { color: rgba(255,255,255,.85); }
.packages__help strong { color: #fff; }
@media (min-width: 768px) {
  .packages__help { flex-direction: row; align-items: center; padding: 22px 28px; }
  .packages__help p { flex: 1; }
}

/* --------------------------------------------------------------------------
   Why
   -------------------------------------------------------------------------- */
.why__layout { display: grid; gap: 32px; }
.why__list { display: grid; gap: 10px; }
.why__list li { display: flex; gap: 14px; padding: 16px; border-radius: 16px; border: 1.5px solid var(--line); background: #fff; }
.why__ico { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(145deg, var(--blue), var(--blue-bright)); color: #fff; }
.why__ico .ico { width: 24px; height: 24px; }
.why__list h3 { font-size: 1.02rem; }
.why__list p { margin-top: 4px; font-size: .92rem; color: var(--muted); }
.why__photo { margin: 0; border-radius: var(--r-card); overflow: hidden; background: var(--ice); }
.why__photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.why__photo figcaption { padding: 12px 16px; font-size: .84rem; color: var(--muted); }
@media (min-width: 900px) {
  .why__layout { grid-template-columns: 1.25fr .75fr; align-items: start; gap: 48px; }
  .why__list { grid-template-columns: 1fr 1fr; }
  .why__photo { position: sticky; top: calc(var(--nav-h) + 24px); }
}

/* --------------------------------------------------------------------------
   Meet Rahmah
   -------------------------------------------------------------------------- */
.rep { background: linear-gradient(180deg, var(--ice) 0%, #fff 100%); }
.rep__grid { display: grid; gap: 28px; }
.rep__photo { margin: 0; justify-self: center; width: min(70vw, 320px); }
.rep__photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top;
  border-radius: 28px; box-shadow: var(--shadow);
  background: #fff;
}
.rep__lead { margin-top: 14px; color: var(--muted); font-size: 1.04rem; max-width: 50ch; }
.rep__card {
  margin: 22px 0; display: grid; gap: 0;
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px; overflow: hidden;
}
.rep__card > div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.rep__card > div:last-child { border-bottom: 0; }
.rep__card dt { color: var(--muted); font-size: .9rem; }
.rep__card dd { margin: 0; font-weight: 700; color: var(--navy); }
.rep__card dd a { color: var(--blue); text-decoration: none; }
.rep__note { margin-top: 12px; font-size: .88rem; color: var(--muted); }
@media (min-width: 900px) {
  .rep__grid { grid-template-columns: 380px 1fr; gap: 64px; align-items: center; }
  .rep__photo { width: 100%; }
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */
.steps__layout { display: grid; gap: 32px; }
.steps__list { display: grid; gap: 0; position: relative; }
.steps__list li { display: flex; gap: 16px; padding-bottom: 28px; position: relative; }
.steps__list li:last-child { padding-bottom: 0; }
.steps__list li::before {
  content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px;
  background: linear-gradient(var(--blue), var(--line));
}
.steps__list li:last-child::before { display: none; }
.steps__num {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
  background: var(--blue); color: #fff; box-shadow: 0 0 0 6px var(--ice);
}
.steps__list h3 { font-size: 1.08rem; padding-top: 8px; }
.steps__list p { margin-top: 6px; color: var(--muted); font-size: .95rem; max-width: 46ch; }
.steps__photo { margin: 0; border-radius: var(--r-card); overflow: hidden; background: var(--ice); max-width: 360px; }
.steps__photo img { width: 100%; aspect-ratio: 330 / 580; object-fit: cover; }
.steps__photo figcaption { padding: 12px 16px; font-size: .84rem; color: var(--muted); }
.steps__cta { margin-top: 36px; }
@media (min-width: 900px) {
  .steps__layout { grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
  .steps__list li { padding-bottom: 36px; }
}

/* --------------------------------------------------------------------------
   Coverage form
   -------------------------------------------------------------------------- */
.coverage { background: var(--navy); color: #fff; }
.coverage h2 { color: #fff; }
.coverage__grid { display: grid; gap: 32px; }
.coverage__copy p { margin-top: 14px; color: rgba(255,255,255,.8); max-width: 50ch; }
.coverage__points { margin-top: 22px; display: grid; gap: 10px; }
.coverage__points li { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.coverage__points .ico { width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: var(--green); color: #fff; }

.cov-form { background: #fff; color: var(--ink); border-radius: var(--r-card); padding: 22px 18px; box-shadow: var(--shadow); }
.cov-form__row { margin-bottom: 14px; }
.cov-form__row--half { display: grid; gap: 14px; }
.cov-form label { display: block; font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.cov-form input, .cov-form select, .cov-form textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  font-size: 16px; /* prevents iOS zoom */
}
.cov-form textarea { resize: vertical; min-height: 84px; }
.cov-form input:focus, .cov-form select:focus, .cov-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,79,216,.18); }
.cov-form .is-invalid { border-color: #D13B3B; }
.cov-form__error { margin: -4px 0 12px; color: #B42323; font-size: .88rem; font-weight: 700; }
.cov-form__privacy { margin-top: 12px; font-size: .8rem; color: var(--muted); text-align: center; }
@media (min-width: 560px) { .cov-form__row--half { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .coverage__grid { grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
  .cov-form { padding: 30px 28px; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq__inner { max-width: 780px; }
.faq__list { display: grid; gap: 10px; }
.faq__item { border: 1.5px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 18px; font-weight: 700; color: var(--navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--ice);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E4FD8' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat; transition: transform .2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 18px 18px; color: var(--muted); font-size: .96rem; }
.faq__body a { font-weight: 700; }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(150deg, var(--blue) 0%, var(--navy) 60%, var(--navy-deep) 100%);
}
.final__bg { position: absolute; inset: 0; color: rgba(255,255,255,.14); pointer-events: none; }
.final__bg svg { position: absolute; left: 0; bottom: 0; width: 70%; max-width: 620px; }
.final__inner { position: relative; max-width: 640px; }
.final__avatar { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 4px solid rgba(255,255,255,.35); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.final h2 { color: #fff; }
.final p { margin-top: 14px; color: rgba(255,255,255,.85); font-size: 1.05rem; }
.final .btn { margin-top: 26px; width: 100%; }
.final__num { font-size: .9rem; color: rgba(255,255,255,.7); }
@media (min-width: 560px) { .final .btn { width: auto; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding-block: 44px 28px; font-size: .9rem; }
.footer__grid { display: grid; gap: 28px; }
.footer__brand img { width: 120px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 12px; }
.footer h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.footer__contact a { color: var(--wa); font-weight: 700; text-decoration: none; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.footer__nav a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 700; }
.footer__legal { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.55); }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* --------------------------------------------------------------------------
   Floating WA button + sticky mobile bar
   -------------------------------------------------------------------------- */
.fab {
  position: fixed; right: 16px; bottom: calc(var(--sticky-h) + 16px + env(safe-area-inset-bottom)); z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  width: 56px; height: 56px; border-radius: 50%; justify-content: center;
  background: var(--wa); color: #fff; text-decoration: none; font-weight: 700;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  animation: fab-in .5s ease-out 1.2s both;
}
.fab .ico { width: 28px; height: 28px; }
.fab__label { display: none; }
@keyframes fab-in { from { transform: scale(.6); opacity: 0; } to { transform: none; opacity: 1; } }
@media (min-width: 1024px) {
  .fab { bottom: 24px; right: 24px; width: auto; height: auto; padding: 14px 20px 14px 16px; border-radius: 999px; }
  .fab__label { display: inline; }
}

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; align-items: center; gap: 12px;
  min-height: var(--sticky-h); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(11,42,102,.10);
}
.sticky-cta img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ice); }
.sticky-cta__text { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.sticky-cta__text strong { color: var(--navy); }
.sticky-cta__text span { font-size: .8rem; color: var(--muted); }
.sticky-cta .btn { padding: 12px 18px; box-shadow: none; }
@media (min-width: 1024px) { .sticky-cta { display: none; } }
