/* S.T. Williamson Consulting — Pulse-inspired Offer Page (v3)
   Prefix: stw-  |  Navy + Gold  |  Flat card aesthetic
   Features: Hero carousel, sticky nav, fade-up animations, back-to-top */

/* ── Reset & Variables ──────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --stw-navy:      #1e3a5f;
  --stw-navy-dk:   #152d4a;
  --stw-navy-lt:   #2a4f7a;
  --stw-gold:      #c9a84c;
  --stw-gold-dk:   #a68b3b;
  --stw-gold-lt:   #dfc070;
  --stw-white:     #ffffff;
  --stw-off-white: #f8f9fb;
  --stw-text:      #27394a;
  --stw-text-mid:  #485767;
  --stw-text-lt:   #7a8a96;
  --stw-border:    #e7eef0;
  --stw-footer-bg: #2b2f32;
  --stw-footer-tx: #8c9499;
  --stw-overlay:   rgba(20,40,65,0.82);

  --stw-font-display: 'Playfair Display', Georgia, serif;
  --stw-font-body:    'Inter', system-ui, sans-serif;
  --stw-max-w:   1140px;
  --stw-gap:     clamp(56px, 8vw, 100px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--stw-font-body);
  background: var(--stw-white);
  color: var(--stw-text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block }
a   { color: var(--stw-gold-dk); text-decoration: none; transition: color .2s }
a:hover { color: var(--stw-gold) }

.stw-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Utility ────────────────────────────────────────────────── */
.stw-container {
  width: 100%;
  max-width: var(--stw-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.stw-gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--stw-gold), var(--stw-gold-dk));
  border: none;
  margin: 20px auto;
}

.stw-label {
  font-family: var(--stw-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stw-gold-dk);
  margin-bottom: 8px;
}
.stw-label--light { color: var(--stw-gold) }

.stw-heading {
  font-family: var(--stw-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--stw-navy);
  line-height: 1.2;
  margin-bottom: 4px;
}
.stw-heading--light { color: var(--stw-white) }

.stw-subheading {
  font-size: 17px;
  color: var(--stw-text-mid);
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
}

/* ── Sections ───────────────────────────────────────────────── */
.stw-section {
  padding: var(--stw-gap) 0;
  text-align: center;
}
.stw-section--white { background: var(--stw-white) }
.stw-section--alt   { background: var(--stw-off-white) }

/* ── Buttons — Pulse-inspired: uppercase, border, flat ────── */
.stw-btn {
  display: inline-block;
  font-family: var(--stw-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.stw-btn--gold {
  background: var(--stw-gold);
  color: var(--stw-navy-dk);
  border-color: var(--stw-gold);
}
.stw-btn--gold:hover {
  background: var(--stw-gold-dk);
  border-color: var(--stw-gold-dk);
  color: var(--stw-white);
}
.stw-btn--outline {
  background: transparent;
  color: var(--stw-white);
  border-color: rgba(255,255,255,0.5);
}
.stw-btn--outline:hover {
  border-color: var(--stw-gold);
  color: var(--stw-gold);
}
.stw-btn--full { width: 100% }
.stw-btn--small {
  padding: 10px 20px;
  font-size: 11px;
  margin-top: 16px;
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.stw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.stw-reveal.stw-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero Text Animation (fade + slide up on load) ──────────── */
@keyframes stwFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.stw-animate-up {
  opacity: 0;
  animation: stwFadeUp .8s ease forwards;
}
.stw-delay-1 { animation-delay: .2s; }
.stw-delay-2 { animation-delay: .4s; }
.stw-delay-3 { animation-delay: .6s; }
.stw-delay-4 { animation-delay: .8s; }

/* ═══════════════════════════════════════════════════════════════
   STICKY NAVIGATION — Transparent → Navy on scroll
   ═══════════════════════════════════════════════════════════════ */
.stw-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  background: transparent;
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
.stw-nav--scrolled {
  background: var(--stw-navy-dk);
  height: 64px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.stw-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-wrap: nowrap;
  overflow: visible;
}
.stw-nav__logo {
  font-family: var(--stw-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--stw-white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.stw-nav__logo:hover {
  opacity: 0.85;
}
.stw-nav__logo-img {
  height: 48px;
  width: auto;
}
.stw-footer__logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 16px;
}
.stw-nav__links {
  display: flex;
  gap: 32px;
}
.stw-nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.stw-nav__links a:hover {
  color: var(--stw-gold);
}
.stw-btn--nav {
  padding: 10px 24px;
  font-size: 11px;
  flex-shrink: 0;
}

/* Hamburger toggle (hidden on desktop) */
.stw-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.stw-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--stw-white);
  transition: transform .3s, opacity .3s;
}
.stw-nav__toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.stw-nav__toggle--open span:nth-child(2) {
  opacity: 0;
}
.stw-nav__toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   S1: HERO CAROUSEL — Full-width background images, centered text
   ═══════════════════════════════════════════════════════════════ */
.stw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image slides */
.stw-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stw-hero__slide {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: transform;
}
.stw-hero__slide--active {
  opacity: 1;
}

/* Dark overlay */
.stw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 40, 65, 0.60) 0%,
    rgba(20, 40, 65, 0.80) 100%
  );
  z-index: 1;
}

