/* ============================================
   WEBSITE — Page-specific styles
   Shared tokens, .btn, .faq, and .hero__blobs
   come from ../style.css.
   All dimensions reference --max-width (1200px)
   from the shared design system.
   ============================================ */

html,
body {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

.ws-page {
  background: var(--color-background);
  overflow-x: clip;
}

/* Shared eyebrow across sections */
.ws-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}

.ws-eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}

/* Ghost button variant used in About section */
.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  background: transparent;
  border: 1.5px solid #FED7AA;
  border-radius: var(--border-radius-lg);
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn--ghost:hover {
  background: var(--color-surface);
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}

.btn--ghost .btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* ============================================
   NAVIGATION
   Sticky. .is-scrolled adds box-shadow via JS.
   ============================================ */
.ws-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.22s ease;
}

.ws-nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.ws-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ws-nav__logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}

/* Desktop links — hidden below 768px */
.ws-nav__menu {
  display: none;
  align-items: center;
  gap: 30px;
}

.ws-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.ws-nav__link:hover {
  color: var(--color-text);
}

.ws-nav__cta {
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: var(--border-radius-lg);
  box-shadow: none;
  cursor: pointer;
  white-space: nowrap;
}

.ws-nav__cta:hover {
  box-shadow: var(--shadow-btn);
}

/* Hamburger — visible on mobile only */
.ws-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.18s ease, border-color 0.18s ease;
  flex-shrink: 0;
}

.ws-nav__toggle:hover {
  background: var(--color-surface);
  border-color: #FED7AA;
}

.ws-nav__icon { width: 18px; height: 18px; display: block; }

/* Mobile open state */
.ws-nav__menu.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 24px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.ws-nav__menu.is-open .ws-nav__link {
  padding: 13px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
}

.ws-nav__menu.is-open .ws-nav__cta {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .ws-nav__inner { padding: 0 32px; }
  .ws-nav__menu  { display: flex; }
  .ws-nav__toggle { display: none; }
}

@media (min-width: 1280px) {
  .ws-nav__inner { padding: 0 40px; }
}


/* ============================================
   HERO — SPLIT LAYOUT
   Text left, coach photo right.
   On mobile: stacked, text on top.
   ============================================ */
.ws-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 48px;
  background: var(--color-background);
}

/* Dot-grid pattern overlay */
.ws-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249, 115, 22, 0.065) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Fade to white at the bottom */
.ws-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--color-background));
  pointer-events: none;
  z-index: 0;
}

.ws-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* ── Text column ── */
.ws-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.ws-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.ws-hero__badge-stars {
  width: 80px;
  height: 14px;
  flex-shrink: 0;
}

.ws-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 18px;
}

.ws-hero__title em {
  font-style: normal;
  color: var(--color-accent);
}

.ws-hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 30px;
}

.ws-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.ws-hero__actions .btn--primary {
  font-size: 1rem;
  padding: 15px 32px;
  cursor: pointer;
}

.ws-hero__cta-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* ── Photo column ── */
.ws-hero__photo-col {
  position: relative;
}

.ws-hero__photo-wrap {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: visible;
  max-width: 440px;
  margin: 0 auto;
}

.ws-hero__photo {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-xl);
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 64px rgba(249, 115, 22, 0.14), 0 8px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #FED7AA;
}

/* Floating credibility badges on the photo */
.ws-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  min-width: 152px;
}

.ws-hero__float--tl {
  top: -16px;
  left: -20px;
}

.ws-hero__float--br {
  bottom: 24px;
  right: -20px;
}

.ws-hero__float-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--color-surface);
  border: 1px solid #FED7AA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.ws-hero__float-icon--gold {
  background: #FFFBEB;
  border-color: #FDE68A;
  color: #F59E0B;
}

.ws-hero__float strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.ws-hero__float span {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.2;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .ws-hero {
    padding: 80px 32px 56px;
  }

  .ws-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }

  .ws-hero__photo-wrap {
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .ws-hero {
    padding: 96px 40px 64px;
  }

  .ws-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 72px;
  }
}


/* ============================================
   STATS BAR
   High-contrast dark strip for visual punch.
   ============================================ */
.ws-stats-bar {
  background: #0F172A;
  padding: 0 24px;
}

.ws-stats-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 0;
}

.ws-stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 28px;
  gap: 3px;
}

.ws-stats-bar__item strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ws-stats-bar__item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

.ws-stats-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  display: none;
}

@media (min-width: 480px) {
  .ws-stats-bar__divider { display: block; }
}


/* ============================================
   LOGO CLOUD — page-specific overrides
   The shared .logo-cloud styles (viewport, track,
   marquee animation) come from ../style.css.
   These overrides handle the section-level spacing
   and background specific to the website homepage.
   ============================================ */
.ws-page .logo-cloud {
  background: var(--color-background);
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--color-border);
}

