/* SUPA — supa.red rebuild
 * Modern, elegant, business-grade. British English source.
 * Brand: SUPA red #E10600 on warm off-white #FAF7F7
 */

:root {
  --supa-red: #E10600;
  --supa-red-deep: #B30500;
  --supa-red-soft: #FFF7F6;
  --text: #1F2225;
  --text-soft: #363A3F;
  --text-muted: #6B7075;
  --bg: #FAF7F7;
  --bg-card: #FFFFFF;
  --border: #E6E6E6;
  --border-strong: #D9D6D5;
  --success: #14B371;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --content-max: 1200px;
  --reading-max: 720px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(31,34,37,0.04), 0 1px 3px rgba(31,34,37,0.06);
  --shadow: 0 6px 20px rgba(31,34,37,0.06), 0 2px 6px rgba(31,34,37,0.04);
  --shadow-lg: 0 24px 60px rgba(31,34,37,0.10), 0 8px 24px rgba(31,34,37,0.06);
}

* { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--supa-red); }

img, svg { max-width: 100%; display: block; }

button { font-family: inherit; }

/* Skip to main content (a11y) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--supa-red);
  color: #fff;
  padding: 8px 14px;
  z-index: 1000;
  border-radius: 6px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; color: #fff; }

/* Containers */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  line-height: 1.12;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.6rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text-soft); }
p.lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--text-soft);
  max-width: var(--reading-max);
  line-height: 1.55;
}
p.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--supa-red);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.subhead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  color: var(--text-soft);
  max-width: var(--reading-max);
  margin-bottom: 1.6rem;
}

