/* ZinApp landing — mobile-first */

:root {
  --blue: #1E5DB8;
  --blue-mid: #2563EB;
  --blue-deep: #0F2D6B;
  --blue-soft: #E8F1FB;
  --ink: #0B1630;
  --muted: #5B6B86;
  --line: rgba(15, 45, 107, 0.12);
  --white: #ffffff;
  --paper: #F7F9FC;
  --accent: #F97316;
  --ok: #059669;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --pad: clamp(1rem, 4vw, 1.5rem);
  --max: 1100px;
  --radius: 18px;
  --radius-btn: 999px;
  --shadow: 0 10px 30px rgba(15, 45, 107, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 45, 107, 0.14);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --header-h: calc(64px + env(safe-area-inset-top, 0px));
  --focus: 0 0 0 3px rgba(26, 86, 219, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: clip;
  min-height: 100vh;
  min-height: 100dvh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

.wrap {
  width: min(
    var(--max),
    calc(100% - 2 * max(var(--pad), env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px)))
  );
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-120%);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0.75rem);
  outline: 2px solid var(--white);
  outline-offset: 2px;
  box-shadow: var(--focus);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  box-shadow: var(--focus);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.98); }

.btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.btn:disabled,
.btn[aria-disabled="true"],
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.btn-secondary:hover {
  background: var(--blue-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.btn-whatsapp {
  background: #0B7A4B;
  color: #fff;
  border-color: #0B7A4B;
}

.btn-whatsapp:hover {
  background: #096B42;
  border-color: #096B42;
}

.btn-sm {
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}

.btn-block { width: 100%; }

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

/* —— Site header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a:not(.btn) {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
}

.nav-desktop a:not(.btn):hover,
.nav-desktop a:not(.btn):focus-visible {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-cta {
  margin-left: 0.35rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle:hover { border-color: var(--blue); color: var(--blue); }

.menu-toggle svg { width: 22px; height: 22px; }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0.75rem max(var(--pad), env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px)) 1rem;
}

.nav-mobile.is-open { display: grid; gap: 0.35rem; }

.nav-mobile a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--ink);
}

.nav-mobile a:hover,
.nav-mobile a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue);
}

.nav-mobile .btn { margin-top: 0.35rem; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .nav-desktop { gap: 0; }
  .nav-desktop a:not(.btn) {
    padding: 0.45rem 0.5rem;
    font-size: 0.84rem;
  }
  .nav-cta { margin-left: 0.15rem; }
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(26, 86, 219, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(249, 115, 22, 0.08), transparent 50%),
    linear-gradient(180deg, #F3F7FF 0%, var(--white) 70%);
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7.2vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
}

.hero-lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.8vw, 1.18rem);
  max-width: 40ch;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  max-width: 36rem;
}

.hero-pills li {
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.hero-actions .btn-primary {
  min-height: 54px;
  box-shadow: 0 10px 24px rgba(30, 93, 184, 0.28);
}

.hero-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 42ch;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-stage {
  position: relative;
  width: min(280px, 72vw);
}

.phone {
  width: 100%;
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #0B1630;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 18px;
  border-radius: 999px;
  background: #0f172a;
  z-index: 2;
}

.hero-floats {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-float {
  position: absolute;
  z-index: 3;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.hero-float-a { top: 12%; left: -18%; }
.hero-float-b { top: 46%; right: -22%; }
.hero-float-c { bottom: 16%; left: -14%; }

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }
  .hero-actions .btn { width: auto; min-width: 180px; }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
  .hero-floats { display: block; }
  .hero-stage { width: min(300px, 100%); }
}

/* —— Sections shared —— */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-alt { background: var(--paper); }

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.5vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 28ch;
}

.section-lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

.section-head {
  margin-bottom: 1.5rem;
}

/* —— Categories —— */
.cat-grid {
  display: grid;
  gap: 1rem;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.cat-card-visual {
  padding: 0;
  overflow: hidden;
}

.cat-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-soft);
}

.cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.cat-body {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem 1.15rem 1.25rem;
}

.cat-card:hover {
  border-color: rgba(26, 86, 219, 0.35);
  box-shadow: var(--shadow-lg);
}

@media (hover: hover) {
  .cat-card:hover { transform: translateY(-2px); }
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.cat-icon svg { width: 24px; height: 24px; }

.cat-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.cat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.35rem 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.step h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
}

