/* ==========================================================================
   Opinionsläget — shared mockup primitives
   Reused verbatim from DESIGN_TOKENS.md (grain + blob recipes) so every
   direction reads as the same app, not four unrelated concepts.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&display=swap');

:root {
  --bg: #0b0f1c;
  --fg: rgba(255,255,255,.92);
  --fg-dim: rgba(255,255,255,.62);
  --fg-faint: rgba(255,255,255,.38);
  --hairline: rgba(255,255,255,.14);

  /* party colors — app's darkened theme bg per DESIGN_TOKENS.md */
  --s: #C10D25;   /* Socialdemokraterna */
  --m: #1E7FA8;   /* Moderaterna */
  --sd: #af9400;  /* Sverigedemokraterna */
  --v: #8B1A12;   /* Vänsterpartiet */
  --c: #006622;   /* Centerpartiet */
  --kd: #00006E;  /* Kristdemokraterna */
  --mp: #3E6B14;  /* Miljöpartiet */
  --l: #00508A;   /* Liberalerna */

  /* official brighter brand colors, for small accents/dots */
  --s-b: #E8112D;
  --m-b: #52BDEC;
  --sd-b: #DDDD00;
  --v-b: #DA291C;
  --c-b: #009933;
  --kd-b: #000077;
  --mp-b: #83CF39;
  --l-b: #006AB3;

  --sys: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --script: "Instrument Serif", ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sys);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.mockup-label {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  font: 600 11px/1 var(--sys);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(11,15,28,.9);
  background: rgba(255,255,255,.85);
  padding: 6px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

/* --------------------------------------------------------------------------
   Living background: base bg + drifting blurred blobs + film grain
   Recipe reused exactly from DESIGN_TOKENS.md ("the app's signature hero motion")
   -------------------------------------------------------------------------- */
.app-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
  z-index: 0;
}
.app-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: .55;
  will-change: transform;
}
.app-blob.b1 { width: 46vw; height: 46vw; left: -8vw; top: -6vw; background: var(--m); animation: lsBlob1 4.5s ease-in-out infinite alternate; }
.app-blob.b2 { width: 40vw; height: 40vw; right: -6vw; top: 8vw; background: var(--s); animation: lsBlob2 6.5s ease-in-out infinite alternate; }
.app-blob.b3 { width: 38vw; height: 38vw; left: 22vw; bottom: -14vw; background: var(--sd-b); animation: lsBlob3 8s ease-in-out infinite alternate; }

/* Blobs are sized off viewport WIDTH, which is fine on desktop's wide
   aspect ratio but reads as small, tight splotches on a narrow-but-tall
   phone screen. Size them off the larger dimension instead below tablet
   width, so they stay big, sweeping washes of color like on desktop. */
@media (max-width: 700px) {
  /* Stacked vertically, centered: red top, blue middle, yellow bottom. */
  .app-blob.b2 { width: 85vmax; height: 85vmax; left: calc(50% - 42.5vmax); right: auto; top: -20vmax; bottom: auto; }
  .app-blob.b1 { width: 95vmax; height: 95vmax; left: calc(50% - 47.5vmax); top: calc(50% - 47.5vmax); bottom: auto; }
  .app-blob.b3 { width: 80vmax; height: 80vmax; left: calc(50% - 40vmax); bottom: -20vmax; top: auto; }
}

@keyframes lsBlob1 { from{ transform: translate(0,0) scale(1); }    to{ transform: translate(35%,50%) scale(1.25); } }
@keyframes lsBlob2 { from{ transform: translate(0,0) scale(1.1); }  to{ transform: translate(-30%,-35%) scale(0.85); } }
@keyframes lsBlob3 { from{ transform: translate(0,0) scale(1); }    to{ transform: translate(25%,-40%) scale(1.2); } }

