/* ============================================================
   HelperTrack — Homepage v3 styles
   Calm, restrained. Saffron strictly for primary CTAs.
   Forest + cream + one warm accent (terracotta) for emphasis.
   ============================================================ */

:root {
  /* Brand greens */
  --brand-900: #0F4536;
  --brand-800: #1A6149;
  --brand-700: #2A7A5E;
  --brand-300: #A8C9B8;
  --brand-100: #DCE9E0;
  --brand-50:  #EEF3EE;

  /* Surfaces */
  --canvas: #F7F3EC;
  --sunken: #F1ECE2;
  --paper:  #FFFFFF;
  --warm-1: #FBF8F1;

  /* Text */
  --text:  #1A1F1C;
  --muted: #5A6660;
  --faint: #8A938E;

  /* Aliases */
  --forest:   #0F4536;
  --forest-2: #1A6149;

  /* Lines */
  --line:        rgba(15,69,54,0.13);
  --line-strong: rgba(15,69,54,0.22);

  /* Primary action (the only saffron we ship) */
  --saffron:        #F4C84A;
  --saffron-edge:   rgba(122,90,26,0.24);
  --saffron-shadow: rgba(168,106,31,0.18);

  /* Warm accent (one only, for emphasis fragments / sample tags) */
  --warm:    #A86A1F;
  --warm-bg: #F4E4CC;

  /* Status */
  --alert:    #B23A3A;
  --alert-bg: #F4DDDD;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(15,36,28,0.04), 0 8px 24px rgba(15,36,28,0.06);
  --shadow-lift: 0 4px 12px rgba(15,36,28,0.08), 0 24px 48px rgba(15,36,28,0.10);

  /* Layout */
  --site-max: 1200px;
  --site-gutter: 28px;

  /* Type */
  --font-sans:  "Inter", -apple-system, system-ui, "Noto Sans Devanagari", sans-serif;
  --font-serif: "Instrument Serif", "Noto Serif", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; padding: 0; margin: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--brand-100); color: var(--brand-900); }

.icon {
  display: inline-block; flex-shrink: 0; line-height: 1;
  font-family: "Material Symbols Outlined";
  font-style: normal; font-feature-settings: 'liga';
  user-select: none; font-variation-settings: 'FILL' 0, 'wght' 400;
  color: currentColor;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap { max-width: var(--site-max); margin: 0 auto; padding: 0 var(--site-gutter); }
.section { padding: 96px 0; scroll-margin-top: 80px; }
.section-soft { background: var(--sunken); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 22% 0%, rgba(220,233,224,0.10), transparent 40%),
    linear-gradient(180deg, #145A49 0%, #0F4536 100%);
  color: #fff;
  border-top: 1px solid rgba(15,69,54,0.18);
  border-bottom: 1px solid rgba(15,69,54,0.18);
}

/* Section heads — ONE consistent pattern across the page */
.section-head {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(260px,0.65fr);
  gap: 56px; align-items: end; margin-bottom: 48px;
}
.section-head-copy { display: flex; flex-direction: column; gap: 16px; }
.section-dark .kicker { color: var(--brand-100); }
.section-dark .kicker .dot { background: var(--brand-100); box-shadow: 0 0 0 5px rgba(220,233,224,0.12); }
.section-dark .h2 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,0.76); }

