/* ============================================================
   Castle Currency Exchange Inc.
   css/main.css — Complete Design System
   Built per CastleFX_Website_Design_Spec_V1.pdf (locked)
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors — locked per Design Spec V1 / Pantone source values */
  --color-navy-deep:  #0D2053;   /* Hero, footer, nav — Pantone 2768        */
  --color-navy-mid:   #1B3A6B;   /* Cards, dark alternates                  */
  --color-wine:       #8E1244;   /* ALL primary CTA buttons — Pantone 215   */
  --color-wine-dark:  #6E0E34;   /* Hover state for wine buttons            */
  --color-olive:      #EEEEDC;   /* Alternating section bg — 20% Pantone 5767 */
  --color-gold:       #C9A84C;   /* Premium / Pro tier only                 */
  --color-white:      #FFFFFF;
  --color-off-white:  #F8F8F5;   /* Page background — warm                  */
  --color-charcoal:   #1E2832;   /* Primary body text                       */
  --color-slate:      #6B7280;   /* Secondary text, captions                */
  --color-border:     #E0E0D4;   /* Card borders, dividers — warm           */

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, Arial, sans-serif;

  /* Type Scale */
  --text-xs:    12px;
  --text-sm:    14px;
  --text-base:  16px;
  --text-md:    18px;
  --text-lg:    20px;
  --text-xl:    24px;
  --text-2xl:   30px;
  --text-3xl:   36px;

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;

  /* Line Heights */
  --lh-snug:    1.3;
  --lh-relaxed: 1.7;

  /* Spacing Scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  /* Border Radii */
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* Shadows */
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;

  /* Layout */
  --max-width: 1200px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--color-charcoal);
  background-color: var(--color-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

p + p {
  margin-top: var(--sp-4);
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--lh-snug);
}


/* ============================================================
   3. LAYOUT — CONTAINER & SECTIONS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 80px;
}

/* Section Color Variants — Design Spec §2.2 rhythm */
.section--navy {
  background-color: var(--color-navy-deep);
}

.section--white {
  background-color: var(--color-white);
}

.section--off-white {
  background-color: var(--color-off-white);
}

.section--olive {
  background-color: var(--color-olive);
}


/* ============================================================
   4. SECTION HEADER & TYPOGRAPHY COMPONENTS
   ============================================================ */
.section__header {
  margin-bottom: 48px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__subtitle {
  margin-inline: auto;
}

/* Section Label — eyebrow above section heading */
.section__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-wine);
  margin-bottom: 16px;
}

/* Section H2 */
.section__title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: var(--fw-semi);
  line-height: var(--lh-snug);
  color: var(--color-navy-deep);
}

.section--navy .section__title {
  color: var(--color-white);
}

/* Section subtitle */
.section__subtitle {
  font-size: var(--text-md);
  color: var(--color-slate);
  max-width: 640px;
  margin-top: 16px;
  line-height: var(--lh-relaxed);
}

.section--navy .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Body prose — narrative paragraphs on light backgrounds */
.body-prose {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
  max-width: 760px;
  margin-bottom: var(--sp-5);
}

.body-prose:last-of-type {
  margin-bottom: 0;
}

.body-prose a {
  color: var(--color-navy-deep);
  font-weight: var(--fw-semi);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.body-prose a:hover {
  color: var(--color-wine);
}

/* Centered constrained list — e.g. Proven Results */
.check-list--centered {
  max-width: 760px;
  margin-inline: auto;
  margin-top: var(--sp-5);
}

/* "Full case studies available" style note */
.results-footnote {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: var(--text-sm);
  color: var(--color-slate);
}

.results-footnote a {
  color: var(--color-navy-deep);
  font-weight: var(--fw-semi);
  text-decoration: underline;
}

.results-footnote a:hover {
  color: var(--color-wine);
}

/* Body prose paragraphs inside navy sections — left-aligned narrative text */
.section--navy .body-prose {
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
}

/* Body paragraphs inside navy sections */
.section--navy .section__body {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
  text-align: center;
}

/* Cards inside navy sections — white background for contrast */
.section--navy .card,
.section--navy .service-card,
.section--navy .feature-card,
.section--navy .pricing-card,
.section--navy .workshop-card,
.section--navy .guide-card,
.section--navy .resource-card {
  background-color: #FFFFFF;
}

/* Pricing lines inside navy sections */
.pricing-lines {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  text-align: center;
}

.pricing-lines__item {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--lh-relaxed);
}


