/* =====================================================================
   23 Elektronik Ciputat — Indonesian e-commerce retailer style.
   Inspired by the genre: eci.id / Hartono / Erablue.
   Corporate blue, promo banners, category circles, benefit strip,
   product grid with price boxes. Original design, not a copy.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg:          #ffffff;
  --bg-soft:     #f4f6f8;
  --bg-blue:     #eef4fa;
  --text:        #1a1f2b;
  --text-soft:   #3a4150;
  --muted:       #6b7280;
  --border:      #e3e6eb;
  --border-soft: #eef0f3;

  /* Corporate blue palette */
  --blue-50:     #e8f1f9;
  --blue-100:    #c8def0;
  --blue-500:    #1380c7;
  --blue-600:    #0f69ab;          /* primary */
  --blue-700:    #0b5288;
  --blue-800:    #073e6a;
  --blue-900:    #052b4a;

  /* Accents */
  --orange:      #ee4d2d;          /* promo badge (very Shopee/Bukalapak-ish) */
  --orange-dark: #d63d1e;
  --yellow:      #ffc107;
  --green:       #10b981;
  --red:         #dc2626;

  --wa:          #25d366;
  --wa-dark:     #1ebe57;

  --shadow-sm:   0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md:   0 3px 10px rgba(15, 23, 42, 0.06);
  --shadow-lg:   0 8px 24px rgba(15, 23, 42, 0.10);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-soft);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }
h1, h2, h3, h4, h5 { font-weight: 700; color: var(--text); line-height: 1.3; letter-spacing: -0.01em; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }

/* =====================================================================
   Topbar — thin utility info row (very e-commerce)
   ===================================================================== */
.topbar {
  background: var(--blue-800);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.95); text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar .top-left, .topbar .top-right {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
}
.topbar .top-right a {
  display: inline-flex; align-items: center; gap: 6px;
}
/* On small screens the topbar wraps to ~3 lines. Hide the secondary
   links (Kontak / FAQ / Garansi — already reachable from the nav) so the
   topbar stays 1-2 lines. Keep the phone link (first anchor, tappable). */
@media (max-width: 600px) {
  .topbar .top-right a:not(:first-child) { display: none; }
}