/* ============================================================
   Type
   ============================================================ */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 1.25px;
  text-transform: uppercase; color: var(--forest-2); line-height: 1.3;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--forest-2); box-shadow: 0 0 0 5px var(--brand-100);
}
.h1, .h2 {
  margin: 0; font-family: var(--font-serif); font-weight: 400;
  letter-spacing: 0; color: var(--forest); text-wrap: balance;
}
.h1 { font-size: clamp(48px, 5.4vw, 84px); line-height: 1.02; }
.h2 { font-size: clamp(32px, 3.35vw, 50px); line-height: 1.08; }
.h3 {
  margin: 0; font-size: 21px; line-height: 1.25;
  font-weight: 650; color: var(--text); letter-spacing: -0.1px;
}
.lead {
  margin: 0; color: var(--muted);
  font-size: 17px; line-height: 1.5; max-width: 580px;
}
.body { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
em.accent { font-style: italic; color: var(--forest-2); }
.section-dark em.accent { color: var(--brand-100); }

/* ============================================================
   Buttons — saffron is reserved for primary CTAs only
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 600; line-height: 1; font-family: inherit;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 140ms ease, background-color 140ms ease;
}
.btn-primary {
  background: var(--saffron); color: #173D32;
  border-color: var(--saffron-edge);
  box-shadow: 0 12px 28px var(--saffron-shadow), inset 0 -1px 0 rgba(122,90,26,0.18);
  font-weight: 700; min-height: 54px; padding: 0 26px; font-size: 16px;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px var(--saffron-shadow), inset 0 -1px 0 rgba(122,90,26,0.18);
}
.btn-primary:active { transform: translateY(1px) scale(0.985); }

.btn-secondary {
  background: rgba(255,255,255,0.62); color: var(--brand-900);
  border-color: var(--line-strong);
}
.btn-secondary:hover { background: #fff; transform: translateY(-1px); }

.btn-ghost-dark {
  background: rgba(255,255,255,0.08); color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }

.btn .icon { font-size: 18px; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,236,0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 66px; display: flex; align-items: center; gap: 28px; }
.nav-links {
  margin-left: auto; display: flex; align-items: center; gap: 26px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color 140ms ease; position: relative;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a.active { color: var(--forest); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 3px; border-radius: 999px; background: var(--forest);
}
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: 0 16px; border-radius: var(--r-pill);
  background: var(--forest); color: #fff !important;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 18px rgba(15,36,28,0.12);
}
.nav-cta:hover { transform: translateY(-1px); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--forest); }
.brand-text { font-size: 20px; font-weight: 700; letter-spacing: -0.6px; line-height: 1; }

/* ============================================================
   Hero — quiet. One headline, one CTA, one phone.
   ============================================================ */
.hero { padding: 72px 0 56px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,500px);
  gap: 64px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 4px; }
.hero-stores-inline {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(23,61,50,0.65); font-size: 13px; font-weight: 600;
}
.hero-stores-inline .icon { font-size: 18px; color: rgba(23,61,50,0.8); }

/* Social proof — avatar stack + "1,240+ homes" below the stores line */
.hero-proof {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 4px;
}
.hero-proof-avatars { display: inline-flex; }
.hero-proof-avatars span {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--canvas); margin-left: -8px;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 9.5px; letter-spacing: 0.2px;
}
.hero-proof-avatars span:first-child { margin-left: 0; }
.hero-proof-text {
  color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.4;
}
.hero-proof-text b { color: var(--text); font-weight: 700; }

/* Phone aspect ratio is consistent across the page: 1 : 1.88 (close to a real
   phone with bezel). Hero / showcase / helper-side all share this proportion. */
.phone {
  width: min(100%, 340px); margin: 0 auto;
  border-radius: 48px; padding: 9px;
  background: #080A09;
  box-shadow: 0 30px 80px rgba(15,36,28,0.20), 0 8px 24px rgba(15,36,28,0.10);
  position: relative;
}
.hero-visual { position: relative; justify-self: end; width: min(100%, 340px); }
.hero-qr {
  position: absolute; z-index: 3;
  left: 0; top: 50%; transform: translate(-70%, -50%);
  background: var(--paper); border-radius: 16px; padding: 12px;
  box-shadow: 0 18px 38px rgba(15,36,28,0.14);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 140px;
}
.hero-qr-svg { width: 100px; height: 100px; display: block; }
.hero-qr-label {
  font-size: 11px; font-weight: 700; color: var(--forest);
  letter-spacing: 0.4px; text-transform: uppercase; text-align: center; line-height: 1.3;
}
.hero-qr-label span {
  display: block; color: var(--muted);
  font-weight: 500; letter-spacing: 0; text-transform: none;
  margin-top: 2px; font-size: 10.5px;
}
.phone-screen {
  /* width 340 → height 640 (ratio 1:1.88) */
  height: 640px; border-radius: 40px;
  background: var(--canvas); position: relative;
  overflow-y: auto; overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(15,69,54,0.32) transparent;
}
.phone-screen::-webkit-scrollbar { width: 6px; }
.phone-screen::-webkit-scrollbar-track { background: transparent; }
.phone-screen::-webkit-scrollbar-thumb {
  background: rgba(15,69,54,0.28); border-radius: var(--r-pill);
}
.phone-screen img { width: 100%; height: auto; display: block; }
.phone-hint {
  position: absolute; right: 18px; bottom: 18px; z-index: 5;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.94); border: 1px solid var(--line);
  color: var(--forest); font-size: 10.5px; font-weight: 600;
  box-shadow: 0 6px 14px rgba(15,36,28,0.10);
  pointer-events: none;
}
.phone-hint .icon { font-size: 12px; }
.phone-glow {
  position: absolute; inset: -40px; z-index: -1;
  background:
    radial-gradient(circle at 50% 50%, rgba(220,233,224,0.5), transparent 60%);
  filter: blur(40px);
}