/* ============================================================
   5. BUTTONS — CTA SYSTEM (Design Spec §4 — LOCKED)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

/* Primary — Wine Crimson filled. ONLY filled button color. */
.btn--primary {
  background-color: var(--color-wine);
  color: var(--color-white);
  border-color: var(--color-wine);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-wine-dark);
  border-color: var(--color-wine-dark);
}

/* Secondary — Navy outlined */
.btn--secondary {
  background-color: transparent;
  color: var(--color-navy-deep);
  border-color: var(--color-navy-deep);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: var(--color-navy-deep);
  color: var(--color-white);
}

/* Secondary Light — white outlined (dark backgrounds) */
.btn--secondary-light {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--secondary-light:hover,
.btn--secondary-light:focus-visible {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Ghost — no border, no fill */
.btn--ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-navy-deep);
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--text-sm);
}

.btn--ghost:hover {
  color: var(--color-wine);
  text-decoration: underline;
}

/* Rate Alert CTA — low-commitment lead capture */
.btn--alert {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-charcoal);
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}

.btn--alert:hover {
  border-color: var(--color-slate);
}

/* Size modifiers */
.btn--lg {
  padding: 16px 36px;
  font-size: var(--text-md);
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* CTA button row — flex group for multiple CTAs */
.cta-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}


/* ============================================================
   6. SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--color-wine);
  color: var(--color-white);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-lg);
  font-weight: var(--fw-semi);
  font-size: var(--text-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
  text-decoration: none;
}

.skip-link:focus {
  top: var(--sp-4);
}


/* ============================================================
   7. NAVIGATION (Design Spec §5.1 — LOCKED)
   Nav background: Navy Deep always. Sticky. No transparency.
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

/* Desktop Nav Links */
.nav__links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: 16px;
  align-items: center;
}

.nav__link {
  display: block;
  padding: 8px 10px;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__dropdown-toggle.is-active {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
}

/* Dropdown container */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav__dropdown-toggle:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav__dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.nav__dropdown.is-open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Dropdown menu — navy bg, white text */
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background-color: var(--color-navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 8px;
  min-width: 260px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 200;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav__dropdown-item + .nav__dropdown-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__dropdown-item:hover,
.nav__dropdown-item.is-active {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

/* Nav Actions — right side */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 0;
  flex-shrink: 0;
}

.nav__login {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav__login:hover {
  color: var(--color-white);
}

/* Hamburger — mobile only */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Nav — full-screen overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--color-navy-deep);
  z-index: 99;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
  overflow-y: auto;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-link {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition-fast);
  display: block;
}

.nav__mobile-link:hover {
  color: var(--color-white);
}

/* Sub-links indented under section */
.nav__mobile-sub {
  padding-left: var(--sp-5);
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  margin-left: var(--sp-2);
}

.nav__mobile-sub .nav__mobile-link {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
}

.nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}


/* ============================================================
   8. HERO (Design Spec §6 Section 1)
   ============================================================ */
.hero {
  padding-block: 96px 80px;
  background-color: var(--color-navy-deep);
}

.hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-snug);
  max-width: 760px;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.hero__body {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  line-height: var(--lh-relaxed);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}


/* ============================================================
   8b. PAGE HEADER — Interior pages (lighter weight than homepage hero)
   ============================================================ */
.page-header {
  background-color: var(--color-navy-deep);
  padding-block: 56px;
  text-align: center;
}

.page-header__eyebrow {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-4);
}

.page-header__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-4);
  max-width: 720px;
  margin-inline: auto;
}

.page-header__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}


/* ============================================================
   9. TRUST BAR (Hero section — below CTAs)
   ============================================================ */
.trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-5);
  padding-top: var(--sp-8);
  margin-top: var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.trust-bar__item svg {
  width: 16px;
  height: 16px;
  color: var(--color-wine);
  flex-shrink: 0;
}

.trust-bar__sep {
  color: var(--color-wine);
  font-size: 16px;
  opacity: 0.6;
  user-select: none;
}


/* ============================================================
   10. SERVICE CARDS (Section 3 — What We Do)
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-fast);
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--sp-5);
  color: var(--color-navy-deep);
  flex-shrink: 0;
}

.service-card__title {
  font-size: 22px;
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-snug);
}

.service-card__body {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--sp-5);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-wine);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-card__link:hover {
  gap: 8px;
  text-decoration: underline;
}


/* ============================================================
   11. COMPARISON TABLE — Old Way vs CastleFX Way (Section 4)
   ============================================================ */
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: var(--sp-8);
}

.compare-col {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.compare-col__header {
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-col--old {
  background-color: var(--color-white);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  border-right: none;
}

.compare-col--old .compare-col__header {
  background-color: #E4E4E4;
  color: var(--color-charcoal);
}

.compare-col--new .compare-col__header {
  background-color: var(--color-wine);
  color: var(--color-white);
}

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
  border-bottom: 1px solid var(--color-border);
}

.compare-row:last-child {
  border-bottom: none;
}

/* No alternating row backgrounds — tight table style */

.compare-row__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-col--old .compare-row__icon {
  color: #B91C1C;
}

/* Right column — locked navy treatment */
.compare-col--new {
  background-color: var(--color-navy-deep);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.compare-col--new .compare-col__header {
  color: var(--color-white);
}

.compare-col--new .compare-row {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.compare-col--new .compare-row__icon {
  color: var(--color-gold);
}


/* ============================================================
   11B. CHECK-LIST (bullet list with icon + text)
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
}

.check-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-wine);
}


/* ============================================================
   11C. WON'T / WILL TWO-COLUMN LAYOUT
   ============================================================ */
.won-will-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}

.won-will-col {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
}

.won-will-col__title {
  font-size: var(--text-md);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-snug);
}

/* Cross/X icon override for "What You Won't Get" column */
.check-list--cross li svg {
  color: #B91C1C;
}

/* Check-list on navy backgrounds */
.check-list--navy li {
  color: rgba(255, 255, 255, 0.85);
}

.check-list--navy li svg {
  color: var(--color-gold);
}


/* ============================================================
   12. WHO WE HELP GRID (Section 5)
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background-color: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}

.who-item__icon {
  width: 20px;
  height: 20px;
  color: var(--color-wine);
  flex-shrink: 0;
  margin-top: 2px;
}

.who-item__text {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
}


/* ============================================================
   13. FEATURES GRID (Section 6 — What You Get)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8) var(--sp-6);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.feature-item__icon {
  width: 36px;
  height: 36px;
  color: var(--color-wine);
  flex-shrink: 0;
}

.feature-item__title {
  font-size: 17px;
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  line-height: var(--lh-snug);
}

.feature-item__body {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
}


/* ============================================================
   14. TRUST SECTION (Section 7 — Why Trust CastleFX)
   ============================================================ */
.trust-layout {
  display: block;   /* Single column — no headshot placeholder */
}

.trust-content__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-wine);
  margin-bottom: var(--sp-4);
}

.trust-content__title {
  font-size: clamp(24px, 3vw, var(--text-2xl));
  font-weight: var(--fw-semi);
  color: var(--color-white);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-6);
}

.trust-content__body {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
  max-width: 720px;
}

/* Credential badges row */
.trust-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  margin-bottom: var(--sp-8);
}

.trust-credential {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
}

.trust-credential__icon {
  width: 18px;
  height: 18px;
  color: var(--color-wine);
  flex-shrink: 0;
}

/* Proven Results box */
.trust-proven {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  margin-top: var(--sp-6);
  max-width: 720px;
}

.trust-proven__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-4);
}

.trust-proven__body {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.trust-proven__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-wine);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.trust-proven__link:hover {
  gap: var(--sp-3);
  text-decoration: underline;
}

