/* ── Theme: midnight-teal — premium design system ─────────────────── */

/* ════════════════════════════════════════════════════════════════
   DESIGN TOKENS  (edit colours in one place; geometry stays premium
   and consistent across every theme)
   ════════════════════════════════════════════════════════════════ */
:root {
  /* Palette (driven by the selected theme) */
  --color-primary:        #13b6a8;
  --color-primary-hover:  #0e9a8e;
  --color-primary-soft:   rgba(19,182,168,0.10);
  --color-primary-shadow: rgba(19,182,168,0.28);
  --color-text:     #0b1526;
  --color-heading:  #0b1526;
  --color-sub:      #57677f;
  --color-muted:    #3f4f66;
  --color-label:    #6b7a8d;
  --color-border:   #e4eaf3;
  --color-bg:       #f5f8fc;
  --color-surface:  #ffffff;
  --color-surface-alt: #eef3fa;
  --color-footer:   #0b1e36;
  --color-star:     #f4b740;
  --color-success:  #16a34a;
  --color-error:    #ef4444;
  --hero-gradient:  linear-gradient(160deg, #0b1e36 0%, #0e2a47 55%, #103154 100%);
  --cta-gradient:   linear-gradient(135deg, #0b1e36 0%, #103154 100%);

  /* Premium geometry — identical across all themes for a consistent feel */
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(16,24,40,.06);
  --shadow-sm: 0 2px 8px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.05);
  --shadow-md: 0 10px 28px rgba(16,24,40,.08), 0 2px 6px rgba(16,24,40,.04);
  --shadow-lg: 0 24px 56px rgba(16,24,40,.14), 0 6px 16px rgba(16,24,40,.06);
  --shadow-primary: 0 10px 28px var(--color-primary-shadow);
  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2rem);
  --section-y: clamp(3.25rem, 5.5vw, 5.25rem);
  --ring: 0 0 0 4px var(--color-primary-soft);
}

/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--color-primary); color: #fff; }

/* ── Layout ───────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 820px; }

/* ── Typography ───────────────────────────────────────────────── */
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.35rem 0.85rem; margin-bottom: 0.9rem;
  background: var(--color-primary-soft); border-radius: var(--radius-pill);
}
.section-heading {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  font-weight: 800; color: var(--color-heading);
  margin: 0 auto 0.85rem; text-align: center; max-width: 26ch;
  letter-spacing: -0.03em; line-height: 1.12;
  text-wrap: balance;
}
.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem); color: var(--color-sub);
  max-width: 60ch; margin: 0 auto 2.5rem; text-align: center; line-height: 1.65;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  background-color: var(--color-primary);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0));
  color: #fff; font-size: 1rem; font-weight: 700; line-height: 1;
  border: none; border-radius: var(--radius-pill);
  cursor: pointer; letter-spacing: -0.01em; white-space: nowrap;
  box-shadow: var(--shadow-primary);
  transition: transform 0.15s cubic-bezier(.3,.7,.4,1), box-shadow 0.2s, background-color 0.2s;
}
.btn-cta:hover { background-color: var(--color-primary-hover); transform: translateY(-2px); box-shadow: 0 16px 36px var(--color-primary-shadow); }
.btn-cta:active { transform: translateY(0) scale(0.99); }
.btn-cta:focus-visible { outline: none; box-shadow: var(--shadow-primary), var(--ring); }
.btn-cta:disabled { opacity: 0.55; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-cta--full { display: flex; width: 100%; margin-top: 0.5rem; padding: 1.05rem 1.9rem; }

/* ── Skip link ────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #0b1526; color: #fff;
  padding: 0.5rem 1rem; border-radius: 0 0 6px 6px;
  z-index: 1100; transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ════════════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--color-surface); /* fallback for browsers without color-mix */
  background: color-mix(in srgb, var(--color-surface) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s, border-color 0.25s, background 0.25s;
}
.site-header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px; gap: 1.5rem;
}
.site-header__logo { display: flex; align-items: center; gap: 0.5rem; }
.site-header__logo-text {
  font-size: 1.2rem; font-weight: 800;
  color: var(--color-heading); letter-spacing: -0.03em;
}
.site-header__nav { display: flex; align-items: center; gap: 2.25rem; }
.site-header__nav-list { display: flex; gap: 1.9rem; }
.site-header__nav-list a {
  font-size: 0.925rem; font-weight: 600; color: var(--color-sub);
  transition: color 0.15s; padding: 0.25rem 0; position: relative;
}
.site-header__nav-list a:hover { color: var(--color-heading); }
.site-header__cta { font-size: 0.9rem; padding: 0.68rem 1.4rem; }
.site-header__toggle { display: none; }

/* ════════════════════════════════════════════════════════════════
   HERO — split layout: content left, form right
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; isolation: isolate;
  background: var(--hero-gradient);
  color: #fff; padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
/* Soft radial glow accents for a premium, non-flat backdrop */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(255,255,255,0.16), transparent 60%),
    radial-gradient(50% 60% at 5% 100%, rgba(255,255,255,0.10), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 440px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero__content { padding-top: 0; }
.hero__headline {
  font-size: clamp(2.15rem, 4.6vw, 3.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.035em; margin-bottom: 1.15rem;
  text-wrap: balance;
}
.hero__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem); opacity: 0.9;
  max-width: 540px; margin-bottom: 1.75rem; line-height: 1.6;
}
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2rem; padding-top: 0;
  border-top: none;
}
.hero__stat {
  text-align: left;
  padding: 0.7rem 1.1rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero__stat-value {
  display: block; font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1.1;
}
.hero__stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.07em;
}
/* Hero form box — premium elevated card */
.hero__form-col .form-box {
  background: var(--color-surface); color: var(--color-text);
  border-radius: var(--radius-xl); padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.5);
}
.hero__form-col .form-box__title { color: var(--color-heading); }

/* ════════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}
.trust-strip__grid {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.25rem 2.75rem;
}
.trust-strip__item { text-align: center; }
.trust-strip__value { display: block; font-size: 1.3rem; font-weight: 800; color: var(--color-heading); letter-spacing: -0.02em; }
.trust-strip__label { font-size: 0.74rem; color: var(--color-label); text-transform: uppercase; letter-spacing: 0.07em; }

/* ════════════════════════════════════════════════════════════════
   INTRO
   ════════════════════════════════════════════════════════════════ */
.intro { padding: var(--section-y) 0 0; }
.intro__body {
  font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--color-heading); font-weight: 500;
  max-width: 780px; margin: 0 auto; text-align: center; line-height: 1.5;
  letter-spacing: -0.01em; text-wrap: balance;
}

/* ════════════════════════════════════════════════════════════════
   BENEFITS
   ════════════════════════════════════════════════════════════════ */
