/* ============================================================
   SIMUVALIDATE — SHARED STYLESHEET
   Brand: SimuValidate | Legal: Noble Mindset LLC
   simuvalidate.com | contact@simuvalidate.com
   ============================================================ */

/* FONTS — loaded via <link> in each page <head> (Google Fonts).
   Approved families only: Barlow Condensed (600/700/800) + IBM Plex Sans (400/500/600). */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: #FFFFFF;
  color: #0A1628;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:       #0A1628;
  --navy-mid:   #0F2040;
  --navy-light: #152238;
  --blue:       #1352A8;
  --blue-light: #1A6FCC;
  --blue-pale:  #EBF1FB;
  --accent:     #E8B400;
  --accent-lt:  #FFD020;
  --gray-dark:  #1E2B3C;
  --gray-mid:   #3D5068;
  --gray:       #6B7C93;
  --gray-light: #B8C4D0;
  --off-white:  #F4F6F9;
  --white:      #FFFFFF;
  --border:     #DDE3EC;
  --danger:     #EF4444;
  --success:    #22C55E;
  --warning:    #E8B400;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;

  --max-w:        1200px;
  --section-pad:  96px 24px;
  --radius:       4px;
  --radius-lg:    8px;
  --transition:   0.2s ease;
  --shadow:       0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg:    0 8px 40px rgba(10,22,40,0.16);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-size: clamp(44px, 7vw, 84px); font-weight: 800; }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 28px); }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 15px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; }
p  { color: var(--gray-mid); line-height: 1.75; }

.label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
/* Gold labels only on dark navy backgrounds (WCAG AA safe); blue on light. */
.section--dark .label,
.page-hero .label,
.about-hero .label,
.contact-hero .label,
.recovery .label { color: var(--accent); }
.section--gray .label { color: var(--blue); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--gray-light); }
.section--mid  { background: var(--navy-mid); color: var(--white); }
.section--mid  h1, .section--mid  h2, .section--mid  h3, .section--mid  h4 { color: var(--white); }
.section--mid  p { color: var(--gray-light); }
.section--gray { background: var(--off-white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--navy); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-lt); border-color: var(--accent-lt); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.btn--blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-light); border-color: var(--blue-light); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: 8px; top: -48px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 8px; }