/* ============================================================
   Trust band — ONE banded row right under the hero
   ============================================================ */
.trust-band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.4); padding: 22px 0;
}
.trust-band-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  align-items: center;
}
.trust-cell {
  display: flex; align-items: center; gap: 12px; min-width: 0;
  padding: 0 8px;
}
.trust-cell + .trust-cell { border-left: 1px solid var(--line); }
.trust-mark {
  width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--brand-100); color: var(--brand-800); flex-shrink: 0;
}
.trust-mark .icon { font-size: 16px; }
.trust-text { min-width: 0; }
.trust-text b {
  display: block; color: var(--text); font-size: 13.5px; font-weight: 650; line-height: 1.2;
}
.trust-text span {
  display: block; color: var(--muted); font-size: 12px; line-height: 1.35; margin-top: 2px;
}

/* ============================================================
   Featured quote — ONE human moment near the top
   ============================================================ */
.quote-section { padding: 88px 0; }
.quote-wrap {
  max-width: 880px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.quote-mark {
  font-family: var(--font-serif); font-size: 64px; line-height: 0.7;
  color: var(--brand-300); height: 32px;
}
.quote-body {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px); line-height: 1.22;
  color: var(--forest); letter-spacing: -0.3px; text-wrap: balance;
}
.quote-body em { font-style: italic; color: var(--forest-2); }
.quote-attr {
  display: inline-flex; align-items: center; gap: 12px;
  padding-top: 6px;
}
.quote-attr-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 13px;
  background: linear-gradient(135deg, #A86A1F, #7B4F18);
}
.quote-attr-meta { text-align: left; }
.quote-attr-meta b { display: block; color: var(--text); font-size: 14px; font-weight: 650; }
.quote-attr-meta span { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.3; margin-top: 2px; }
.sample-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--warm-bg); color: #7B4F18;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.sample-tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--warm);
}

/* ============================================================
   Relief — dark. WhatsApp (3 bubbles) → calm app row.
   ============================================================ */
.relief { padding: 96px 0; }
.relief-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.relief-copy { display: flex; flex-direction: column; gap: 18px; }
.relief-proof {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px;
  margin-top: 10px; max-width: 520px;
}
.relief-proof > span {
  display: inline-flex; align-items: center; gap: 8px; min-height: 38px;
  border-radius: var(--r-pill); padding: 0 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.84); font-size: 12.5px; font-weight: 600;
}
.relief-proof .icon { color: var(--brand-100); font-size: 14px; }

.relief-stage {
  display: grid; grid-template-rows: auto auto auto; gap: 14px;
  position: relative;
}

