/* ==========================================================================
   Mwaliko — landing page styles
   Built on top of Bootstrap 5.3. Design language: "Modernist" — flat, sharp
   corners, 2px rules, hairline tile grids, Archivo type. Navy + orange.
   ========================================================================== */

:root {
  /* Brand palette (from the Mwaliko design) */
  --color-bg: #f3f2f2;
  --color-navy: #083A74;
  --color-navy-tint: #e9eef6;      /* cool alternating section background */
  --color-warm: #fff7f0;           /* warm alternating section background */
  --color-text: #083A74;

  --color-accent: #e56b43;
  --color-accent-100: #fdeee8;
  --color-accent-200: #f9d6c8;
  --color-accent-300: #f3b79f;
  --color-accent-500: #e56b43;
  --color-accent-600: #cf5730;
  --color-accent-700: #a8411f;

  --color-divider: color-mix(in srgb, #083A74 40%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #4d6382;
  --color-neutral-800: #22456f;

  --font-heading: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, sans-serif;

  --shadow-md: 0 3px 10px color-mix(in srgb, #083A74 16%, transparent);

  /* Bootstrap overrides */
  --bs-body-bg: var(--color-bg);
  --bs-body-color: var(--color-text);
  --bs-body-font-family: var(--font-body);
  --bs-link-color: var(--color-accent-700);
  --bs-link-hover-color: var(--color-accent);
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { color: var(--color-accent-700); text-decoration: none; }
a:hover { color: var(--color-accent); }

/* --- Layout helpers ------------------------------------------------------ */
.mw {                     /* content column: matches the 1240px design width */
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 72px);
}
.section { padding-block: 56px; }
.section-lg { padding-block: 72px; }

.band-navy { background: var(--color-navy); color: #fff; }
.band-tint { background: var(--color-navy-tint); }
.band-warm { background: var(--color-warm); }

.rule { height: 2px; border: 0; margin: 0; background: var(--color-divider); opacity: 1; }

/* --- Eyebrow / kicker ---------------------------------------------------- */
.kicker {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-700);
  margin-bottom: 14px;
}
.band-navy .kicker { color: var(--color-accent-300); }

/* --- Tags ---------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 4px 12px;
}
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }
.band-navy .tag-outline { border-color: #fff; color: #fff; }

/* --- Buttons (restyled Bootstrap) ---------------------------------------- */
.btn {
  --bs-btn-border-radius: 999px;
  --bs-btn-border-width: 2px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  --bs-btn-bg: var(--color-accent);
  --bs-btn-border-color: var(--color-accent);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--color-accent-600);
  --bs-btn-hover-border-color: var(--color-accent-600);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--color-accent-700);
  --bs-btn-active-border-color: var(--color-accent-700);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--color-accent) 32%, transparent);
}
.btn-secondary {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--color-navy);
  --bs-btn-color: var(--color-text);
  --bs-btn-hover-bg: color-mix(in srgb, var(--color-navy) 8%, transparent);
  --bs-btn-hover-border-color: var(--color-navy);
  --bs-btn-hover-color: var(--color-text);
  --bs-btn-active-bg: color-mix(in srgb, var(--color-navy) 14%, transparent);
}
.btn-ghost {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--color-navy);
  --bs-btn-color: var(--color-text);
}
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); border-color: var(--color-accent); }

/* Buttons that sit on a navy band — translucent glass pills (UzaDigit style) */
.band-navy .btn-secondary,
.on-navy.btn-secondary {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.band-navy .btn-secondary:hover,
.on-navy.btn-secondary:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .45); color: #fff; }
.band-navy .btn-ghost,
.on-navy.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}
.band-navy .btn-ghost:hover,
.on-navy.btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; border-color: rgba(255, 255, 255, .45); }

/* --- Navbar -------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  color: #fff;
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-block: 12px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.nav-brand img { width: 40px; height: 40px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: #fff; font-size: 14px; font-weight: 700; }
.site-nav a:not(.btn) {
  position: relative;
  transition: color .2s ease;
}
/* animated underline for hover + active (scroll-spy) state */
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:not(.btn):hover { color: var(--color-accent-300); }
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav a.is-active { color: var(--color-accent-300); }
.site-nav a.is-active::after { transform: scaleX(1); }