.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.grain::after {
  content: '';
  position: absolute;
  inset: -100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  /* App's own value (.1014, screen) reads as near-invisible over saturated
     blob color on a desktop-scale hero — screen blend barely affects bright
     pixels. Bumped opacity + switched to overlay so the grain actually reads
     as texture across both the dark bg and the moving color blobs (ref: skylrk.com). */
  opacity: .4;
  mix-blend-mode: overlay;
  animation: grainAnim .5s steps(1) infinite;
}
@keyframes grainAnim {
  0%   { transform: translate(0,0); }
  12%  { transform: translate(-6%,-4%); }
  24%  { transform: translate(4%,-8%); }
  36%  { transform: translate(-4%,6%); }
  48%  { transform: translate(8%,2%); }
  60%  { transform: translate(-8%,4%); }
  72%  { transform: translate(2%,-6%); }
  86%  { transform: translate(6%,6%); }
  100% { transform: translate(0,0); }
}

@media (prefers-reduced-motion: reduce) {
  .app-blob, .grain::after { animation: none; }
}

/* everything else paints above the fixed bg + grain (z-index 0 / 1) */
header, main, section, footer { position: relative; z-index: 2; }

/* --------------------------------------------------------------------------
   Pill nav + pill tag primitives (reference cue: pill nav, floating pill tags)
   -------------------------------------------------------------------------- */
.pill-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px;
}
.brand-wordmark {
  font-family: var(--sys);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--fg);
  text-transform: uppercase;
  line-height: 1;
}
.pill-nav__brand { display: flex; align-items: center; gap: 10px; }
.pill-nav__brand img { height: 22px; width: auto; }
.pill-nav__brand .brand-wordmark { font-size: 15px; }
.pill-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 6px;
  backdrop-filter: blur(10px);
}
.pill-nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg-dim);
  padding: 8px 16px;
  border-radius: 100px;
  transition: color .15s, background .15s;
}
.pill-nav__links a:hover { color: var(--fg); background: rgba(255,255,255,.08); }
.pill-nav__cta {
  font-size: 13.5px;
  font-weight: 600;
  color: #0b0f1c;
  background: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Mobile nav: pure-CSS checkbox toggle, no JS. Below 720px the link pill
   is hidden (it doesn't fit next to logo + CTA on a phone) and replaced
   by a hamburger that reveals a small dropdown. */
.pill-nav__right { display: flex; align-items: center; gap: 10px; position: relative; }
.nav-toggle-input { display: none; }
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--hairline);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-btn span { width: 15px; height: 1.5px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: rgba(14,17,28,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  z-index: 50;
}
.mobile-menu a { padding: 11px 14px; border-radius: 12px; font-size: 14.5px; font-weight: 600; color: var(--fg-dim); }
.mobile-menu a:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-toggle-input:checked ~ .mobile-menu { display: flex; }
.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .nav-toggle-btn span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 840px) {
  .pill-nav__links { display: none; }
  .nav-toggle-btn { display: flex; }
}

/* --------------------------------------------------------------------------
   Footer — minimal: brand + nav, then a trust/attribution line
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 52px 24px 32px;
}
.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; opacity: .92; }
.footer-brand img:first-child { height: 20px; width: auto; }
.footer-brand .brand-wordmark { font-size: 14px; }
.footer-nav-group { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.footer-nav-group a { font-size: 13.5px; font-weight: 500; color: var(--fg-dim); }
.footer-nav-group a:hover { color: var(--fg); }
.footer-nav-group .sep { width: 1px; height: 14px; background: var(--hairline); }

.footer-divider { max-width: 1180px; margin: 0 auto; height: 1px; background: var(--hairline); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer-bottom span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--fg-faint);
}
.footer-trust-line { color: var(--fg-dim) !important; }

@media (max-width: 640px) {
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav-group .sep { display: none; }
}

.pill-tag {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(20,24,38,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 7px 13px 7px 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.pill-tag img { width: 20px; height: 20px; border-radius: 50%; }
.pill-tag .muted { color: var(--fg-faint); font-weight: 500; }
.pill-tag.float { animation: pillFloat 5s ease-in-out infinite; }
.pill-tag.float.d2 { animation-delay: .6s; }
.pill-tag.float.d3 { animation-delay: 1.2s; }
@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 7px 16px 7px 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg-dim);
}
.eyebrow-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mp-b); box-shadow: 0 0 0 3px rgba(131,207,57,.18); }

/* --------------------------------------------------------------------------
   Headline type: bold system-stack line 1, lighter Instrument Serif italic
   line 2 — "mirrors the app" (system stack) while echoing the reference's
   bold + script two-liner.
   -------------------------------------------------------------------------- */
.headline { margin: 0; }
.headline .l1 {
  display: block;
  font-family: var(--sys);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .98;
  color: var(--fg);
}
.headline .l2 {
  display: block;
  font-family: var(--script);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--fg-dim);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0b0f1c;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: 100px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--fg);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: 100px;
}