/* trust-proven on light backgrounds (white / olive sections) */
.section--white .trust-proven,
.section--olive .trust-proven {
  border-color: rgba(0, 0, 0, 0.08);
  background-color: rgba(0, 0, 0, 0.03);
}

.section--white .trust-proven__title,
.section--olive .trust-proven__title {
  color: var(--color-wine);
}

.section--white .trust-proven__body,
.section--olive .trust-proven__body {
  color: var(--color-charcoal);
}

.section--white .trust-proven__link,
.section--olive .trust-proven__link {
  color: var(--color-navy-deep);
}

.section--white .trust-proven__link svg,
.section--olive .trust-proven__link svg {
  color: var(--color-navy-deep);
}


/* ============================================================
   15. STATS BAR (inside Section 7)
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__number {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-item__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ============================================================
   16. FAQ CARDS (Section 8 — Questions Businesses Ask)
   ============================================================ */
.faq-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.faq-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-navy-deep);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--sp-6) var(--sp-8);
}

.faq-card__question {
  font-size: 18px;
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-4);
}

.faq-card__answer {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
}


/* ============================================================
   17. FREE CURRENCY REVIEW SECTION (Section 9)
   ============================================================ */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-12);
  align-items: start;
}

/* Left column checklist */
.review-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.review-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
}

.review-list__item svg {
  width: 20px;
  height: 20px;
  color: var(--color-wine);
  flex-shrink: 0;
  margin-top: 2px;
}

/* "For Businesses That Want to Go Deeper" block */
.review-deeper {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-border);
}

.review-deeper__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
}

.review-deeper__body {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--lh-relaxed);
}

/* Right CTA card */
.review-cta-side {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: sticky;
  top: 88px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.review-cta-side__tagline {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-wine);
  margin-bottom: var(--sp-4);
  display: block;
}

.review-cta-side__title {
  font-size: 20px;
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-4);
}

.review-cta-side__body {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}


/* ============================================================
   18. FOOTER CTA SECTION (Section 10)
   ============================================================ */
.footer-cta {
  background-color: var(--color-navy-mid);
  padding-block: 80px;
}

.footer-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.footer-cta__block {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.footer-cta__label {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-cta__action {
  display: flex;
  justify-content: center;
}

.footer-cta__note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-relaxed);
  max-width: 300px;
}

.footer-cta__headline {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: var(--fw-semi);
  color: var(--color-white);
  line-height: var(--lh-snug);
  text-align: center;
  margin-bottom: var(--sp-8);
}


/* ============================================================
   19. SITE FOOTER (Design Spec §5.2)
   ============================================================ */
.site-footer {
  background-color: var(--color-navy-deep);
  padding-block: 64px 32px;
}

/* 4-column footer grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Col 1: Brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.footer__logo-img {
  height: 36px;
  width: auto;
}

.footer__logo-text {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-relaxed);
  max-width: 260px;
}

/* Column headings */
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--sp-4);
}

/* Footer nav links */
.footer__nav-link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition-fast);
  line-height: var(--lh-relaxed);
}

.footer__nav-link:hover {
  color: var(--color-white);
}

/* Footer trust bar — above bottom strip */
.footer__trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-block: var(--sp-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.footer__trust-sep {
  color: var(--color-wine);
  opacity: 0.5;
  user-select: none;
  font-size: 14px;
}

/* Footer bottom strip */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--lh-relaxed);
}

.footer__legal {
  display: flex;
  gap: var(--sp-5);
}

.footer__legal-link {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* "Castle Currency Exchange Inc." powered-by line */
.footer__powered {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--lh-relaxed);
}

/* Footer contact row (phone, email) */
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-gold);
}

/* Service card link arrow — constrain SVG from global display:block reset */
.service-card__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Regulatory disclaimer strip */
.footer__disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: var(--lh-relaxed);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: var(--sp-5);
}


/* ============================================================
   20. FORM COMPONENT
   ============================================================ */
.contact-info {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--color-border);
}