/* =====================================================================
   Header — logo + search + WA CTA
   ===================================================================== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 16px;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; color: var(--blue-600);
  text-decoration: none; letter-spacing: -0.02em;
}
.logo:hover { color: var(--blue-700); }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--blue-600);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  border-radius: var(--r-md);
}
.logo small {
  display: block; font-weight: 500; font-size: 10.5px;
  color: var(--muted); margin-top: 2px;
  letter-spacing: 0.02em;
}

/* "Search-bar" style CTA — it's a WhatsApp prompt styled like a search input */
.header-search {
  display: flex; align-items: stretch;
  background: #fff;
  border: 2px solid var(--blue-600);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 540px;
  width: 100%;
}
.header-search .hs-input {
  flex: 1;
  border: 0; outline: 0;
  padding: 10px 14px;
  font-family: inherit; font-size: 14px;
  background: #fff;
  color: var(--text);
}
.header-search .hs-input::placeholder { color: var(--muted); }
.header-search .hs-btn {
  background: var(--blue-600);
  color: #fff;
  border: 0;
  padding: 0 18px;
  font-weight: 600; font-size: 13.5px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.header-search .hs-btn:hover { background: var(--blue-700); }

.header-actions { display: flex; gap: 8px; align-items: center; }
.header-actions .nav-cta {
  background: var(--wa); color: #fff;
  padding: 10px 16px; border-radius: var(--r-md);
  font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.header-actions .nav-cta:hover { background: var(--wa-dark); }

.menu-toggle {
  display: none;
  background: #fff; border: 1px solid var(--border);
  padding: 8px 12px; font-size: 13px;
  font-family: inherit; cursor: pointer;
  border-radius: var(--r-sm); color: var(--text);
}

/* Sub-nav bar with category links — sits below main header */
.subnav {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.subnav .container {
  display: flex; gap: 0; align-items: center;
  padding: 0 16px;
  overflow-x: auto;
}
.subnav a {
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.subnav a:hover { color: var(--blue-600); }
.subnav a.active { color: var(--blue-600); border-bottom-color: var(--blue-600); font-weight: 600; }
.subnav a.subnav-cta {
  margin-left: auto;
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr; gap: 12px; }
  .header-search { grid-column: 1 / -1; max-width: none; order: 3; }
  /* Hide the header "Chat Admin" WA button on mobile to avoid triple
     redundant WhatsApp CTAs (search WA button + this + sticky FAB).
     Keep the search WA button and the sticky FAB. */
  .header-actions .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .subnav { display: none; }
  .subnav.open { display: block; }
  /* Mobile open menu: vertical stacked list so all items are visible
     without horizontal scrolling (was a horizontal-scroll strip). */
  .subnav.open .container {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
    padding: 4px 0;
  }
  .subnav.open .container a {
    white-space: normal;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }
  .subnav.open .container a.subnav-cta {
    margin-left: 0;
    border-bottom: none;
  }
}

/* =====================================================================
   Breadcrumbs
   ===================================================================== */
.crumbs {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--muted);
}
.crumbs .container { padding-top: 10px; padding-bottom: 10px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--blue-600); text-decoration: underline; }
.crumbs span.sep { margin: 0 6px; color: var(--border); }
.crumbs strong { color: var(--text); font-weight: 600; }

/* =====================================================================
   HERO — promo-banner first (2 main banners + benefit strip)
   ===================================================================== */
.hero-wrap { background: var(--bg-soft); padding: 16px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
}
.promo-main {
  background: linear-gradient(120deg, var(--blue-600) 0%, var(--blue-800) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-main::before, .promo-main::after {
  content: ""; position: absolute; border-radius: 50%;
  pointer-events: none;
}
.promo-main::before {
  width: 360px; height: 360px;
  right: -80px; top: -100px;
  background: rgba(255,255,255,0.06);
}
.promo-main::after {
  width: 220px; height: 220px;
  right: 80px; bottom: -90px;
  background: rgba(255,255,255,0.04);
}
.promo-main .ribbon {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}
.promo-main h1 {
  color: #fff;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 800;
  max-width: 540px;
  position: relative; z-index: 2;
}
.promo-main h1 span.hl {
  background: var(--yellow);
  color: var(--blue-900);
  padding: 2px 10px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.promo-main p.lead {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 22px;
  position: relative; z-index: 2;
}
.promo-main .promo-ctas { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 2; }

.promo-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.promo-sub {
  border-radius: var(--r-lg);
  padding: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Harmonized with the brand blue hero — softer blue-family panels instead
   of the clashing green + orange. A thin accent bar keeps each card distinct. */
.promo-sub.promo-service {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  border-top: 3px solid var(--blue-100);
}
.promo-sub.promo-credit {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  border-top: 3px solid var(--yellow);
}
.promo-sub h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.promo-sub p {
  color: rgba(255,255,255,0.88);
  font-size: 12.5px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.promo-sub a {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}
.promo-sub a:hover { color: #fff; border-color: #fff; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .promo-main { padding: 28px 24px; min-height: 240px; }
  .promo-main h1 { font-size: 26px; }
  .promo-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}
@media (max-width: 560px) {
  .promo-side { grid-template-columns: 1fr; }
}

/* =====================================================================
   Benefits strip — 4 perks under hero
   ===================================================================== */
.benefits-wrap { background: var(--bg-soft); padding: 0 0 16px; }
.benefits {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.benefit {
  padding: 16px 18px;
  display: flex; gap: 12px; align-items: center;
  border-right: 1px solid var(--border-soft);
}
.benefit:last-child { border-right: 0; }
.benefit-icon {
  width: 38px; height: 38px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.benefit-text strong { display: block; font-size: 13.5px; color: var(--text); font-weight: 700; }
.benefit-text span { font-size: 11.5px; color: var(--muted); }
@media (max-width: 860px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
}

/* =====================================================================
   Category circles — Tokopedia/Shopee/ECI style row
   ===================================================================== */
.cat-strip-wrap { background: #fff; padding: 0; }
.cat-strip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 16px;
}
.cat-strip-title {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.cat-strip-title h3 { font-size: 16px; font-weight: 700; }
.cat-strip-title a { font-size: 12.5px; font-weight: 600; color: var(--blue-600); }
.cat-circles {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.cat-circle {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 8px 4px;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--r-md);
}
.cat-circle:hover { background: var(--blue-50); color: var(--blue-600); }
.cat-circle .cat-icon {
  width: 54px; height: 54px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 50%;
  display: grid; place-items: center;
}
.cat-circle .cat-icon svg { width: 26px; height: 26px; }
.cat-circle .cat-name { font-size: 12px; font-weight: 500; text-align: center; line-height: 1.3; }
@media (max-width: 860px) {
  .cat-circles { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 460px) {
  .cat-circles { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================================
   Sections (kept generic)
   ===================================================================== */
.section { padding: 24px 0; }
/* On mobile the fixed .wa-sticky FAB hovers bottom-right. Give the last
   content section extra bottom clearance so card CTAs / page-end content
   are not covered by the FAB when scrolled to the bottom. */
@media (max-width: 700px) {
  .section:last-of-type { padding-bottom: 84px; }
}
.section-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.section-block-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 20px; margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.section-block-head h2 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}
.section-block-head .sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.section-block-head .link-more {
  font-size: 13px; font-weight: 600; color: var(--blue-600); white-space: nowrap;
}
.section-block-head .left { display: flex; flex-direction: column; }
@media (max-width: 640px) {
  .section-block-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =====================================================================
   Product cards — e-commerce style
   ===================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.15s, border-color 0.15s;
  position: relative;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.card h3 {
  font-size: 14.5px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.card p { color: var(--muted); font-size: 13px; margin-bottom: 10px; line-height: 1.5; }
.card .card-cta { margin-top: auto; padding-top: 6px; }
.card .card-cta .btn { width: 100%; padding: 10px 14px; font-size: 13.5px; }

.card-img {
  background: var(--bg-soft);
  /* 4:3 instead of 1:1 — the 1:1 gray placeholder boxes left huge empty
     scroll gaps on mockup product/service pages. */
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 10px;
  font-weight: 500;
  position: relative;
}
.card-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: var(--orange); color: #fff;
  font-size: 10.5px; font-weight: 700;
  padding: 3px 8px; border-radius: var(--r-sm);
  letter-spacing: 0.02em;
}
.card-badge.blue { background: var(--blue-600); }
.card-badge.green { background: var(--green); }

/* Product price box */
.price-box {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 10px;
}
.price-box .price-now {
  color: var(--orange); font-weight: 800; font-size: 16px;
  letter-spacing: -0.01em;
}
.price-box .price-strike {
  color: var(--muted); text-decoration: line-through; font-size: 12px;
}
.price-box .price-cta {
  color: var(--blue-600); font-weight: 700; font-size: 13.5px;
}

/* Old .price kept for compatibility */
.price {
  font-size: 14px; font-weight: 700; color: var(--blue-700);
  margin-bottom: 10px;
}
.price small { color: var(--muted); font-weight: 400; font-size: 11.5px; }

/* Old .tag */
.tag {
  display: inline-block;
  /* Inside flex-column .card-body the default align-items:stretch makes
     the badge span the full card width. Keep it a content-width pill. */
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  font-size: 10.5px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: var(--r-sm);
  padding: 3px 8px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tag-warn { background: #fff3cd; color: #856404; }
.tag-ok { background: #d4edda; color: #155724; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  line-height: 1.2;
}
.btn-wa { background: var(--wa); color: #fff !important; }
.btn-wa:hover { background: var(--wa-dark); }
.btn-primary { background: var(--blue-600); color: #fff !important; }
.btn-primary:hover { background: var(--blue-700); }
.btn-secondary { background: #fff; color: var(--text) !important; border-color: var(--border); }
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--blue-600); color: var(--blue-600) !important; }
.btn-orange { background: var(--orange); color: #fff !important; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* When btn-ghost is in light context */
.section-block .btn-ghost, .page-header-light .btn-ghost {
  color: var(--text) !important; border-color: var(--border);
}

/* =====================================================================
   Trust band → reused as "Layanan" boxes
   ===================================================================== */
.trust-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.trust-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.trust-item .ti-icon {
  width: 40px; height: 40px;
  background: var(--blue-50); color: var(--blue-600);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.trust-item h4 { font-size: 14.5px; font-weight: 700; color: var(--text); }
.trust-item p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) { .trust-band { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-band { grid-template-columns: 1fr; } }

/* =====================================================================
   Tables
   ===================================================================== */
.price-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: 13.5px;
}
.price-table th, .price-table td {
  text-align: left; padding: 11px 14px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.price-table th {
  background: var(--bg-soft); font-weight: 600; font-size: 12.5px;
  color: var(--text);
}
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: 0; }
.price-table td.price-cell { font-weight: 700; white-space: nowrap; color: var(--blue-700); }

/* =====================================================================
   Two-col layout
   ===================================================================== */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 16px; } }

.aside-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  position: sticky;
  top: 110px;
}
.aside-card h4 {
  font-size: 14px; margin-bottom: 8px; font-weight: 700; color: var(--text);
}
.aside-card p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.aside-card .btn { width: 100%; margin-bottom: 6px; padding: 10px 14px; font-size: 13.5px; }
.aside-card .btn:last-child { margin-bottom: 0; }
.aside-card hr { border: 0; border-top: 1px solid var(--border-soft); margin: 14px 0; }

/* =====================================================================
   Notices
   ===================================================================== */
.notice {
  background: #fff8e6;
  border-left: 4px solid var(--yellow);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--text);
  margin: 16px 0;
}
.notice strong { display: block; font-weight: 700; margin-bottom: 4px; }
.notice.notice-info {
  background: var(--blue-50);
  border-left-color: var(--blue-600);
  color: var(--blue-800);
}

/* =====================================================================
   Prose
   ===================================================================== */
.prose { color: var(--text-soft); font-size: 14.5px; }
.prose h2 { font-size: 19px; margin-top: 28px; margin-bottom: 10px; color: var(--text); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 16px; margin-top: 20px; margin-bottom: 6px; }
.prose p { margin-bottom: 12px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose ul li, .prose ol li { margin-bottom: 6px; }
.prose strong { color: var(--text); }
.prose a { color: var(--blue-600); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--blue-100); }
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 14px;
  padding: 14px 44px 14px 16px;
  list-style: none; position: relative; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px; color: var(--blue-600);
  font-weight: 400; line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); padding: 0 16px 16px; font-size: 13.5px; line-height: 1.6; }

/* =====================================================================
   Reviews
   ===================================================================== */
.review-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
}
.review-stars { color: var(--yellow); font-size: 14px; margin-bottom: 8px; }
.review-card p { font-size: 13.5px; color: var(--text-soft); line-height: 1.6; }
.review-card .who {
  font-size: 12px; color: var(--muted); margin-top: 10px;
  padding-top: 10px; border-top: 1px solid var(--border-soft); font-weight: 500;
}

/* =====================================================================
   Area list
   ===================================================================== */
.area-list { display: flex; flex-wrap: wrap; gap: 6px; }
.area-list span {
  padding: 6px 12px; font-size: 12.5px;
  color: var(--text-soft);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 500;
}

/* =====================================================================
   WhatsApp sticky
   ===================================================================== */
.wa-sticky {
  position: fixed; bottom: 18px; right: 18px; z-index: 100;
  background: var(--wa); color: #fff !important;
  padding: 11px 16px; border-radius: 100px;
  font-weight: 600; font-size: 13.5px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.40);
  text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.wa-sticky:hover { background: var(--wa-dark); }
/* Hide the sticky FAB while the mobile nav is open so it doesn't float
   over menu rows (e.g. the "Review" item). */
body.menu-open .wa-sticky { display: none; }
.wa-sticky .wa-icon {
  width: 20px; height: 20px;
  background: #fff; color: var(--wa);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* =====================================================================
   CTA strip
   ===================================================================== */
.cta-strip {
  background: linear-gradient(120deg, var(--blue-600) 0%, var(--blue-800) 100%);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.cta-strip h2 { font-size: 24px; color: #fff; margin-bottom: 6px; font-weight: 700; }
.cta-strip p { color: rgba(255,255,255,0.88); margin-bottom: 20px; font-size: 14.5px; }
.cta-strip .btn-secondary {
  background: rgba(255,255,255,0.10); color: #fff !important;
  border-color: rgba(255,255,255,0.35);
}
.cta-strip .btn-secondary:hover { background: rgba(255,255,255,0.20); border-color: #fff; }

/* =====================================================================
   Footer
   ===================================================================== */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.72);
  padding: 44px 0 20px;
  font-size: 13.5px;
}
.footer .logo, .footer .logo small { color: #fff; }
.footer .logo small { color: rgba(255,255,255,0.6); }
.footer .logo-mark { background: #fff; color: var(--blue-900); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 28px;
}
.footer h5 {
  color: #fff; font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 7px; font-size: 13px; }
.footer .pay-row {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.footer .pay-chip {
  background: rgba(255,255,255,0.10);
  padding: 5px 9px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 600; color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 18px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.55);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
/* Clearance so the fixed .wa-sticky FAB does not overlap the footer
   copyright / policy links when scrolled to the bottom on mobile. */
@media (max-width: 700px) {
  .footer { padding-bottom: 78px; }
}

/* =====================================================================
   Page header (interior pages) — blue band
   ===================================================================== */
.page-header {
  background: linear-gradient(120deg, var(--blue-600) 0%, var(--blue-800) 100%);
  color: #fff;
  padding: 36px 0 32px;
}
.page-header h1 { font-size: 28px; margin-bottom: 6px; color: #fff; font-weight: 800; }
.page-header p { font-size: 14.5px; color: rgba(255,255,255,0.92); max-width: 760px; }

/* =====================================================================
   Brand strip
   ===================================================================== */
.brand-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
@media (max-width: 720px) { .brand-strip { grid-template-columns: repeat(3, 1fr); } }
.brand-chip {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 12px; text-align: center;
  font-weight: 700; font-size: 13px; color: var(--text-soft);
}

/* =====================================================================
   Symptom grid
   ===================================================================== */
.symptom-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
@media (max-width: 600px) { .symptom-grid { grid-template-columns: 1fr; } }
.symptom-grid div {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px; font-size: 13.5px; color: var(--text-soft);
}
.symptom-grid div::before {
  content: "•"; color: var(--blue-600); margin-right: 8px; font-weight: 700;
}

/* =====================================================================
   Inclusion grid
   ===================================================================== */
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .inc-grid { grid-template-columns: 1fr; } }
.inc-grid > div {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px;
}
.inc-grid h4 {
  font-size: 13.5px; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border-soft);
  font-weight: 700;
}
.inc-grid .inc-yes h4 { color: #155724; }
.inc-grid .inc-no h4 { color: #c62828; }
.inc-grid ul { list-style: none; }
.inc-grid ul li {
  padding: 6px 0 6px 22px; position: relative;
  font-size: 13.5px; color: var(--text-soft);
  border-bottom: 1px solid var(--border-soft);
}
.inc-grid ul li:last-child { border-bottom: 0; }
.inc-grid .inc-yes li::before {
  content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700;
}
.inc-grid .inc-no li::before {
  content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 700;
}

/* =====================================================================
   Helpers
   ===================================================================== */
.muted { color: var(--muted); }
hr.rule { border: 0; border-top: 1px solid var(--border); margin: 28px 0; }

/* Wrap all generic sections in container backgrounds to match block style */
.section .container > h2,
.section .container > .sub {
  /* keep flowing for sub-pages that don't use .section-block */
}
.section .section-block + .section-block { margin-top: 16px; }
