/* ============================================================================
   CGAS — Landing page redesign (preview options v1 / v2 / v3)
   Shared components: report-type tabs + scrollable preview report,
   steps side-panel, packages-as-core, country-specific norms.
   Loaded ON TOP of main.css. Only new classes here.
   ============================================================================ */

/* ---------- Clearer section alternation on the landing ----------
   Keep the hero solid white (it used to fade into gray-50, matching the next
   section) and give the gray bands a slightly more visible tone so white ↔ gray
   alternation reads clearly. */
.hero::before { background: #ffffff !important; }
.section--gray { background: #F4F8FF; }

/* ---------- Option chooser bar ---------- */
.lp-switch {
  position: fixed;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 1200;
  display: flex; align-items: center; gap: 6px;
  background: rgba(15,33,64,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 7px 8px 7px 16px;
  box-shadow: 0 12px 40px rgba(10,22,40,0.35);
}
.lp-switch__label { color: rgba(255,255,255,0.6); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-right: 4px; }
.lp-switch a {
  color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; transition: all 0.2s;
}
.lp-switch a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lp-switch a.is-active { color: #fff; background: var(--blue-500); }

/* ============================================================================
   REPORT-TYPE TABS  (replaces the single "Tanya" card)
   ============================================================================ */
.report-tabs { width: 100%; }

.report-tabs__nav {
  display: flex; flex-wrap: nowrap; gap: 4px;
  padding: 5px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}
.report-tabs__nav::-webkit-scrollbar { display: none; }
.report-tabs__tab {
  flex: 1 1 0; min-width: 0;
  border: none; cursor: pointer;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  color: var(--gray-600);
  padding: 9px 10px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
}
.report-tabs__tab:hover { color: var(--gray-900); }
.report-tabs__tab.is-active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(17,19,24,0.08);
}

.report-tabs__panel { animation: rtFade 0.4s var(--ease) both; }
.report-tabs__panel[hidden] { display: none; }
@keyframes rtFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- The scrollable, non-downloadable preview document ---------- */
.report-preview {
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(17,19,24,0.10);
  overflow: hidden;
  /* Non-downloadable / non-copyable showcase */
  user-select: none; -webkit-user-select: none; -moz-user-select: none;
  -webkit-user-drag: none;
}
.report-preview__scroll {
  max-height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 30px 30px 44px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}
.report-preview__scroll::-webkit-scrollbar { width: 8px; }
.report-preview__scroll::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 100px; }
.report-preview img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }

/* Bottom fade hint that there's more to scroll */
.report-preview__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--white) 92%);
  pointer-events: none;
}

/* Expand-to-full-size button */
.report-preview__expand {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px; cursor: pointer;
  font: inherit; font-size: 0.72rem; font-weight: 700;
  color: var(--gray-700);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 10px rgba(17,19,24,0.10);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: all 0.2s var(--ease);
}
.report-preview__expand:hover { color: var(--primary); border-color: var(--blue-200); transform: translateY(-1px); }
.report-preview__expand svg { color: var(--primary); }

/* Full-size (PDF-like) modal */
.rp-modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.rp-modal.is-open { display: block; }
.rp-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.72);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: rtFade 0.25s var(--ease) both;
}
.rp-modal__dialog {
  position: relative; z-index: 1;
  width: min(920px, 94vw); height: 92vh; margin: 4vh auto;
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  animation: rtFade 0.3s var(--ease) both;
}
.rp-modal__close {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--gray-200); background: rgba(255,255,255,0.95);
  font-size: 1.3rem; line-height: 1; color: var(--gray-600);
  box-shadow: 0 2px 10px rgba(17,19,24,0.12);
}
.rp-modal__close:hover { color: var(--gray-900); border-color: var(--gray-300); }
.rp-modal__scroll {
  height: 100%; overflow-y: auto; overflow-x: hidden;
  padding: 44px 52px; background: var(--gray-50);
  user-select: none; -webkit-user-select: none;
}
/* Larger, page-like reading size inside the modal */
.rp-modal__page {
  max-width: 760px; margin: 0 auto;
  background: var(--white);
  padding: 48px 56px;
  border-radius: 6px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}