.contact-info__name {
  font-size: var(--text-md);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-2);
  line-height: var(--lh-snug);
}

.contact-info__link {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy-deep);
  text-decoration: none;
}

.contact-info__link:hover {
  text-decoration: underline;
}

/* Centered form container — constrains standalone forms to readable width */
.form-wrapper {
  max-width: 560px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-charcoal);
  margin-bottom: var(--sp-2);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-navy-mid);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: var(--lh-relaxed);
}

/* Centered CTA button group */
.cta-actions--center {
  justify-content: center;
}

/* Form field row — two columns side by side */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

/* Required field asterisk */
.form-required {
  color: var(--color-wine);
  margin-left: 2px;
}

/* Select input */
.form-select {
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-select:focus {
  border-color: var(--color-navy-mid);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.12);
}

/* Inline optional/note text within a form label */
.form-label-note {
  font-size: var(--text-xs);
  font-weight: var(--fw-normal);
  color: var(--color-slate);
  margin-left: var(--sp-1);
}

/* Form privacy note */
.form-privacy-note {
  font-size: var(--text-xs);
  color: var(--color-slate);
  margin-top: var(--sp-4);
  line-height: var(--lh-relaxed);
}

.form-privacy-note a {
  color: var(--color-navy-deep);
  text-decoration: underline;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Two-column layout: info left, form right */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}

/* Left panel heading */
.contact-info__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-6);
}

/* Each contact row (icon + text) */
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--color-border);
}

.contact-info__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

/* Icon container */
.contact-info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background-color: rgba(13, 32, 83, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-navy-deep);
}

/* Label above value (e.g. "Phone", "Email") */
.contact-info__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-slate);
  margin-bottom: var(--sp-1);
}

/* Primary value line */
.contact-info__value {
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--color-navy-deep);
  line-height: var(--lh-snug);
}

.contact-info__value a {
  color: var(--color-navy-deep);
  text-decoration: none;
}

.contact-info__value a:hover {
  color: var(--color-wine);
  text-decoration: underline;
}

/* Secondary descriptor below value */
.contact-info__sub {
  font-size: var(--text-sm);
  color: var(--color-slate);
  margin-top: var(--sp-1);
  line-height: var(--lh-relaxed);
}

/* Company info box */
.contact-info__box {
  margin-top: var(--sp-8);
  padding: var(--sp-6);
  background-color: var(--color-off-white);
  border-radius: var(--radius-lg);
}

.contact-info__box-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
}

/* Phone number bot-protection wrapper */
.phone-protect {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.phone-protect span {
  display: inline;
}

/* Form card on right side */
.contact-form-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
}

.contact-form-card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-2);
}

.contact-form-card__sub {
  font-size: var(--text-base);
  color: var(--color-slate);
  margin-bottom: var(--sp-8);
  line-height: var(--lh-relaxed);
}

/* Dual CTA cards below form */
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-16);
}

.contact-option {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  text-align: center;
}

.contact-option__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-4);
  color: var(--color-navy-deep);
}

.contact-option__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-3);
}

.contact-option__body {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}


/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */
.u-mb-12 {
  margin-bottom: var(--sp-12);
}

.u-text-center {
  text-align: center;
}


/* ============================================================
   REGISTER-WEBINAR PAGE
   ============================================================ */

/* Coming Soon banner */
.coming-soon-banner {
  background-color: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.coming-soon-banner svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  margin-top: 2px;
}

/* Webinar preview list */
.webinar-preview-list {
  margin-bottom: var(--sp-10);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.webinar-preview-item {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.webinar-preview-item:last-child {
  border-bottom: none;
}

.webinar-preview-item__number {
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold);
}

.webinar-preview-item__title {
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  line-height: var(--lh-snug);
}

.webinar-preview-item__desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--lh-relaxed);
}


/* ============================================================
   WORKSHOP DETAIL PAGES
   ============================================================ */

/* Meta row in page-header (duration · price · format · prereq) */
.workshop-meta {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.75);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-8);
  letter-spacing: 0.01em;
}