/* --- Scroll progress bar (under the navbar) ------------------------------ */
.scroll-progress {
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-accent);
  transform-origin: left;
  transition: width .08s linear;
}
@media (max-width: 900px) {
  /* keep the underline sensible in the stacked mobile menu */
  .nav-links a:not(.btn)::after { bottom: 0; }
  .site-nav a.is-active { color: var(--color-accent-300); }
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  width: 42px; height: 38px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-navy);
    border-bottom: 2px solid rgba(255,255,255,.2);
    padding: 8px clamp(20px, 5vw, 72px) 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
  }
  .nav-links.open { max-height: 520px; }
  .nav-links a { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12); }
  .nav-links .btn { margin-top: 12px; justify-content: center; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 56px clamp(32px, 5vw, 80px);
  align-items: start;
}
.hero-title {
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 0 -0.05em;
}
.hero-title .accent { color: var(--color-accent); }
.hero-lead { font-size: 17px; line-height: 28px; max-width: 54ch; margin: 28px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-checks { list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 12px; font-size: 15px; }
.hero-checks li { display: flex; gap: 12px; align-items: baseline; }
.hero-checks .dot { width: 10px; height: 10px; background: var(--color-accent); flex: none; transform: translateY(2px); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Dashboard preview (hero, dark) -------------------------------------- */
.panel.dash {
  --dash-bg: #0b1c36;
  --dash-card: #13294a;
  --dash-line: rgba(255,255,255,0.09);
  --dash-muted: rgba(255,255,255,0.58);
  position: relative;
  background: var(--dash-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 30px 60px color-mix(in srgb, #0b1c36 55%, transparent);
  margin-bottom: 34px;
}
.dash-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid var(--dash-line);
}
.dash-dots { display: inline-flex; gap: 6px; }
.dash-dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.dash-dots i:first-child { background: var(--color-accent); }
.dash-title { font-size: 13px; letter-spacing: 0.02em; color: var(--dash-muted); }
.dash-body { padding: 18px; }

.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dstat { background: var(--dash-card); border: 1px solid var(--dash-line); border-radius: 12px; padding: 14px; }
.dstat .dl { margin: 0; font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--dash-muted); }
.dstat .dn { margin: 8px 0 0; font-family: var(--font-heading); font-weight: 800; font-size: 26px; line-height: 1; }
.dstat .dd { margin: 8px 0 0; font-size: 12px; font-weight: 700; }
.dstat .dd.up { color: var(--color-accent-300); }
.dstat .dd.warn { color: var(--color-accent); }

.dash-lower { display: grid; grid-template-columns: 1.05fr 1fr; gap: 12px; margin-top: 12px; }
.dash-chart, .dash-list { background: var(--dash-card); border: 1px solid var(--dash-line); border-radius: 12px; padding: 14px; }
.dch-head { display: flex; justify-content: space-between; font-size: 12px; color: var(--dash-muted); margin-bottom: 10px; }
.dch-head .unit { letter-spacing: 0.06em; }
.dchart { width: 100%; height: 90px; display: block; }
.dll-title { margin: 0 0 10px; font-family: var(--font-heading); font-weight: 800; font-size: 14px; }
.dash-list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dash-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.82); }
.dash-list li b { margin-left: auto; font-family: var(--font-heading); font-weight: 800; color: #fff; }
.lg-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.lg-dot.g { background: #2fbf71; }
.lg-dot.o { background: var(--color-accent); }
.lg-dot.n { background: rgba(255,255,255,0.35); }

.dash-alert {
  position: absolute; left: -14px; bottom: -22px;
  display: flex; align-items: center; gap: 10px;
  background: #fff; color: var(--color-text);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 16px 34px color-mix(in srgb, #0b1c36 30%, transparent);
  font-size: 14px; font-weight: 600; max-width: 260px;
}
.da-ico { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; flex: none; border-radius: 9px; background: var(--color-accent-100); color: var(--color-accent-600); }
.da-ico svg { width: 17px; height: 17px; }
@media (max-width: 860px) { .dash-alert { position: static; margin-top: 18px; max-width: none; } .panel.dash { margin-bottom: 0; } }
.note { font-size: 11px; color: var(--color-neutral-600); }

/* --- Section headings ---------------------------------------------------- */
.h-section {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  margin: 0;
  max-width: 30ch;
}
.lead-text { font-size: 17px; max-width: 62ch; margin: 24px 0 0; }

/* --- Tile grid (the hairline card grid) ---------------------------------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.tiles.cols-lg { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tile {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px color-mix(in srgb, #083A74 8%, transparent);
  padding: 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px color-mix(in srgb, #083A74 14%, transparent);
}
.tile p { margin: 0; }
.tile .t {
  font-family: var(--font-heading);
  font-weight: 800;
  margin: 0 0 8px;
}
.tile .b { font-size: 14px; color: var(--color-neutral-800); }
.tile.accent { background: var(--color-accent-100); box-shadow: 0 12px 30px color-mix(in srgb, var(--color-accent) 18%, transparent); }

/* --- Feature icon badges ------------------------------------------------- */
.tile .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.tile .ico svg { width: 24px; height: 24px; display: block; }
/* colour variants */
.ico-orange { background: var(--color-accent-100); color: var(--color-accent-600); }
.ico-navy   { background: var(--color-navy-tint); color: var(--color-navy); }
.ico-green  { background: #e6f4ec; color: #1f7a4d; }
.ico-purple { background: #efeafa; color: #6b3fb8; }
.ico-teal   { background: #e3f3f4; color: #147a80; }
.ico-gold   { background: #fbf1dc; color: #b07d14; }

.tile .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--color-accent);
  margin: 0 0 12px;
}

/* --- Numbered rows ("what control looks like") --------------------------- */
.rows { display: grid; margin-top: 32px; }
.rows .row-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 2px solid var(--color-divider);
}
.rows .row-item:last-child { border-bottom: 2px solid var(--color-divider); }
.rows .idx { margin: 0; font-family: var(--font-heading); font-weight: 800; font-size: 15px; }
.rows .row-item h4 { margin: 0 0 6px; font-size: 20px; }
.rows .row-item p { margin: 0; font-size: 15px; color: var(--color-neutral-800); max-width: 52ch; }

/* --- Two column split ---------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 48px clamp(32px, 5vw, 72px);
  align-items: start;
}
.split.tight { grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr); }
@media (max-width: 860px) { .split, .split.tight { grid-template-columns: 1fr; gap: 36px; } }

/* --- Estimator (interactive sale card) ----------------------------------- */
.estimator.sale-card {
  border: 1px solid var(--color-neutral-300);
  background: #fff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 50px color-mix(in srgb, #083A74 12%, transparent);
}
.sc-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  background: var(--color-navy); color: #fff;
  padding: 20px 22px;
}
.sc-title { margin: 0; font-family: var(--font-heading); font-weight: 800; font-size: 18px; }
.sc-sub { margin: 4px 0 0; font-size: 13px; color: color-mix(in srgb, #fff 68%, transparent); }
.sc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 12px; letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}
.sc-badge svg { width: 13px; height: 13px; }

.sc-body { padding: 22px; }
.sc-convert {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px;
  background: var(--color-warm); border: 1px solid var(--color-accent-200);
  border-radius: 14px; padding: 20px 12px;
}
.scc { text-align: center; }
.scc-n { margin: 0; font-family: var(--font-heading); font-weight: 800; font-size: 30px; line-height: 1; }
.scc-l { margin: 6px 0 0; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-neutral-700); }
.scc-arrow { display: inline-flex; color: var(--color-accent); }
.scc-arrow svg { width: 22px; height: 22px; }

.sc-bar-row { margin-top: 22px; }
.sc-bar-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--color-neutral-800); margin-bottom: 8px; }
.sc-bar-head b { font-family: var(--font-heading); font-weight: 800; color: var(--color-text); }
.sc-bar { height: 8px; border-radius: 999px; background: var(--color-neutral-200); overflow: hidden; }
.sc-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--color-accent-700), var(--color-accent)); transition: width .3s ease; }

