/* ==========================================================================
   ShamimFX — consolidated stylesheet
   Same visual identity as the previous build, rewritten into one clean,
   de-duplicated file. No stacked !important overrides.
   Sections: 1) Tokens  2) Base  3) Layout  4) Navbar  5) Buttons
   6) Page hero  7) Identity summary  8) Support process  9) Content bands
   10) Cards/panels  11) Service table  12) Trust & proof  13) FAQ
   14) Contact  15) Footer  16) Responsive
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  --ink:        #050b17;
  --navy:       #091426;
  --blue:       #1f6dff;
  --blue-2:     #62c8ff;
  --gold:       #f8c64e;
  --green:      #37e7a1;
  --red:        #ff5c7c;
  --text:       #f7fbff;
  --muted:      #a9b7c9;
  --paper:      #f7faff;
  --line:       rgba(255,255,255,.14);
  --dark-line:  rgba(9,20,38,.12);
  --radius:     8px;
  --max:        1220px;
  --pad:        clamp(18px, 4vw, 40px);
  --nav-h:      64px;

  font-family: Inter, "Segoe UI Variable", "Segoe UI", Roboto, Arial, ui-sans-serif, system-ui, sans-serif;
}

/* 2. Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  padding-top: var(--nav-h);
  color: var(--text);
  background: var(--ink);
  line-height: 1.55;
  max-width: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Ambient background layers */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(31,109,255,.30), transparent 28%),
    radial-gradient(circle at 82% 8%,  rgba(248,198,78,.14), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(55,231,161,.10), transparent 34%),
    linear-gradient(180deg, #050b17 0%, #091426 100%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4, p { margin-top: 0; overflow-wrap: break-word; }

/* 3. Layout shell -------------------------------------------------------- */
.shell {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

main { margin-top: 0; padding-top: 0; }

section { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* 4. Navbar -------------------------------------------------------------- */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(5,11,23,.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: var(--nav-h);
  max-width: var(--max);
  margin-inline: auto;
  padding-block: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  min-width: 0;
}

.brand-logo {
  width: 40px; height: 40px;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: #1f6dff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 0 28px rgba(31,109,255,.32);
}

.brand strong {
  display: block;
  line-height: 1;
  font-size: 1rem;
}

.brand small {
  display: block;
  max-width: 190px;
  color: #c8d6e8;
  font-size: clamp(.7rem, .85vw, .82rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.05;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.nav-links a:not(.btn) {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #d7e2f0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:not(.btn):hover,
.nav-links a.is-active {
  color: #fff;
  background: rgba(255,255,255,.10);
}

.menu-toggle { display: none; }

/* 5. Buttons ------------------------------------------------------------- */
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: clamp(.9rem, .92vw, .98rem);
  font-weight: 700;
  line-height: 1.1;
  white-space: normal;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #071225;
  background: linear-gradient(135deg, var(--gold), #ffe9a0);
  box-shadow: 0 18px 48px rgba(248,198,78,.22);
}
.btn-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 18px 48px rgba(31,109,255,.26);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
}

.nav-links .btn { padding: 7px 14px; min-height: 36px; font-size: .85rem; }

/* Mini link (pill CTA inside cards) */
.mini-link,
a.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd05d, #ffe79b);
  border: 1px solid rgba(7,18,37,.16);
  color: #071225;
  font-weight: 600;
  line-height: 1.1;
  box-shadow: 0 10px 22px rgba(255,200,88,.20);
  transition: transform .2s ease, background .2s ease;
}
.mini-link:hover,
a.mini-link:hover {
  background: linear-gradient(135deg, #ffbf3f, #ffe28a);
  transform: translateY(-1px);
}

/* 6. Page hero ----------------------------------------------------------- */
.page-hero {
  padding-block: clamp(46px, 5.8vw, 78px) clamp(42px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(31,109,255,.18), rgba(5,11,23,.2) 45%, rgba(248,198,78,.08));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}
.page-hero-grid > div:first-child { align-self: start; }

.page-hero h1 {
  max-width: 880px;
  margin: 0 0 24px;
  font-size: clamp(2.7rem, 4.25vw, 4.55rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.page-lead {
  max-width: 820px;
  margin: 18px 0 0;
  color: #c5d2e4;
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-2);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { margin: 0 0 16px; font-size: 12px; letter-spacing: .16em; }
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 42px; height: 2px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 18px;
}
.hero-actions .btn { min-height: 42px; }

.last-reviewed {
  margin-top: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  max-width: 760px;
}

/* Portrait panel */
.hero-proof-panel {
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 520px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  overflow: hidden;
}
.hero-proof-panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3.35;
  max-height: 510px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
}

/* 7. Identity summary band (homepage) ----------------------------------- */
.identity-summary-band {
  background: linear-gradient(180deg, #f7faff 0%, #eef4fc 100%);
}
.identity-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(31,109,255,.14), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f8fbff 56%, #eef6ff 100%);
  box-shadow: 0 22px 60px rgba(8,18,34,.08);
}
.identity-summary-copy {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
.identity-summary-copy h2 {
  max-width: 900px;
  margin: 0;
  color: #071225;
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  line-height: 1.04;
}
.identity-summary-copy p {
  max-width: 78ch;
  margin: 0;
  color: #51647e;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.68;
}
.identity-proof-panel {
  display: grid;
  gap: 12px;
  align-content: stretch;
}
.identity-proof-panel > div {
  padding: 17px 18px;
  border-radius: var(--radius);
  background: #e8f1ff;
  border: 1px solid #c9ddff;
  color: #4e6078;
}
.identity-proof-panel strong {
  display: block;
  color: #071225;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 8px;
}
.identity-proof-panel span { display: block; line-height: 1.55; }

/* 8. Support process band (homepage) ------------------------------------ */
.support-process-band { background: #f4f7fb; }
.support-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}
.process-lead-card,
.process-detail-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fff;
  color: #071225;
  box-shadow: 0 16px 44px rgba(8,18,34,.08);
}
.process-lead-card {
  background: linear-gradient(145deg, #fff 0%, #eef5ff 100%);
}
.process-lead-card > :last-child,
.process-detail-card > :last-child { margin-bottom: 0; }

.process-lead-card h2,
.process-detail-card h2 {
  margin: 0 0 18px;
  color: #071225;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 1.08;
}
.process-lead-card p,
.process-detail-card p {
  max-width: 78ch;
  margin: 0 0 16px;
  color: #52657d;
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  line-height: 1.62;
}

.process-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.process-points div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 74px;
  padding: 15px 16px;
  border-radius: var(--radius);
  background: rgba(31,109,255,.07);
  border: 1px solid rgba(31,109,255,.12);
}
.process-points strong { color: #071225; font-weight: 700; line-height: 1.45; }
.process-points span { color: #5e6e83; line-height: 1.45; }

.support-clarity-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}
.support-clarity-row span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f6f9ff 0%, #e8f1ff 100%);
  border: 1px solid #c8dbff;
  color: #25364f;
  font-weight: 600;
  line-height: 1.35;
}

.support-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.support-result-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 7px;
  background: #e8f1ff;
  border: 1px solid #c8dbff;
  color: #0b172a;
  font-weight: 600;
  font-size: .92rem;
  text-align: center;
}

/* 9. Content bands (light / dark) --------------------------------------- */
.content-band {
  padding-block: clamp(46px, 5.6vw, 72px);
  background: var(--paper);
  color: #071225;
}
.content-band.dark {
  background: #06101f;
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head,
.compact-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
  gap: 24px;
  align-items: start;
  max-width: var(--max);
  margin: 0 0 clamp(22px, 3vw, 34px);
}
.section-head h2,
.compact-head h2 {
  margin: 0;
  max-width: 680px;
  color: inherit;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}
.section-head p,
.compact-head p {
  max-width: 560px;
  margin: 0;
  color: currentColor;
  opacity: .82;
  font-size: 1.04rem;
}
.content-band.dark .section-head h2,
.content-band.dark .section-head p { color: #fff; }
.content-band.dark .section-head p { color: #c5d2e4; opacity: 1; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

/* 10. Cards & panels ---------------------------------------------------- */
.article-panel,
.side-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(22px, 2.4vw, 34px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: 0 16px 44px rgba(8,18,34,.08);
  color: #071225;
}
.content-band.dark .article-panel,
.content-band.dark .side-panel,
.content-band.dark .service-card,
.content-band.dark .process-lead-card,
.content-band.dark .process-detail-card {
  background: #ffffff;
  color: #071225;
  border-color: rgba(255,255,255,.16);
}
.article-panel > :last-child,
.side-panel > :last-child { margin-bottom: 0; }

.article-panel h2,
.side-panel h2 {
  margin: 0 0 18px;
  color: #071225;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.content-band.dark .article-panel h2,
.content-band.dark .side-panel h2 { color: #071225; }

.article-panel p,
.side-panel p {
  max-width: 78ch;
  margin: 0 0 16px;
  color: #52657d;
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  line-height: 1.62;
}
.content-band.dark .article-panel p,
.content-band.dark .side-panel p { color: #52657d; }

/* Quick / rich lists */
.quick-list,
.rich-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
  width: 100%;
}
.quick-list li,
.rich-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  color: #52657d;
}
.quick-list li::before,
.rich-list li::before {
  content: "›";
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  color: #071225;
  background: linear-gradient(135deg, #ffd761, #fff1b5);
  font-weight: 700;
}

/* Service cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 24px);
  align-items: stretch;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-height: 238px;
  padding: clamp(22px, 2.3vw, 30px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: 0 16px 44px rgba(8,18,34,.08);
  color: #071225;
}
.service-card h3 {
  margin: 0 0 4px;
  color: #071225;
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1.17;
  text-wrap: balance;
}
.service-card p {
  flex: 1 1 auto;
  margin: 0;
  color: #52657d;
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  line-height: 1.62;
}
.service-card .mini-link,
.service-card .btn { margin-top: auto; }

.service-icon {
  width: 54px; height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #e9f1ff, #fff2c6);
  color: var(--blue);
}
.service-icon svg { width: 30px; height: 30px; stroke-width: 2.4; }

/* "Who we support" dark band cards */
.audience-band .service-card {
  background: #fff;
  color: #071225;
  border: 1px solid rgba(255,255,255,.14);
  min-height: 250px;
  justify-content: space-between;
}
.audience-band .service-card h3 { color: #071225; }
.audience-band .service-card p { color: #52657d; }
.audience-band .service-card .mini-link { color: #071225; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  counter-reset: step;
}
.step {
  padding: clamp(22px, 2.4vw, 34px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: 0 16px 44px rgba(8,18,34,.08);
  counter-increment: step;
  color: #071225;
}
.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}
.step h3 {
  margin: 0 0 12px;
  color: #071225;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.15;
}
.step p { margin: 0; color: #52657d; font-size: 1.04rem; }

/* Infographic stats band */
.stats-band {
  padding-block: clamp(36px, 4.5vw, 56px);
  background: linear-gradient(135deg, #0a1830 0%, #123b76 100%);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.stat-item {
  text-align: center;
  padding: clamp(18px, 2.5vw, 28px) 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
}
.stat-number {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #ffd05d, #ffe79b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  color: #c5d2e4;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.35;
}

/* Benefit grid (icon + title + text) */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(20px, 3vw, 32px);
}
.benefit-item {
  padding: clamp(20px, 2.5vw, 26px);
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: 0 8px 26px rgba(8,18,34,.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit-icon {
  width: 44px; height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef5ff, #fff2c6);
  color: var(--blue);
  margin-bottom: 6px;
}
.benefit-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.benefit-item h3 {
  margin: 0;
  color: #071225;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.2;
}
.benefit-item p {
  margin: 0;
  color: #52657d;
  font-size: .92rem;
  line-height: 1.5;
}

/* Visual timeline (numbered process) */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(20px, 3vw, 32px);
  counter-reset: tl;
}
.timeline-step {
  position: relative;
  padding: clamp(20px, 2.5vw, 26px);
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: 0 8px 26px rgba(8,18,34,.06);
  counter-increment: tl;
}
.timeline-step::before {
  content: counter(tl);
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffe9a0);
  color: #06101f;
  font-weight: 700;
  font-size: 1rem;
}
.timeline-step h3 {
  margin: 0 0 8px;
  color: #071225;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.2;
}
.timeline-step p {
  margin: 0;
  color: #52657d;
  font-size: .9rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .stats-grid, .benefit-grid, .timeline { grid-template-columns: 1fr; }
}

/* Related / explore-more cross-linking band — light, clear, readable */
.related-band {
  padding-block: clamp(48px, 5.5vw, 72px);
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf1ff 100%);
  color: #071225;
}
.related-head {
  max-width: 720px;
  margin: 0 0 clamp(26px, 3vw, 38px);
}
.related-head h2 {
  margin: 0 0 12px;
  color: #071225;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 700;
}
.related-head p {
  margin: 0;
  color: #52657d;
  font-size: 1.04rem;
  line-height: 1.6;
}
.related-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}
.related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #d6e4f7;
  box-shadow: 0 10px 30px rgba(8,18,34,.08);
  color: #071225;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31,109,255,.35);
  box-shadow: 0 22px 54px rgba(8,18,34,.14);
}
.related-card .rc-icon {
  width: 54px; height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 10px;
}
.related-card .rc-icon svg {
  width: 28px; height: 28px;
  stroke-width: 2;
}
/* Three distinct icon tile colors */
.related-card:nth-child(1) .rc-icon {
  background: linear-gradient(135deg, #1f6dff, #4a8bff);
  color: #fff;
  box-shadow: 0 6px 18px rgba(31,109,255,.30);
}
.related-card:nth-child(2) .rc-icon {
  background: linear-gradient(135deg, #f8c64e, #ffd97a);
  color: #06101f;
  box-shadow: 0 6px 18px rgba(248,198,78,.32);
}
.related-card:nth-child(3) .rc-icon {
  background: linear-gradient(135deg, #37e7a1, #5cf0b6);
  color: #04241a;
  box-shadow: 0 6px 18px rgba(55,231,161,.28);
}
.related-card h3 {
  margin: 4px 0 0;
  color: #071225;
  font-size: 1.18rem;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -.01em;
}
.related-card p {
  margin: 0;
  color: #52657d;
  font-size: .95rem;
  line-height: 1.55;
}
.related-card .rc-link {
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue);
  font-size: .92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s ease, color .2s ease;
}
.related-card:hover .rc-link { gap: 9px; color: #0b4ed8; }


/* CTA band */
.cta-band {
  padding: clamp(48px, 6vw, 76px) 0;
  background: linear-gradient(135deg, rgba(31,109,255,.26), rgba(248,198,78,.16));
}
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(5,11,23,.72);
}
.cta-box h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}
.cta-box p { margin: 8px 0 0; color: #c5d2e4; }

/* 11. Service comparison table ------------------------------------------ */
.service-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  background: #fff;
  box-shadow: 0 18px 46px rgba(9,20,38,.08);
}
.service-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: #071225;
}
.service-table th,
.service-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(9,20,38,.10);
}
.service-table th {
  background: #eef5ff;
  color: #071225;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-table td { color: #52657d; }
.service-table td strong { color: #071225; }

/* 12. Trust strip & proof cards ----------------------------------------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.trust-item {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.075);
  color: #c8d6e8;
  line-height: 1.45;
}
.trust-item strong {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.15;
}
.trust-item span { display: block; margin-top: 8px; color: #c8d6e8; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.proof-card {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: 0 16px 44px rgba(8,18,34,.08);
  color: #071225;
  display: flex;
  flex-direction: column;
}
.proof-card .label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff1b5;
  color: #071225;
  font-weight: 700;
  font-size: .82rem;
}
.proof-card h3 {
  margin: 0 0 10px;
  color: #071225;
  font-size: 1.28rem;
}
.proof-card p { margin: 0; color: #52657d; }

/* Fit grid (good fit / not a fit) */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.fit-box {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: 0 18px 46px rgba(9,20,38,.08);
  color: #071225;
}
.fit-box h3 { margin-top: 0; color: #071225; }
.fit-box ul { margin: 0; padding-left: 20px; color: #52657d; }

/* Side-panel note + link group */
.panel-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
  color: #42546b;
  line-height: 1.7;
}
.panel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* Generic label badge (used in service + proof cards) */
.label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 4px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff1b5;
  color: #071225;
  font-weight: 700;
  font-size: .82rem;
}

/* SEO context section (single full-width panel) */
.seo-context-section .article-panel { max-width: 100%; }

/* Two-column list splitter (for long rich-lists) */
.two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 22px 0 0;
}
.two-col-list .rich-list {
  margin-top: 0;
}
@media (max-width: 760px) {
  .two-col-list { grid-template-columns: 1fr; gap: 0; }
}

/* Error reference two-card layout (MT4/MT5 guide) */
.error-ref-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.error-ref-pair .error-ref {
  margin-top: 0;
}
@media (max-width: 760px) {
  .error-ref-pair { grid-template-columns: 1fr; }
}

/* Error reference table (MT4/MT5 guide) */
.error-ref {
  margin-top: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(8,18,34,.06);
}
.error-ref-head {
  padding: 16px 20px;
  background: linear-gradient(135deg, #0a1830, #123b76);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.error-ref-grid {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 2fr;
}
.error-ref-grid .er-code {
  padding: 14px 18px;
  border-bottom: 1px solid var(--dark-line);
  border-right: 1px solid var(--dark-line);
  color: #0a1a30;
  font-weight: 600;
  font-size: .92rem;
  font-family: "Cascadia Code", "Consolas", "SF Mono", monospace;
}
.error-ref-grid .er-fix {
  padding: 14px 18px;
  border-bottom: 1px solid var(--dark-line);
  color: #1a2b42;
  font-size: .92rem;
  line-height: 1.55;
}
.error-ref-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 680px) {
  .error-ref-grid { grid-template-columns: 1fr; }
  .error-ref-grid .er-code { border-right: 0; }
}

/* SEO content panels */
.seo-depth-section .article-panel,
.seo-depth-section .side-panel { gap: 18px; }
.seo-depth-section h2 { max-width: 820px; }

.seo-detail-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.seo-detail-list li {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #f4f8ff;
  border: 1px solid #b8d0f5;
  border-left: 3px solid var(--blue);
  color: #1a2b42;
  line-height: 1.55;
  font-size: .95rem;
  font-weight: 600;
}
.seo-detail-list strong {
  display: block;
  color: #0a1a30;
  margin-bottom: 4px;
  font-size: .98rem;
  font-weight: 600;
}

.seo-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.seo-proof-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0a1830, #123b76);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  box-shadow: 0 6px 18px rgba(10,24,48,.18);
}

/* SEO elements responsive */
@media (max-width: 760px) {
  .seo-detail-list,
  .seo-proof-strip {
    grid-template-columns: 1fr;
  }
}

/* 13. FAQ --------------------------------------------------------------- */
.faq-side-panel { gap: 20px; }
.faq-side-panel > p {
  margin: -4px 0 0;
  color: #5f7088;
  font-size: 1rem;
  line-height: 1.65;
}
.faq-side-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}
.faq-side-proof span {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #e8f1ff;
  border: 1px solid #c9ddff;
  color: #5b6c84;
  font-size: .96rem;
  line-height: 1.55;
}
.faq-side-proof strong {
  display: block;
  margin-bottom: 4px;
  color: #0b172a;
  font-weight: 700;
}

.faq-page {
  display: grid;
  gap: 12px;
}
.faq-page details {
  padding: 0;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--dark-line);
  box-shadow: 0 10px 28px rgba(8,18,34,.06);
  overflow: hidden;
  color: #071225;
}
.faq-page summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 16px 76px 16px 22px;
  font-size: clamp(.98rem, 1.05vw, 1.08rem);
  font-weight: 600;
  line-height: 1.35;
  color: #101c31;
  position: relative;
}
.faq-page summary::-webkit-details-marker { display: none; }
.faq-page summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
}
.faq-page details[open] summary::after {
  content: "−";
  background: var(--gold);
  color: var(--ink);
}
.faq-page details > p,
.faq-page details > ul {
  margin: 0;
  padding: 0 22px 18px;
  color: #52657d;
  font-size: .98rem;
  line-height: 1.65;
  max-width: 860px;
}

/* 14. Contact ----------------------------------------------------------- */
.contact-showcase {
  padding-block: clamp(42px, 5vw, 64px);
  background: #06101f;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.contact-intro-card,
.contact-panel-dark {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.contact-intro-card {
  justify-content: flex-start;
}
.contact-intro-card h2 {
  max-width: 780px;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.contact-intro-card p {
  max-width: 800px;
  margin: 0;
  color: #c7d4e6;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}
.contact-intro-card .hero-actions { margin-top: 22px; margin-bottom: 0; gap: 14px; }
.contact-intro-card h3 { color: #fff; margin: 20px 0 8px; font-size: 1.15rem; }
.contact-intro-card p { color: #c7d4e6; }
.contact-intro-card .rich-list li { color: #c7d4e6; }
.contact-intro-card .rich-list li::before { color: #071225; }

.contact-scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.contact-scope-list span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  color: #dbe7f6;
  font-weight: 600;
}
.contact-note {
  margin-top: 22px;
  padding-top: 22px;
  color: #9fb0c6;
  font-size: 1rem;
  line-height: 1.6;
}

/* Dark form panel */
.contact-panel-dark .contact-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 12px;
}
.contact-panel-dark input:not([type="hidden"]):not([type="checkbox"]),
.contact-panel-dark textarea {
  width: 100%;
  min-height: 52px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  color: #fff;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-size: 1rem;
}
.contact-panel-dark textarea { min-height: 112px; max-height: 150px; resize: vertical; }
.contact-panel-dark input::placeholder,
.contact-panel-dark textarea::placeholder { color: #b7c5d8; opacity: 1; }
.contact-panel-dark input:focus,
.contact-panel-dark textarea:focus {
  border-color: #51c7ff;
  box-shadow: 0 0 0 3px rgba(81,199,255,.16);
}
.contact-panel-dark .btn {
  width: 100%;
  min-height: 44px;
  font-size: .98rem;
}
.contact-panel-dark .btn:disabled { opacity: .72; cursor: progress; }

/* Honeypot (hidden from users) */
.form-botcheck {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Inline form response */
.form-response {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #e7eef9;
  line-height: 1.5;
}
.form-response[hidden] { display: none !important; min-height: 0; padding: 0; margin: 0; border: 0; }
.form-response strong { display: block; color: #fff; font-size: 1.2rem; line-height: 1.22; }
.form-response span { display: block; margin-top: 4px; color: #c7d4e6; }
.form-response.is-success {
  border-color: rgba(55,231,161,.48);
  background: rgba(55,231,161,.12);
  color: #dfffee;
}
.form-response.is-success::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 999px;
  background: #6ff0a7;
  color: #04131f;
  font-size: 1.6rem;
  font-weight: 700;
}
.form-response.is-error {
  border-color: rgba(255,92,124,.52);
  background: rgba(255,92,124,.12);
  color: #ffe4ea;
}
.form-response.is-loading {
  border-color: rgba(248,198,78,.45);
  background: rgba(248,198,78,.12);
  color: #fff1bd;
}

/* Screen-reader-only labels */
.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;
}

/* 15. Footer ----------------------------------------------------------- */
.footer {
  padding-block: 54px 46px;
  color: rgba(247,251,255,.64);
  background: #050b17;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 36px;
}
.footer-grid .brand { color: #fff; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  align-items: center;
  margin-top: 4px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #c8d6e8;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer-contact a:hover {
  color: #071225;
  background: linear-gradient(135deg, #ffd761, #fff1b5);
  border-color: transparent;
}

.footer-disclaimer {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(247,251,255,.58);
  font-size: 13px;
  line-height: 1.6;
}

/* 16. Responsive ------------------------------------------------------- */
@media (max-width: 980px) {
  :root { --nav-h: 60px; }

  .page-hero-grid,
  .content-grid,
  .support-process-grid,
  .contact-showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-proof-panel { justify-self: start; max-width: 580px; }
  .page-hero h1 { max-width: 760px; font-size: clamp(2.35rem, 7vw, 3.85rem); }

  .service-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --nav-h: 56px; --pad: 18px; }

  .brand span:not(.brand-logo) { display: none; }
  .brand-logo { width: 36px; height: 36px; }

  /* Mobile menu toggle */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px; min-width: 48px; height: 48px;
    padding: 0;
    margin-left: auto;
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
  }
  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    display: block;
    position: absolute;
    left: 13px;
    width: 20px; height: 2px;
    border-radius: 999px;
    background: #fff;
    text-indent: 0;
  }
  .menu-toggle span     { top: 23px; }
  .menu-toggle::before  { top: 16px; }
  .menu-toggle::after   { top: 30px; }
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::before { top: 23px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after  { top: 23px; transform: rotate(-45deg); }

  /* Nav links become a dropdown */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: var(--pad); right: var(--pad);
    width: auto;
    max-height: calc(100vh - var(--nav-h));
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5,11,23,.98);
    box-shadow: 0 22px 60px rgba(0,0,0,.35);
    backdrop-filter: blur(16px);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a:not(.btn),
  .nav-links .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .nav-links a:not(.btn) {
    justify-content: flex-start;
    padding: 0 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
  }

  .page-hero { padding-block: 34px 46px; }
  .page-hero h1 { font-size: clamp(2rem, 9.4vw, 2.85rem); line-height: 1.05; margin-bottom: 18px; }
  .page-lead { font-size: 1rem; line-height: 1.62; }
  .hero-proof-panel { max-width: 100%; padding: 10px; }
  .hero-proof-panel img { aspect-ratio: 4 / 3; max-height: 310px; }

  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .btn, .hero-actions .btn, .contact-form .btn, .contact-panel-dark .btn {
    width: 100%;
    min-height: 42px;
    padding: 13px 18px;
  }

  .content-band { padding-block: 38px; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }
  .section-head h2,
  .compact-head h2,
  .article-panel h2,
  .side-panel h2,
  .process-lead-card h2,
  .process-detail-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .service-cards,
  .steps,
  .contact-scope-list,
  .trust-strip,
  .related-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card,
  .article-panel,
  .side-panel,
  .contact-panel-dark,
  .contact-intro-card { padding: 22px; }
  .service-card .mini-link,
  .service-card .btn { width: 100%; }
  .form-response {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .form-response.is-success::before {
    width: 40px; height: 40px;
    font-size: 1.3rem;
    margin: 0 auto;
  }
  .form-response strong { font-size: 1.05rem; }

  .process-points div { grid-template-columns: 1fr; gap: 6px; min-height: auto; }

  .support-clarity-row,
  .support-result-grid { grid-template-columns: 1fr 1fr; }

  .contact-showcase { padding-block: 38px; }
}

@media (max-width: 420px) {
  :root { --pad: 14px; }
  .page-hero h1 { font-size: clamp(1.85rem, 10.5vw, 2.6rem); }
  .brand-logo { width: 34px; height: 34px; }

  .support-clarity-row,
  .support-result-grid { grid-template-columns: 1fr; }
  .support-clarity-row span,
  .support-result-grid span { justify-content: flex-start; text-align: left; min-height: auto; }

  .hero-proof-panel img { max-height: 280px; }
}

@media (min-width: 1180px) {
  .page-hero h1 { max-width: 880px; }
}