.wa-panel {
  border-radius: 22px; background: #0A1E18;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 14px 14px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
  max-width: 380px; margin: 0 0 0 auto;
}
.wa-head {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 4px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.wa-head-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #365F7A, #1F3D52);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 11px;
}
.wa-head-meta { flex: 1; }
.wa-head-meta b { display: block; color: #fff; font-size: 13px; line-height: 1.2; font-weight: 600; }
.wa-head-meta span { display: block; color: rgba(255,255,255,0.5); font-size: 11px; line-height: 1.2; margin-top: 2px; }
.wa-head-badge {
  background: var(--alert); color: #fff;
  font-size: 10px; font-weight: 800;
  border-radius: var(--r-pill); padding: 3px 8px;
}
.wa-list { display: flex; flex-direction: column; gap: 6px; }
.wa-bubble {
  max-width: 88%; padding: 8px 11px; border-radius: 14px;
  font-size: 12.5px; line-height: 1.4;
}
.wa-bubble.in {
  background: #1a3329; color: rgba(255,255,255,0.92);
  border-bottom-left-radius: 4px; align-self: flex-start;
}
.wa-bubble.out {
  background: #1f6149; color: #fff;
  border-bottom-right-radius: 4px; align-self: flex-end;
}
.wa-who { display: block; color: var(--brand-300); font-size: 10.5px; font-weight: 700; margin-bottom: 2px; }
.wa-bubble.out .wa-who { color: rgba(255,255,255,0.7); }
.wa-time { font-size: 9.5px; color: rgba(255,255,255,0.45); margin-left: 6px; }

.relief-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--canvas); color: var(--forest);
  border: 1px solid rgba(15,69,54,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  justify-self: center; margin: 4px 0;
}
.relief-arrow .icon { font-size: 18px; }

.calm-strip {
  display: grid; grid-template-columns: 32px 1fr auto;
  gap: 14px; align-items: center;
  padding: 16px 18px; border-radius: 18px;
  background: var(--canvas); color: var(--text);
  border: 1px solid rgba(255,255,255,0.16);
  max-width: 380px; margin: 0 0 0 auto;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}
.calm-strip-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--brand-100); color: var(--brand-800);
  display: grid; place-items: center;
}
.calm-strip-icon .icon { font-size: 18px; }
.calm-strip b { display: block; color: var(--text); font-size: 14px; font-weight: 650; }
.calm-strip span { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.3; margin-top: 2px; }
.calm-strip em {
  font-style: normal;
  background: var(--brand-100); color: var(--brand-800);
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  border-radius: var(--r-pill); padding: 4px 8px;
}

/* App-row cards — mirror real app widgets shown in the dark relief panel */
.app-row {
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 14px 16px;
  max-width: 380px;
  margin: 0 0 0 auto;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
}
.app-row-meta b {
  display: block; color: var(--text);
  font-size: 15px; font-weight: 650; line-height: 1.2; letter-spacing: -0.1px;
}
.app-row-meta span {
  display: block; color: var(--muted);
  font-size: 11.5px; line-height: 1.3; margin-top: 3px;
}

/* Attendance row */
.att-avatar {
  position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-100); color: var(--forest);
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px; letter-spacing: 0.3px;
}
.att-dot {
  position: absolute; right: 1px; bottom: 1px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #2A7A5E; border: 2px solid var(--paper);
}
.app-row-att .app-row-meta span {
  letter-spacing: 0.8px; text-transform: uppercase; font-size: 10.5px;
  color: var(--faint); font-weight: 600;
}
.att-pill {
  display: inline-flex; align-items: center; gap: 2px;
  background: #EFEAE0; border-radius: var(--r-pill);
  padding: 3px;
}
.att-opt {
  width: 28px; height: 26px; display: grid; place-items: center;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
  color: var(--muted);
}
.att-opt.active {
  background: var(--forest-2); color: #fff;
  width: 30px; height: 28px;
}

/* Advance row */
.adv-tile {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--warm-bg); color: var(--warm);
  display: grid; place-items: center;
}
.adv-tile .icon { font-size: 20px; }
.adv-amount {
  font-size: 17px; font-weight: 700;
  color: var(--warm);
  letter-spacing: -0.2px;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Product overview — 3 simple flow cards + module strip + screenshot
   ============================================================ */
.overview-flow {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 56px;
}
.overview-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 28px 26px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
}
.overview-card-num {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--faint); font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.overview-card-num::before {
  content: ""; display: inline-block;
  width: 24px; height: 1px; background: var(--line-strong);
}
.overview-card-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-100); color: var(--brand-800);
  margin-bottom: 2px;
}
.overview-card-icon .icon { font-size: 20px; }
.overview-card h3 {
  margin: 0; font-size: 22px; font-weight: 650;
  color: var(--text); line-height: 1.15; letter-spacing: -0.2px;
}
.overview-card p {
  margin: 0; color: var(--muted);
  font-size: 14.5px; line-height: 1.55;
}