.sc-eyebrow { margin: 24px 0 12px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-neutral-700); }
.estimator .choices { display: flex; flex-wrap: wrap; gap: 10px; }
.estimator .pill {
  font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--color-neutral-300); background: #fff; color: var(--color-text);
  cursor: pointer; transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.estimator .pill:hover { border-color: var(--color-accent); color: var(--color-accent-700); }
.estimator .pill.active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

.sc-hint { margin: 18px 0 0; font-size: 14px; color: var(--color-neutral-700); }
.sc-total {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--color-neutral-300);
  font-size: 15px; color: var(--color-neutral-800);
}
.sc-total .suggest { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--color-accent-700); }

/* --- App section --------------------------------------------------------- */
.app-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 32px clamp(32px, 5vw, 72px);
  align-items: end;
}
@media (max-width: 860px) { .app-head { grid-template-columns: 1fr; gap: 32px; } }

.store-links { display: grid; gap: 12px; }
.store-link {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--color-text);
  padding: 12px 16px;
  color: var(--color-text);
}
.store-link:hover { background: var(--color-accent-100); border-color: var(--color-accent); color: var(--color-text); }
.store-link .glyph { width: 26px; height: 26px; flex: none; display: inline-flex; align-items: center; justify-content: center; color: var(--color-text); }
.store-link .glyph svg { width: 100%; height: 100%; display: block; }
.store-link:hover .glyph { color: var(--color-accent); }
.store-link:hover .glyph-play { color: inherit; }
.store-link .sm { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-neutral-700); }
.store-link .lg { font-family: var(--font-heading); font-weight: 800; font-size: 19px; line-height: 1.2; }

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px clamp(20px, 3vw, 40px);
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid var(--color-divider);
}
.shots-sm {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px clamp(20px, 3vw, 40px);
  margin-top: 40px;
  padding-top: 0;
  border-top: 0;
}
.shot { margin: 0; }
.shot img {
  width: 100%; height: auto;
  border: 1px solid var(--color-divider);
  background: #fff;
}
.shot figcaption {
  margin-top: 12px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-neutral-700);
}
.shot .cap { margin: 8px 0 0; font-size: 14px; color: var(--color-neutral-800); }