.support-line {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.6rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 247, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand img { width: 36px; height: 36px; }
.brand-mark {
  color: var(--supa-red);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.nav a:hover, .nav a.active {
  color: var(--supa-red);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--supa-red);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switcher {
  position: relative;
}
.lang-button {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-button:hover { border-color: var(--border-strong); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 160px;
  padding: 6px;
  display: none;
  z-index: 60;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 8px 12px;
  font-size: 0.92rem;
  border-radius: 8px;
  color: var(--text-soft);
  cursor: pointer;
}
.lang-menu button:hover { background: var(--bg); color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--supa-red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--supa-red-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(225,6,0,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--text);
  color: var(--text);
}
.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  padding: 11px 12px;
}
.btn-ghost:hover { color: var(--supa-red); }

.btn-large { padding: 14px 28px; font-size: 1rem; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; color: var(--text); }

@media (max-width: 1023px) {
  .nav, .header-actions .desktop-only { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  padding: 32px 24px;
  overflow-y: auto;
  display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu .mm-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.mobile-menu .mm-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu .mm-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mm-actions { display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mm-actions .btn { width: 100%; }

/* Hero — single column, full-bleed gradient */
.hero {
  padding: clamp(80px, 14vw, 160px) 0 clamp(64px, 10vw, 120px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(225,6,0,0.18), transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(225,6,0,0.10), transparent 65%),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(31,34,37,0.04), transparent 70%),
    linear-gradient(180deg, #FFF7F5 0%, #FAF7F7 60%, var(--bg) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 1px 1px, rgba(31,34,37,0.05) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.7;
}
.hero .container { position: relative; }
.hero-content { max-width: 880px; }
.hero-content.center { margin: 0 auto; text-align: center; }
.hero-content.center .subhead,
.hero-content.center .lead,
.hero-content.center .support-line { margin-left: auto; margin-right: auto; }
.hero-content.center .hero-actions { justify-content: center; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Hero variant for inner pages — narrower */
.hero.compact { padding: clamp(64px, 11vw, 120px) 0 clamp(40px, 7vw, 80px); }

/* Sections */
section {
  padding: clamp(64px, 9vw, 110px) 0;
  position: relative;
}
section.tight { padding: clamp(48px, 7vw, 80px) 0; }

.section-head {
  max-width: var(--reading-max);
  margin-bottom: clamp(36px, 6vw, 64px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.alt {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Section with subtle red gradient wash */
.section-wash {
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(225,6,0,0.06), transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(225,6,0,0.05), transparent 65%),
    linear-gradient(180deg, #FFFFFF, #FFF7F6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

/* Dark gradient section */
.section-dark {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(225,6,0,0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(225,6,0,0.12), transparent 60%),
    linear-gradient(160deg, #1F2225 0%, #2A2D32 100%);
  color: #F1F2F4;
  position: relative;
  overflow: hidden;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #FFFFFF; }
.section-dark p { color: #C9CDD0; }
.section-dark .lead { color: #C9CDD0; }
.section-dark .eyebrow { color: #FF8A85; }
.section-dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .card:hover { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); }
.section-dark .card h3 { color: #FFF; }
.section-dark .card p { color: #C9CDD0; }
.section-dark .table-wrap { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
.section-dark .table th { background: rgba(225,6,0,0.18); color: #fff; border-color: rgba(255,255,255,0.08); }
.section-dark .table td { color: #C9CDD0; border-color: rgba(255,255,255,0.06); }

/* Capability cards grid */
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card .accent {
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--supa-red);
}
.card-body { padding-left: 18px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); margin: 0; font-size: 0.96rem; }
.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--supa-red-soft);
  color: var(--supa-red);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.card.featured {
  background: var(--supa-red-soft);
  border-color: #FFD7D2;
}

.card-wide {
  grid-column: span 2;
}
@media (max-width: 720px) {
  .card-wide { grid-column: span 1; }
}

/* KPI / metric tiles */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 900px) { .metric-strip { grid-template-columns: repeat(2, 1fr); } }
.metric {
  background: #fff;
  padding: 26px;
}
.metric .num {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
  font-weight: 800;
  color: var(--supa-red);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.metric .lbl { font-size: 0.95rem; color: var(--text-soft); }

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 1023px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trust-strip { grid-template-columns: 1fr; } }
.trust-item {
  background: #fff;
  padding: 22px;
  font-size: 0.92rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  min-height: 90px;
  text-align: center;
  justify-content: center;
}

/* Two-column comparison */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }
.compare .col {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
}
.compare .col.is { border-left: 3px solid var(--success); }
.compare .col.isnot { border-left: 3px solid var(--supa-red); }
.compare h3 { margin-bottom: 12px; }

/* Steps */
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  align-items: start;
}
.step .step-num {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--supa-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.step h4 { margin-bottom: 4px; }
.step p { margin: 0; font-size: 0.96rem; }

/* Tables */
.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.table th, .table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.table tr:last-child td { border-bottom: 0; }
.table th { font-weight: 700; color: var(--text); background: var(--supa-red-soft); }

/* Profile cards (Who it's for) */
.profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.profile-card::before {
  content: "";
  position: absolute; left:0; right: 0; top: 0;
  height: 4px;
  background: var(--supa-red);
}
.profile-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.profile-card .pf-row { margin-bottom: 16px; }
.profile-card .pf-row:last-child { margin-bottom: 0; }
.profile-card .pf-label {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--supa-red); font-weight: 700; margin-bottom: 6px;
}

/* Pricing card */
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.pricing-card .tier {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--supa-red);
  margin-bottom: 14px;
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}
.pricing-card .price small { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-card .renew { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 24px; }
.pricing-card ul { padding: 0; margin: 0 0 28px; list-style: none; }
.pricing-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.95rem;
}
.pricing-card li:first-child { border-top: 0; }
.pricing-card li svg { color: var(--success); margin-top: 2px; }

/* Footer */
.site-footer {
  background: #1F2225;
  color: #B6BABE;
  padding: 64px 0 32px;
  margin-top: 80px;
  font-size: 0.92rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 1023px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer .brand-blurb { color: #94989D; max-width: 320px; margin-top: 12px; line-height: 1.5; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: #B6BABE; }
.site-footer ul a:hover { color: #fff; }
.site-footer .footer-bottom {
  border-top: 1px solid #303336;
  padding-top: 28px;
  display: grid;
  gap: 18px;
  font-size: 0.84rem;
  color: #8A8E92;
}
.site-footer .entities-row {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.site-footer .pci {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  color: #94989D;
}
.site-footer .pci img { width: 56px; opacity: 0.75; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: none;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.cookie-banner.open { display: block; }
.cookie-banner .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.cookie-banner .cb-actions .btn { padding: 8px 16px; font-size: 0.88rem; }

/* Forms */
.form-stack { display: grid; gap: 14px; }
.form-row { display: grid; gap: 6px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-row input, .form-row textarea, .form-row select {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--supa-red);
  box-shadow: 0 0 0 3px rgba(225,6,0,0.12);
}
.form-row textarea { min-height: 140px; resize: vertical; }

.faq-list { display: grid; gap: 10px; }
.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 22px;
}
.faq h4 { margin-bottom: 6px; }
.faq p { margin: 0; font-size: 0.95rem; color: var(--text-soft); }

/* Lists */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.bullet-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--supa-red);
}
.bullet-list.numbered { counter-reset: bl; }
.bullet-list.numbered li::before {
  background: var(--supa-red-soft);
  width: 22px; height: 22px;
  border-radius: 999px;
  top: 0;
  counter-increment: bl;
  content: counter(bl);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: var(--supa-red);
}
.bullet-list.numbered li { padding-left: 32px; min-height: 22px; }

/* Closing CTA */
.closing-cta {
  background: linear-gradient(135deg, #1F2225, #2A2D32);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(225,6,0,0.18), transparent 55%),
              radial-gradient(circle at 0% 100%, rgba(225,6,0,0.10), transparent 50%);
  pointer-events: none;
}
.closing-cta h2 { color: #fff; max-width: 760px; margin-left: auto; margin-right: auto; }
.closing-cta p { color: #C9CDD0; max-width: 640px; margin-left: auto; margin-right: auto; }
.closing-cta .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.3); }
.closing-cta .btn-secondary:hover { border-color: #fff; }

/* Hero diagram */
.diagram {
  font-size: 0.82rem;
  color: var(--text-soft);
}
.diagram-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.diagram .pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.diagram .arrow { color: var(--supa-red); font-weight: 700; }
.diagram .center {
  background: var(--supa-red);
  color: #fff;
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
  border: 0;
}

/* Anchors offset */
:target { scroll-margin-top: 90px; }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.muted { color: var(--text-muted); }
.tag {
  display: inline-flex; align-items: center;
  background: var(--supa-red-soft);
  color: var(--supa-red);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

hr.hairline {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 56px 0;
}

/* mCaptcha (override .form-group from inline form to match design) */
#wasl-form-container-form-1768793516354 .wasl-form { max-width: 100%; }
#wasl-form-container-form-1768793516354 .form-group label {
  font-size: 0.88rem; font-weight: 600; color: var(--text);
}
#wasl-form-container-form-1768793516354 .form-group input,
#wasl-form-container-form-1768793516354 .form-group textarea {
  border-radius: 10px;
  border-color: var(--border-strong);
}
#wasl-form-container-form-1768793516354 .form-group input:focus,
#wasl-form-container-form-1768793516354 .form-group textarea:focus {
  border-color: var(--supa-red);
  box-shadow: 0 0 0 3px rgba(225,6,0,0.12);
}
#wasl-form-container-form-1768793516354 .submit-btn {
  background: var(--supa-red);
  border-radius: 999px;
  padding: 13px 22px;
}
#wasl-form-container-form-1768793516354 .submit-btn:hover:not(:disabled) {
  background: var(--supa-red-deep);
  box-shadow: 0 8px 20px rgba(225,6,0,0.25);
}
#wasl-form-container-form-1768793516354 .captcha-group {
  border-radius: var(--radius);
}