.rp-modal__page .report-doc__p { font-size: 0.98rem; }
.rp-modal__page .report-doc__h { font-size: 1.1rem; }
.rp-modal__page .report-doc__sub { font-size: 0.95rem; }
.rp-modal__page .rchart__label { font-size: 0.86rem; }
.rp-modal__page .rchart__track { height: 30px; }
.rp-modal__page .rchart__val { font-size: 0.82rem; }
.rp-modal__page .rd-rec__title { font-size: 1rem; }
.rp-modal__page .rd-rec__why { font-size: 0.9rem; }
.rp-modal__page .report-doc__cta { display: none; }  /* CTA lives on the page, not the print-like view */

@media (max-width: 640px) {
  .rp-modal__scroll { padding: 40px 14px 20px; }
  .rp-modal__page { padding: 28px 22px; }
}

/* ---------- The report document itself ---------- */
.report-doc { max-width: 640px; margin: 0 auto; }

/* Cover block */
.report-doc__cover {
  border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 22px; margin-bottom: 18px;
  background: linear-gradient(180deg, var(--blue-50), var(--white));
}
.report-doc__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.report-doc__logo {
  width: 40px; height: 40px; border-radius: 9px; flex: none;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px;
}
.report-doc__brandname { font-size: 0.82rem; font-weight: 700; color: var(--gray-900); line-height: 1.2; }
.report-doc__kicker { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-top: 2px; }
.report-doc__covermeta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.report-doc__covermeta > div { display: flex; flex-direction: column; gap: 2px; }
.report-doc__covermeta span { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); }
.report-doc__covermeta strong { font-size: 0.82rem; color: var(--gray-900); font-weight: 600; line-height: 1.3; }

.report-doc__section { padding: 18px 0; border-bottom: 1px solid var(--gray-100); }
/* Numbered section headings — clear separation between every section */
.report-doc__h {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 800; letter-spacing: -0.2px;
  color: var(--gray-900); margin: 34px 0 12px;
  padding-top: 26px; border-top: 1px solid var(--gray-200);
}
.report-doc__h:first-of-type { margin-top: 6px; padding-top: 0; border-top: none; }
.report-doc__num {
  flex: none; width: 22px; height: 22px; border-radius: 6px;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800;
}
.report-doc__hsub { font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; color: var(--gray-400); text-transform: uppercase; }
.report-doc__p { font-size: 0.86rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 12px; }
.report-doc__p:last-child { margin-bottom: 0; }
.report-doc__note { font-size: 0.74rem; color: var(--gray-500); margin-bottom: 12px; font-style: italic; }
.report-doc__tier { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 12px; }

/* Ranked horizontal bar chart — reproduces the real report's chart style:
   right-aligned label, grey rounded track, value INSIDE the coloured fill. */
.rchart { display: flex; flex-direction: column; gap: 10px; }
.rchart__row { display: grid; grid-template-columns: 148px 1fr; align-items: center; gap: 12px; }
.rchart__label { font-size: 0.78rem; color: var(--gray-700); text-align: right; line-height: 1.25; }
.rchart__track {
  position: relative; height: 26px; border-radius: 5px;
  background: #E8EAF0; overflow: hidden;
}
.rchart__fill {
  height: 100%; min-width: 30px; border-radius: 5px;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 9px;
}
.rchart__val { font-size: 0.76rem; font-weight: 800; color: #fff; }

.rchart__legend {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--gray-100);
}
.rchart__legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; color: var(--gray-500); font-weight: 600; }
.rchart__legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }

/* Recommendation cards — the payoff that sells the assessment */
.report-doc__recs { display: flex; flex-direction: column; gap: 10px; }
.rd-rec {
  padding: 14px 16px; border-radius: 12px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-left: 3px solid var(--primary);
}
.rd-rec__title { font-size: 0.9rem; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; letter-spacing: -0.2px; }
.rd-rec__whylabel { font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 4px; }
.rd-rec__why { font-size: 0.82rem; line-height: 1.65; color: var(--gray-600); }