/* --- Testimonial --------------------------------------------------------- */
.quote-fig {
  margin: 0;
  display: grid; gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.45fr);
  align-items: end;
}
.quote-fig blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 34ch;
}
.quote-fig figcaption { font-size: 14px; color: var(--color-neutral-700); }
@media (max-width: 720px) { .quote-fig { grid-template-columns: 1fr; gap: 16px; } }

/* --- FAQ (accordion) ----------------------------------------------------- */
.faq-head { text-align: center; margin-bottom: 36px; }
.faq-head .h-section { margin-left: auto; margin-right: auto; }
.faq {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.faq .qa {
  background: #fff;
  border: 1px solid var(--color-neutral-300);
  border-radius: 14px;
  padding: 4px 22px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq .qa[open] {
  border-color: var(--color-accent-200);
  box-shadow: 0 12px 30px color-mix(in srgb, #083A74 8%, transparent);
}
.faq .qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 0; cursor: pointer;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--color-text);
  list-style: none;
}
.faq .qa summary::-webkit-details-marker { display: none; }
.faq .qa summary:hover { color: var(--color-accent-700); }
.faq .qa-ico {
  position: relative; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-accent-100);
  transition: background-color .18s ease;
}
.faq .qa-ico::before,
.faq .qa-ico::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 2.5px; border-radius: 2px;
  background: var(--color-accent-600);
  transform: translate(-50%, -50%);
  transition: transform .22s ease, opacity .18s ease;
}
.faq .qa-ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq .qa[open] .qa-ico { background: var(--color-accent); }
.faq .qa[open] .qa-ico::before,
.faq .qa[open] .qa-ico::after { background: #fff; }
.faq .qa[open] .qa-ico::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.faq .qa-body { padding: 0 0 20px; }
.faq .qa-body p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--color-neutral-800); max-width: 60ch; }
.faq .qa[open] summary ~ .qa-body { animation: faq-open .25s ease; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.faq-foot { margin: 32px auto 0; text-align: center; font-size: 15px; color: var(--color-neutral-800); }
.faq-foot a { font-weight: 700; color: var(--color-accent-700); }
.faq-foot a:hover { color: var(--color-accent); }

/* --- Packages ------------------------------------------------------------ */
.pkg-grid { gap: 22px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--color-neutral-300);
  border-radius: 18px;
  box-shadow: 0 12px 30px color-mix(in srgb, #083A74 7%, transparent);
}
.pkg .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  margin-bottom: 18px;
  background: var(--color-accent-100); color: var(--color-accent-600);
}
.pkg .ico svg { width: 24px; height: 24px; display: block; }
.pkg.best .ico { background: color-mix(in srgb, var(--color-accent) 22%, transparent); color: var(--color-accent-300); }
.pkg-head { padding-bottom: 18px; margin-bottom: 20px; border-bottom: 1px solid var(--color-neutral-200); }
.pkg .plan-name { margin: 0; font-family: var(--font-heading); font-weight: 800; font-size: 22px; letter-spacing: 0.02em; text-transform: uppercase; }
.pkg .plan-tag { margin: 4px 0 0; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-accent); }