/* —— Featured businesses —— */
.biz-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.biz-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

@media (hover: hover) {
  .biz-card:hover {
    border-color: rgba(26, 86, 219, 0.28);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
  }
}

.biz-media {
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  background:
    linear-gradient(135deg, var(--blue-soft), #dbe7ff),
    var(--blue-soft);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
}

.biz-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.biz-media-cover img {
  object-fit: cover;
  background: var(--blue-soft);
}

.biz-media-contain img {
  object-fit: contain;
  padding: 0.75rem;
}

.biz-demo {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(11, 22, 48, 0.78);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.biz-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1 1 auto;
  min-height: 0;
}

.biz-body h3,
.biz-name {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.5em;
  line-height: 1.25;
  word-break: break-word;
}

.biz-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  display: grid;
  gap: 0.2rem;
  flex: 1 1 auto;
}

.biz-meta span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.biz-cat {
  display: inline-flex;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.biz-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.biz-body .btn {
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}

.demo-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

@media (min-width: 600px) {
  .biz-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .biz-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.dish-grid,
.promo-grid {
  display: grid;
  gap: 1rem;
}

.dish-card,
.promo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.dish-media,
.promo-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blue-soft);
}

.dish-media img,
.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-body,
.promo-body {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
}

.dish-body h3,
.promo-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.dish-place,
.promo-body p,
.dish-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dish-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.dish-body .btn,
.promo-body .btn {
  margin-top: 0.45rem;
  width: 100%;
}

.promo-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}

@media (min-width: 600px) {
  .dish-grid,
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .dish-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* —— For business —— */
.plan-grid {
  display: grid;
  gap: 1rem;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}

.plan-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.plan-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue);
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.plan-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.95rem;
  color: var(--ink);
}

.plan-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 5px var(--blue);
  flex-shrink: 0;
}

.plan-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 768px) {
  .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.biz-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.biz-cta-row .btn {
  width: 100%;
}

@media (min-width: 560px) {
  .biz-cta-row .btn { width: auto; }
}

/* —— Install —— */
.install-actions {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.accordion {
  display: grid;
  gap: 0.65rem;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--blue);
  font-weight: 700;
}

.accordion details[open] summary::after { content: "–"; }

.accordion summary:hover { background: var(--blue-soft); }

.accordion .acc-body {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.accordion .acc-body ol {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

@media (min-width: 560px) {
  .install-actions {
    display: flex;
    flex-wrap: wrap;
  }
  .install-actions .btn { width: auto; }
}

.install-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* —— Trust —— */
.trust-metrics {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 0 0 1.25rem;
}

.trust-metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.trust-metric-value {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-display);
}

.trust-testimonials,
.trust-promos {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.trust-quote,
.trust-promo {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(30, 93, 184, 0.06);
}

.trust-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.8;
}

.trust-metric-label {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-grid {
  display: grid;
  gap: 0.85rem;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.trust-icon svg { width: 20px; height: 20px; }

.trust-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-family: var(--font-display);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* —— FAQ —— */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list summary:hover,
.faq-list summary:focus-visible {
  background: var(--blue-soft);
}

.faq-list .faq-a {
  padding: 0 1.15rem 1.15rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Contact —— */
.contact-box {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

.contact-links {
  display: grid;
  gap: 0.65rem;
}

.contact-links a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.contact-links a:hover { text-decoration: underline; }

.contact-placeholder,
.contact-fallback {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-fallback a {
  color: var(--blue);
  font-weight: 600;
}

/* —— Footer —— */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0 calc(2rem + var(--safe-b));
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: grid;
  gap: 0.75rem;
  max-width: 22rem;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
  line-height: 1.55;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 1rem;
}

@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-group h3 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-group nav {
  display: grid;
  gap: 0.55rem;
}

.footer-group a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-group a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-group a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.82rem;
}

@media (min-width: 800px) {
  .footer-main {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* —— Sticky mobile CTA —— */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem max(var(--pad), env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px)) calc(0.65rem + var(--safe-b));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15, 45, 107, 0.08);
}

.mobile-bar .btn {
  min-height: 48px;
  font-size: 0.9rem;
  padding-inline: 0.75rem;
}

body { padding-bottom: calc(4.75rem + var(--safe-b)); }

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