/* --------------------------------------------------------------------------
   Phone frame — CSS-only iPhone mockup shell. .phone__screen is the slot
   for placeholder or (later) real captures.
   -------------------------------------------------------------------------- */
.phone {
  position: relative;
  width: 236px;
  aspect-ratio: 236 / 484;
  background: #05070d;
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.08),
    0 30px 60px -15px rgba(0,0,0,.6),
    0 10px 20px rgba(0,0,0,.4);
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0b0f1c;
}
.phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 20px;
  background: #05070d;
  border-radius: 100px;
  z-index: 3;
}

/* Real device captures already contain their own status bar / dynamic
   island, so the synthetic notch + placeholder tags are hidden for them. */
.phone--real .phone__notch,
.phone--real .phone__placeholder-tag,
.phone--real .rec {
  display: none;
}
.phone__screen video,
.phone__screen img.real-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone__placeholder-tag {
  position: absolute;
  top: 34px;
  right: 10px;
  z-index: 4;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.14);
  padding: 3px 7px;
  border-radius: 100px;
}

/* Placeholder screen contents (stand-ins until real captures land) */
.screen-fill { position: absolute; inset: 0; }

.scr-hemvyn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  background: radial-gradient(120% 90% at 50% 100%, var(--m) 0%, #0b0f1c 68%);
}
.scr-hemvyn img { width: 64px; height: 64px; }
.scr-hemvyn .pct { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.scr-hemvyn .party { font-size: 12px; color: var(--fg-dim); font-weight: 600; }

.scr-kartan {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(11, 1fr);
  gap: 1px;
  background: #05070d;
}
.scr-kartan .cell { background: var(--cell, rgba(255,255,255,.05)); }
.scr-kartan .pin {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 6px rgba(255,255,255,.18), 0 0 24px rgba(255,255,255,.5);
}
.scr-kartan .rec {
  position: absolute; top: 34px; left: 10px; z-index: 4;
  display: flex; align-items: center; gap: 5px;
  font-size: 8.5px; font-weight: 700; letter-spacing: .05em; color: #fff;
  background: rgba(0,0,0,.45); padding: 3px 8px 3px 6px; border-radius: 100px;
}
.scr-kartan .rec .dot { width: 6px; height: 6px; border-radius: 50%; background: #ff4d4d; animation: recBlink 1.2s ease-in-out infinite; }
@keyframes recBlink { 0%,100%{opacity:1} 50%{opacity:.25} }

.scr-kompass {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 90% at 50% 100%, var(--l) 0%, #0b0f1c 70%);
}
.scr-kompass .dial {
  position: relative; width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: conic-gradient(from 0deg, rgba(255,255,255,.05), rgba(255,255,255,.14), rgba(255,255,255,.05));
}
.scr-kompass .needle {
  position: absolute; left: 50%; top: 50%; width: 3px; height: 46px;
  background: linear-gradient(#fff, rgba(255,255,255,.2));
  transform-origin: bottom center; transform: translate(-50%,-100%) rotate(28deg);
  border-radius: 2px;
}
.scr-kompass .dist { position: absolute; bottom: 20px; font-size: 11px; font-weight: 700; color: var(--fg); }

.scr-opinion {
  display: flex; align-items: flex-end; justify-content: center; gap: 8px;
  padding: 0 18px 24px;
  background: linear-gradient(180deg, #0b0f1c, #0d1220);
}
.scr-opinion .bar { width: 14px; border-radius: 4px 4px 0 0; }

/* generic small "screen" scaffolding shared across placeholders */
.scr-topbar {
  position: absolute; top: 0; left: 0; right: 0; height: 34px; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 6px;
}

.section {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}

.kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 14px;
}

.legend {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.legend .chip {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; color: var(--fg-dim);
  background: rgba(255,255,255,.05); border: 1px solid var(--hairline);
  padding: 5px 10px 5px 6px; border-radius: 100px;
}
.legend .chip .sw { width: 10px; height: 10px; border-radius: 3px; }

/* --------------------------------------------------------------------------
   Inner-page primitives — shared by kartan / funktioner / om-appen /
   integritetspolicy / support so they read as one site, not one-off pages.
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 132px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.page-hero .headline { font-size: clamp(34px, 5.2vw, 58px); }
.page-hero .sub { max-width: 54ch; font-size: 16.5px; line-height: 1.65; color: var(--fg-dim); }
.page-hero.left { text-align: left; align-items: flex-start; max-width: 720px; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step { padding: 26px 22px; border: 1px solid var(--hairline); border-radius: 20px; background: rgba(255,255,255,.03); }
.step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.08); font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.01em; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--fg-dim); margin: 0; }

.callout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}
.callout .stat { font-size: 64px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.callout .stat-label { font-size: 14px; color: var(--fg-dim); margin-top: 8px; }
.callout p { font-size: 15px; line-height: 1.7; color: var(--fg-dim); max-width: 44ch; }
.callout .phone { width: 220px; margin: 0 auto; }

.trust-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.trust-duo .card { padding: 28px; border: 1px solid var(--hairline); border-radius: 20px; background: rgba(255,255,255,.03); }
.trust-duo .card h3 { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.trust-duo .card p { font-size: 14.5px; line-height: 1.65; color: var(--fg-dim); margin: 0; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
}
.feature-row:first-of-type { border-top: none; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-row .feature-media { display: flex; justify-content: center; }
.feature-row .phone { width: 250px; }
.feature-row h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; }
.feature-row p { font-size: 15.5px; line-height: 1.7; color: var(--fg-dim); max-width: 46ch; margin: 0 0 16px; }
.feature-row .more-link { font-size: 13.5px; font-weight: 700; color: var(--fg); }
.feature-row .more-link:hover { text-decoration: underline; }

.faq-item { padding: 26px 0; border-top: 1px solid var(--hairline); }
.faq-item:first-child { border-top: none; }
.faq-item h3 { font-size: 17.5px; font-weight: 700; margin: 0 0 10px; letter-spacing: -.01em; }
.faq-item p { font-size: 15px; line-height: 1.7; color: var(--fg-dim); margin: 0; max-width: 62ch; }

.policy { max-width: 760px; margin: 0 auto; padding: 132px 24px 40px; }
.policy h1 { font-size: clamp(32px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; }
.policy .updated { font-size: 13px; color: var(--fg-faint); margin-bottom: 44px; }
.policy h2 { font-size: 19px; font-weight: 700; margin: 40px 0 12px; letter-spacing: -.01em; }
.policy p, .policy li { font-size: 15px; line-height: 1.75; color: var(--fg-dim); }
.policy ul { padding-left: 20px; margin: 0 0 16px; }
.policy li { margin-bottom: 8px; }
.policy strong { color: var(--fg); }
.policy .placeholder {
  color: #ffd479;
  background: rgba(255,212,121,.08);
  border: 1px dashed rgba(255,212,121,.35);
  border-radius: 6px;
  padding: 1px 6px;
}

.contact-box {
  margin-top: 8px;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-box p { margin: 0; font-size: 14.5px; color: var(--fg-dim); }

@media (max-width: 860px) {
  .step-grid { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; text-align: center; }
  .trust-duo { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.reverse .feature-copy { order: 0; }
}