/* Module strip — 6 quiet chips, all same treatment */
.modules-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.modules-head h3 {
  margin: 0; font-family: var(--font-serif); font-size: 26px;
  color: var(--forest); font-weight: 400; line-height: 1.1;
}
.modules-head span {
  color: var(--muted); font-size: 14px; line-height: 1.4;
}
.module-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  margin-bottom: 56px;
}
.module-chip {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 18px; border-radius: var(--r-lg);
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  min-height: 120px;
  transition: transform 140ms ease, border-color 140ms ease;
}
.module-chip:hover {
  transform: translateY(-2px); border-color: var(--line-strong);
}
.module-chip-icon {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--brand-100); color: var(--brand-800);
}
.module-chip-icon .icon { font-size: 16px; }
.module-chip b {
  font-size: 17px; font-weight: 650; color: var(--text); line-height: 1.2;
  letter-spacing: -0.1px;
}
.module-chip span {
  font-size: 12.5px; color: var(--muted); line-height: 1.5;
}

/* Big screenshot showcase */
.screenshot-showcase {
  position: relative; padding: 56px 0 0;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.screenshot-showcase-head { text-align: center; max-width: 560px; }
.screenshot-showcase-head .kicker { justify-content: center; }
.screenshot-showcase-head h3 {
  margin: 14px 0 0; font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px); color: var(--forest); line-height: 1.1;
}
.screenshot-showcase-frame {
  position: relative;
  padding: 44px 32px 40px;
  background:
    radial-gradient(circle at 50% 0%, rgba(220,233,224,0.65), transparent 50%),
    linear-gradient(180deg, var(--warm-1), var(--sunken));
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  width: 100%; max-width: 760px;
}
.screenshot-showcase-frame .phone {
  width: min(100%, 300px); margin: 0 auto;
  padding: 8px; border-radius: 40px;
}
.screenshot-showcase-frame .phone-screen {
  /* width 300 → height 565 (same 1:1.88 ratio) */
  height: 565px; border-radius: 32px;
}

/* ============================================================
   Helper side — light (not dark, per consistency)
   ============================================================ */
.helper-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center;
}
.helper-copy { display: flex; flex-direction: column; gap: 18px; }
.helper-chips {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px;
}
.helper-chip {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: center;
  padding: 14px; border-radius: var(--r-lg);
  background: var(--paper); border: 1px solid var(--line);
}
.helper-chip-icon {
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--brand-100); color: var(--brand-800);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.helper-chip-icon .icon {
  /* Material Symbols glyphs have inconsistent baselines (account_balance_wallet
     in particular sits low). Forcing a tiny line-box with generous line-height
     re-centers the glyph optically inside the tile. Hack, but reliable. */
  font-size: 20px;
  height: 2px;
  line-height: 1.6;
  text-align: center;
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.helper-chip b { display: block; color: var(--text); font-size: 13.5px; font-weight: 650; }
.helper-chip span { display: block; color: var(--muted); font-size: 12px; line-height: 1.3; margin-top: 1px; }

.helper-promise {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--brand-100); color: var(--forest);
  font-size: 12.5px; font-weight: 600;
  margin-top: 10px;
}
.helper-promise .icon { font-size: 14px; color: var(--brand-800); }

.helper-visual {
  position: relative;
  background:
    radial-gradient(circle at 80% 18%, rgba(220,233,224,0.7), transparent 38%),
    radial-gradient(circle at 20% 80%, rgba(244,228,204,0.4), transparent 40%),
    linear-gradient(180deg, var(--warm-1), var(--sunken));
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 40px 24px;
  display: flex; justify-content: center;
}
.helper-phone {
  width: min(100%, 280px); border-radius: 36px; padding: 7px; background: #080A09;
  box-shadow: 0 20px 50px rgba(15,36,28,0.18);
  position: relative;
}
/* width 280 → height 525 (same 1:1.88 ratio) */
.helper-phone .phone-screen { height: 525px; border-radius: 30px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 48px; align-items: start;
}
.faq-list { display: grid; gap: 10px; }
.faq-list details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 18px 20px;
  transition: border-color 140ms ease;
}
.faq-list details:hover { border-color: var(--line-strong); }
.faq-list summary {
  cursor: pointer; color: var(--forest);
  font-weight: 600; font-size: 15px;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon {
  color: var(--muted); transition: transform 200ms ease; flex-shrink: 0;
}
.faq-list details[open] summary .icon { transform: rotate(180deg); color: var(--forest); }
.faq-list p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; font-size: 14.5px; }