/* Registration page — centered content column */
.register-centered {
  max-width: 640px;
  margin: 0 auto;
}

/* Trust-bar variant for light/white section backgrounds */
.trust-bar--light {
  border-top-color: rgba(13, 32, 83, 0.12);
  justify-content: center;
}

.trust-bar--light .trust-bar__item {
  color: var(--color-charcoal);
}

.trust-bar--light .trust-bar__sep {
  color: var(--color-slate);
  opacity: 0.5;
}

/* Registration page — button + note block below steps */
.register-step-actions {
  margin-top: var(--sp-8);
}

/* Registration page — small italic note lines */
.register-step-note {
  margin-top: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--color-slate);
  font-style: italic;
}

/* Registration page — numbered process steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  counter-reset: steps;
}

.process-steps--continued {
  counter-reset: steps 3;
}

.process-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
}

.process-steps li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-navy-deep);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

/* ============================================================
   STRATEGIES PAGE
   ============================================================ */

/* Two-paths side-by-side cards */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: stretch;
}

.path-card {
  border: 1.5px solid rgba(13, 32, 83, 0.18);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

/* Consulting path — distinct background, identical frame */
.path-card--consulting {
  border-color: rgba(13, 32, 83, 0.18);
  background-color: var(--color-off-white);
}

.path-card__eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-wine);
  margin-bottom: var(--sp-3);
}

.path-card__tagline {
  font-size: var(--text-lg);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-6);
}

/* Subscription pricing table */
.pricing-table {
  overflow-x: auto;
  margin-top: var(--sp-8);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-navy-deep);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.pricing-table table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.pricing-table thead th {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-white);
  background-color: var(--color-navy-deep);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-table thead th:first-child {
  background-color: var(--color-navy-mid);
  color: rgba(255, 255, 255, 0.75);
}

.pricing-table thead th:last-child {
  background-color: var(--color-wine);
  border-right: none;
}

.pricing-table tbody td {
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  vertical-align: top;
}

.pricing-table tbody td:last-child {
  border-right: none;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody td:first-child {
  font-weight: var(--fw-medium);
  color: var(--color-navy-deep);
  background-color: var(--color-off-white);
}

/* Strategy detail columns (What's in Each Strategy?) */
.strategies-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.strategies-detail__title {
  font-size: var(--text-md);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-snug);
}

/* How to Subscribe columns */
.subscribe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: stretch;
  margin-top: var(--sp-8);
}

/* Subscribe column cards — CSS-only, no HTML class needed */
.subscribe-grid > div {
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}

/* Stack multiple CTA buttons with gap between them */
.subscribe-grid .cta-actions + .cta-actions {
  margin-top: var(--sp-3);
}

.subscribe-col__heading {
  font-size: var(--text-md);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-snug);
}

.subscribe-col__note {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--lh-relaxed);
  margin-top: var(--sp-4);
}

.subscribe-col__note a {
  color: var(--color-navy-deep);
  font-weight: var(--fw-medium);
  text-decoration: underline;
}

.subscribe-col__note a:hover {
  color: var(--color-wine);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  margin-top: var(--sp-2);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--sp-6);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-3);
}

.faq-item__answer {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.faq-item__answer a {
  color: var(--color-navy-deep);
  font-weight: var(--fw-medium);
  text-decoration: underline;
}

/* Strategies subscription disclaimer */
.strategies-disclaimer {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--lh-relaxed);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-border);
  max-width: 760px;
}


/* ============================================================
   BOOK-A-CALL PAGE (Currency Review)
   ============================================================ */

/* Authority block — photo left, credentials right */
.authority-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.authority-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

.authority-credentials__name {
  font-size: var(--text-xl);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-1);
}

.authority-credentials__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-wine);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-5);
}

.authority-credentials__bio {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

/* Review phase cards — Before / During / After */
.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: stretch;
}

.review-card {
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}

.review-card__stage {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: var(--sp-4);
}

.review-card__stage--before {
  background-color: rgba(13, 32, 83, 0.08);
  color: var(--color-navy-deep);
}