.ws-page .logo-cloud__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  opacity: 0.6;
  margin-bottom: 24px;
  padding: 0 24px;
}


/* ============================================
   INTRO / ABOUT
   Two-column text block. Anchors trust before
   the feature sections.
   The warm tinted background separates it from
   the white logo cloud above.
   ============================================ */
.ws-intro {
  padding: 80px 24px;
  background: var(--color-surface);
  border-bottom: 1px solid #FED7AA;
}

.ws-intro__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.ws-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-text);
}

.ws-intro__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ws-intro__right p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.ws-intro__right p:last-of-type {
  margin-bottom: 24px;
}

.ws-intro__cta {
  align-self: flex-start;
}

@media (min-width: 768px) {
  .ws-intro {
    padding: 96px 32px;
  }

  .ws-intro__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .ws-intro {
    padding: 112px 40px;
  }
}


/* ============================================
   FEATURE SECTIONS (kept for reference — sections
   removed from index.html; safe to delete this
   block if you don't plan to re-add them)
   ============================================ */
.ws-features {
  background: var(--color-surface);
  border-top: 1px solid #FED7AA;
  border-bottom: 1px solid #FED7AA;
  padding: 80px 24px;
}

.ws-features__header {
  max-width: var(--max-width);
  margin: 0 auto 64px;
  text-align: center;
}

.ws-features__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 12px;
}

.ws-features__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Individual feature block */
.ws-feature {
  max-width: var(--max-width);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.ws-feature:last-child {
  margin-bottom: 0;
}

.ws-feature__step {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.ws-feature__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 12px;
}

.ws-feature__desc {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.ws-feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ws-feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.ws-feature__check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Visual column — holds the CSS mockup cards */
.ws-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop: two-column and flip modifier */
@media (min-width: 768px) {
  .ws-features {
    padding: 96px 32px;
  }

  .ws-feature {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
  }

  .ws-feature--flip .ws-feature__text {
    order: 2;
  }

  .ws-feature--flip .ws-feature__visual {
    order: 1;
  }
}

@media (min-width: 1280px) {
  .ws-features {
    padding: 112px 40px;
  }

  .ws-feature {
    gap: 88px;
  }
}


/* ============================================
   CSS MOCKUP CARDS
   Pure HTML + CSS product-UI style cards
   used in the feature sections as visual props.
   ============================================ */
.ws-mockup {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 340px;
}

/* Card header */
.ws-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.ws-mockup__title-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.ws-mockup__tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-accent);
  border: 1px solid #FED7AA;
  letter-spacing: 0.02em;
}

.ws-mockup__tag--green {
  background: #F0FDF4;
  color: #16A34A;
  border-color: #BBF7D0;
}

/* ── Roadmap rows ── */
.ws-mockup__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.ws-mockup__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ws-mockup__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ws-mockup__dot--done {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.ws-mockup__dot--active {
  background: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.ws-mockup__row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ws-mockup__row-text strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.ws-mockup__row-text span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.ws-mockup__row--done .ws-mockup__row-text strong {
  color: var(--color-text-muted);
}

/* Progress footer in roadmap card */
.ws-mockup__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.ws-mockup__progress-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.ws-mockup__progress-track {
  flex: 1;
  height: 5px;
  background: #F1F5F9;
  border-radius: 999px;
  overflow: hidden;
}

.ws-mockup__progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 999px;
}

.ws-mockup__progress-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ── Session card ── */
.ws-mockup--session { max-width: 320px; }

.ws-mockup__session-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ws-mockup__session-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.ws-mockup__session-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}

.ws-mockup__divider {
  height: 1px;
  background: var(--color-border);
  margin: 14px 0;
}

.ws-mockup__streak-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-mockup__streak-row strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text);
}

.ws-mockup__dots {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.ws-mockup__dot-sm {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid var(--color-border);
}

.ws-mockup__dot-sm--on {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.ws-mockup__stats-row {
  display: flex;
  gap: 0;
}

.ws-mockup__stat {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
}

.ws-mockup__stat:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.ws-mockup__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.ws-mockup__stat span {
  font-size: 0.68rem;
  color: var(--color-text-muted);
}

/* ── Habit grid ── */
.ws-mockup__habit-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 16px;
}

.ws-mockup__habit-day {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  background: #F8FAFC;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.ws-mockup__habit-day--done {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.ws-mockup__habit-day--missed {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #EF4444;
}

.ws-mockup__habit-day--today {
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 800;
}

.ws-mockup__habit-day--future {
  opacity: 0.35;
}

.ws-mockup__habit-summary {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.ws-mockup__habit-stat {
  flex: 1;
  text-align: center;
}

.ws-mockup__habit-stat:first-child {
  border-right: 1px solid var(--color-border);
}

.ws-mockup__habit-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.ws-mockup__habit-stat span {
  font-size: 0.68rem;
  color: var(--color-text-muted);
}


/* ============================================
   TESTIMONIAL PULL QUOTE
   Dark navy background so it reads as a strong
   visual anchor between the warm About section
   and the white CPT timeline below. This creates
   the same rhythmic dark/light/dark alternation
   as the stats bar and footer.
   ============================================ */
.ws-pullquote {
  background: #0F172A;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle orange radial glow in the background */
.ws-pullquote::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.ws-pullquote__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ws-pullquote__icon {
  width: 36px;
  color: var(--color-accent);
  opacity: 0.35;
  flex-shrink: 0;
}

.ws-pullquote__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
}

.ws-pullquote__author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
}

.ws-pullquote__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249, 115, 22, 0.5);
  flex-shrink: 0;
}