/* Centered text content */
.stw-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}
.stw-hero__pre {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--stw-gold);
  margin-bottom: 16px;
}
.stw-hero__title {
  font-family: var(--stw-font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--stw-white);
  line-height: 1.1;
  margin-bottom: 0;
}
.stw-hero .stw-gold-rule {
  margin: 24px auto;
}
.stw-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 36px;
}
.stw-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Carousel navigation dots */
.stw-hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}
.stw-hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.stw-hero__dot:hover {
  border-color: var(--stw-gold-lt);
}
.stw-hero__dot--active {
  background: var(--stw-gold);
  border-color: var(--stw-gold);
}

/* ═══════════════════════════════════════════════════════════════
   S2: TRUST STRIP — Infinite scroll marquee
   ═══════════════════════════════════════════════════════════════ */
@keyframes stwMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.stw-trust-strip {
  background: var(--stw-navy);
  border-top: 2px solid var(--stw-gold);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.stw-trust-track {
  display: inline-flex;
  gap: 48px;
  animation: stwMarquee 28s linear infinite;
  will-change: transform;
}
.stw-trust-strip:hover .stw-trust-track {
  animation-play-state: paused;
}
.stw-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.stw-trust-item__icon {
  font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   S3: URGENCY BANNER
   ═══════════════════════════════════════════════════════════════ */
.stw-urgency {
  background: var(--stw-gold);
  padding: 16px 0;
  text-align: center;
}
.stw-urgency p {
  font-size: 15px;
  font-weight: 600;
  color: var(--stw-navy-dk);
}
.stw-urgency a {
  color: var(--stw-navy-dk);
  text-decoration: underline;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   S4: PROBLEM PILLARS
   ═══════════════════════════════════════════════════════════════ */
.stw-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.stw-pillar {
  border: 1px solid var(--stw-border);
  padding: 40px 28px;
  text-align: center;
  transition: border-color .3s;
}
.stw-pillar:hover {
  border-color: var(--stw-gold);
}
.stw-pillar__stat {
  display: block;
  font-family: var(--stw-font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--stw-gold-dk);
  line-height: 1;
  margin-bottom: 8px;
}
.stw-pillar__label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--stw-navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stw-pillar__desc {
  font-size: 15px;
  color: var(--stw-text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   S4.5: BIO — Image + text, side by side
   ═══════════════════════════════════════════════════════════════ */
.stw-bio {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
  text-align: left;
}
.stw-bio__image img {
  border-radius: 4px;
  border: 3px solid var(--stw-gold);
  width: 100%;
}
.stw-bio__text p {
  font-size: 16px;
  color: var(--stw-text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.stw-bio__text p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   S5: EMPATHY — Image + text, dark bg
   ═══════════════════════════════════════════════════════════════ */
.stw-empathy {
  position: relative;
  background: var(--stw-navy-dk);
  padding: var(--stw-gap) 0;
  overflow: hidden;
}
.stw-empathy__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--stw-navy-dk) 50%, rgba(20,40,65,0.6) 100%);
  z-index: 1;
}
.stw-empathy__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.stw-empathy__text {
  text-align: left;
}
.stw-empathy__text p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.75;
}
.stw-empathy__image img {
  border-radius: 4px;
  border: 3px solid var(--stw-gold);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   S6: HOW IT WORKS — 3 steps
   ═══════════════════════════════════════════════════════════════ */
.stw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.stw-step {
  border: 1px solid var(--stw-border);
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  transition: border-color .3s;
}
.stw-step:hover {
  border-color: var(--stw-gold);
}
.stw-step__number {
  display: inline-block;
  font-family: var(--stw-font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--stw-gold);
  margin-bottom: 16px;
}
.stw-step__title {
  font-family: var(--stw-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--stw-navy);
  margin-bottom: 12px;
}
.stw-step__desc {
  font-size: 15px;
  color: var(--stw-text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   S7: PROGRAMS GRID — 5 flat cards
   ═══════════════════════════════════════════════════════════════ */
.stw-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.stw-program {
  border: 1px solid var(--stw-border);
  padding: 32px 24px;
  text-align: left;
  transition: border-color .3s, transform .3s;
}
.stw-program:hover {
  border-color: var(--stw-gold);
  transform: translateY(-4px);
}
.stw-program__icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.stw-program__name {
  font-family: var(--stw-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--stw-navy);
  margin-bottom: 4px;
}
.stw-program__full {
  font-size: 13px;
  color: var(--stw-gold-dk);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.stw-program__desc {
  font-size: 15px;
  color: var(--stw-text-mid);
  line-height: 1.65;
}

/* 7 programs: 3-column grid, last row single card centered */
.stw-programs .stw-program:nth-child(7) { grid-column: 2 / 3 }

/* ═══════════════════════════════════════════════════════════════
   S8: BENEFITS — Image cards
   ═══════════════════════════════════════════════════════════════ */
.stw-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.stw-benefit {
  border: 1px solid var(--stw-border);
  overflow: hidden;
  text-align: left;
  transition: border-color .3s;
}
.stw-benefit:hover {
  border-color: var(--stw-gold);
}
.stw-benefit__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.stw-benefit__body {
  padding: 24px;
}
.stw-benefit__body h3 {
  font-family: var(--stw-font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--stw-navy);
  margin-bottom: 8px;
}
.stw-benefit__body p {
  font-size: 15px;
  color: var(--stw-text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   S9: COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.stw-comparison {
  margin-top: 48px;
  overflow-x: auto;
}
.stw-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}
.stw-table th,
.stw-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--stw-border);
}
.stw-table thead th {
  font-family: var(--stw-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stw-text-lt);
  border-bottom: 2px solid var(--stw-border);
}
.stw-table__them {
  color: var(--stw-text-lt);
  text-align: center;
}
.stw-table__us {
  color: var(--stw-navy);
  font-weight: 600;
  text-align: center;
  background: rgba(201,168,76,0.06);
}
.stw-table tbody td:first-child {
  font-weight: 500;
  color: var(--stw-text);
}

/* ═══════════════════════════════════════════════════════════════
   S10: STATS ROW — Navy background
   ═══════════════════════════════════════════════════════════════ */
.stw-stats {
  background: var(--stw-navy);
  padding: var(--stw-gap) 0;
}
.stw-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stw-stat__number {
  display: block;
  font-family: var(--stw-font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--stw-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stw-stat__label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════
   S11: TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.stw-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.stw-testimonial {
  border: 1px solid var(--stw-border);
  padding: 36px 28px;
  text-align: center;
  transition: border-color .3s;
}
.stw-testimonial:hover {
  border-color: var(--stw-gold);
}
.stw-testimonial__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--stw-gold);
  object-fit: cover;
  margin: 0 auto 20px;
}
.stw-testimonial__quote {
  font-family: var(--stw-font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--stw-text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.stw-testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--stw-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stw-testimonial__role {
  font-size: 13px;
  color: var(--stw-text-lt);
}

/* ═══════════════════════════════════════════════════════════════
   S12: FAQ — Accordion (details/summary)
   ═══════════════════════════════════════════════════════════════ */
.stw-faq-list {
  max-width: 740px;
  margin: 48px auto 0;
  text-align: left;
}
.stw-faq {
  border: 1px solid var(--stw-border);
  margin-bottom: -1px;
  transition: border-color .3s;
}
.stw-faq[open] {
  border-color: var(--stw-gold);
}
.stw-faq__q {
  padding: 18px 24px;
  font-family: var(--stw-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--stw-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.stw-faq__q::-webkit-details-marker { display: none }
.stw-faq__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--stw-gold);
  flex-shrink: 0;
  transition: transform .25s;
}
.stw-faq[open] .stw-faq__q::after {
  content: '\2212';
  transform: rotate(180deg);
}
.stw-faq__a {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--stw-text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   S13: GUARANTEE
   ═══════════════════════════════════════════════════════════════ */
.stw-guarantee {
  background: var(--stw-off-white);
  padding: var(--stw-gap) 0;
  text-align: center;
}
.stw-guarantee__icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}
.stw-guarantee__text {
  font-size: 17px;
  color: var(--stw-text-mid);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   S14: SELF-SELECTION TOOL — Federal Program Eligibility Assessment
   ═══════════════════════════════════════════════════════════════ */
.stw-assessment {
  background: var(--stw-navy-dk);
  padding: var(--stw-gap) 0;
  text-align: center;
}
.stw-assessment__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 16px auto 0;
}
.stw-assessment__quiz {
  max-width: 560px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px 32px;
}
.stw-quiz-q__text {
  font-family: var(--stw-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--stw-white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.stw-quiz-q__hint {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.stw-quiz-q__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.stw-quiz-btn {
  flex: 1;
  max-width: 180px;
  font-family: var(--stw-font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--stw-white);
  cursor: pointer;
  transition: all .25s ease;
}
.stw-quiz-btn:hover {
  border-color: var(--stw-gold);
  color: var(--stw-gold);
}
.stw-quiz-btn--selected {
  background: var(--stw-gold);
  border-color: var(--stw-gold);
  color: var(--stw-navy-dk);
}
.stw-quiz-progress {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
/* Results */
.stw-assessment__results {
  max-width: 800px;
  margin: 0 auto;
}
.stw-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.stw-result-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 24px;
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color .3s;
}
.stw-result-card:hover {
  border-color: var(--stw-gold);
}
.stw-result-card__icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.stw-result-card__title {
  font-family: var(--stw-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--stw-gold);
  margin-bottom: 6px;
}
.stw-result-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}
.stw-results-cta {
  margin-top: 32px;
}
.stw-results-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   S15: CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.stw-cta-banner {
  background: var(--stw-navy);
  padding: var(--stw-gap) 0;
  text-align: center;
}
.stw-cta-banner__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 16px auto 36px;
}
.stw-cta-banner__form {
  max-width: 480px;
  margin: 0 auto;
}

/* ── Forms ───────────────────────────────────────────────────── */
.stw-input {
  display: block;
  width: 100%;
  font-family: var(--stw-font-body);
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid var(--stw-border);
  background: var(--stw-white);
  color: var(--stw-text);
  border-radius: 0;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.stw-input:focus {
  outline: none;
  border-color: var(--stw-gold);
  background: rgba(201,168,76,0.04);
}
.stw-input::placeholder {
  color: var(--stw-text-lt);
}
.stw-form--inline .stw-btn {
  margin-top: 8px;
}
/* Dark context form inputs */
.stw-lead-magnet__form .stw-input,
.stw-cta-banner .stw-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--stw-white);
}
.stw-lead-magnet__form .stw-input:focus,
.stw-cta-banner .stw-input:focus {
  border-color: var(--stw-gold);
  background: rgba(255,255,255,0.15);
}
.stw-lead-magnet__form .stw-input::placeholder,
.stw-cta-banner .stw-input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Charcoal, Pulse-inspired
   ═══════════════════════════════════════════════════════════════ */
.stw-footer {
  background: var(--stw-footer-bg);
  padding: 56px 0 0;
  color: var(--stw-footer-tx);
  font-size: 14px;
}
.stw-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.stw-footer__heading {
  font-family: var(--stw-font-display);
  font-size: 18px;
  color: var(--stw-white);
  margin-bottom: 16px;
}
.stw-footer__col p {
  line-height: 1.7;
  margin-bottom: 8px;
}
.stw-footer__col ul {
  list-style: none;
}
.stw-footer__col ul li {
  padding: 4px 0;
  color: var(--stw-footer-tx);
}
.stw-footer .stw-btn--outline {
  color: var(--stw-footer-tx);
  border-color: rgba(140,148,153,0.3);
}
.stw-footer .stw-btn--outline:hover {
  color: var(--stw-gold);
  border-color: var(--stw-gold);
}
.stw-footer__bottom {
  margin-top: 48px;
  padding: 20px 0;
  background: #212427;
  text-align: center;
  font-size: 13px;
  color: rgba(140,148,153,0.6);
}

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════════════════════════ */
.stw-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--stw-gold);
  color: var(--stw-navy-dk);
  border: none;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stw-back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.stw-back-to-top:hover {
  background: var(--stw-gold-dk);
  color: var(--stw-white);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first adjustments
   ═══════════════════════════════════════════════════════════════ */
/* ── Parallax: disable on touch/mobile (iOS breaks fixed attachment) ── */
@supports (-webkit-overflow-scrolling: touch) {
  .stw-hero__slide { inset: 0; will-change: auto; }
}

@media (max-width: 1010px) {
  /* Parallax: disable on small screens */
  .stw-hero__slide { inset: 0; will-change: auto; }

  /* Nav: mobile dropdown */
  .stw-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--stw-navy-dk);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .stw-nav__links--open {
    display: flex;
  }
  .stw-nav__links a {
    font-size: 15px;
    padding: 4px 0;
  }
  .stw-btn--nav {
    display: none;
  }
  .stw-nav__toggle {
    display: flex;
  }

  /* Hero */
  .stw-hero__title {
    font-size: clamp(32px, 6vw, 48px);
  }
  .stw-hero__sub {
    font-size: 16px;
  }

  /* Bio */
  .stw-bio {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stw-bio__image img {
    max-width: 300px;
    margin: 0 auto;
  }
  .stw-bio__text { text-align: left; }

  /* Empathy */
  .stw-empathy__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stw-empathy__text { text-align: center }
  .stw-empathy .stw-gold-rule { margin: 20px auto !important }

  /* Footer */
  .stw-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .stw-pillars,
  .stw-steps,
  .stw-programs,
  .stw-testimonials {
    grid-template-columns: 1fr;
  }
  .stw-programs .stw-program:nth-child(7) {
    grid-column: auto;
  }

  .stw-benefits {
    grid-template-columns: 1fr;
  }

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

  .stw-hero__ctas .stw-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stw-stats__grid {
    grid-template-columns: 1fr;
  }
  .stw-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
