/* ============================================================
   CONTENT GETS CLIENTS — Red Theme
   White canvas. Black words. One red moment.
   Single typeface (Inter). ~90% white+ink / ~10% red.
   ============================================================ */

:root {
  --red:        #E00000;  /* Brand Red — CTAs, key numbers, eyebrows, links, logo mark */
  --red-deep:   #B00000;  /* Hover / pressed */
  --red-tint:   #FCEAEA;  /* Faint wash behind red callouts */
  --ink:        #0B0B0D;  /* Body & display text; dark bands */
  --paper:      #FFFFFF;  /* Default background — the white canvas */
  --mist:       #F4F4F5;  /* Alternating section bands & light cards */
  --slate:      #54545C;  /* Secondary copy, sub-heads */
  --line:       #ECECEE;  /* Hairline borders */
  --line-ink:   rgba(255,255,255,0.12); /* Borders on ink bands */
  --trustpilot: #00B67A;  /* Trustpilot widget only */

  --maxw: 1040px;
  --radius: 14px;
  --radius-sm: 10px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
h1, h2, h3 { margin: 0; letter-spacing: -0.025em; line-height: 1.05; font-weight: 800; }
p { margin: 0; }
strong { font-weight: 700; color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding: 64px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #fff; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}
.display {
  font-size: clamp(34px, 5.4vw, 60px);
  letter-spacing: -0.035em;
}
.h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
}
.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--slate);
  line-height: 1.6;
}
.section--ink .lead { color: rgba(255,255,255,0.72); }
.muted { color: var(--slate); }
.text-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 16px 30px;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, transform 120ms ease;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); color: #fff; }
.btn-lg { font-size: 17px; padding: 19px 40px; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { color: var(--ink); border-color: var(--ink); }
.section--ink .btn-secondary { color: #fff; border-color: var(--line-ink); }
.section--ink .btn-secondary:hover { border-color: #fff; color: #fff; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 46px; height: auto; flex-shrink: 0; }
.brand-name {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.header-cta { font-size: 13px; padding: 12px 22px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--mist);
  color: var(--slate);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
}

/* ---------- Hero (white canvas — black words, one red moment) ---------- */
.hero { padding: 84px 0 64px; text-align: center; }
.hero .display {
  font-size: clamp(31px, 4.4vw, 52px);
  max-width: 840px;
  margin: 0 auto 24px;
  text-wrap: balance;
}
.hero .lead { max-width: 600px; margin: 0 auto 34px; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 30px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
}
.hero-proof .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.hero-subtext { color: var(--slate); font-size: 14px; margin-top: 18px; }

/* ---------- VSL video frame ---------- */
.vsl { max-width: 920px; margin: 32px auto 0; }
.vsl-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.vsl-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Section heading block ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .lead { margin-top: 14px; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.section--mist .card { background: var(--paper); }
.card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 15px; line-height: 1.6; }

/* Card marker (replaces emoji — keeps the "one red moment", no emoji per brand guide) */
.marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  flex-shrink: 0;
  color: var(--red);
}
.marker svg { width: 24px; height: 24px; }
.marker-num {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  width: 38px;
  height: 38px;
}

/* Problem card uses an inline marker layout */
.problem-card { display: flex; gap: 14px; }
.problem-card .x { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.problem-card .x svg { width: 22px; height: 22px; }
.problem-card h3 { font-size: 16px; }

/* ---------- Callout ---------- */
.callout {
  margin: 28px auto 0;
  max-width: 800px;
  background: var(--red-tint);
  border: 1px solid rgba(224,0,0,0.25);
  border-radius: var(--radius);
  padding: 26px 28px;
  text-align: center;
}
.callout p { font-size: 18px; font-weight: 600; line-height: 1.5; color: var(--ink); }

/* ---------- Process flow ---------- */
.process { max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.process-step {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
}
.process-step .idx { color: var(--slate); font-size: 12px; font-weight: 700; width: 16px; }
.process-step .label { flex: 1; }
.process-step .tag { font-size: 12px; color: var(--slate); font-weight: 600; }
.process-step.is-you {
  background: var(--red-tint);
  border-color: rgba(224,0,0,0.4);
}
.process-step.is-you .tag { color: var(--red); }
.process-arrow { color: var(--line); margin: 5px 0; font-size: 16px; }

/* ---------- FAQ (native details/summary, no JS) ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2212"; } /* minus */
.faq .faq-body {
  padding: 0 22px 20px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Contact cards ---------- */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.contact-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--red-tint);
  display: flex; align-items: center; justify-content: center;
}
.contact-ico svg { width: 22px; height: 22px; color: var(--red); }
.contact-card .k { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.contact-card .v { font-size: 18px; font-weight: 600; color: var(--ink); }
.contact-card .v a { color: var(--ink); }
.contact-card .v a:hover { color: var(--red); }
.contact-card .note { color: var(--slate); font-size: 14px; margin-top: 6px; }

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose .meta { color: var(--slate); font-size: 14px; text-align: center; margin: 8px 0 48px; }
.prose section { margin-bottom: 34px; }
.prose h2 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.prose p { color: var(--slate); margin-bottom: 12px; }
.prose ul { color: var(--slate); padding-left: 20px; margin: 8px 0 0; display: flex; flex-direction: column; gap: 6px; }
.prose .contact-box {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.prose .contact-box p { color: var(--ink); margin-bottom: 4px; }

/* ---------- About page quote ---------- */
.pullquote {
  border-left: 3px solid var(--red);
  padding-left: 22px;
  margin: 10px 0;
}
.pullquote p { color: var(--ink); font-style: italic; font-size: 19px; line-height: 1.55; }
.article { max-width: 740px; margin: 0 auto; }
.article p { margin-bottom: 22px; font-size: 17px; line-height: 1.75; color: var(--slate); }
.article strong { color: var(--ink); }

/* ---------- Footer (ink band) ---------- */
.site-footer { background: var(--ink); color: #fff; padding: 44px 0 40px; }
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.site-footer .brand:hover { color: #fff; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; margin-bottom: 20px; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.footer-fine { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 6px; }
.footer-disclaimer { color: rgba(255,255,255,0.35); font-size: 11px; max-width: 640px; margin: 10px auto 0; line-height: 1.6; }
.footer-admin { margin-top: 16px; }
.footer-admin a { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-admin a:hover { color: var(--red); }

/* ---------- Spacing utilities ---------- */
.mt-8 { margin-top: 8px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.stack { display: flex; flex-direction: column; gap: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .brand-name { font-size: 17px; }
  .header-cta { display: none; }
  .hero { padding: 52px 0 44px; }
  .hero .display { font-size: clamp(27px, 7.2vw, 40px); }
}