.benefits { padding: var(--section-y) 0; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
}
.benefit-card {
  background: var(--color-surface); border-radius: var(--radius-lg); padding: 1.9rem;
  border: 1px solid var(--color-border); box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.benefit-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--color-primary) 28%, var(--color-border));
}
.benefit-card__title { font-size: 1.12rem; font-weight: 700; color: var(--color-heading); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.benefit-card__desc { font-size: 0.95rem; color: var(--color-sub); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════════ */
.how-it-works { padding: var(--section-y) 0; background: var(--color-surface-alt); }
.how-it-works__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.how-card {
  display: flex; flex-direction: column;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem 1.85rem; box-shadow: var(--shadow-xs);
}
.how-card__step {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-primary); color: #fff;
  font-size: 0.85rem; font-weight: 800; margin-bottom: 0.75rem;
}
.how-card__title { font-size: 1.15rem; font-weight: 700; color: var(--color-heading); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.how-card__desc { font-size: 0.95rem; color: var(--color-sub); margin-bottom: 0.75rem; line-height: 1.65; }
.how-card__bullets { padding: 0; margin-top: auto; }
.how-card__bullets li {
  font-size: 0.9rem; color: var(--color-sub);
  padding: 0.28rem 0 0.28rem 1.4rem; position: relative;
}
.how-card__bullets li::before {
  content: ""; position: absolute; left: 0; top: 0.72rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary);
}

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════ */
.testimonials { padding: var(--section-y) 0; }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.35rem;
}
.testimonial-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card__header {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.85rem;
}
.testimonial-card__avatar {
  position: relative; width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-xs);
  background: var(--color-surface-alt);
}
.testimonial-card__avatar-fallback,
.testimonial-card__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.testimonial-card__photo { object-fit: cover; }
.testimonial-card__identity { display: flex; flex-direction: column; gap: 0.1rem; }
.testimonial-card__name { font-size: 0.95rem; font-weight: 700; color: var(--color-heading); }
.testimonial-card__role { font-size: 0.8rem; color: var(--color-label); }
.testimonial__stars { display: flex; gap: 0.15rem; margin-bottom: 0.75rem; }
.testimonial__star { color: #d1d5db; font-size: 1rem; }
.testimonial__star--filled { color: #f4b740; }
.testimonial-card__text {
  font-size: 0.95rem; color: #3f4f66; line-height: 1.65;
  font-style: italic;
}
.testimonial-card__text p { margin: 0; }

/* ════════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════════ */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--cta-gradient);
  color: #fff; padding: clamp(3rem, 5vw, 4.5rem) 0; text-align: center;
  border-radius: var(--radius-xl);
  /* Neighbouring sections already carry a full --section-y of padding, so a
     full margin here doubles the gap; a little over half reads as one rhythm. */
  margin: calc(var(--section-y) * 0.55) var(--gutter);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 120% at 50% 0%, rgba(255,255,255,0.14), transparent 60%);
}
.cta-band .container { max-width: 720px; }
.cta-band__text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); opacity: 0.92;
  max-width: 620px; margin: 0 auto 1.75rem; line-height: 1.55; text-wrap: balance;
}

/* ════════════════════════════════════════════════════════════════
   ADVANCED BENEFITS
   ════════════════════════════════════════════════════════════════ */
.advanced { padding: var(--section-y) 0; background: var(--color-surface-alt); }
.advanced__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.35rem;
}
.advanced-card {
  background: var(--color-surface); border-radius: var(--radius-lg); padding: 2rem 1.85rem;
  border: 1px solid var(--color-border); border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-xs); transition: box-shadow 0.25s, transform 0.25s;
}
.advanced-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.advanced-card__title { font-size: 1.15rem; font-weight: 700; color: var(--color-heading); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.advanced-card__desc { font-size: 0.95rem; color: var(--color-sub); line-height: 1.65; margin-bottom: 1rem; }
.advanced-card__link { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.92rem; font-weight: 700; color: var(--color-primary); }
.advanced-card__link:hover { color: var(--color-primary-hover); gap: 0.5rem; transition: gap 0.15s; }

/* ════════════════════════════════════════════════════════════════
   SOCIAL PROOF
   ════════════════════════════════════════════════════════════════ */
.social-proof { padding: 4rem 0; }
.social-proof__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.proof-card {
  background: #ffffff; border: 1px solid #e4eaf3;
  border-radius: 16px; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.proof-card__avatar { flex-shrink: 0; border-radius: 50%; }
.proof-card__body { flex: 1; min-width: 0; }
.proof-card__text { font-size: 0.93rem; color: #3f4f66; line-height: 1.6; margin-bottom: 0.5rem; }
.proof-card__meta { display: flex; flex-direction: column; gap: 0.1rem; }
.proof-card__name { font-size: 0.85rem; font-weight: 700; color: #0b1526; }
.proof-card__role { font-size: 0.78rem; color: #6b7a8d; }

/* ════════════════════════════════════════════════════════════════
   TRUST SIGNALS
   ════════════════════════════════════════════════════════════════ */
.trust { padding: 2.5rem 0; }
.trust__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 2rem;
}
.trust__item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: #0b1526;
}
.trust__icon { color: #13b6a8; font-size: 1.05rem; }

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */
.faq { padding: 4rem 0; background: #ffffff; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid #e4eaf3; padding: 0.15rem 0; }
.faq__item:last-child { border-bottom: none; }
.faq__question {
  list-style: none; cursor: pointer;
  padding: 1.1rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+"; font-size: 1.35rem; font-weight: 300;
  color: #13b6a8; flex-shrink: 0; transition: transform 0.2s;
}
details[open] .faq__question::after { transform: rotate(45deg); }
.faq__question-text { font-size: 1rem; font-weight: 600; color: #0b1526; }
.faq__answer { padding: 0 0 1rem; }
.faq__answer p { font-size: 0.93rem; color: #57677f; line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════
   FORM (shared between hero and standalone)
   ════════════════════════════════════════════════════════════════ */
.form-zone { padding: var(--section-y) 0; }
.form-box {
  background: var(--color-surface); border-radius: var(--radius-xl); padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  max-width: 540px; margin: 0 auto;
  border: 1px solid var(--color-border);
}
.form-box__title {
  font-size: 1.3rem; font-weight: 800; color: var(--color-heading);
  margin-bottom: 1.35rem; text-align: center; line-height: 1.25; letter-spacing: -0.02em;
}
.form-box__privacy { font-size: 0.75rem; color: var(--color-label); margin-top: 0.85rem; text-align: center; line-height: 1.5; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.3rem; }
.field__label { font-size: 0.85rem; font-weight: 600; color: var(--color-muted); }
.field__required { color: var(--color-error); }
.field__input {
  border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem; font-size: 0.95rem; color: var(--color-text);
  outline: none; transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  width: 100%; background: var(--color-surface-alt);
}
.field__input::placeholder { color: var(--color-label); }
.field__input:focus { border-color: var(--color-primary); background: var(--color-surface); box-shadow: var(--ring); }
.field__input--error { border-color: var(--color-error); }
.field__error { font-size: 0.78rem; color: var(--color-error); margin-top: 0.2rem; display: none; }
.form-message { margin-top: 0.75rem; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.form-message--success { color: #16a34a; }
.form-message--error   { color: #ef4444; }
.form-success { text-align: center; padding: 1.5rem 0; }
.form-success__title { font-size: 1.2rem; font-weight: 700; color: #16a34a; margin-bottom: 0.5rem; }
.form-success__msg   { font-size: 0.95rem; color: #57677f; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.phone-wrap { display: flex; gap: 0.5rem; align-items: stretch; }
.phone-wrap__number { flex: 1; min-width: 0; }

/* ── Dial control: compact flag + prefix over a native <select> ──
   The <select> is transparent and covers the whole control, so tapping it
   opens the platform's own picker (full country names, native scrolling and
   search) while the visible chip stays narrow enough to leave the number
   field room. */
.dial { position: relative; flex: none; display: flex; }
.dial__display {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.8rem 0.6rem 0.8rem 0.7rem;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-surface-alt); color: var(--color-text);
  font-size: 0.92rem; line-height: 1; white-space: nowrap;
  pointer-events: none;   /* clicks belong to the select underneath */
  transition: border-color 0.18s, box-shadow 0.18s;
}
.dial__flag { font-size: 1.15rem; line-height: 1; }
/* Windows has no colour flag glyphs and falls back to the letter pair, which
   would otherwise render oversized next to the prefix. */
.dial__flag:not(:empty) { min-width: 1.35em; text-align: center; }
.dial__code { font-weight: 700; font-variant-numeric: tabular-nums; }
.dial__caret { width: 15px; height: 15px; color: var(--color-label); flex: none; }
.dial__select {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
  border: 0; padding: 0; margin: 0;
  -webkit-appearance: none; appearance: none;
}
/* The real control is invisible, so the focus ring has to be drawn on the
   chip the user actually sees. */
.dial:focus-within .dial__display {
  border-color: var(--color-primary); box-shadow: var(--ring);
}

/* ════════════════════════════════════════════════════════════════
   VISUAL UPGRADES — photo hero, section imagery, icon system
   (defined after the base sections so these rules win the cascade)
   ════════════════════════════════════════════════════════════════ */

/* ── Photo hero: real <img> background + gradient overlay ─────── */
.hero--has-image { position: relative; overflow: hidden; }
.hero--has-image .hero__media { position: absolute; inset: 0; z-index: 0; }
.hero--has-image .hero__media-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
/* Tint the photo with the theme's hero gradient — but directional, so the
   photo reads clearly on the far side while text stays legible on the near side. */
/* Tint the photo with the theme's hero colour — a SINGLE translucent gradient,
   so the far side stays genuinely photographic while text keeps its contrast on
   the near side. (Blending a second opaque gradient in here crushes the photo
   to a flat slab, which is what this replaced.) */
.hero--has-image .hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: var(--hero-gradient); /* fallback keeps text legible without color-mix */
  background:
    linear-gradient(100deg,
      color-mix(in srgb, var(--color-heading) 95%, transparent) 0%,
      color-mix(in srgb, var(--color-heading) 86%, transparent) 30%,
      color-mix(in srgb, var(--color-heading) 55%, transparent) 62%,
      color-mix(in srgb, var(--color-heading) 32%, transparent) 100%);
}
/* Fine grid over the photo — reads as a data surface rather than a stock shot,
   and hides the softness of an upscaled crop. */
.hero--has-image .hero__media-img { filter: saturate(0.92) contrast(1.04); }
.hero--has-image::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 55%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%, #000 100%);
}
/* Reversed hero (form/text on opposite side) → flip the reveal direction. */
.hero--reversed.hero--has-image .hero__media::after {
  background:
    linear-gradient(260deg,
      color-mix(in srgb, var(--color-heading) 95%, transparent) 0%,
      color-mix(in srgb, var(--color-heading) 86%, transparent) 30%,
      color-mix(in srgb, var(--color-heading) 55%, transparent) 62%,
      color-mix(in srgb, var(--color-heading) 32%, transparent) 100%);
}
.hero--has-image .hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.28) 100%);
}
/* Lift the content above the media layer. */
.hero--has-image > .container { position: relative; z-index: 2; }
.hero--has-image .hero__headline,
.hero--has-image .hero__sub { text-shadow: 0 1px 24px rgba(0,0,0,0.3); }

/* ── Full-width photo band between sections ──────────────────── */
.image-band { padding: 0; margin: var(--section-y) 0; }
/* Blog byline: publisher + date, matching the schema on the same page. */
.page-hero__byline {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; align-items: center;
  margin-top: 0.75rem; font-size: 0.85rem; color: var(--color-label);
}
.page-hero__byline span { font-weight: 700; color: var(--color-sub); }

.image-band__frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.image-band__img {
  display: block; width: 100%; height: auto;
  max-height: 440px; object-fit: cover;
}
/* Captioned variant: the photo carries a statement instead of sitting mute. */
.image-band--captioned .image-band__img { max-height: 420px; }
.image-band__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--color-footer) 4%, transparent) 0%,
    color-mix(in srgb, var(--color-footer) 46%, transparent) 42%,
    color-mix(in srgb, var(--color-footer) 82%, transparent) 72%,
    color-mix(in srgb, var(--color-footer) 95%, transparent) 100%);
}
.image-band__kicker {
  display: block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 0.5rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.image-band__caption {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem); font-weight: 700;
  line-height: 1.35; letter-spacing: -0.02em;
  color: #fff; max-width: 34ch; text-wrap: balance;
}

/* ── Showcase: prominent image + text row, placed high on the page ── */
.showcase { padding: var(--section-y) 0 0; }
.showcase__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.showcase--reverse .showcase__media { order: 2; }
.showcase__media { position: relative; }
.showcase__media img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
/* subtle accent frame behind the image */
.showcase__media::after {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 62%; height: 62%; z-index: -1;
  border-radius: var(--radius-xl);
  background: var(--color-primary-soft);
}
.showcase__body .section-heading { text-align: left; margin-left: 0; max-width: 20ch; }
.showcase__lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem); color: var(--color-sub);
  line-height: 1.7; margin-bottom: 1.5rem; max-width: 52ch;
}