.pkg .price { margin: 0; font-family: var(--font-heading); font-weight: 800; font-size: 34px; line-height: 1.05; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pkg .price .unit { font-size: 13px; font-weight: 700; color: var(--color-neutral-700); letter-spacing: 0.01em; }
.pkg .price-note { margin: 8px 0 0; font-size: 13px; color: var(--color-neutral-700); }
.pkg .pkg-desc { margin: 22px 0 0; padding-top: 22px; border-top: 1px solid var(--color-neutral-200); font-size: 14px; color: var(--color-neutral-800); }

.pkg ul { list-style: none; margin: 20px 0 26px; padding: 0; display: grid; gap: 12px; font-size: 14px; }
.pkg ul li { position: relative; padding-left: 26px; color: var(--color-text); }
.pkg ul li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 16px; height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / 12px no-repeat, linear-gradient(#000 0 0);
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / 12px no-repeat;
}
.pkg .btn { margin-top: auto; width: 100%; }

/* recommended (dark) card */
.pkg.best {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
  box-shadow: 0 20px 44px color-mix(in srgb, #083A74 32%, transparent);
}
.pkg.best .pkg-head { border-bottom-color: color-mix(in srgb, #fff 18%, transparent); }
.pkg.best .plan-tag { color: var(--color-accent-300); }
.pkg.best .price .unit,
.pkg.best .price-note { color: color-mix(in srgb, #fff 72%, transparent); }
.pkg.best .pkg-desc { border-top-color: color-mix(in srgb, #fff 18%, transparent); color: color-mix(in srgb, #fff 82%, transparent); }
.pkg.best ul li { color: color-mix(in srgb, #fff 90%, transparent); }
.pkg-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--color-accent); color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 11px; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px;
}

/* --- Stats --------------------------------------------------------------- */
.stats-band { position: relative; overflow: hidden; }
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 15% 0%, color-mix(in srgb, var(--color-accent) 22%, transparent), transparent 70%),
    radial-gradient(500px 260px at 90% 100%, color-mix(in srgb, #fff 10%, transparent), transparent 70%);
  pointer-events: none;
}
.stats-band .mw { position: relative; }
.stats-kicker { text-align: center; }
.stats-title {
  margin: 6px 0 40px; text-align: center; color: #fff;
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.15;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  position: relative;
  padding: 30px 20px;
  text-align: center;
  border-radius: 16px;
  background: color-mix(in srgb, #fff 6%, transparent);
  border: 1px solid color-mix(in srgb, #fff 14%, transparent);
  backdrop-filter: blur(2px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--color-accent) 55%, transparent);
  background: color-mix(in srgb, #fff 9%, transparent);
}
.stat-card .big {
  margin: 0; font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(34px, 4vw, 52px); line-height: 1;
  color: var(--color-accent-300);
  font-variant-numeric: tabular-nums;
}
.stat-card .cap {
  margin: 12px 0 0; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: color-mix(in srgb, #fff 72%, transparent);
}
.stat-card::after {
  content: ""; display: block; width: 34px; height: 3px; border-radius: 3px;
  margin: 16px auto 0; background: var(--color-accent);
  opacity: .55; transition: width .25s ease, opacity .25s ease;
}
.stat-card:hover::after { width: 52px; opacity: 1; }
@media (max-width: 640px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* --- Contact CTA --------------------------------------------------------- */
.cta-band { background: var(--color-navy); color: var(--color-bg); }
.cta-band h3 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 0 -0.05em;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* --- Footer (navy band) -------------------------------------------------- */
.foot-band { background: var(--color-navy); color: rgba(255, 255, 255, .78); }
.foot {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 56px 0 48px;
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
}
.foot .brand { margin: 0 0 12px; font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: #fff; display: flex; align-items: center; gap: 10px; }
.foot .brand img { width: 36px; height: 36px; object-fit: contain; }
.foot h6 { margin: 0 0 12px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, .55); font-weight: 800; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot a { color: rgba(255, 255, 255, .78); }
.foot a:hover { color: var(--color-accent); }
@media (max-width: 780px) { .foot { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot { grid-template-columns: 1fr; } }

.foot-bar {
  border-top: 2px solid rgba(255, 255, 255, .16);
  padding: 20px 0 40px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between;
  font-size: 12px; color: rgba(255, 255, 255, .55);
}
.foot-bar a { color: rgba(255, 255, 255, .55); }
.foot-bar a:hover { color: var(--color-accent); }
.foot-bar .links { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Floating WhatsApp --------------------------------------------------- */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 1040;
  display: flex; align-items: center; gap: 10px;
  background: var(--color-accent); color: #fff;
  padding: 14px 18px;
  font-family: var(--font-heading); font-weight: 800; font-size: 14px; letter-spacing: 0.02em;
  box-shadow: var(--shadow-md);
}
.wa-fab .glyph { width: 22px; height: 22px; flex: none; display: inline-flex; color: #fff; }
.wa-fab .glyph svg { width: 100%; height: 100%; display: block; }
@media (max-width: 480px) { .wa-fab span.txt { display: none; } .wa-fab { padding: 14px; } }

/* ==========================================================================
   Motion — button responses, reveal-on-scroll, floating action
   ========================================================================== */

/* --- Button responses ---------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform .16s ease, box-shadow .2s ease,
              background-color .2s ease, border-color .2s ease, color .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px color-mix(in srgb, #083A74 22%, transparent); }
.btn:active { transform: translateY(0) scale(.97); box-shadow: none; }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.btn-primary:hover { box-shadow: 0 8px 20px color-mix(in srgb, var(--color-accent) 45%, transparent); }

/* light sweep across primary buttons on hover */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 140%; }

/* store links + WhatsApp fab micro-interactions */
.store-link { transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.store-link:hover { transform: translateX(4px); }
.wa-fab { transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease; }
.wa-fab:hover { background: var(--color-accent-600); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 24px color-mix(in srgb, var(--color-accent) 50%, transparent); }
.wa-fab .glyph { animation: wa-pulse 2s ease-in-out infinite; }
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .6; }
}

/* --- Reveal on load / scroll --------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1),
              transform .6s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: none; }

/* the hero panel slides in from the right for a bit of life on first paint */
.reveal.reveal-right { transform: translateX(28px); }
.reveal.reveal-right.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .btn, .store-link, .wa-fab { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn::after, .wa-fab .glyph { animation: none !important; }
  html { scroll-behavior: auto; }
}