/* ============================================================
   Final CTA — dark
   ============================================================ */
.final { padding: 110px 0; text-align: center; }
.final-grid {
  display: flex; flex-direction: column; align-items: center;
  gap: 22px; max-width: 720px; margin: 0 auto;
  position: relative; z-index: 1;
}
.final-grid .h2 em { color: var(--brand-100); }
.final-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 6px; }
.final-stores {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.66); font-size: 13px; font-weight: 500;
}
.final-stores .icon { font-size: 18px; color: rgba(255,255,255,0.86); }
.final-fine {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78); font-size: 12.5px; font-weight: 500;
}
.final-fine .icon { color: var(--brand-100); font-size: 14px; }
.final-fine-sep { margin: 0 8px; color: rgba(255,255,255,0.32); }

/* Install pass — "boarding-pass" style QR card in the final CTA.
   Stub (QR) + perforated divider + main info. The perforation notches
   use the section background color so they read as punched-through. */
.install-pass {
  display: inline-flex; align-items: stretch;
  background: var(--warm-1);
  color: var(--text);
  border-radius: 18px;
  overflow: visible; position: relative;
  box-shadow: 0 26px 56px rgba(0,0,0,0.30), 0 6px 14px rgba(0,0,0,0.16);
  transform: rotate(-1.2deg);
  margin-top: 18px;
  max-width: 440px;
}
.install-pass-qr {
  background: #fff;
  padding: 16px 18px;
  display: grid; place-items: center;
  flex-shrink: 0;
  border-radius: 18px 0 0 18px;
}
.install-pass-perf {
  width: 0;
  border-left: 2px dashed rgba(15,69,54,0.22);
  position: relative;
  margin: 18px 0;
}
.install-pass-perf::before,
.install-pass-perf::after {
  content: ""; position: absolute; left: -10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-900);
}
.install-pass-perf::before { top: -27px; }
.install-pass-perf::after  { bottom: -27px; }
.install-pass-info {
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 220px;
  border-radius: 0 18px 18px 0;
  background: var(--warm-1);
  text-align: left;
}
.install-pass-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--forest-2);
  margin-bottom: 2px;
}
.install-pass-title {
  font-family: var(--font-serif); font-size: 26px;
  color: var(--forest); line-height: 1.05; font-weight: 400;
  letter-spacing: -0.2px;
}
.install-pass-sub {
  font-size: 12px; color: var(--muted); line-height: 1.45;
  margin-top: 6px;
}
.install-pass-meta {
  display: flex; gap: 5px; margin-top: 12px; flex-wrap: wrap;
}
.install-pass-meta span {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.4px;
  padding: 4px 8px; border-radius: var(--r-pill);
  background: var(--brand-100); color: var(--brand-800);
  text-transform: uppercase;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: 56px 0 28px; color: var(--muted); font-size: 13px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 36px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 280px; }