/* ── Icon chips (benefits + how-it-works) ────────────────────── */
.benefit-card__icon,
.how-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--color-primary-soft); color: var(--color-primary);
  margin-bottom: 1.1rem; box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-primary) 12%, transparent);
}
.benefit-card__icon .icon,
.how-card__icon .icon { width: 26px; height: 26px; }
/* Give benefit cards a touch more presence now they lead with an icon. */
.benefit-card { position: relative; }
.benefit-card:hover .benefit-card__icon { background: #13b6a8; color: #fff; }
.benefit-card__icon { transition: background 0.2s, color 0.2s; }

/* Turn the step number into a faint watermark now the icon leads the card. */
.how-card { position: relative; overflow: hidden; }
.how-card__icon { position: relative; z-index: 1; }
.how-card__step {
  position: absolute; top: 0.9rem; right: 1.25rem;
  width: auto; height: auto; margin: 0; border-radius: 0;
  background: none; color: #13b6a8; opacity: 0.12;
  font-size: 3rem; font-weight: 900; line-height: 1; z-index: 0;
}

/* ── Trust strip: small icon above each metric ───────────────── */
.trust-strip__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
}
.trust-strip__icon { color: #13b6a8; margin-bottom: 0.15rem; }
.trust-strip__icon .icon { width: 26px; height: 26px; }

/* ── Trust signals: SVG check/badge instead of a bare glyph ──── */
.trust__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(19,182,168,0.10); color: #13b6a8; flex-shrink: 0;
}
.trust__icon-svg { width: 16px; height: 16px; }
.trust--badge-grid .trust__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.trust--badge-grid .trust__item {
  background: #ffffff; border: 1px solid #e4eaf3;
  border-radius: 16px; padding: 1rem 1.15rem;
}

/* ════════════════════════════════════════════════════════════════
   INNER PAGES (about, contact, legal)
   ════════════════════════════════════════════════════════════════ */