/* WHITE PREMIUM HEADER */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--navy); background: var(--off-white); }
.nav__links a[aria-current="page"] {
  color: var(--blue);
  background: var(--blue-pale);
  font-weight: 600;
}
.nav__cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--blue-light); }
.nav__hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--radius);
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0; transition: var(--transition);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav__mobile a {
  display: block;
  color: var(--gray-mid);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a[aria-current="page"] { color: var(--blue); font-weight: 600; }
.nav__mobile a:last-child { border: none; }
.nav__mobile .nav__cta {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 12px;
  font-size: 15px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 80px 24px 72px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(19,82,168,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero__sub {
  color: var(--gray-light);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__note {
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
}
.hero__card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.hero__card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__stat { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hero__stat:last-child { border: none; padding-bottom: 0; }
.hero__stat-val {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label { font-size: 13px; color: var(--gray-light); line-height: 1.4; }
.hero__disclaimer {
  font-size: 11px;
  color: var(--gray-light);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}
.trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
  justify-content: center;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.02em;
}
.trust__icon { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { padding: var(--section-pad); }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: var(--max-w); margin: 0 auto; }
.problem__intro { font-size: 18px; color: var(--gray-mid); line-height: 1.7; }
.problem__list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.problem__item { display: flex; gap: 16px; align-items: flex-start; }
.problem__item-icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.problem__item-icon svg { width: 20px; height: 20px; }
.problem__item-text { display: flex; flex-direction: column; gap: 4px; }
.problem__item-text strong { font-size: 15px; font-weight: 600; color: var(--navy); }
.problem__item-text span { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services { padding: var(--section-pad); background: var(--off-white); }
.services__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.services__header p { font-size: 17px; margin-top: 12px; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow);
}
.service-card__badge {
  position: absolute; top: 0; right: 0;
  background: var(--blue); color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px;
  border-bottom-left-radius: var(--radius);
}
.service-card__head { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.service-card__tier {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
}
.service-card__name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--navy);
}
.service-card__price span {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  color: var(--gray-mid); display: block; margin-top: 2px;
}
.service-card__robot-limit {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  margin-top: 10px;
}
.service-card__desc { font-size: 14px; color: var(--gray-mid); margin-top: 10px; line-height: 1.6; }
.service-card__body { padding: 20px 28px; flex: 1; }
.service-card__deliverables {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-mid); margin-bottom: 14px;
}
.service-card__list { display: flex; flex-direction: column; gap: 9px; }
.service-card__item { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--gray-mid); line-height: 1.4; }
.service-card__check { width: 16px; height: 16px; flex-shrink: 0; color: var(--success); margin-top: 1px; }
.service-card__foot { padding: 20px 28px; border-top: 1px solid var(--border); }
.service-card__cta {
  display: block; text-align: center;
  padding: 11px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--blue);
  color: var(--blue);
  transition: var(--transition);
}
.service-card__cta:hover,
.service-card--featured .service-card__cta { background: var(--blue); color: var(--white); }

/* ============================================================
   PAYMENT PROCESS
   ============================================================ */
.payment { padding: var(--section-pad); }
.payment__inner { max-width: var(--max-w); margin: 0 auto; }
.payment__header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.payment__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.payment__steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--blue-light), var(--border));
}
.payment__step { text-align: center; padding: 0 12px; position: relative; }
.payment__step-num {
  width: 40px; height: 40px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: var(--blue);
  position: relative; z-index: 1;
}
.payment__step:last-child .payment__step-num { background: var(--blue); color: var(--white); border-color: var(--blue); }
.payment__step h5 { font-size: 13px; color: var(--navy); margin-bottom: 6px; }
.payment__step p { font-size: 12px; color: var(--gray-mid); line-height: 1.5; }
.payment__note {
  text-align: center;
  margin-top: 40px;
  padding: 16px 24px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process { padding: var(--section-pad); }
.process__header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; max-width: var(--max-w); margin: 0 auto; }
.process__steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6), rgba(255,255,255,0.2));
}
.process__step { text-align: center; padding: 0 20px; position: relative; }
.process__step-num {
  width: 48px; height: 48px;
  background: var(--navy-mid);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--accent);
  position: relative; z-index: 1;
}
.process__step h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.process__step p { font-size: 14px; }

/* ============================================================
   RESULTS / STATS
   ============================================================ */
