:root {
  --green-950: #033f36;
  --green-900: #064c40;
  --green-800: #0b5d4d;
  --green-700: #08745a;
  --gold: #c89b48;
  --gold-soft: #dbbc78;
  --ink: #0f2222;
  --muted: #4f5b5b;
  --paper: #fcfaf5;
  --line: #e7dccb;
  --shadow: 0 18px 38px rgba(30, 27, 20, .10), 0 3px 8px rgba(30, 27, 20, .06);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background: #eee9df;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}
img { max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 62%, rgba(216, 184, 119, .14), transparent 30%),
    radial-gradient(circle at 27% 5%, rgba(255,255,255,.96), transparent 31%),
    linear-gradient(112deg, #fffdf9 0%, #fcfaf5 58%, #fbf6ec 100%);
}
.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: radial-gradient(rgba(66,53,30,.12) .45px, transparent .45px);
  background-size: 6px 6px;
  mix-blend-mode: multiply;
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(1512px, calc(100% - 80px));
  height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr 280px;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 18px; width: max-content; }
.brand__icon {
  width: 74px;
  height: 74px;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: 0 7px 14px rgba(5, 61, 51, .22);
}
.brand__copy { display: grid; line-height: 1; }
.brand__name {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  letter-spacing: -.9px;
}
.brand__tagline { color: #b48945; font-size: 16px; margin-top: 6px; letter-spacing: .1px; }

.main-nav { justify-self: center; display: flex; align-items: center; gap: 66px; height: 100%; }
.main-nav a { position: relative; font-weight: 650; font-size: 18px; padding: 43px 0 31px; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 29px; height: 4px; border-radius: 99px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  min-height: 62px;
  padding: 0 29px;
  font-size: 18px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--primary, .button--header { color: #fff; background: linear-gradient(135deg, #08725a, #03453b); box-shadow: 0 11px 22px rgba(4, 72, 59, .19); }
.button--header { justify-self: end; min-height: 60px; padding-inline: 25px; }
.button--secondary { color: var(--ink); background: rgba(255,255,255,.45); border-color: #cba15d; }

.menu-toggle { display: none; }

/* Sticky mobile download bar — hidden on desktop, shown via mobile media query */
.download-bar { display: none; }

.hero {
  position: relative;
  z-index: 3;
  width: min(1512px, calc(100% - 80px));
  height: calc(100vh - 116px);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(600px, 46%) 1fr;
  gap: 20px;
}
.hero__content { position: relative; z-index: 5; padding-top: 54px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #e2d3bc;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  font-size: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.eyebrow span { color: var(--gold); font-size: 22px; }
h1 {
  margin: 27px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(72px, 5.1vw, 92px);
  line-height: .98;
  letter-spacing: -3.2px;
  color: var(--green-950);
}
h1 span { color: var(--gold); }
.hero__lead { margin: 0; color: #39484d; font-size: 21px; line-height: 1.58; }
.hero__actions { display: flex; gap: 20px; margin-top: 31px; }
.hero__actions .button { min-width: 280px; }
.hero__actions .button--secondary { min-width: 255px; }

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 680px; margin-top: 35px; }
.benefit {
  min-height: 70px;
  padding: 12px 16px;
  border: 1px solid #e9dece;
  border-radius: 10px;
  background: rgba(255,255,255,.54);
  display: flex;
  align-items: center;
  gap: 13px;
}
.benefit__icon { flex: 0 0 auto; color: #076c57; }
.benefit__icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit strong, .benefit span { display: block; white-space: nowrap; }
.benefit strong { color: #075847; font-size: 15px; margin-bottom: 4px; }
.benefit span { color: #53605f; font-size: 12.5px; }

.social-proof { display: flex; align-items: center; gap: 70px; margin-top: 39px; }
.community-proof { display: flex; align-items: center; gap: 22px; }
.avatars { display: flex; align-items: center; }
.avatars img, .avatars span {
  width: 48px;
  height: 48px;
  border: 3px solid #fbf8f2;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -11px;
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
}
.avatars img:first-child { margin-left: 0; }
.avatars span { display: grid; place-items: center; color: #fff; background: #53615e; font-size: 13px; font-weight: 700; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; }
.rating-copy p { margin: 5px 0 0; color: #475352; font-size: 15px; line-height: 1.45; }
.mindful-seal { display: flex; align-items: center; gap: 18px; color: #0c3030; text-align: center; font-family: Georgia, serif; font-size: 18px; font-style: italic; line-height: 1.25; }
.mindful-seal em { font-size: 24px; }
.laurel { color: var(--gold); font-family: Georgia, serif; font-size: 57px; transform: rotate(-25deg); line-height: .8; }
.laurel--right { transform: scaleX(-1) rotate(-25deg); }

.hero__visual { position: relative; min-width: 0; height: 100%; z-index: 4; }
.phone-wrap { position: absolute; z-index: 6; left: 35%; bottom: -50px; width: 410px; transform: translateX(-10%); }
.phone-frame {
  position: relative;
  padding: 7px;
  border: 3px solid #615f5a;
  border-radius: 58px;
  background: linear-gradient(145deg, #bab5ab, #1c1c1b 35%, #dad6cc 65%, #242424);
  box-shadow: 0 18px 36px rgba(22, 27, 24, .25), inset 0 0 0 1px rgba(255,255,255,.58);
}
.phone-frame img { display: block; width: 100%; height: auto; border-radius: 49px; }
.phone-speaker { position: absolute; z-index: 2; top: 24px; left: 50%; width: 94px; height: 27px; transform: translateX(-50%); border-radius: 999px; background: #020504; box-shadow: inset 0 -2px 3px rgba(255,255,255,.08); }

.floating-card {
  position: absolute;
  z-index: 8;
  background: rgba(255,253,248,.93);
  border: 1px solid rgba(215,201,180,.72);
  border-radius: 17px;
  box-shadow: var(--shadow);
  text-align: center;
  color: #132526;
}
.floating-card--quran {
  left: 5.5%; top: 108px;
  width: 171px; height: 251px;
  padding: 20px 16px;
  color: #fff;
  border-color: rgba(4, 75, 62, .65);
  background: radial-gradient(circle at 50% 30%, #176d5b, #034d41 65%, #063a33);
}
.floating-card--quran small, .floating-card--quran span, .floating-card--quran strong { display: block; }
.floating-card--quran small { font-size: 11px; opacity: .92; }
.progress-ring { width: 78px; height: 78px; margin: 10px auto 8px; border-radius: 50%; display: grid; place-items: center; border: 4px solid rgba(255,255,255,.18); box-shadow: inset 0 0 0 4px rgba(255,255,255,.05); }
.progress-ring::after { content: ""; position: absolute; width: 75px; height: 75px; border-radius: 50%; border-top: 4px solid #78dcad; transform: rotate(42deg); }
.progress-ring svg { width: 36px; height: 36px; fill: #fff; }
.floating-card--quran strong { margin-top: 5px; font-size: 15px; }
.floating-card--quran > span { margin-top: 4px; font-size: 12px; }
.mini-progress { height: 5px; margin: 15px 0 10px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.2); }
.mini-progress i { display: block; width: 62%; height: 100%; background: #7bdcac; border-radius: inherit; }
.floating-card--quran button { border: 0; color: #fff; background: transparent; font-size: 11px; cursor: pointer; }

.floating-card--mosque { left: 4.8%; top: 485px; width: 170px; min-height: 225px; padding: 20px 17px 16px; text-align: left; }
.floating-card--mosque .circle-icon { margin-inline: auto; }
.floating-card--mosque > span, .floating-card--mosque > strong, .floating-card--mosque > p { display: block; }
.floating-card--mosque > span { margin-top: 12px; font-size: 14px; }
.floating-card--mosque > strong { margin-top: 9px; font-size: 16px; }
.floating-card--mosque p { margin: 4px 0 8px; font-size: 13px; }
.floating-card--mosque p b { color: #048b5e; }
.circle-icon { width: 55px; height: 55px; border-radius: 50%; display: grid; place-items: center; }
.circle-icon svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.circle-icon--blue { color: white; background: linear-gradient(135deg, #2ab2bf, #09687a); }
.circle-icon--gold { color: #173130; background: linear-gradient(145deg, #f5cf7b, #d7a54f); }
.circle-icon--green { color: #ffe0a0; background: radial-gradient(circle at 30% 25%, #16765f, #064c40); }
.tiny-avatars { display: flex; align-items: center; margin-top: 2px; }
.tiny-avatars img, .tiny-avatars span { width: 27px; height: 27px; margin-left: -5px; border: 2px solid #fffaf2; border-radius: 50%; object-fit: cover; }
.tiny-avatars img:first-child { margin-left: 0; }
.tiny-avatars span { display: grid; place-items: center; background: #e9e3d9; font-size: 9px; }

.floating-card--qibla { right: 1.2%; top: 154px; width: 148px; min-height: 180px; padding: 17px 12px 14px; }
.floating-card--qibla .circle-icon { margin: 0 auto 12px; }
.floating-card--qibla span, .floating-card--qibla strong, .floating-card--qibla p { display: block; }
.floating-card--qibla span { font-size: 14px; }
.floating-card--qibla strong { margin-top: 7px; font-size: 17px; }
.floating-card--qibla p { margin: 5px 0 0; font-size: 13px; color: #47524f; }

.floating-card--dua { right: -.2%; top: 452px; width: 167px; min-height: 236px; padding: 17px 13px; }
.floating-card--dua .circle-icon { margin: 0 auto 13px; font-size: 25px; }
.floating-card--dua > span { display: block; font-size: 14px; }
.floating-card--dua .arabic { margin: 12px 0 8px; font-family: "Times New Roman", serif; font-size: 17px; }
.floating-card--dua blockquote { margin: 0; font-size: 12.5px; line-height: 1.55; }
.floating-card--dua small { display: block; margin-top: 12px; color: #5b605d; font-size: 11px; }

.pattern { position: absolute; pointer-events: none; opacity: .36; }
.pattern--center { width: 245px; left: 49%; top: 47%; }
.pattern--right { width: 300px; right: -117px; top: 6%; }
.skyline { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; width: 100%; height: 174px; object-fit: fill; pointer-events: none; }

@media (max-width: 1320px) {
  .site-header, .hero { width: min(1180px, calc(100% - 48px)); }
  .site-header { grid-template-columns: 310px 1fr 230px; }
  .main-nav { gap: 38px; }
  .brand__name { font-size: 38px; }
  .brand__tagline { font-size: 13px; }
  .hero { grid-template-columns: 53% 47%; }
  .phone-wrap { left: 28%; width: 370px; }
  .floating-card--quran { left: -2%; }
  .floating-card--mosque { left: -3%; }
  .floating-card--qibla, .floating-card--dua { right: -6%; }
  h1 { font-size: 72px; }
  .benefit { padding-inline: 11px; }
  .social-proof { gap: 35px; }
}

@media (max-width: 1060px) {
  .page-shell { overflow: visible; }
  .site-header { height: 94px; grid-template-columns: 1fr auto; }
  .brand__icon { width: 60px; height: 60px; }
  .brand__name { font-size: 34px; }
  .brand__tagline { font-size: 12px; }
  .button--header { display: none; }
  .menu-toggle { position: relative; z-index: 50; display: grid; gap: 5px; width: 45px; height: 45px; place-content: center; border: 0; border-radius: 10px; color: white; background: var(--green-900); }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: currentColor; }
  .main-nav { position: absolute; top: 80px; right: 0; display: none; width: 250px; height: auto; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fffdf9; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 12px; }
  .main-nav a::after { display: none; }
  .hero { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .hero__content { padding-top: 45px; text-align: center; }
  .eyebrow { font-size: 16px; }
  h1 { font-size: clamp(58px, 10vw, 80px); }
  .hero__lead { font-size: 19px; }
  .hero__actions, .social-proof { justify-content: center; }
  .benefits { margin-inline: auto; }
  .hero__visual { height: 950px; margin-top: 35px; }
  .phone-wrap { left: 50%; width: 410px; transform: translateX(-50%); }
  .floating-card--quran { left: calc(50% - 365px); }
  .floating-card--mosque { left: calc(50% - 380px); }
  .floating-card--qibla { right: calc(50% - 365px); }
  .floating-card--dua { right: calc(50% - 385px); }
  .skyline { bottom: -1px; }
}

@media (max-width: 760px) {
  .site-header, .hero { width: min(100% - 32px, 680px); }
  .brand { gap: 10px; }
  .brand__icon { width: 50px; height: 50px; border-radius: 12px; }
  .brand__name { font-size: 29px; }
  .brand__tagline { font-size: 10px; }
  .hero__content { padding-top: 30px; }
  h1 { margin-top: 22px; font-size: clamp(49px, 14vw, 70px); letter-spacing: -2px; }
  .hero__lead { font-size: 17px; }
  .desktop-only { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button { min-width: 0; width: 100%; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { justify-content: center; }
  .social-proof { flex-direction: column; gap: 24px; }
  .community-proof { flex-direction: column; gap: 12px; }
  .rating-copy { text-align: center; }
  .hero__visual { height: 800px; }
  .phone-wrap { width: min(86vw, 380px); bottom: -30px; }
  .floating-card { transform: scale(.78); }
  .floating-card--quran { left: -26px; top: 55px; transform-origin: left top; }
  .floating-card--mosque { left: -30px; top: 470px; transform-origin: left top; }
  .floating-card--qibla { right: -27px; top: 130px; transform-origin: right top; }
  .floating-card--dua { right: -32px; top: 455px; transform-origin: right top; }
  .pattern--center { display: none; }
}

@media (max-width: 470px) {
  .eyebrow { padding-inline: 14px; font-size: 14px; }
  .hero__visual { height: 715px; }
  .phone-wrap { width: 92vw; }
  .floating-card { display: none; }
  .mindful-seal { font-size: 15px; }
  .mindful-seal em { font-size: 20px; }
  .laurel { font-size: 40px; }
}

/* ===== Footer with legal links (Privacy / Terms reachable) ===== */
.site-footer {
  position: relative;
  z-index: 5;
  width: min(1512px, calc(100% - 80px));
  margin: 24px auto 0;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}
.site-footer__brand { margin: 0 0 12px; font-family: Georgia, serif; font-size: 17px; color: var(--green-950); }
.site-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; }
.site-footer__links a { min-height: 44px; display: inline-flex; align-items: center; font-size: 15px; font-weight: 600; color: var(--green-800); }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__note { margin: 10px 0 0; font-size: 13px; }

/* =====================================================================
   NIYYARA MOBILE-FIRST OPTIMIZATION (consolidated)
   Everything above is the desktop / large-screen layout.
   Below is a single, coherent mobile pass (<= 1060px) plus a sticky
   download CTA, safe-area handling, and phone-size fine tuning.
   ===================================================================== */
html, body { overflow-x: hidden; max-width: 100%; }
.page-shell { overflow-x: clip; }

@media (max-width: 1060px) {
  /* --- kill all horizontal overflow, force single column --- */
  .page-shell { overflow-x: clip; }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    width: min(100% - 32px, 620px);
    height: auto;
    min-height: 0;
    gap: 0;
  }
  .hero__content {
    width: auto; max-width: 100%; min-width: 0;
    text-align: center;
    padding-top: 20px;
  }
  .hero__content > * { max-width: 100%; }
  .desktop-only { display: none; }

  /* --- compact, thumb-friendly hero so the CTA sits above the fold --- */
  .eyebrow { margin-inline: auto; font-size: 15px; min-height: 42px; }
  .hero h1, h1 {
    margin: 16px 0 14px;
    font-size: clamp(38px, 11.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -1.5px;
  }
  .hero__lead {
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.5;
    max-width: 34ch;
  }

  /* --- full-width stacked CTAs, large tap targets --- */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }
  .hero__actions .button,
  .hero__actions .button--secondary { min-width: 0; width: 100%; }
  .button--primary { min-height: 58px; font-size: 17px; }
  .button--secondary { min-height: 52px; }

  /* --- benefits stack cleanly --- */
  .benefits {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin: 26px auto 0;
    gap: 12px;
  }
  .benefit { justify-content: center; min-height: 62px; }

  /* --- social proof: real, legible HTML (no baked-text image) --- */
  .social-proof {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px auto 0;
    width: auto; max-width: 100%;
  }
  .community-proof { flex-direction: column; gap: 12px; }
  .rating-copy { text-align: center; }
  .rating-copy p { font-size: 15px; }
  .mindful-seal { justify-content: center; font-size: 16px; }
  .mindful-seal em { font-size: 20px; }
  .laurel { font-size: 40px; }

  /* --- phone mockup becomes a simple centered block; hide desktop decor --- */
  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    margin: 36px auto 0;
    display: flex;
    justify-content: center;
  }
  .phone-wrap {
    position: relative;
    left: auto; right: auto; top: auto; bottom: auto;
    transform: none;
    width: min(72vw, 290px);
  }
  .floating-card { display: none; }
  .pattern { display: none; }
  .skyline { display: none; }

  .site-footer { width: min(100% - 32px, 620px); margin-top: 8px; }

  /* leave room for the sticky download bar */
  .page-shell { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 600px) {
  .site-header {
    width: min(100% - 28px, 620px);
    height: 74px;
    padding-top: env(safe-area-inset-top, 0px);
  }
  .brand { gap: 11px; }
  .brand__icon { width: 46px; height: 46px; border-radius: 12px; }
  .brand__name { font-size: 27px; }
  .brand__tagline { font-size: 11px; margin-top: 4px; }
  .hero { width: min(100% - 28px, 620px); }
  .hero__lead { font-size: 16px; }
}

@media (max-width: 380px) {
  .hero h1, h1 { font-size: clamp(34px, 12vw, 46px); }
  .hero__actions .button { padding-inline: 18px; }
}

/* =====================================================================
   STICKY MOBILE DOWNLOAD CTA (always-visible, thumb-reachable)
   ===================================================================== */
@media (max-width: 1060px) {
  .download-bar {
    position: fixed;
    z-index: 60;
    left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(252, 250, 245, .92);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 22px rgba(30, 27, 20, .12);
    transform: translateY(120%);
    transition: transform .28s cubic-bezier(.22, .61, .36, 1);
  }
  .download-bar.is-visible { transform: translateY(0); }
  .download-bar__text { display: grid; line-height: 1.1; text-align: left; }
  .download-bar__text strong {
    color: var(--green-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    letter-spacing: -.4px;
  }
  .download-bar__text small { color: var(--muted); font-size: 12px; margin-top: 3px; }
  .download-bar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(135deg, #08725a, #03453b);
    box-shadow: 0 8px 18px rgba(4, 72, 59, .28);
  }
  .download-bar__cta svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
}

/* ── App store badges (both iOS + Android via store.js) ─────────────────── */
.hero__actions { flex-wrap: wrap; }
.appbadges { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.appbadges .appbadge-rendered { display: inline-flex; border-radius: 8px; transition: transform .15s ease, box-shadow .15s ease; }
.appbadges .appbadge-rendered:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(4,72,59,.18); }
.appbadges .appbadge-rendered svg { width: 148px; height: auto; display: block; }
.store-note { margin-top: 16px; font-size: 14px; color: #4f5b5b; }
.store-note strong { color: #064c40; font-weight: 600; }
.footer-badges { justify-content: center; margin: 10px 0 6px; }
@media (max-width: 760px) {
  .hero__actions { justify-content: center; }
  .appbadges { justify-content: center; }
  .store-note { text-align: center; }
  .appbadges .appbadge-rendered svg { width: 44vw; max-width: 172px; }
}

/* ── Marketing sections (features / free band / final CTA) ─────────────── */
.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 78px 0; }
.section-head { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-head .eyebrow { margin: 0 auto; }
.section-head h2, .free-band h2, .final-cta h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.01em; line-height: 1.08; color: var(--green-950); font-size: clamp(30px, 4.4vw, 46px); margin: 20px 0 16px; }
.section-head h2 span, .final-cta h2 span { color: var(--gold); }
.section-head p { color: var(--muted); font-size: 18px; line-height: 1.6; }

.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card { background: linear-gradient(160deg,#fffdf9,#fbf6ec); border: 1px solid var(--line); border-radius: 20px; padding: 26px 22px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(30,27,20,.14); }
.feat-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg,#08725a,#03453b); margin-bottom: 16px; }
.feat-ic svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat-card h3 { font-size: 17px; font-weight: 700; color: var(--green-950); margin: 0 0 7px; }
.feat-card p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

.free-band { width: 100%; max-width: none; padding: 0; margin-top: 20px; }
.free-band__inner { width: min(1120px, calc(100% - 48px)); margin: 0 auto; text-align: center; color: #eafaf3; background: radial-gradient(120% 140% at 50% 0%, #0b5d4d 0%, #064c40 45%, #033f36 100%); border-radius: 34px; padding: 64px 40px; box-shadow: 0 30px 60px rgba(3,63,54,.28); }
.free-band h2 { color: #fff; }
.free-band p { color: rgba(234,250,243,.82); font-size: 18px; max-width: 620px; margin: 0 auto 34px; }
.eyebrow--light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.24); color: #eafaf3; }
.eyebrow--light span { color: var(--gold-soft); }
.free-points { list-style: none; margin: 0 auto 36px; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 900px; }
.free-points li { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 20px 16px; display: grid; gap: 5px; }
.free-points b { font-size: 16px; color: #fff; }
.free-points span { font-size: 13.5px; color: rgba(234,250,243,.72); line-height: 1.45; }
.appbadges--light { justify-content: center; }
.appbadges--light .appbadge-rendered { box-shadow: 0 0 0 1px rgba(255,255,255,.28), 0 8px 20px rgba(0,0,0,.25); }

.final-cta { text-align: center; padding-bottom: 40px; }
.final-cta__icon { width: 80px; height: 80px; border-radius: 20px; box-shadow: var(--shadow); margin-bottom: 8px; }
.final-cta p { color: var(--muted); font-size: 18px; max-width: 560px; margin: 4px auto 28px; line-height: 1.6; }
.final-cta .appbadges { justify-content: center; }
.final-cta .store-note { text-align: center; }

@media (max-width: 1060px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } .free-points { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 760px) {
  .section { padding: 54px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head p, .free-band p, .final-cta p { font-size: 16px; }
  .free-band__inner { padding: 46px 22px; border-radius: 26px; }
}
@media (max-width: 470px) { .feat-grid { grid-template-columns: 1fr; } .free-points { grid-template-columns: 1fr; } }