/* Blue sub-headings inside a section (aptitude domains, interest environments,
   personality traits, "Detailed Interest Analysis", guidance sub-headings). */
.report-doc__sub {
  font-size: 0.9rem; font-weight: 800; color: var(--primary);
  margin: 18px 0 6px; letter-spacing: -0.1px;
}

/* Callout boxes — blue header bar + light-blue body (Exec Summary sub-sections,
   Deception Scale, Important Considerations, etc.) */
.report-doc__callout {
  margin: 12px 0; border: 1px solid var(--blue-200); border-radius: 12px; overflow: hidden;
}
.report-doc__callout-h {
  background: var(--primary); color: #fff; padding: 8px 14px;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.3px;
}
.report-doc__callout-b { padding: 13px 15px; background: var(--blue-50); }
.report-doc__callout-b p { font-size: 0.84rem; line-height: 1.65; color: var(--gray-700); margin: 0 0 9px; }
.report-doc__callout-b p:last-child { margin-bottom: 0; }
.report-doc__callout--plain { border-color: var(--gray-200); }
.report-doc__callout--plain .report-doc__callout-b { background: var(--gray-50); font-size: 0.8rem; }
.report-doc__callout--plain .report-doc__callout-b p { font-size: 0.8rem; color: var(--gray-600); }

/* Recommendation tables — Programme / Career | Why This Suits You */
.report-doc__tablewrap { overflow-x: auto; margin: 6px 0 12px; }
.report-doc__rectable { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.report-doc__rectable th {
  background: var(--primary); color: #fff; text-align: left; padding: 8px 11px;
  font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; white-space: nowrap;
}
.report-doc__rectable th:first-child { border-top-left-radius: 8px; }
.report-doc__rectable th:last-child { border-top-right-radius: 8px; }
.report-doc__rectable td { border: 1px solid var(--gray-200); padding: 10px 11px; vertical-align: top; color: var(--gray-700); line-height: 1.55; }
.report-doc__rectable td:first-child { font-weight: 700; color: var(--gray-900); width: 32%; }
.report-doc__rectable tbody tr:nth-child(even) td { background: var(--gray-50); }

/* Closing booking CTA at the end of the full sample */
.report-doc__cta {
  margin-top: 20px; padding: 20px;
  border: 1px solid var(--blue-200); border-radius: 14px;
  background: var(--blue-50); text-align: center;
}
.report-doc__cta-title { font-size: 0.92rem; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.report-doc__cta-text { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 14px; }
.rd-rec__cta { text-decoration: none; }

/* Emotional sentence headline (smaller than the short display title) */
.hero__title--headline {
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.4px;
}
/* Longer tagline badge — ease the letter-spacing so it fits on one line */
.hero__badge { letter-spacing: 1.2px; }
/* Persistent floating "users online now" badge — fixed so it stays visible
   while the page scrolls. */
.online-badge {
  position: fixed; left: 18px; bottom: 18px; z-index: 200;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--gray-600);
  border: 1.5px solid var(--gray-200); border-radius: 999px;
  padding: 9px 15px; font-size: 0.86rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
}
.online-badge strong { color: var(--gray-900); font-weight: 800; }
.online-badge__dot {
  width: 9px; height: 9px; border-radius: 50%; background: #22c55e; flex: none;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); animation: heroLivePulse 2s infinite;
}
@keyframes heroLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (max-width: 640px) {
  .online-badge { left: 12px; bottom: 12px; font-size: 0.8rem; padding: 8px 13px; }
}

/* "Why it matters" link under the hero CTAs */
.hero__why-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 30px; font-size: 1.05rem; font-weight: 700; color: var(--primary);
  transition: gap 0.2s var(--ease);
}
.hero__why-link:hover { gap: 9px; }