.review-card__stage--during {
  background-color: rgba(142, 18, 68, 0.08);
  color: var(--color-wine);
}

.review-card__stage--after {
  background-color: rgba(201, 168, 76, 0.12);
  color: #7a5f1a;
}

.review-card__heading {
  font-size: var(--text-md);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-snug);
}

.review-card__body {
  flex: 1;
}

/* Pull quote / testimonial block */
.review-quote {
  margin-top: var(--sp-10);
  padding: var(--sp-8) var(--sp-10);
  background-color: rgba(13, 32, 83, 0.04);
  border-left: 4px solid var(--color-wine);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.review-quote__text {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--color-navy-deep);
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin-bottom: var(--sp-4);
}

.review-quote__attribution {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-slate);
  letter-spacing: 0.02em;
}

/* Checkbox group inside intake form */
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-1);
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  cursor: pointer;
  line-height: var(--lh-relaxed);
}

.form-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-navy-deep);
  cursor: pointer;
}

/* Label above Calendly embed */
.calendly-section-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-wine);
  margin-bottom: var(--sp-3);
}

/* Calendly embed container */
.calendly-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* Book page: fit/not-fit two-column layout */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.fit-col__heading {
  font-size: var(--text-md);
  font-weight: var(--fw-semi);
  color: var(--color-navy-deep);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-snug);
}


/* ============================================================
   22. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {

  .section {
    padding-block: 64px;
  }

  /* 3-col grids → 1 col */
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Trust section: already block, no change needed */

  /* Stats bar → 3 col */
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3n) {
    border-right: none;
  }

  /* Review layout → single column */
  .review-layout {
    grid-template-columns: 1fr;
  }

  /* Contact layout → single column */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Contact options → single column */
  .contact-options {
    grid-template-columns: 1fr;
  }

  /* Form row → single column on tablet */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Strategies paths → single column */
  .paths-grid {
    grid-template-columns: 1fr;
  }

  /* Strategies detail + subscribe → single column */
  .strategies-detail-grid,
  .subscribe-grid {
    grid-template-columns: 1fr;
  }

  /* Review phase cards → single column */
  .review-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Fit/not-fit grid → single column */
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .review-cta-side {
    position: static;
    max-width: 500px;
  }

  /* Footer CTA → single column */
  .footer-cta__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }

  /* Footer grid → 2 col */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ── 768px — Tablet portrait ── */
@media (max-width: 768px) {

  .section {
    padding-block: 48px;
  }

  .hero {
    padding-block: 64px 48px;
  }

  .hero__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  /* Hide desktop nav, show hamburger */
  .nav__links {
    display: none;
  }

  .nav__actions {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Who grid → 1 col */
  .who-grid {
    grid-template-columns: 1fr;
  }

  /* Authority grid → single column */
  .authority-grid {
    grid-template-columns: 1fr;
  }

  /* Features grid → 2 col maintained */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Compare table → 1 col */
  .compare-table {
    grid-template-columns: 1fr;
    row-gap: var(--sp-4);
  }

  .compare-col--old { border-radius: var(--radius-xl); border-right: 1px solid var(--color-border); }
  .compare-col--new { border-radius: var(--radius-xl); }

  /* Won't/Will grid → 1 col */
  .won-will-grid {
    grid-template-columns: 1fr;
  }

  /* Stats bar → 2 col */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  /* FAQ cards */
  .faq-card {
    padding: var(--sp-5) var(--sp-6);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar {
    gap: var(--sp-3);
  }

  /* Services grid — already 1 col at 1024, keep */
  .services__grid {
    max-width: none;
  }
}

/* ── 480px — Mobile ── */
@media (max-width: 480px) {

  .container {
    padding-inline: 16px;
  }

  .section {
    padding-block: 40px;
  }

  .hero {
    padding-block: 48px 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-cta__block {
    padding: var(--sp-8) var(--sp-5);
  }

  .review-cta-side {
    padding: var(--sp-6);
  }

  .footer__trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .faq-card {
    padding: var(--sp-5);
  }

  .nav__mobile {
    padding: 72px 24px 24px;
  }
}