.footer-brand p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.footer-locale { font-size: 11.5px; color: var(--faint); }
.footer-col h3 {
  margin: 0 0 14px; color: var(--text);
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}
.footer-col ul {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
}
.footer-col a { color: var(--muted); font-size: 13.5px; transition: color 140ms ease; }
.footer-col a:hover { color: var(--forest); }
.footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--faint); font-size: 12.5px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-qr { display: none; }
  .hero-visual { justify-self: center; }
  .hero-grid, .relief-grid, .helper-grid, .faq-grid, .section-head {
    grid-template-columns: 1fr; gap: 32px;
  }
  .section-head { gap: 18px; margin-bottom: 32px; }
  .overview-flow { grid-template-columns: 1fr; }
  .module-strip { grid-template-columns: repeat(3, 1fr); }
  .trust-band-row { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .trust-cell + .trust-cell { border-left: 0; }
  .trust-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .wa-panel, .calm-strip { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .section { padding: 76px 0; }
  .hero { padding: 48px 0 36px; }
  .module-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-band-row { grid-template-columns: 1fr; row-gap: 16px; }
  .trust-cell:nth-child(odd) { border-right: 0; }
  .helper-chips { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Install pass: stack on mobile, drop rotation */
@media (max-width: 640px) {
  .install-pass {
    flex-direction: column; transform: none;
    max-width: 320px; width: 100%;
  }
  .install-pass-qr { border-radius: 18px 18px 0 0; }
  .install-pass-perf {
    width: auto; height: 0; margin: 0 18px;
    border-left: 0; border-top: 2px dashed rgba(15,69,54,0.22);
  }
  .install-pass-perf::before,
  .install-pass-perf::after {
    top: -10px; left: auto;
  }
  .install-pass-perf::before { left: -27px; }
  .install-pass-perf::after  { right: -27px; bottom: auto; }
  .install-pass-info { border-radius: 0 0 18px 18px; }
}

/* ============================================================
   v4 additions — diff comparison + testimonials
   ============================================================ */
.diff-list {
  display: grid; gap: 8px;
  margin-top: 6px;
  max-width: 540px;
}
.diff-row {
  display: grid; grid-template-columns: auto auto 1fr; gap: 12px;
  align-items: center; padding: 12px 16px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px;
}
.diff-vs {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--text); white-space: nowrap;
}
.diff-vs em {
  font-family: var(--font-serif); font-style: italic;
  color: var(--muted); font-weight: 400;
  margin-right: 4px;
}
.diff-arrow {
  display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brand-100); color: var(--brand-800);
}
.diff-arrow .icon { font-size: 14px; }
.diff-after {
  color: var(--text); font-size: 14px; font-weight: 600; line-height: 1.3;
}
.diff-after b { color: var(--forest); font-weight: 700; }

/* Testimonials grid */
.testi-section { padding: 96px 0; }
.testi-section .section-head { align-items: start; margin-bottom: 36px; }
.testi-section .section-head > div:last-child { gap: 14px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testi-card {
  position: relative;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 16px;
}
.testi-card.feature {
  background:
    radial-gradient(circle at 100% 0%, rgba(220,233,224,0.55), transparent 40%),
    linear-gradient(180deg, #FFFFFF 0%, #FBF8F1 100%);
}
.testi-mark {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-serif); font-size: 60px; line-height: 0.8;
  color: rgba(15,69,54,0.12);
}
.testi-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--forest-2);
}
.testi-tag-family { color: var(--forest-2); }
.testi-tag-helper { color: #A86A1F; }
.testi-tag-helper .dot { background: #A86A1F; box-shadow: 0 0 0 5px #F4E4CC; }
.testi-tag-manager { color: #365F7A; }
.testi-tag-manager .dot { background: #365F7A; box-shadow: 0 0 0 5px #DCE2F2; }

.testi-quote {
  margin: 0; color: var(--text);
  font-family: var(--font-sans);
  font-size: 15.5px; line-height: 1.65;
  font-weight: 400; letter-spacing: 0;
}
.testi-quote em { font-style: italic; color: var(--forest-2); font-weight: 500; }
.testi-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.testi-meta span {
  padding: 4px 9px; border-radius: var(--r-pill);
  background: var(--brand-50); color: var(--brand-800);
  font-size: 11px; font-weight: 600; border: 1px solid var(--line);
}
.testi-attr {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.testi-attr b { display: block; color: var(--text); font-size: 13.5px; font-weight: 650; }
.testi-attr > div:last-child > span {
  display: block; color: var(--muted);
  font-size: 12px; line-height: 1.3; margin-top: 2px;
}
.sample-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: #F4E4CC; color: #7B4F18;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase;
  width: fit-content;
}
.sample-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #A86A1F; }

@media (max-width: 980px) {
  .testi-grid { grid-template-columns: 1fr; }
  .diff-row { grid-template-columns: 1fr; gap: 6px; text-align: left; padding: 14px 16px; }
  .diff-row .diff-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