/* Hero report-tabs header row: eyebrow + "View full reports" link */
.hero__visual-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.hero__visual-head .section__eyebrow { line-height: 1.4; }
/* Blue "pill" button-style label above the sample report viewer */
.hero__visual-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px; line-height: 1;
  box-shadow: 0 4px 12px rgba(27, 94, 169, 0.28);
}
.hero__visual-link {
  font-size: 0.8rem; font-weight: 700; color: var(--primary);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s var(--ease);
}
.hero__visual-link:hover { gap: 8px; }

/* ============================================================================
   HERO teaser "document" card (unused fallback)
   ============================================================================ */
.hero-doc { display: block; position: relative; padding: 10px 10px 0; text-align: center; }
.hero-doc__stack { position: relative; }
.hero-doc__sheet { display: block; border-radius: 16px; }
.hero-doc__sheet--1 {
  position: relative; z-index: 3; background: var(--white);
  border: 1px solid var(--gray-200); box-shadow: 0 24px 60px rgba(17,19,24,0.12);
  padding: 26px 28px;
}
.hero-doc__sheet--2, .hero-doc__sheet--3 {
  position: absolute; left: 0; right: 0; height: 100%;
  background: var(--white); border: 1px solid var(--gray-200);
}
.hero-doc__sheet--2 { z-index: 2; top: 12px; left: 14px; right: 14px; opacity: 0.7; }
.hero-doc__sheet--3 { z-index: 1; top: 24px; left: 28px; right: 28px; opacity: 0.45; }
.hero-doc__brand { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 700; color: var(--gray-900); }
.hero-doc__logo { width: 30px; height: 30px; border-radius: 7px; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 800; letter-spacing: 1px; }
.hero-doc__rule { height: 2px; background: var(--gray-100); margin: 16px 0; }
.hero-doc__lines { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.hero-doc__lines i { height: 8px; border-radius: 100px; background: var(--gray-100); display: block; }
.hero-doc__lines i:first-child { width: 100%; } .hero-doc__lines i:nth-child(2) { width: 90%; }
.hero-doc__bars { display: flex; flex-direction: column; gap: 9px; margin: 18px 0; }
.hero-doc__bars span { height: 12px; width: var(--w); border-radius: 100px; background: linear-gradient(90deg, var(--blue-400), var(--primary)); display: block; }
.hero-doc__bars span:nth-child(3) { background: linear-gradient(90deg, #f0b45a, #e08a2b); }
.hero-doc__bars span:nth-child(5) { background: linear-gradient(90deg, #7E57C2, #5E35B1); }
.hero-doc__cta { position: relative; z-index: 4; margin: 18px auto 0; display: inline-flex; }
.hero-doc:hover .hero-doc__sheet--1 { transform: translateY(-2px); transition: transform 0.3s var(--ease); }

/* ============================================================================
   FULL-HTML SAMPLE-REPORT VIEWER (norm tabs + sample prev/next + report-preview)
   ============================================================================ */
.srv { width: 100%; }
.srv__tabs {
  display: flex; flex-wrap: nowrap; gap: 4px; overflow-x: auto;
  padding: 5px; margin-bottom: 16px;
  background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 100px;
  scrollbar-width: none;
}
.srv__tabs::-webkit-scrollbar { display: none; }
.srv__tab {
  flex: 1 1 0; min-width: 0; white-space: nowrap; cursor: pointer; border: none;
  background: transparent; font: inherit; font-size: 0.78rem; font-weight: 600;
  color: var(--gray-600); padding: 9px 10px; border-radius: 100px; transition: all 0.2s var(--ease);
}
.srv__tab:hover { color: var(--gray-900); }
.srv__tab.is-active { background: var(--white); color: var(--primary); box-shadow: 0 2px 10px rgba(17,19,24,0.08); }

.srv__norm[hidden] { display: none; }
.srv__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.srv__who { font-size: 0.82rem; font-weight: 800; color: var(--gray-900); }
.srv__nav { display: flex; align-items: center; gap: 6px; }
.srv__btn {
  width: 32px; height: 32px; border-radius: 9px; cursor: pointer;
  background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-700);
  font: inherit; font-size: 0.95rem; font-weight: 700; transition: all 0.2s var(--ease);
}
.srv__btn:hover { border-color: var(--primary); color: var(--primary); }
.srv__count { font-size: 0.78rem; font-weight: 700; color: var(--gray-600); min-width: 42px; text-align: center; }
.srv__sample[hidden] { display: none; }
.srv__empty {
  border: 1px dashed var(--gray-300); border-radius: var(--radius-lg);
  padding: 44px 24px; text-align: center; color: var(--gray-500); font-size: 0.9rem; background: var(--white);
}

/* ============================================================================
   ACTUAL-REPORT VIEWER (renders the real .docx, view-only)
   ============================================================================ */
.sviewer { width: 100%; }
.sviewer__tabs {
  display: flex; flex-wrap: nowrap; gap: 4px; overflow-x: auto;
  padding: 5px; margin-bottom: 14px;
  background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 100px;
  scrollbar-width: none;
}
.sviewer__tabs::-webkit-scrollbar { display: none; }
.sviewer__tab {
  flex: 1 1 0; min-width: 0; white-space: nowrap; cursor: pointer; border: none;
  background: transparent; font: inherit; font-size: 0.78rem; font-weight: 600;
  color: var(--gray-600); padding: 9px 10px; border-radius: 100px; transition: all 0.2s var(--ease);
}
.sviewer__tab:hover { color: var(--gray-900); }
.sviewer__tab.is-active { background: var(--white); color: var(--primary); box-shadow: 0 2px 10px rgba(17,19,24,0.08); }

.sviewer__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.sviewer__name { font-size: 0.98rem; font-weight: 800; color: var(--gray-900); letter-spacing: -0.2px; }
.sviewer__sub { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }
.sviewer__ctrls { display: flex; align-items: center; gap: 6px; flex: none; }
.sviewer__btn {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  height: 34px; min-width: 34px; padding: 0 10px; border-radius: 9px;
  background: var(--white); border: 1px solid var(--gray-200); color: var(--gray-700);
  font: inherit; font-size: 0.9rem; font-weight: 700; transition: all 0.2s var(--ease);
}
.sviewer__btn:hover { border-color: var(--primary); color: var(--primary); }
.sviewer__btn--expand { font-size: 0.74rem; font-weight: 700; }
.sviewer__btn--expand svg { color: var(--primary); }
.sviewer__count { font-size: 0.78rem; font-weight: 700; color: var(--gray-600); min-width: 44px; text-align: center; }

.sviewer__doc {
  position: relative; height: 560px; overflow-y: auto; overflow-x: hidden;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--gray-100);
  user-select: none; -webkit-user-select: none;
}
.sviewer__doc .docx-wrapper { background: transparent; padding: 18px 0; transform-origin: top center; }
.sviewer__doc .docx-wrapper > section.docx { box-shadow: 0 6px 24px rgba(17,19,24,0.12); margin-bottom: 18px; }
.sviewer__status { padding: 40px; text-align: center; color: var(--gray-500); font-size: 0.9rem; }

/* Full-size modal for the actual .docx */
.sr-modal { position: fixed; inset: 0; z-index: 2100; display: none; }
.sr-modal.is-open { display: block; }
.sr-modal__backdrop { position: absolute; inset: 0; background: rgba(10,22,40,0.78); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.sr-modal__dialog {
  position: relative; z-index: 1; width: min(1040px, 96vw); height: 94vh; margin: 3vh auto;
  background: var(--gray-100); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.sr-modal__bar {
  flex: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; background: var(--white); border-bottom: 1px solid var(--gray-200);
}
.sr-modal__title { font-size: 0.9rem; font-weight: 800; color: var(--gray-900); }
.sr-modal__close { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 1px solid var(--gray-200); background: var(--white); font-size: 1.25rem; line-height: 1; color: var(--gray-600); }
.sr-modal__close:hover { color: var(--gray-900); }
.sr-modal__doc { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 24px 0; user-select: none; -webkit-user-select: none; }
.sr-modal__doc .docx-wrapper { background: transparent; transform-origin: top center; }
.sr-modal__doc .docx-wrapper > section.docx { box-shadow: 0 8px 30px rgba(0,0,0,0.18); margin: 0 auto 20px; }

/* ============================================================================
   STEPS SIDE PANEL
   ============================================================================ */
.steps-panel__list { list-style: none; position: relative; }
.steps-panel__list::before {
  content: ''; position: absolute; left: 19px; top: 10px; bottom: 10px;
  width: 2px; background: var(--gray-200);
}
.steps-panel__item {
  position: relative; display: flex; gap: 20px;
  padding: 14px 0;
}
.steps-panel__marker {
  flex: none; z-index: 1;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--white); border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem; color: var(--gray-400);
  transition: all 0.3s var(--ease);
}
.steps-panel__item.is-active .steps-panel__marker,
.steps-panel__item:hover .steps-panel__marker {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 8px 22px rgba(45,99,200,0.28);
}
.steps-panel__body { padding-top: 5px; }
.steps-panel__title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.2px; }
.steps-panel__desc { font-size: 0.86rem; color: var(--gray-500); line-height: 1.65; }

/* ============================================================================
   PACKAGES — CORE offer
   ============================================================================ */
.pkg-core {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pkg-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all 0.3s var(--ease);
}
.pkg-card:hover { border-color: var(--primary); box-shadow: 0 16px 44px rgba(45,99,200,0.12); transform: translateY(-4px); }
.pkg-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pkg-card__icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: background 0.3s;
}
.pkg-card:hover .pkg-card__icon { background: var(--blue-100); }
.pkg-card__audience {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--gray-500); background: var(--gray-100);
  padding: 4px 8px; border-radius: 100px; text-align: right; line-height: 1.3;
}
.pkg-card__title { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 2px; }
.pkg-card__levels { font-size: 0.76rem; color: var(--gray-400); font-weight: 600; margin-bottom: 12px; }
.pkg-card__blurb { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.pkg-card__includes { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.pkg-card__includes li { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray-700); }
.pkg-card__includes svg { flex: none; color: var(--primary); }
.pkg-card__cta { margin-top: auto; width: 100%; }

/* ============================================================================
   COUNTRY-SPECIFIC NORMS
   ============================================================================ */
.norm-countries {
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.norm-countries__lead { display: flex; gap: 12px; font-size: 0.92rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 16px; }
.norm-countries__lead strong { color: var(--gray-900); }
.norm-countries__pin { font-size: 1.3rem; line-height: 1; }
.norm-countries__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.norm-countries__chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 600; color: var(--gray-700);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: 6px 13px; border-radius: 100px;
}
.norm-countries__chip--more { color: var(--gray-500); background: transparent; border-style: dashed; }
.norm-countries__flag { font-size: 1rem; }

/* ============================================================================
   HERO ADJUSTMENTS shared by options
   ============================================================================ */
.hero__cta .btn--lg { }
.hero--wide .hero__content { grid-template-columns: 1fr 1.15fr; }

/* Keep the three hero stats on one clean line */
.hero__stats { flex-wrap: nowrap; }
.hero__stat-value { white-space: nowrap; }
.hero__stat-label { line-height: 1.25; }

/* Section intro helper for asymmetric layouts */
.lp-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}
.lp-split__aside { position: sticky; top: 96px; }
.lp-split__aside .section__header { margin-bottom: 28px; }

.lp-split--reverse { grid-template-columns: 1fr 420px; }

/* Eyebrow-on-dark helper */
.section--tint { background: var(--blue-50); }

/* ============================================================================
   OPTION 3 — report-led hero band
   ============================================================================ */
.hero-band { background: var(--blue-950); color: #fff; padding: 130px 0 90px; position: relative; overflow: hidden; }
.hero-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(900px 400px at 20% 0%, rgba(59,125,255,0.22), transparent 60%);
  pointer-events: none;
}
.hero-band__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto 44px; }
.hero-band__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.8); margin-bottom: 26px;
}
.hero-band__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); animation: pulse 2.5s ease infinite; }
.hero-band__title { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.06; color: #fff; margin-bottom: 20px; }
.hero-band__title em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--blue-400); }
.hero-band__subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0 auto 32px; max-width: 540px; }
.hero-band__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-band .report-tabs__nav { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.hero-band .report-tabs__tab { color: rgba(255,255,255,0.7); }
.hero-band .report-tabs__tab:hover { color: #fff; }
.hero-band .report-tabs__tab.is-active { background: #fff; color: var(--primary); }
.hero-band__report { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.hero-band__stats { display: flex; justify-content: center; gap: 48px; margin-top: 40px; position: relative; z-index: 1; }
.hero-band__stats .hero__stat-value { color: #fff; }
.hero-band__stats .hero__stat-label { color: rgba(255,255,255,0.5); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .pkg-core { grid-template-columns: repeat(3, 1fr); }
  .lp-split, .lp-split--reverse { grid-template-columns: 1fr; gap: 32px; }
  .lp-split__aside { position: static; }
  .hero-band__stats { gap: 32px; flex-wrap: wrap; }

  /* Landing hero: stack, and SHOW the sample-report viewer (main.css hides
     .hero__visual on tablet/mobile) full-width under the hero copy. */
  .hero.hero--wide { min-height: auto; padding-top: 104px; }
  .hero--wide .hero__content { grid-template-columns: 1fr; gap: 26px; }
  /* min-width:0 lets the grid columns shrink instead of overflowing to their
     content's min-content width. */
  .hero--wide .hero__content > * { min-width: 0; max-width: 100%; }
  .hero--wide .hero__visual { display: block; text-align: left; margin-top: 4px; }
}

@media (max-width: 640px) {
  .pkg-core { grid-template-columns: 1fr; }

  /* ---- Kill horizontal overflow in the hero ---- */
  html, body { overflow-x: hidden; }
  .hero.hero--wide { padding: 90px 0 42px; }
  .hero__title, .hero__title--headline { font-size: clamp(1.5rem, 6.2vw, 1.95rem); line-height: 1.2; overflow-wrap: break-word; }
  .hero__subtitle { max-width: 100%; }
  .hero__stats { flex-wrap: wrap; gap: 16px 24px; justify-content: flex-start; }
  .hero__stat { min-width: 0; }
  .hero__stat-value { white-space: normal; font-size: 1.35rem; }
  .hero__stat-label { letter-spacing: 1px; }
  .hero__badge { white-space: normal; text-align: left; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  /* ---- Navbar: compact so logo + actions + menu button fit ---- */
  .navbar__logo span { display: none; }
  .navbar__actions { gap: 8px; }
  .navbar__actions .btn { padding: 6px 12px; font-size: 0.76rem; }

  /* ---- Sample-report viewer ---- */
  .srv__tabs { flex-wrap: nowrap; }
  .srv__tab { flex: 0 0 auto; padding: 8px 13px; }
  .srv__bar { flex-wrap: wrap; gap: 8px; }
  .report-preview__scroll { max-height: 460px; padding: 16px 13px 32px; }
  .rchart__row { grid-template-columns: 88px 1fr; gap: 8px; }
  .rchart__label { font-size: 0.7rem; }
  .report-doc__cover { padding: 15px; }
  .report-doc__covermeta { grid-template-columns: 1fr; gap: 8px; }
  .report-doc__rectable { font-size: 0.78rem; }
  .report-doc__rectable td:first-child { width: 40%; }
  .report-doc__callout-b { padding: 11px 12px; }

  /* ---- Full-size modals fit small screens ---- */
  .rp-modal__dialog, .sr-modal__dialog { width: 96vw; height: 94vh; margin: 3vh auto; }
  .rp-modal__scroll { padding: 28px 12px; }
  .rp-modal__page { padding: 20px 14px; }

  /* ---- Preview-page teaser tabs + switcher ---- */
  .report-tabs__nav { flex-wrap: nowrap; overflow-x: auto; border-radius: 16px; }
  .report-tabs__tab { flex: 0 0 auto; }
  .lp-switch { left: 12px; right: 12px; transform: none; justify-content: center; flex-wrap: wrap; }
}