.ws-pullquote__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  font-style: normal;
}

.ws-pullquote__detail {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

@media (min-width: 768px) {
  .ws-pullquote {
    padding: 96px 32px;
  }
}


/* ============================================
   PROCESS — HOW IT WORKS
   Four numbered steps. Vertical on mobile,
   horizontal grid on desktop.
   ============================================ */
.ws-process {
  background: #0F172A;
  padding: 80px 24px;
}

.ws-process__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.ws-process .ws-eyebrow {
  color: rgba(249, 115, 22, 0.7);
  text-align: center;
}

.ws-process__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
}

.ws-process__sub {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 52px;
}

.ws-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.ws-process__step {
  position: relative;
}

.ws-process__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(249, 115, 22, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.ws-process__step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 8px;
}

.ws-process__step-desc {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.5);
}

/* Horizontal connector line between steps (desktop only) */
.ws-process__connector {
  display: none;
}

@media (min-width: 768px) {
  .ws-process {
    padding: 96px 32px;
  }

  .ws-process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  /* Shared top-line across steps */
  .ws-process__steps::before {
    content: '';
    position: absolute;
    top: 19px; /* aligns with centre of the step number */
    left: 12%;
    right: 12%;
    height: 1px;
    background: rgba(249, 115, 22, 0.15);
  }

  .ws-process__step {
    padding: 0 16px;
  }

  .ws-process__step:first-child {
    padding-left: 0;
  }

  .ws-process__step:last-child {
    padding-right: 0;
  }
}

@media (min-width: 1280px) {
  .ws-process {
    padding: 112px 40px;
  }
}


/* ============================================
   TESTIMONIALS GRID — 3 cards
   ============================================ */
.ws-testimonials {
  background: #0F172A;
  padding: 80px 24px;
}

.ws-testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.ws-testimonials .ws-eyebrow {
  text-align: center;
  color: rgba(249, 115, 22, 0.7);
}

.ws-test__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.ws-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ws-tcard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.ws-tcard:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-2px);
}

.ws-tcard__stars {
  display: flex;
  gap: 3px;
}

.ws-tcard__outcome {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ws-tcard__body {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
}

.ws-tcard__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  font-style: normal;
}

.ws-tcard__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249, 115, 22, 0.4);
  flex-shrink: 0;
}

.ws-tcard__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  font-style: normal;
}

.ws-tcard__lang {
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}

@media (min-width: 768px) {
  .ws-testimonials {
    padding: 96px 32px;
  }

  .ws-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1280px) {
  .ws-testimonials {
    padding: 112px 40px;
  }
}


/* ============================================
   FINAL CTA SECTION
   Dark with orange gradient accent.
   ============================================ */
.ws-cta-section {
  background: #0F172A;
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial orange glow behind the CTA */
.ws-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ws-cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ws-cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 14px;
}

.ws-cta-section__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.ws-cta-section .btn--primary {
  font-size: 1rem;
  padding: 16px 40px;
  cursor: pointer;
  margin-bottom: 12px;
}

.ws-cta-section__note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .ws-cta-section {
    padding: 112px 32px;
  }
}


/* ============================================
   FOOTER
   Dark three-column grid with brand, nav, legal.
   ============================================ */
.ws-footer {
  background: #080F1E;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ws-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.ws-footer__logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.ws-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.ws-footer__socials {
  display: flex;
  gap: 8px;
}

.ws-footer__social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.ws-footer__social:hover {
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.35);
  color: #fdba74;
}

.ws-footer__nav-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.ws-footer__nav,
.ws-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ws-footer__nav-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.18s ease;
}

.ws-footer__nav-link:hover {
  color: #fff;
}

.ws-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
  .ws-footer__inner {
    padding: 64px 32px 48px;
    grid-template-columns: 1.2fr auto auto;
    gap: 56px;
  }

  .ws-footer__bottom {
    padding: 18px 32px;
  }
}

@media (min-width: 1280px) {
  .ws-footer__inner {
    padding: 72px 40px 56px;
    gap: 88px;
  }

  .ws-footer__bottom {
    padding: 18px 40px;
  }
}