.results { padding: var(--section-pad); }
.results__header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.result-card__industry {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.result-card__stat {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 800;
  color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}
.result-card__stat span { font-size: 28px; color: var(--blue); }
.result-card__metric {
  font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.result-card__desc { font-size: 13.5px; color: var(--gray-mid); line-height: 1.65; }
.results__disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--gray-mid);
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  padding: 14px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

/* ============================================================
   WHY US
   ============================================================ */
.why { padding: var(--section-pad); }
.why__grid { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; max-width: var(--max-w); margin: 0 auto; }
.why__list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why__item { display: flex; gap: 16px; }
.why__item-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.why__item h4 { color: var(--white); margin-bottom: 6px; }
.why__quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.why__quote p { font-size: 15px; font-style: italic; line-height: 1.7; }
.why__spec-list { display: flex; flex-direction: column; gap: 0; }
.why__spec {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13.5px;
}
.why__spec:last-child { border: none; }
.why__spec-key { color: var(--gray-light); }
.why__spec-val { color: var(--white); font-weight: 500; text-align: right; }

/* ============================================================
   SIMULATION LIBRARY
   ============================================================ */
.library { padding: var(--section-pad); }
.library__header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.library__intro { font-size: 17px; color: var(--gray-mid); margin-top: 12px; line-height: 1.7; }
.library__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: var(--max-w); margin: 0 auto; }
.sim-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.sim-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.sim-card__video-wrap {
  position: relative;
  background: var(--navy);
  aspect-ratio: 16/9;
  overflow: hidden;
}
.sim-card__video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sim-card__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.3);
}
.sim-card__placeholder-icon {
  width: 48px; height: 48px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sim-card__placeholder-icon svg { width: 20px; height: 20px; }
.sim-card__placeholder span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.sim-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--navy);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.sim-card__body { padding: 20px 22px 14px; }
.sim-card__title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
  line-height: 1.2;
}
.sim-card__desc { font-size: 13.5px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 14px; }
.sim-card__points { display: flex; flex-wrap: wrap; gap: 6px; }
.sim-card__point {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 10px; border-radius: 20px;
}
.sim-card__point svg { width: 10px; height: 10px; }
.library__disclaimer {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 64px 24px 56px;
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  max-width: 700px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--gray-light); font-size: 18px; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--navy);
  padding: 64px 24px 56px;
}
.about-hero__inner { max-width: var(--max-w); margin: 0 auto; max-width: 680px; }
.about-hero h1 { color: var(--white); margin-bottom: 16px; }
.about-hero p { color: var(--gray-light); font-size: 18px; line-height: 1.7; }
.about-content { padding: var(--section-pad); }
.about-content__inner { max-width: var(--max-w); margin: 0 auto; }
.about-content__body { display: grid; grid-template-columns: 1fr 380px; gap: 64px; margin-top: 40px; }
.about-content__text p { font-size: 16px; margin-bottom: 20px; }
.about-content__text p:last-child { margin-bottom: 0; }
.capabilities-block {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.capabilities-block h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 14px; }
.cap-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--gray-mid); padding: 6px 0; border-bottom: 1px solid var(--border); }
.cap-item:last-child { border: none; }
.cap-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { background: var(--navy); padding: 56px 24px; text-align: center; }
.contact-hero h1 { color: var(--white); margin-bottom: 16px; }
.contact-hero p { color: var(--gray-light); font-size: 17px; max-width: 560px; margin: 0 auto; }
.contact-page { padding: var(--section-pad); }
.contact-page__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start;
}
.contact-sidebar { position: sticky; top: 88px; }
.contact-sidebar h3 { margin-bottom: 24px; }
.contact-info-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-of-type { border: none; }
.contact-info-item__label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); display: block; margin-bottom: 3px; }
.contact-info-item__val { font-size: 14px; font-weight: 500; color: var(--navy); }
.contact-info-item__val a { color: var(--blue); }
.contact-promise {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 24px;
  color: var(--white);
}
.contact-promise h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px; }
.contact-promise p { font-size: 13.5px; color: var(--gray-light); }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-form { background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(19,82,168,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[type="file"] { padding: 9px 14px; cursor: pointer; }
.form-group input[type="checkbox"] { width: auto; margin: 0; cursor: pointer; }
.form__check-group {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 16px;
}
.form__check-group label { font-size: 13.5px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--gray-mid); cursor: pointer; line-height: 1.5; }
.form__submit {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form__submit:hover { background: var(--accent-lt); }
.form__note {
  font-size: 12px; color: var(--gray-mid);
  text-align: center; margin-top: 12px;
  line-height: 1.5;
}
.turnstile-placeholder {
  padding: 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 11px; color: var(--gray-mid);
  text-align: center;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px dashed var(--border);
}

/* ============================================================
   SERVICE DETAIL (Services page)
   ============================================================ */
.service-detail { padding: 72px 24px; }
.service-detail--alt { background: var(--off-white); }
.service-detail__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.service-detail__inner.reverse { direction: rtl; }
.service-detail__inner.reverse > * { direction: ltr; }
.service-detail__content span.label { color: var(--blue); }
.service-detail h2 { margin-bottom: 16px; }
.service-detail p { margin-bottom: 16px; }
.service-detail__benefits { margin-top: 24px; }
.service-detail__benefits h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 14px; }
.benefit-list { display: flex; flex-direction: column; gap: 8px; }
.benefit-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--gray-mid); }
.benefit-check { color: var(--success); font-weight: 700; flex-shrink: 0; font-size: 16px; }
.service-detail__visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
}
.service-detail__visual h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.spec-block { margin-bottom: 16px; }
.spec-block__label { font-size: 11px; color: var(--gray-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.spec-block__val { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.spec-block__bar { background: rgba(255,255,255,0.1); border-radius: 2px; height: 4px; }
.spec-block__fill { background: var(--accent); border-radius: 2px; height: 4px; }

/* ============================================================
   RECOVERY-POSITION REFERENCE NOTES (simulation-only)
   ============================================================ */
.recovery { padding: 72px 24px; background: var(--navy); }
.recovery__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.recovery h2 { color: var(--white); margin-bottom: 16px; }
.recovery p { margin-bottom: 16px; }
.recovery-steps { display: flex; flex-direction: column; gap: 8px; }
.recovery-step {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
}
.recovery-step:last-child { border-left-color: var(--success); background: rgba(34,197,94,0.08); }
.recovery-step:not(:last-child) { border-left-color: var(--accent); }
.recovery-step__num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  color: var(--accent); flex-shrink: 0; min-width: 24px;
}
.recovery-step:last-child .recovery-step__num { color: var(--success); }
.recovery-step__label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.recovery-step:last-child .recovery-step__label { color: var(--success); }
.recovery-step__desc { font-size: 12px; color: var(--gray-light); line-height: 1.4; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: var(--section-pad); }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 24px; margin: 40px 0 12px; color: var(--navy); }
.legal h2:first-of-type { margin-top: 0; }
.legal p { margin-bottom: 16px; font-size: 15px; }
.legal ul { margin: 0 0 16px 20px; list-style: disc; }
.legal ul li { font-size: 15px; color: var(--gray-mid); padding: 4px 0; }
.legal__last-updated { font-size: 13px; color: var(--gray-mid); margin-bottom: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: var(--white); }
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand p { font-size: 13.5px; color: var(--gray-light); line-height: 1.7; margin-top: 14px; }
.footer__heading {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-light); margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  max-width: var(--max-w); margin: 0 auto;
}
.footer__bottom-inner {
  display: flex; flex-wrap: wrap;
  align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.footer__copy { font-size: 12px; color: var(--gray-light); line-height: 1.7; max-width: 560px; }
.footer__trust-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--gray-light);
  font-weight: 500; letter-spacing: 0.05em;
}
.footer__badge-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 72px 24px; text-align: center; }
.cta-band__inner { max-width: 560px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { margin-bottom: 32px; font-size: 17px; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thank-you {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px;
  text-align: center;
}
.thank-you__inner { max-width: 560px; }
.thank-you__icon {
  width: 72px; height: 72px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.thank-you__icon svg { width: 36px; height: 36px; color: var(--success); }
.thank-you h1 { font-size: 40px; margin-bottom: 16px; }
.thank-you p { font-size: 17px; color: var(--gray-mid); margin-bottom: 12px; }
.thank-you .next-steps { background: var(--off-white); border-radius: var(--radius-lg); padding: 24px; margin: 32px 0; text-align: left; }
.thank-you .next-steps h4 { margin-bottom: 12px; }
.thank-you .next-steps li { display: flex; gap: 10px; font-size: 14px; color: var(--gray-mid); padding: 6px 0; border-bottom: 1px solid var(--border); }
.thank-you .next-steps li:last-child { border: none; }
.thank-you .next-steps li strong { flex-shrink: 0; color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { display: none; }
  .why__grid { grid-template-columns: 1fr; }
  .why__right { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 20px; }
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .results__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__steps::before { display: none; }
  .payment__steps { grid-template-columns: 1fr; gap: 24px; max-width: 360px; margin: 0 auto; }
  .payment__steps::before { display: none; }
  .service-detail__inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail__inner.reverse { direction: ltr; }
  .about-content__body { grid-template-columns: 1fr; }
  .contact-page__inner { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .recovery__inner { grid-template-columns: 1fr; gap: 32px; }
  .library__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px 16px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: block; }
  .nav__mobile.open { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .library__grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 16px 48px; }
  .hero__actions { flex-direction: column; }
  .results__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; }
}

/* ============================================================
   ACCESSIBILITY — focus states + reduced motion
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 2px;
  border-radius: 2px;
}
.nav__cta:focus-visible,
.btn:focus-visible { outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   FOOTER LOGO CHIP (logo on clean light background over dark footer)
   ============================================================ */
.footer__logo-chip {
  display: inline-flex;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
}
.footer__logo-chip img { height: 34px; width: auto; display: block; }

/* ============================================================
   WHAT WE DO / DON'T DO
   ============================================================ */
.scope { background: var(--off-white); }
.scope__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.scope__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.scope__card--do { border-top: 4px solid var(--blue); }
.scope__card--dont { border-top: 4px solid var(--gray-light); }
.scope__card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; margin-bottom: 20px;
}
.scope__list { display: flex; flex-direction: column; gap: 12px; }
.scope__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--gray-mid);
}
.scope__list svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.scope__card--do svg { color: var(--blue); }
.scope__card--dont svg { color: var(--gray-mid); }