/* ── Page hero (shared) ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #0b1e36 0%, #0e2a47 55%, #103154 100%);
  color: #fff; padding: 3.5rem 0 3rem; text-align: center;
}
.page-hero--compact { padding: 2.5rem 0 2rem; }
.page-hero__title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 0.5rem; }
.page-hero__sub { font-size: 1rem; opacity: 0.75; max-width: 600px; margin: 0 auto; margin-bottom: 1.5rem; }
.page-hero__cta { font-size: 0.95rem; }

.page-content { padding: 3rem 0; }
.page-content__narrow { max-width: 780px; margin: 0 auto; }

.page-block { margin-bottom: 2.5rem; }
.page-block__title { font-size: 1.3rem; font-weight: 700; color: #0b1526; margin-bottom: 0.75rem; }
.page-block__text { font-size: 0.95rem; color: #57677f; line-height: 1.75; }

.legal-block { margin-bottom: 2rem; }
.legal-block__title { font-size: 1.15rem; font-weight: 700; color: #0b1526; margin-bottom: 0.5rem; }
.legal-block__text { font-size: 0.93rem; color: #57677f; line-height: 1.7; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb { background: #eef3fa; padding: 0.75rem 0; font-size: 0.82rem; }
.breadcrumb__list { display: flex; gap: 0.4rem; list-style: none; flex-wrap: wrap; }
.breadcrumb__list li { display: flex; align-items: center; gap: 0.4rem; color: #6b7a8d; }
.breadcrumb__list li::before { content: "/"; color: #e4eaf3; }
.breadcrumb__list li:first-child::before { display: none; }
.breadcrumb__list a { color: #13b6a8; font-weight: 600; }
.breadcrumb__list a:hover { text-decoration: underline; }

/* ── About page sections ──────────────────────────────────── */
.about-section { padding: 3.5rem 0; }
.about-section--alt { padding: 3.5rem 0; background: #eef3fa; }
.about-section__text {
  font-size: 1.02rem; color: #3f4f66; line-height: 1.8;
  max-width: 780px; margin: 0 auto;
}

.about-mission { padding: 3.5rem 0; background: #ffffff; }
.about-mission__quote {
  font-size: 1.2rem; font-weight: 700; color: #0b1526;
  border-left: 4px solid #13b6a8; padding: 1rem 1.5rem;
  margin: 0 auto 1.5rem; max-width: 680px;
  font-style: italic; line-height: 1.5;
}

.about-how { padding: 3.5rem 0; background: #ffffff; }

.about-values { padding: 3.5rem 0; }
.about-values__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.value-card {
  background: #ffffff; border-radius: 16px; padding: 1.5rem;
  border: 1px solid #e4eaf3; text-align: center;
  transition: box-shadow 0.2s;
}
.value-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.value-card__title {
  font-weight: 800; color: #13b6a8;
  margin-bottom: 0.5rem; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 0.85rem;
}
.value-card__text { font-size: 0.9rem; color: #57677f; line-height: 1.6; }

.about-trust-strip {
  background: linear-gradient(135deg, #0b1e36 0%, #103154 100%);
  color: #fff; padding: 2.5rem 0;
}

.about-location { padding: 3.5rem 0; background: #ffffff; }
.about-location__address {
  font-style: normal; font-size: 0.95rem; color: #3f4f66;
  line-height: 1.8; padding: 1.25rem 1.5rem;
  background: #eef3fa; border-radius: 16px; border: 1px solid #e4eaf3;
  margin: 1.25rem auto; max-width: 400px; text-align: center;
}
.about-location__link {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.9rem; font-weight: 700; color: #13b6a8;
}
.about-location__link:hover { text-decoration: underline; }

.about-faq { background: #eef3fa; }

/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════════ */
.contact-section { padding: 3rem 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.contact-info__title { font-size: 1.3rem; font-weight: 700; color: #0b1526; margin-bottom: 0.75rem; }
.contact-info__text { font-size: 0.95rem; color: #57677f; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-info__address {
  font-style: normal; font-size: 0.93rem; color: #3f4f66;
  line-height: 1.7; margin-bottom: 1rem;
  padding: 1rem; background: #eef3fa; border-radius: 11px;
}
.contact-info__line { font-size: 0.93rem; color: #3f4f66; margin-bottom: 0.5rem; }
.contact-form .form-box { max-width: none; margin: 0; }

/* ════════════════════════════════════════════════════════════════
   MAP
   ════════════════════════════════════════════════════════════════ */
.map-section { padding: 0; }
.map-container { width: 100%; }
.map-container iframe { width: 100%; height: 400px; display: block; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-footer); color: rgba(255,255,255,0.6);
  font-size: 0.85rem; padding: clamp(3rem, 5vw, 4.5rem) 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
}
.footer__logo {
  font-size: 1.2rem; font-weight: 800; color: #fff;
  display: inline-block; margin-bottom: 0.85rem; letter-spacing: -0.02em;
}
.footer__tagline { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.5; }
.footer__address {
  font-style: normal; color: rgba(255,255,255,0.45);
  font-size: 0.82rem; line-height: 1.7;
}
.footer__nav-title {
  font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__nav-list a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.15s; }
.footer__nav-list a:hover { color: #fff; }
.footer__legal-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__legal-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color 0.15s; }
.footer__legal-links a:hover { color: rgba(255,255,255,0.8); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-header__toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
  }
  .site-header__toggle-bar {
    display: block; width: 22px; height: 2px;
    background: #0b1526; border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .site-header__nav {
    display: none; position: absolute;
    top: 64px; left: 0; right: 0;
    background: #ffffff; border-bottom: 1px solid #e4eaf3;
    padding: 1.25rem 1.5rem;
    flex-direction: column; gap: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .site-header__nav--open { display: flex; }
  .site-header__nav-list { flex-direction: column; gap: 0.75rem; }
  .site-header__cta { text-align: center; }

  /* ── Hero — all variants compact on mobile ─────────────────── */
  .hero { padding: 1.25rem 0 1.25rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 0.85rem; }
  .hero__content { padding-top: 0; }
  .hero__headline { font-size: 1.35rem; line-height: 1.2; margin-bottom: 0.35rem; }
  .hero__sub { font-size: 0.88rem; line-height: 1.45; margin-bottom: 0.5rem; max-width: 100%; }
  .hero__form-col .form-box { max-width: 100%; padding: 1.15rem; }
  .hero__form-col .form-box__title { font-size: 1.05rem; margin-bottom: 0.75rem; }
  .hero__stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem; margin-top: 0.6rem; padding-top: 0.6rem;
    text-align: center;
  }
  .hero__stat { text-align: center; }
  .hero__stat-value { font-size: 1.1rem; }
  .hero__stat-label { font-size: 0.65rem; }

  /* ── Sections compact ─────────────────────────────────────── */
  .section-heading { font-size: 1.3rem; margin-bottom: 0.75rem; }
  .benefits, .how-it-works, .testimonials, .advanced, .social-proof, .faq { padding: 2rem 0; }
  .benefits__grid,
  .how-it-works__grid,
  .testimonials__grid,
  .advanced__grid,
  .social-proof__grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 1.25rem; }
  .how-card { padding: 1.25rem; }
  .testimonial-card { padding: 1.25rem; }
  .advanced-card { padding: 1.25rem; }
  .proof-card { flex-direction: column; }
  .trust-strip { padding: 1.25rem 0; }
  /* 2-col grid instead of a cramped flex row that clipped on the right */
  .trust-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 0.75rem; }
  .trust-strip__item { min-width: 0; }
  .trust-strip__value, .trust-strip__label { overflow-wrap: break-word; }
  .intro { padding: 2rem 0 1rem; }
  .intro__body { font-size: 0.95rem; }
  .cta-band { padding: 2rem 0; }
  .cta-band__text { font-size: 0.95rem; }

  /* ── Form compact ─────────────────────────────────────────── */
  .form-box { padding: 1.15rem; }
  .form-box__title { font-size: 1.05rem; }
  .field__input { padding: 0.6rem 0.75rem; font-size: 0.88rem; }
  .btn-cta { padding: 0.7rem 1.5rem; font-size: 0.88rem; }
  .name-row { grid-template-columns: 1fr; }
  .phone-wrap__dial { width: 110px; font-size: 0.78rem; }

  /* ── Page hero compact ────────────────────────────────────── */
  .page-hero { padding: 2rem 0 1.5rem; }
  .page-hero__title { font-size: 1.4rem; }
  .page-hero__sub { font-size: 0.88rem; }

  /* ── Contact / Footer ─────────────────────────────────────── */
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer { padding: 2.5rem 0 0; }

  .map-container iframe { height: 250px; }
  .map-container iframe { height: 300px; }

  .benefits, .how-it-works, .testimonials, .advanced, .social-proof, .faq { padding: 2.75rem 0; }

  /* ── Showcase stacks; show the FULL photo (no crop) on phones ──── */
  .showcase { padding: 2.75rem 0 0; }
  .showcase__inner { grid-template-columns: 1fr; gap: 1.35rem; }
  .showcase--reverse .showcase__media { order: 0; }
  .showcase__media::after { display: none; }
  .showcase__media img { aspect-ratio: auto; height: auto; max-height: 60vh; object-fit: contain; }
  .showcase__body .section-heading { text-align: left; }

  /* ── Image band: show the full photo instead of a cropped strip ── */
  .image-band { margin: 2.25rem 0; }
  .image-band__img { max-height: none; height: auto; }

  /* ── Hero: prevent the form card / long words from clipping ─────── */
  .hero__inner, .hero__overlay-wrap, .hero__stack, .hero__minimal-wrap { min-width: 0; }
  .hero__form-col, .hero__content { min-width: 0; }
  .hero__headline, .hero__sub, .form-box__title { overflow-wrap: break-word; }
  .form-box { max-width: 100%; }

  /* ── CTA band inset shrinks on phones ─────────────────────────── */
  .cta-band { margin: 2.75rem 0.9rem; padding: 2.25rem 0; border-radius: var(--radius-lg); }

  /* ── Easy-to-tap CTAs: standalone buttons go full-width ───────── */
  .hero .btn-cta,
  .showcase .btn-cta,
  .cta-band .btn-cta,
  .page-hero__cta { width: 100%; }
  .site-header__cta { width: 100%; }
  .btn-cta { min-height: 48px; }
  .field__input, .phone-wrap__dial { min-height: 46px; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 0.5rem; }
  .hero__stat { padding: 0.55rem 0.85rem; }
  .trust-strip__grid { gap: 1rem 1.75rem; }
  .proof-card { flex-direction: column; }
  .image-band__img { border-radius: var(--radius-lg); }
}

/* ════════════════════════════════════════════════════════════════
   HERO VARIANTS
   ════════════════════════════════════════════════════════════════ */

/* ── Reversed hero (form left, text right) ───────────────────── */
.hero__inner--reversed {
  grid-template-columns: 420px 1fr;
}

/* ── Centered / stacked hero ─────────────────────────────────── */
.hero--centered { padding: 3rem 0 3rem; }
.hero--centered .hero__stack {
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}
.hero__content--centered {
  text-align: center; width: 100%; max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.hero__headline--centered { margin-left: auto; margin-right: auto; text-align: center; }
.hero__sub--centered {
  margin-left: auto; margin-right: auto; text-align: center;
  max-width: 600px;
}
.hero--centered .hero__stats { justify-content: center; }
.hero__form-intro {
  font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,0.9);
  text-align: center; max-width: 520px; line-height: 1.5;
  margin: 0; padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__form-centered { width: 100%; max-width: 480px; }
.hero__form-centered .form-box {
  background: #ffffff; color: #0b1526;
  border-radius: 24px; padding: 1.75rem;
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  border: none;
}
.hero__form-centered .form-box__title { color: #0b1526; }

/* ── Full-width overlay hero ─────────────────────────────────── */
.hero--overlay { padding: 5rem 0 4rem; min-height: 520px; }
.hero__overlay-wrap {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3rem; align-items: center;
}
.hero__content--overlay { }
.hero__form-overlay .form-box {
  background: #ffffff; color: #0b1526;
  border-radius: 24px; padding: 2rem;
  box-shadow: 0 16px 56px rgba(0,0,0,0.3);
  border: none;
}
.hero__form-overlay .form-box__title { color: #0b1526; }

/* ── Trust-focused hero ──────────────────────────────────────── */
.hero__trust-bar {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__trust-item { text-align: left; }
.hero__trust-value {
  display: block; font-size: 1.3rem; font-weight: 800; color: #37d6a0;
}
.hero__trust-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Minimal hero + below form ───────────────────────────────── */
.hero--minimal { padding: 3rem 0 2.5rem; }
.hero__minimal-wrap { text-align: center; }
.hero__below-form {
  padding: 0; margin-top: -2rem; position: relative; z-index: 10;
}
.form-box--elevated {
  max-width: 560px; margin: 0 auto;
  box-shadow: 0 16px 60px rgba(0,0,0,0.12);
}

/* ════════════════════════════════════════════════════════════════
   OFFER-SHOWCASE HERO + CRYPTO STRIPS (image-forward "offer" mode)
   ════════════════════════════════════════════════════════════════ */
.hero--offer { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.75rem, 5vw, 4rem); }
.hero__inner--offer {
  grid-template-columns: 1.05fr 452px;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.hero__cta-row { margin-top: 1.6rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* social-proof row */
.hero__social { display: flex; align-items: center; gap: 1rem; margin-top: 1.7rem; flex-wrap: wrap; }
.hero__avatars { display: flex; }
.hero__av {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  border: 2px solid rgba(255,255,255,0.28);
  display: grid; place-items: center; font-weight: 800; font-size: 0.82rem; color: #04211e;
}
.hero__av:first-child { margin-left: 0; }
.hero__av { position: relative; overflow: hidden; }
.hero__av-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__social-text { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.3; }
.hero__social-text b { color: #fff; font-weight: 800; }
.hero__stars { color: var(--color-star); letter-spacing: 0.08em; }
.hero__social-text small { display: block; }

/* dashboard mockup */
.hero__visual { display: flex; justify-content: center; }
.hero__mock { width: 100%; max-width: 380px; }
.hero__mock-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-lg);
  padding: 18px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero__mock-top small { color: rgba(255,255,255,0.6); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.hero__mock-bal { font-size: 1.65rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.hero__mock-chg { color: #25d69a; font-weight: 700; font-size: 0.85rem; }
.hero__mock-chart { width: 100%; height: 84px; display: block; margin: 8px 0 6px; }
.hero__coinrow { display: flex; align-items: center; gap: 0.7rem; padding: 9px 4px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero__coinrow-ci { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 0.72rem; color: #fff; flex: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22); }
.hero__coinrow-mark { width: 17px; height: 17px; }
.hero__coinrow-nm { font-weight: 700; color: #fff; font-size: 0.9rem; line-height: 1.1; }
.hero__coinrow-nm small { display: block; color: rgba(255,255,255,0.55); font-weight: 500; font-size: 0.74rem; }
.hero__coinrow-px { margin-left: auto; text-align: right; }
.hero__coinrow-px b { color: #fff; font-weight: 700; font-size: 0.9rem; font-variant-numeric: tabular-nums; }
.hero__coinrow-px small { display: block; font-size: 0.76rem; font-weight: 700; }
.hero__coinrow-px .is-up { color: #25d69a; }
.hero__coinrow-px .is-dn { color: #ff7a85; }

/* lead form in the hero's right column (first row / above the fold) */
.form-box--offer {
  background: var(--color-surface); color: var(--color-text);
  border-radius: var(--radius-xl); padding: 1.6rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--color-border);
}
.form-box--offer .form-box__title { color: var(--color-heading); }

/* ── Live-markets showcase (dashboard on a light section) ─────── */
.market-showcase { padding: var(--section-y) 0; }
.market-showcase__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.market-showcase__body .eyebrow { margin-bottom: 0.6rem; }
.market-showcase__heading { text-align: left; margin: 0 0 0.7rem; max-width: 18ch; }
.market-showcase__lead { color: var(--color-sub); font-size: 1.05rem; line-height: 1.65; }
.market-showcase__list { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: 0.75rem; }
.market-showcase__list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--color-text); font-weight: 600; }
.market-showcase__list svg { width: 20px; height: 20px; color: var(--color-primary); flex: none; margin-top: 0.15rem; }
.market-showcase__media { display: flex; justify-content: center; }
.market-showcase .hero__mock { width: 100%; max-width: 400px; }
/* the dashboard card is dark navy on the light section (not glassy-on-hero) */
.market-showcase .hero__mock-card {
  background: linear-gradient(158deg, var(--color-footer), color-mix(in srgb, var(--color-footer) 82%, #000));
  border: 1px solid rgba(255,255,255,0.09);
}

/* ── Supported-assets strip: vector asset marks on brand-colour discs ── */
.coin-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
  padding: clamp(2rem, 3.5vw, 2.75rem) 0;
}
.coin-strip__inner { text-align: center; }
.coin-strip__label {
  display: block; color: var(--color-label); font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.15rem;
}
.coin-strip__row {
  display: flex; flex-wrap: wrap; align-items: stretch;
  justify-content: center; gap: 0.6rem;
}
.coin-strip__chip {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.6rem 1rem 0.6rem 0.6rem;
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.coin-strip__chip:hover {
  border-color: color-mix(in srgb, var(--color-primary) 40%, var(--color-border));
  transform: translateY(-1px); box-shadow: var(--shadow-sm);
}
.coin-strip__coin {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}
.coin-strip__mark { width: 19px; height: 19px; }
.coin-strip__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.coin-strip__name { font-weight: 700; color: var(--color-heading); font-size: 0.92rem; }
.coin-strip__sym {
  font-size: 0.7rem; font-weight: 700; color: var(--color-label);
  letter-spacing: 0.07em; font-variant-numeric: tabular-nums;
}

/* ── Venue strip: neutral monogram tiles (never a company's real logo) ── */
.exchange-strip {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
  padding: clamp(2.25rem, 4vw, 3rem) 0;
}
.exchange-strip__inner { text-align: center; }
.exchange-strip__label { display: block; color: var(--color-label); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.15rem; }
.exchange-strip__logos { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; align-items: center; }
.exchange-strip__note {
  margin: 1.15rem auto 0; max-width: 62ch;
  font-size: 0.78rem; line-height: 1.55; color: var(--color-label);
}
.partner-tile {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1.05rem 0.55rem 0.55rem;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.partner-tile__badge {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: var(--tile-color, var(--color-primary)); color: #fff;
  font-weight: 800; font-size: 0.95rem; letter-spacing: -0.02em;
}
.partner-tile__name {
  font-weight: 700; font-size: 0.98rem; color: var(--color-heading);
  letter-spacing: -0.01em;
}

/* ── Order-ticket product panel (showcase media column) ───────── */
.showcase__media--panel { display: flex; justify-content: center; }
.showcase__media--panel::after { display: none; }
.ticket {
  width: 100%; max-width: 420px;
  background: linear-gradient(158deg, var(--color-footer), color-mix(in srgb, var(--color-footer) 80%, #000));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.35rem 1.15rem;
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.ticket__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ticket__pair {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 800; font-size: 1rem; letter-spacing: -0.01em;
}
.ticket__pair-mark {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12); color: #fff;
}
.ticket__pair-mark svg { width: 16px; height: 16px; }
.ticket__tabs {
  display: inline-flex; padding: 3px; gap: 2px;
  background: rgba(255,255,255,0.08); border-radius: var(--radius-pill);
}
.ticket__tab {
  font-size: 0.76rem; font-weight: 700; padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill); color: rgba(255,255,255,0.6);
}
.ticket__tab.is-active { background: var(--color-primary); color: #04231f; }
.ticket__amount {
  margin: 1.15rem 0 1rem; padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 0.2rem 0.75rem;
}
.ticket__amount-label {
  grid-column: 1 / -1; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.ticket__amount-value { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.ticket__amount-est { font-size: 0.9rem; color: rgba(255,255,255,0.62); font-variant-numeric: tabular-nums; }
.ticket__rows { display: grid; gap: 0.15rem; }
.ticket__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.5rem 0.15rem; font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ticket__row-label { color: rgba(255,255,255,0.62); }
.ticket__row-value { font-weight: 700; font-variant-numeric: tabular-nums; }
.ticket__total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.95rem 0.15rem 0.35rem;
}
.ticket__total-label { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.ticket__total-value { font-size: 1.2rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.ticket__cta {
  display: block; text-align: center; margin-top: 0.5rem;
  padding: 0.8rem 1rem; border-radius: var(--radius);
  background: var(--color-primary); color: #04231f; font-weight: 800; font-size: 0.95rem;
}
.ticket__note {
  margin: 0.85rem 0 0; font-size: 0.72rem; line-height: 1.5;
  color: rgba(255,255,255,0.5);
}

/* ── Footer risk disclaimer (sensitive verticals only) ───────── */
.footer__risk {
  padding-top: 1.4rem; margin-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__risk-text {
  font-size: 0.76rem; line-height: 1.6;
  color: rgba(255,255,255,0.55); max-width: 92ch;
}

/* ── Testimonial extras: verified marker + orphan-free grid ────
   Scoped to desktop so the narrow-screen single-column rules above still win. */
@media (min-width: 901px) {
  .testimonials__grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials__grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.testimonial-card__verified {
  display: inline-flex; vertical-align: middle; margin-left: 0.35rem;
  color: var(--color-primary);
}
.testimonial-card__verified svg { width: 15px; height: 15px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (max-width: 900px) {
  .hero__inner--offer { grid-template-columns: 1fr; }
  .market-showcase__inner { grid-template-columns: 1fr; }
  .market-showcase__media { order: -1; }
  .market-showcase .hero__mock { max-width: 340px; }
}

/* ── Section variant: benefits list-alternating ──────────────── */
.benefits--alternating .benefits__grid {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 820px; margin: 0 auto;
}
.benefits--alternating .benefit-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  border-left: 4px solid #13b6a8; border-radius: 0 16px 16px 0;
  padding: 1.25rem 1.5rem;
}
.benefits--alternating .benefit-card:nth-child(even) {
  border-left: none; border-right: 4px solid #13b6a8;
  border-radius: 16px 0 0 16px;
  flex-direction: row-reverse; text-align: right;
}
.benefits--alternating .benefit-card__title {
  min-width: 160px; flex-shrink: 0; font-size: 1rem;
}

/* ── Section variant: benefits numbered ──────────────────────── */
.benefits--numbered .benefit-card {
  display: flex; gap: 1rem; align-items: flex-start;
  counter-increment: benefit;
}
.benefits--numbered .benefit-card::before {
  content: counter(benefit, decimal-leading-zero);
  font-size: 1.8rem; font-weight: 900; color: #13b6a8;
  opacity: 0.3; flex-shrink: 0; line-height: 1;
}
.benefits--numbered .benefits__grid {
  counter-reset: benefit;
}

/* ── Section variant: how-it-works timeline ──────────────────── */
.how-it-works--timeline .how-it-works__grid {
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding-left: 2.5rem;
}
.how-it-works--timeline .how-it-works__grid::before {
  content: ""; position: absolute; left: 17px; top: 0; bottom: 0;
  width: 2px; background: #e4eaf3;
}
.how-it-works--timeline .how-card {
  position: relative; background: transparent; padding: 1.5rem 0 2rem 1.5rem;
  border-radius: 0;
}
.how-it-works--timeline .how-card__step {
  position: absolute; left: -2.5rem; top: 1.5rem;
  width: 34px; height: 34px; z-index: 2;
}

/* ── Section variant: CTA card centered ──────────────────────── */
.cta-band--card {
  background: #f5f8fc; padding: 4rem 0;
}
.cta-band--card .container {
  background: linear-gradient(135deg, #0b1e36 0%, #103154 100%); color: #fff;
  border-radius: 24px; padding: 3rem 2rem;
  text-align: center; max-width: 800px;
}

/* ── Section variant: FAQ two-column ─────────────────────────── */
.faq--two-col .faq__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  max-width: none;
}

/* ── Section variant: intro two-column ───────────────────────── */
.intro--two-col .intro__body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: none; text-align: left;
}

/* ── Section variant: trust badge grid ───────────────────────── */
.trust--badge-grid .trust__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.trust--badge-grid .trust__item {
  background: #ffffff; border: 1px solid #e4eaf3;
  border-radius: 11px; padding: 0.75rem 1rem;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════════════════════════ */
.blog-section { padding: 3rem 0 4.5rem; }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* ── Blog card on index page ─────────────────────────────────── */
.blog-card {
  background: #ffffff; border: 1px solid #e4eaf3;
  border-radius: 16px; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.08); transform: translateY(-3px);
}
.blog-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.blog-card__title {
  font-size: 1.1rem; font-weight: 800; line-height: 1.3;
  color: #0b1526; margin: 0;
}
.blog-card__title a {
  color: inherit; text-decoration: none;
  transition: color 0.15s;
}
.blog-card__title a:hover { color: #13b6a8; }
.blog-card__excerpt {
  font-size: 0.9rem; color: #57677f; line-height: 1.6;
  margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__cta {
  font-size: 0.88rem; font-weight: 700; color: #13b6a8;
  text-decoration: none; transition: color 0.15s;
}
.blog-card__cta:hover { color: #0e9a8e; }

/* ── Blog post page ──────────────────────────────────────────── */
.blog-post { padding: 3rem 0 4rem; }
.blog-post .container { max-width: 800px; }
.blog-post__content { margin-bottom: 2.5rem; }
.blog-post__section { margin-bottom: 2rem; }
.blog-post__heading {
  font-size: 1.25rem; font-weight: 800; color: #0b1526;
  margin-bottom: 0.6rem; line-height: 1.3;
}
.blog-post__text {
  font-size: 0.95rem; color: #3f4f66; line-height: 1.75;
}

/* ── Related posts ───────────────────────────────────────────── */
.blog-related {
  border-top: 1px solid #e4eaf3; padding-top: 1.5rem;
}
.blog-related__title {
  font-size: 0.85rem; font-weight: 700; color: #6b7a8d;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem;
}
.blog-related__list {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.blog-related__item {
  list-style: none;
}
.blog-related__item a {
  font-size: 0.93rem; font-weight: 600; color: #13b6a8;
  text-decoration: none; transition: color 0.15s;
}
.blog-related__item a:hover { color: #0e9a8e; text-decoration: underline; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   PARTNERS PAGE
   ════════════════════════════════════════════════════════════════ */
.partners-section { padding: 2.5rem 0 4.5rem; }
.partners-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.partners-toolbar__count { font-size: 0.95rem; font-weight: 700; color: #6b7a8d; }
.partners-toolbar__search { flex: 0 1 320px; position: relative; }

.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  gap: 1.5rem; justify-content: center;
}

/* ── Partner card ────────────────────────────────────────────── */
.partner-card {
  display: flex; flex-direction: column;
  background: #ffffff; border: 1px solid #e4eaf3;
  border-radius: 16px; padding: 1.5rem;
  text-decoration: none; color: #0b1526;
  transition: box-shadow 0.25s, transform 0.25s;
}
.partner-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.08); transform: translateY(-3px);
}
.partner-card__header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.partner-card__icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.partner-card__icon svg { width: 22px; height: 22px; }
.partner-card__title {
  font-size: 1.1rem; font-weight: 800; color: #0b1526;
}
.partner-card__desc {
  font-size: 0.88rem; color: #57677f; line-height: 1.6;
  margin: 0 0 0.75rem; flex: 1;
}
.partner-card__cta {
  font-size: 0.88rem; font-weight: 700; color: #13b6a8;
  margin-top: auto; transition: color 0.15s;
}
.partner-card:hover .partner-card__cta { color: #0e9a8e; }

/* ── /go/ page ───────────────────────────────────────────────── */
.go-section { padding: 3rem 0 4rem; }
.go-card {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: #ffffff; border: 1px solid #e4eaf3;
  border-radius: 24px; padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.go-card__text {
  font-size: 1rem; color: #3f4f66; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.go-card__cta { font-size: 1rem; padding: 0.85rem 2.5rem; }
.go-card__back {
  margin-top: 1.25rem; font-size: 0.85rem;
}
.go-card__back a {
  color: #13b6a8; text-decoration: none; font-weight: 600;
}
.go-card__back a:hover { text-decoration: underline; }

/* ── Partners states ─────────────────────────────────────────── */
.partners-state {
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 0; font-size: 0.95rem; display: none;
}
.partners-state--loading, .partners-state--error { padding: 3rem 1rem; }
.partners-state--loading { color: #57677f; display: flex; }
.partners-state--error   { color: #ef4444; display: flex; }
.partners-state p { margin: 0; }
.partners-spinner {
  width: 32px; height: 32px; border: 3px solid #e4eaf3;
  border-top-color: #13b6a8; border-radius: 50%;
  animation: reviewsSpin 0.7s linear infinite;
}
.partners-empty {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1rem;
  font-size: 0.95rem; color: #6b7a8d;
}

@media (max-width: 768px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partners-toolbar { flex-direction: column; align-items: stretch; }
  .partners-toolbar__search { flex: 1 1 100%; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   REVIEWS PAGE — premium editorial directory
   ════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────── */
.rv-hero {
  background: linear-gradient(160deg, #f0ecf9 0%, #e8e4f3 40%, #f5f2fb 100%);
  padding: 4rem 0 3rem; text-align: center;
}
.rv-hero__inner { max-width: 780px; margin: 0 auto; }
.rv-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900;
  color: #1e1340; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 1.5rem;
}
.rv-hero__intro-box {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(6px);
  border-radius: 16px; padding: 1.35rem 2rem;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 12px rgba(100,80,160,0.06);
}
.rv-hero__intro-text {
  font-size: 0.97rem; color: #3d3060; line-height: 1.7; margin: 0;
}

/* ── Section ─────────────────────────────────────────────────── */
.reviews-section {
  padding: 2.5rem 0 4.5rem;
  background: linear-gradient(180deg, #f5f2fb 0%, #f5f8fc 30%);
}

/* ── Toolbar ─────────────────────────────────────────────────── */
.reviews-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.reviews-toolbar__count {
  font-size: 0.95rem; font-weight: 700; color: #6b7a8d;
}
.reviews-toolbar__search { flex: 0 1 320px; position: relative; }
.reviews-search-input {
  width: 100%; border: 1.5px solid #e4eaf3; border-radius: 10px;
  padding: 0.7rem 1rem 0.7rem 2.5rem; font-size: 0.9rem; outline: none;
  background: #ffffff; color: #0b1526;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.reviews-search-input:focus {
  border-color: #7c3aed; box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.reviews-toolbar__search::before {
  content: "\2315"; position: absolute; left: 0.85rem; top: 50%;
  transform: translateY(-50%); font-size: 1.1rem; color: #6b7a8d;
  pointer-events: none;
}

/* ── Grid ────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  gap: 1.5rem;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   REVIEW CARD — matches editorial design
   ════════════════════════════════════════════════════════════════ */
.rv-card {
  background: #ffffff; border-radius: 16px;
  border: 1px solid #e4eaf3;
  padding: 1.5rem 1.5rem 1.25rem; display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.rv-card:hover {
  box-shadow: 0 12px 40px rgba(100,80,160,0.1);
  transform: translateY(-3px);
}

/* ── Card header row: [icon + name/subtitle] ... [rating pill] ── */
.rv-card__header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 0.75rem; margin-bottom: 0.9rem;
}
.rv-card__identity {
  display: flex; align-items: flex-start; gap: 0.7rem; min-width: 0; flex: 1;
}

/* ── Round icon circle ───────────────────────────────────────── */
.rv-card__icon-circle {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.rv-card__logo-svg {
  width: 22px; height: 22px;
}

/* ── Name + subtitle stacked ─────────────────────────────────── */
.rv-card__name-block {
  display: flex; flex-direction: column; gap: 0.1rem; min-width: 0;
}
.rv-card__platform {
  font-size: 1.1rem; font-weight: 800; color: #0b1526;
  line-height: 1.2;
}
.rv-card__subtitle {
  font-size: 0.82rem; color: #57677f; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Rating pill ─────────────────────────────────────────────── */
.rv-card__rating-pill {
  display: flex; align-items: center; gap: 0.4rem;
  background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: 20px; padding: 0.3rem 0.75rem; flex-shrink: 0;
  white-space: nowrap;
}
.rv-card__rating-stars {
  display: flex; gap: 0; font-size: 0.65rem; line-height: 1;
}
.rv-card__star { color: #d1d5db; }
.rv-card__star--filled { color: #f59e0b; }
.rv-card__rating-num {
  font-size: 0.78rem; font-weight: 800; color: #166534;
}

/* ── Description ─────────────────────────────────────────────── */
.rv-card__desc {
  font-size: 0.9rem; color: #3f4f66; line-height: 1.65;
  margin: 0 0 0.8rem; flex: 1;
}

/* ── Tag chips — outlined style ──────────────────────────────── */
.rv-card__tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.5rem;
}
.rv-card__tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #7c3aed; background: transparent;
  border: 1.5px solid #c4b5fd; border-radius: 20px;
  padding: 0.25rem 0.7rem;
}

/* ── Date ────────────────────────────────────────────────────── */
.rv-card__date {
  font-size: 0.78rem; color: #6b7a8d; margin: 0 0 0.6rem;
}

/* ── CTA button — full width, rounded, purple ────────────────── */
.rv-card__cta {
  display: block; text-align: center;
  padding: 0.75rem 1rem; margin-top: auto;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff; font-size: 0.9rem; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.rv-card__cta:hover {
  background: linear-gradient(135deg, #6d28d9, #5b21b6);
  box-shadow: 0 6px 20px rgba(109,40,217,0.3);
}
.rv-card__cta:active { transform: scale(0.98); }

/* ── States ──────────────────────────────────────────────────── */
.reviews-state {
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 3rem 1rem; font-size: 0.95rem; display: none;
}
.reviews-state--loading { color: #57677f; display: flex; }
.reviews-state--error   { color: #ef4444; display: flex; }
.reviews-state p { margin: 0; }

.reviews-spinner {
  width: 32px; height: 32px; border: 3px solid #e0d6f2;
  border-top-color: #7c3aed; border-radius: 50%;
  animation: reviewsSpin 0.7s linear infinite;
}
@keyframes reviewsSpin { to { transform: rotate(360deg); } }

.reviews-empty {
  grid-column: 1 / -1; text-align: center; padding: 3.5rem 1rem;
  font-size: 0.95rem; color: #6b7a8d;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-toolbar { flex-direction: column; align-items: stretch; }
  .reviews-toolbar__search { flex: 1 1 100%; }
  .rv-hero { padding: 2.5rem 0 2rem; }
  .rv-hero__intro-box { padding: 1rem 1.25rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   RTL OVERRIDES
   ════════════════════════════════════════════════════════════════ */
[dir="rtl"] .hero__headline,
[dir="rtl"] .hero__sub          { text-align: right; }
[dir="rtl"] .hero__stat         { text-align: right; }
[dir="rtl"] .advanced-card      { border-left: none; border-right: 4px solid #13b6a8; }
[dir="rtl"] .field__error       { text-align: right; }
[dir="rtl"] .form-box__privacy  { text-align: center; }
[dir="rtl"] .phone-wrap         { flex-direction: row-reverse; }
[dir="rtl"] .how-card__bullets li { padding: 0.25rem 1.25rem 0.25rem 0; }
[dir="rtl"] .how-card__bullets li::before { left: auto; right: 0; }
[dir="rtl"] .site-header__nav-list { direction: rtl; }

/* ── Hero variants responsive ────────────────────────────────── */
@media (max-width: 768px) {
  /* Always show hero text BEFORE the lead form on mobile, regardless
     of DOM order, so users see the headline/subheadline first. */
  .hero__inner,
  .hero__inner--reversed,
  .hero__overlay-wrap { display: flex; flex-direction: column; }
  .hero__content,
  .hero__content--overlay { order: 1; }
  .hero__form-col,
  .hero__form-overlay { order: 2; }

  .hero__inner--reversed { grid-template-columns: 1fr; }
  .hero__overlay-wrap { grid-template-columns: 1fr; }
  .hero--overlay { min-height: auto; padding: 1.75rem 0 1.5rem; }
  .hero--overlay .hero__form-overlay .form-box { padding: 1.15rem; }

  .hero--centered { padding: 1.5rem 0 1.5rem; }
  .hero--centered .hero__stack { gap: 0.75rem; }
  .hero__content--centered { max-width: 100%; }
  .hero__headline--centered { font-size: 1.4rem; margin-bottom: 0.3rem; }
  .hero__sub--centered { max-width: 100%; font-size: 0.88rem; margin-bottom: 0; }
  .hero__form-intro { font-size: 0.85rem; max-width: 100%; padding: 0.5rem 0.85rem; }
  .hero__form-centered { max-width: 100%; }
  .hero__form-centered .form-box { padding: 1.15rem; }

  .hero__trust-bar { display: none; }
  .hero--minimal { padding: 1.5rem 0 1rem; }
  .hero__below-form { margin-top: -1rem; }

  .faq--two-col .faq__list { grid-template-columns: 1fr; }
  .intro--two-col .intro__body { grid-template-columns: 1fr; }
  .benefits--alternating .benefit-card,
  .benefits--alternating .benefit-card:nth-child(even) { flex-direction: column; text-align: left; }
  .benefits--alternating .benefit-card__title { min-width: auto; }
  .how-it-works--timeline .how-it-works__grid { padding-left: 2rem; }
}