/* ============================================================
   AUDIENCE / WHO THIS IS FOR
   ============================================================ */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.audience__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ============================================================
   GOOD FIT / NOT A GOOD FIT
   ============================================================ */
.fit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.fit__col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: var(--white);
}
.fit__col--good { border-top: 4px solid var(--success); }
.fit__col--not { border-top: 4px solid var(--danger); }
.fit__col h3 { font-size: 20px; margin-bottom: 18px; }
.fit__list { display: flex; flex-direction: column; gap: 10px; }
.fit__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--font-body); font-size: 14.5px; color: var(--gray-mid);
}
.fit__list li::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; }
.fit__col--good .fit__list li::before { background: var(--success); }
.fit__col--not .fit__list li::before { background: var(--danger); }

/* ============================================================
   NEED FROM YOU / WHAT YOU RECEIVE (two-panel)
   ============================================================ */
.exchange__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.exchange__panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.exchange__panel--need { background: var(--off-white); }
.exchange__panel--receive { background: var(--navy); color: var(--white); border-color: var(--navy-light); }
.exchange__panel--receive h3, .exchange__panel--receive .label { color: var(--white); }
.exchange__panel h3 { font-size: 22px; margin: 8px 0 20px; }
.exchange__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.exchange__list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
}
.exchange__panel--need li { color: var(--gray-mid); }
.exchange__panel--receive li { color: var(--gray-light); }
.exchange__list li::before { content: "\2013"; flex-shrink: 0; font-weight: 700; }
.exchange__panel--need li::before { color: var(--blue); }
.exchange__panel--receive li::before { color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 820px; margin: 40px auto 0; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; color: var(--navy);
  padding: 22px 44px 22px 0; position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 6px; top: 18px;
  font-size: 26px; color: var(--blue); font-weight: 400; transition: var(--transition);
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { padding: 0 0 22px; font-size: 15.5px; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 300; max-width: 720px; margin: 0 auto;
  background: var(--navy); color: var(--gray-light);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: none;
  align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { color: var(--gray-light); font-size: 13.5px; margin: 0; flex: 1; min-width: 220px; }
.cookie-banner p a { color: var(--accent-lt); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-btn {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--radius); cursor: pointer; border: 1px solid transparent;
}
.cookie-btn--accept { background: var(--accent); color: var(--navy); }
.cookie-btn--accept:hover { background: var(--accent-lt); }
.cookie-btn--decline { background: transparent; color: var(--gray-light); border-color: var(--navy-light); }
.cookie-btn--decline:hover { color: var(--white); }

/* Turnstile placeholder tidy */
.turnstile-placeholder {
  margin: 20px 0; padding: 18px; border: 1px dashed var(--border);
  border-radius: var(--radius); text-align: center; color: var(--gray-mid);
  font-size: 13px; font-family: var(--font-body); background: var(--off-white);
}

@media (max-width: 760px) {
  .scope__grid, .fit__grid, .exchange__grid { grid-template-columns: 1fr; }
  .exchange__list { grid-template-columns: 1fr; }
}

/* Legal starter-copy notice + simulation limits callout */
.legal__notice {
  background: rgba(232,180,0,.10);
  border: 1px solid rgba(232,180,0,.35);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-mid);
}
.limits {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* --- QA pass: heading level fixes keep prior visual weight --- */
.contact-sidebar h2 { font-size: 24px; margin-bottom: 24px; }
.quote-form__title {
  font-size: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.thank-you .next-steps__title { font-size: 22px; margin-bottom: 12px; }

/* Contact form "not configured" warning */
.form-warning {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.35);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-mid);
}
.form-warning a { color: var(--blue); text-decoration: underline; }

/* Footer Cookie Settings control */
.footer__cookie-link {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: var(--gray-light); font-family: var(--font-body);
  font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
  padding: 5px 12px; border-radius: 999px; cursor: pointer;
  transition: var(--transition);
}
.footer__cookie-link:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }

/* ============================================================
   OPTIONAL RUSH FEASIBILITY REVIEW (premium, selective)
   ============================================================ */
.rush {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.rush__body h2 { font-size: clamp(24px, 3vw, 32px); margin: 6px 0 14px; }
.rush__body p { font-size: 15px; margin-bottom: 14px; }
.rush__fineprint { font-size: 13px; color: var(--gray-mid); font-style: italic; }
.rush__card {
  background: var(--navy);
  border: 1px solid var(--navy-light);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.rush__card-tag {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.rush__card-name {
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  color: var(--white); margin-bottom: 12px;
}
.rush__card-price {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  color: var(--white); margin-bottom: 18px; line-height: 1.1;
}
.rush__card-price span {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 12px; letter-spacing: 0.04em; color: var(--gray-light); margin-top: 4px;
}
.rush__card-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.rush__card-list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-family: var(--font-body); font-size: 13.5px; color: var(--gray-light); line-height: 1.5;
}
.rush__card-list li::before { content: "\2013"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.rush__card-note {
  font-size: 12px; color: var(--gray-light); line-height: 1.55;
  border-top: 1px solid var(--navy-light); padding-top: 14px; margin: 0;
}
@media (max-width: 760px) {
  .rush { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}

/* Form hint text (rush field helper) */
.form__hint { font-size: 12.5px; color: var(--gray-mid); line-height: 1.55; margin: 8px 0 0; }
/* Subtle rush note on home CTA band (dark section) */
.cta-band__rush { margin-top: 20px; font-size: 14px; color: var(--gray-light); }
.cta-band__rush a { color: var(--accent-lt); text-decoration: underline; }


/* ============================================================
   HOSTINGER CLEAN-URL PATCH — HEADER LOGO SAFETY
   Prevents the robotic S mark from clipping on desktop/mobile.
   ============================================================ */
.nav {
  overflow: visible;
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
}
.nav__inner {
  width: 100%;
  overflow: visible;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
  padding-left: 6px;
  margin-left: 0;
}
.nav__logo img {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(260px, 42vw);
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 768px) {
  .nav { padding-left: 16px; padding-right: 16px; }
  .nav__logo { padding-left: 4px; }
  .nav__logo img {
    height: 40px;
    max-width: 190px;
  }
}
@media (max-width: 380px) {
  .nav__logo img { max-width: 165px; }
}
