/* ============================================================
   GOODJOB — BRAND DESIGN SYSTEM
   Shared across all landing pages.
   Edit design tokens in :root to update all pages at once.
   ============================================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* — Brand colours — */
  --c-primary:        #08363b;   /* Deep teal — main brand */
  --c-primary-dark:   #052528;   /* Darker teal — footer, dark accents */
  --c-primary-light:  #0e4d54;   /* Lighter teal — hover bg */
  --c-citrus:         #ffffc4;   /* Pale yellow — accent on dark backgrounds */
  --c-accent:         #ffffc4;   /* CTA buttons, highlights */
  --c-accent-hover:   #ffffdf;   /* Accent hover state */
  --c-yellow:         #faed4a;   /* Saturated yellow — stars, badges */
  --c-success:        #079b51;   /* Green — positive signals */
  --c-negative:       #F75212;   /* Orange — pain/problem stats */

  /* — Neutrals — */
  --c-white:          #ffffff;
  --c-off-white:      #F6F7F7;   /* Cool off-white — section bg */
  --c-surface:        #f4f4ee;   /* Surface bg — cards on white */
  --c-border:         #E4ECED;   /* Borders, dividers */
  --c-text:           #08363b;   /* Body text — uses brand teal */
  --c-text-muted:     #555555;   /* Secondary text */
  --c-text-light:     #999999;   /* Placeholders, tertiary */

  /* — Typography — */
  --font-body:   'Figtree', system-ui, -apple-system, sans-serif;
  --font-serif:  'PT Serif', Georgia, 'Times New Roman', serif;

  /* — Spacing scale (4px base) — */
  --sp-1:   0.25rem;   /*  4px */
  --sp-2:   0.5rem;    /*  8px */
  --sp-3:   0.75rem;   /* 12px */
  --sp-4:   1rem;      /* 16px */
  --sp-5:   1.25rem;   /* 20px */
  --sp-6:   1.5rem;    /* 24px */
  --sp-8:   2rem;      /* 32px */
  --sp-10:  2.5rem;    /* 40px */
  --sp-12:  3rem;      /* 48px */
  --sp-16:  4rem;      /* 64px */
  --sp-20:  5rem;      /* 80px */
  --sp-24:  6rem;      /* 96px */

  /* — Layout — */
  --max-w:         1140px;
  --max-w-prose:   700px;

  /* — Radii — */
  --r-sm:   0.5rem;      /*  8px */
  --r-md:   0.9375rem;   /* 15px */
  --r-lg:   1.5rem;      /* 24px */
  --r-btn:  3.125rem;    /* 50px — pill */
  --r-full: 9999px;

  /* — Shadows — */
  --shadow-sm:  0 1px 6px  rgba(8, 54, 59, 0.07);
  --shadow-md:  0 4px 20px rgba(8, 54, 59, 0.11);
  --shadow-lg:  0 10px 40px rgba(8, 54, 59, 0.16);

  /* — Transitions — */
  --t-fast: 150ms ease;
  --t-base: 240ms ease;
  --t-slow: 400ms ease;
}


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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--narrow {
  max-width: var(--max-w-prose);
}

.section {
  padding-block: var(--sp-20);
}

.section--sm {
  padding-block: var(--sp-12);
}

/* Background variants */
.bg-primary    { background: var(--c-primary); }
.bg-off-white  { background: var(--c-off-white); }
.bg-surface    { background: var(--c-surface); }
.bg-white      { background: var(--c-white); }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.text-display {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

/* Italic accent uses PT Serif */
.text-display em,
.text-h1 em,
.text-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.text-h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-h2 {
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.text-h3 {
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.3;
}

.text-lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--c-text-muted);
}

.text-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-center { text-align: center; }
.text-white  { color: var(--c-white) !important; }
.text-muted  { color: var(--c-text-muted); }
.text-accent { color: var(--c-accent); }


/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  width: 44px;
  height: 4px;
  border-radius: var(--r-full);
  background: var(--c-accent);
}

.divider--center {
  margin-inline: auto;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--r-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    transform var(--t-fast),
    box-shadow var(--t-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — yellow on teal */
.btn--primary {
  background: var(--c-accent);
  color: var(--c-primary);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  box-shadow: var(--shadow-lg);
}

/* Ghost white — for use on dark backgrounds */
.btn--ghost-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Teal — for CTAs on light backgrounds */
.btn--teal {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn--teal:hover {
  background: var(--c-primary-light);
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-lg);
}

/* Size modifiers */
.btn--lg {
  padding: 1.1rem 2.75rem;
  font-size: 1.1rem;
}

.btn--full { width: 100%; }


/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-4);
  background: rgba(250, 237, 74, 0.12);
  color: var(--c-accent);
  border: 1px solid rgba(250, 237, 74, 0.28);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--c-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 1.5rem;
}


/* ============================================================
   STAT
   ============================================================ */
.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-accent);
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--sp-2);
  line-height: 1.4;
}


/* ============================================================
   STEP
   ============================================================ */
.step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__content { flex: 1; }

.step__title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--sp-2);
  color: var(--c-text);
}

.step__desc {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}


/* ============================================================
   CHECKLIST
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  border-radius: var(--r-full);
  background-color: var(--c-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2308363b'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}


/* ============================================================
   FORM
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-grid--full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
}

.form-label span {
  color: #dc3545;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-text);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--c-text-light); }

.form-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(8, 54, 59, 0.1);
}

.form-input:user-invalid {
  border-color: #dc3545;
}

.form-note {
  font-size: 0.8rem;
  color: var(--c-text-light);
  text-align: center;
  margin-top: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--c-border);
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-6) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  transition: color var(--t-fast);
}

.faq-trigger:hover { color: var(--c-primary); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--c-primary);
  line-height: 1;
  transition: background var(--t-fast), transform var(--t-base);
  user-select: none;
}

.faq-item[open] .faq-icon,
.faq-item.is-open .faq-icon {
  background: var(--c-accent);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-slow), padding var(--t-slow);
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--sp-6);
}


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: var(--sp-4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav__logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav__logo-wordmark {
  height: 28px;
  object-fit: contain;
  /* Invert to white on dark nav */
  filter: brightness(0) invert(1);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-primary-dark);
  color: rgba(255, 255, 255, 0.55);
  padding-block: var(--sp-12);
  font-size: 0.875rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-5);
}

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

.footer__logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
}

.footer__links a:hover { color: var(--c-accent); }

.footer__canadian {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin-left: 0.75rem;
}

.canadian-flag-icon {
  flex-shrink: 0;
  border-radius: 2px;
  display: inline-block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}


/* ============================================================
   GRID HELPERS
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

/* Stack grid columns on smaller screens */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-4,
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }

  .container { padding-inline: var(--sp-4); }
  .section   { padding-block: var(--sp-12); }

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

  .btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}


/* ============================================================
   HERO SPLIT — 2-column: text left, photo right
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero-split__text { max-width: 560px; }

.hero-split__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .hero-split__text { max-width: 100%; text-align: center; }
  .hero-split__image { max-height: 360px; }
}


/* ============================================================
   STATS BAR — icons above numbers + dividers
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.stat__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: rgba(250, 237, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
  color: var(--c-accent);
}

.stat__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-accent);
}

.stat--divider {
  position: relative;
}

.stat--divider + .stat--divider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat--divider + .stat--divider::before { display: none; }
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   STEPS TIMELINE — vertical connector line
   ============================================================ */
.steps-timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: var(--c-border);
  border-radius: var(--r-full);
}


/* ============================================================
   CARD ICON — Lucide SVG variant (replaces emoji)
   ============================================================ */
.card__icon--lucide {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.card__icon--lucide svg {
  width: 24px;
  height: 24px;
}

.card__icon--yellow  { background: rgba(250, 237, 74, 0.15); color: #b8a200; }
.card__icon--green   { background: rgba(7, 155, 81, 0.1);    color: var(--c-success); }
.card__icon--teal    { background: rgba(8, 54, 59, 0.08);    color: var(--c-primary); }
.card__icon--accent  { background: rgba(250, 237, 74, 0.15); color: #b8a200; }


/* ============================================================
   INDUSTRY CARD — photo with gradient overlay
   ============================================================ */
.industry-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--sp-6);
  background: linear-gradient(to top, rgba(8, 54, 59, 0.88) 0%, rgba(8, 54, 59, 0.4) 60%, transparent 100%);
}

.industry-card__title {
  color: var(--c-white);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--sp-1);
}

.industry-card__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.5;
}


/* ============================================================
   CONTACT SPLIT — 2-column: benefits left, form right
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-split__benefits {
  padding-top: var(--sp-4);
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}


/* ============================================================
   TRUST BAR — testimonial section
   ============================================================ */
.trust-bar {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.trust-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
}

.trust-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--sp-4);
  color: #f59e0b;
}

.trust-stars svg {
  width: 20px;
  height: 20px;
  fill: #f59e0b;
  stroke: none;
}

.trust-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
}

.trust-author span {
  font-weight: 400;
  color: var(--c-text-muted);
}


/* ============================================================
   FAQ CHEVRON — Lucide icon rotation (replaces +/-)
   ============================================================ */
.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-primary);
  transition: transform var(--t-base);
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.is-open .faq-icon svg {
  stroke: var(--c-primary);
}


/* ============================================================
   HERO LIGHT — light-background hero variant
   ============================================================ */
.hero-light {
  background: var(--c-off-white);
  padding-block: 5rem 4rem;
}

.hero-light .text-display {
  color: var(--c-text);
}

.hero-light .text-lead {
  color: var(--c-text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-light .hero-split__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Outlined teal button */
.btn--outline-teal {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline-teal:hover {
  background: var(--c-primary);
  color: var(--c-white);
}


/* ============================================================
   PHOTO STRIP — horizontal Toronto scene band
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-strip img {
    height: 140px;
  }
}


/* ============================================================
   STATS BAR LIGHT — on off-white background
   ============================================================ */
.stats-bar-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.stats-bar-light .stat__number {
  color: var(--c-primary);
}

.stats-bar-light .stat__label {
  color: var(--c-text-muted);
}

@media (max-width: 900px) {
  .stats-bar-light { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   STEPS HORIZONTAL — 4-column step cards
   ============================================================ */
.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  counter-reset: step-counter;
}

.step-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  position: relative;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-card__number {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 1.1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.step-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: var(--sp-2);
  color: var(--c-text);
}

.step-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.app-badges {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-4);
}

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

@media (max-width: 900px) {
  .steps-horizontal { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .steps-horizontal { grid-template-columns: 1fr; }
}


/* ============================================================
   COMPARISON TABLE — Goodjob vs Traditional Agencies
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: var(--sp-8);
}

.comparison-table th,
.comparison-table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}

.comparison-table thead th {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-border);
}

.comparison-table thead th:first-child {
  color: var(--c-text-muted);
  font-weight: 600;
}

.comparison-table thead th.col-goodjob {
  color: var(--c-primary);
}

.comparison-table thead th.col-traditional {
  color: var(--c-text-muted);
}

.comparison-table tbody td:nth-child(2) {
  color: var(--c-primary);
  font-weight: 600;
}

.comparison-table tbody td:nth-child(3) {
  color: var(--c-text-muted);
}

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

@media (max-width: 600px) {
  .comparison-table th,
  .comparison-table td {
    padding: var(--sp-3) var(--sp-3);
    font-size: 0.85rem;
  }
}


/* ============================================================
   CONTACT LIGHT — form on light background
   ============================================================ */
.contact-light {
  max-width: 620px;
  margin: 0 auto;
}

.contact-light .form-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}


/* ============================================================
   HERO LAYERED — blended photo background with floating phone
   ============================================================ */
.hero-layered {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: var(--c-off-white);
}

/* Full-bleed background photo */
.hero-layered__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-layered__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Gradient that bleeds the image into the page bg */
.hero-layered__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--c-off-white) 0%, var(--c-off-white) 30%, rgba(249,249,240,0.85) 45%, rgba(249,249,240,0.3) 65%, rgba(249,249,240,0.05) 80%, transparent 100%),
    linear-gradient(to top, var(--c-off-white) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(249,249,240,0.5) 0%, transparent 20%);
}

.hero-layered__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero-layered__text {
  max-width: 560px;
}

.hero-layered__text .text-display {
  margin-bottom: 1.5rem;
}

.hero-layered__text .text-lead {
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-layered__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Phone floating over the photo area */
.hero-layered__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-phone-mockup {
  position: relative;
  z-index: 2;
  width: 220px;
  filter: drop-shadow(0 24px 64px rgba(8, 54, 59, 0.4));
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating glassmorphism stat badges */
.hero-float-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-md);
  padding: 0.65rem 1.1rem;
  box-shadow: 0 8px 32px rgba(8, 54, 59, 0.12);
  white-space: nowrap;
  animation: badge-float 5s ease-in-out infinite;
}

.hero-float-badge__value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.2;
}

.hero-float-badge__label {
  font-size: 0.65rem;
  color: var(--c-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-float-badge--top-left {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.hero-float-badge--top-right {
  top: 4%;
  right: -4%;
  animation-delay: 1.5s;
}

.hero-float-badge--bottom-left {
  bottom: 12%;
  left: -12%;
  animation-delay: 3s;
}

.hero-float-badge--bottom-right {
  bottom: 6%;
  right: -6%;
  animation-delay: 4s;
}

.hero-float-badge--canadian .hero-float-badge__value {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero-float-badge--top-left { left: 2%; top: 5%; }
  .hero-float-badge--top-right { right: 2%; }
  .hero-float-badge--bottom-left { left: 5%; }
  .hero-float-badge--bottom-right { right: 5%; bottom: 4%; }
  .hero-float-badge { padding: 0.5rem 0.85rem; }
  .hero-float-badge__value { font-size: 1rem; }
  .hero-float-badge__label { font-size: 0.6rem; }
}

@media (max-width: 900px) {
  .hero-layered__bg::after {
    background:
      linear-gradient(to bottom, var(--c-off-white) 0%, rgba(249,249,240,0.7) 30%, rgba(249,249,240,0.4) 60%, rgba(249,249,240,0.6) 80%, var(--c-off-white) 100%);
  }
  .hero-layered__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    text-align: center;
  }
  .hero-layered__text { max-width: 100%; }
  .hero-layered__text .text-lead { margin-inline: auto; }
  .hero-layered__ctas { justify-content: center; }
  .hero-layered__visual { min-height: 340px; }
  .hero-phone-mockup { width: 170px; }
}


/* ============================================================
   STEPS FLOW — connected cards with visual path
   ============================================================ */
.steps-flow {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* SVG connector path sits behind the cards */
.steps-flow__path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.steps-flow__path path {
  fill: none;
  stroke: var(--c-border);
  stroke-width: 2;
  stroke-dasharray: 8 6;
}

.steps-flow__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.steps-flow__card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.steps-flow__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.steps-flow__card-header {
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.steps-flow__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps-flow__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.steps-flow__card:nth-child(1) .steps-flow__icon {
  background: rgba(250, 237, 74, 0.2);
  color: var(--c-primary);
}
.steps-flow__card:nth-child(1) .steps-flow__icon svg { stroke: var(--c-primary); }

.steps-flow__card:nth-child(2) .steps-flow__icon {
  background: rgba(8, 54, 59, 0.08);
  color: var(--c-primary);
}
.steps-flow__card:nth-child(2) .steps-flow__icon svg { stroke: var(--c-primary); }

.steps-flow__card:nth-child(3) .steps-flow__icon {
  background: rgba(7, 155, 81, 0.1);
  color: var(--c-success);
}
.steps-flow__card:nth-child(3) .steps-flow__icon svg { stroke: var(--c-success); }

.steps-flow__step-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-light);
  margin-bottom: 0.15rem;
}

.steps-flow__title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-text);
  line-height: 1.3;
}

.steps-flow__card-body {
  padding: 0 var(--sp-6) var(--sp-6);
}

.steps-flow__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* Arrow connectors between cards (desktop) */
.steps-flow__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-off-white);
  border: 2px solid var(--c-border);
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}

.steps-flow__arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-primary);
  stroke-width: 2.5;
}

.steps-flow__arrow--1 { left: calc(33.33% - 18px); }
.steps-flow__arrow--2 { left: calc(66.66% - 18px); }

@media (min-width: 901px) {
  .steps-flow__arrow { display: flex; }
}

@media (max-width: 900px) {
  .steps-flow__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .steps-flow__path { display: none; }
}


/* ============================================================
   STATS TICKER — horizontal scrolling stats bar
   ============================================================ */
.stats-ticker {
  background: var(--c-primary);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}

.stats-ticker__track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 25s linear infinite;
  width: max-content;
}

.stats-ticker__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.stats-ticker__value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: -0.02em;
}

.stats-ticker__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stats-ticker__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   PHOTO STRIP MARQUEE — edge-to-edge with continuous scroll
   ============================================================ */
.photo-strip-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.photo-strip-marquee__track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}

.photo-strip-marquee__track img {
  height: 220px;
  width: auto;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .photo-strip-marquee__track img {
    height: 160px;
  }
}


/* ============================================================
   STEP SHOWCASE — alternating text/image sections
   ============================================================ */
.step-showcase {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.step-showcase__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.step-showcase__item:nth-child(even) {
  direction: rtl;
}

.step-showcase__item:nth-child(even) > * {
  direction: ltr;
}

.step-showcase__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: var(--c-accent);
  color: var(--c-primary);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: var(--sp-5);
}

.step-showcase__title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.step-showcase__desc {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 440px;
}

.step-showcase__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-showcase__image img {
  max-width: 300px;
  width: 100%;
  filter: drop-shadow(0 16px 48px rgba(8, 54, 59, 0.18));
  border-radius: var(--r-lg);
}

@media (max-width: 900px) {
  .step-showcase__item,
  .step-showcase__item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
    gap: var(--sp-8);
  }
  .step-showcase__desc { margin-inline: auto; }
  .step-showcase__image { order: -1; }
  .step-showcase__image img { max-width: 220px; }
}


/* ============================================================
   BENTO GRID — asymmetric benefits layout
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-6);
}

.bento-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 226, 216, 0.7);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.bento-card--large {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  background: rgba(8, 54, 59, 0.06);
}

.bento-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--c-primary);
  stroke-width: 1.75;
}

.bento-card--large .bento-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(250, 237, 74, 0.2);
}

.bento-card--large .bento-card__icon svg {
  stroke: var(--c-primary);
  width: 28px;
  height: 28px;
}

.bento-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}

.bento-card__value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}

.bento-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.bento-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card--large {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card--large {
    grid-column: span 1;
  }
}


/* ============================================================
   TESTIMONIAL CAROUSEL — auto-rotating with dots
   ============================================================ */
.testimonial-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-carousel__track {
  display: flex;
  transition: transform 500ms ease;
}

.testimonial-carousel__slide {
  min-width: 100%;
  text-align: center;
  padding: 0 var(--sp-6);
}

.testimonial-carousel__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--sp-4);
  border: 3px solid var(--c-accent);
}

.testimonial-carousel__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: var(--sp-5);
}

.testimonial-carousel__author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
}

.testimonial-carousel__role {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  font-weight: 400;
}

.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--sp-8);
}

.testimonial-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--c-border);
  cursor: pointer;
  padding: 0;
  transition: background var(--t-base), transform var(--t-base);
}

.testimonial-carousel__dot.is-active {
  background: var(--c-primary);
  transform: scale(1.25);
}


/* ============================================================
   CTA BANNER — full-width final call to action
   ============================================================ */
.cta-banner {
  background: var(--c-primary);
  padding: var(--sp-20) 0;
  text-align: center;
  color: var(--c-white);
}

.cta-banner__heading {
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.cta-banner__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-8);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.6;
}

.cta-banner__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.cta-banner__microcopy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.cta-banner__badges {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
}

.cta-banner__badges img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--t-fast);
}

.cta-banner__badges img:hover {
  opacity: 1;
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.reveal-stagger.reveal--visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.reveal--visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.reveal--visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.reveal--visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.reveal--visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.reveal--visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }


/* ============================================================
   MOBILE STICKY CTA — floating bottom bar
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(8, 54, 59, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem var(--sp-4);
  transform: translateY(100%);
  transition: transform 400ms ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sticky-cta.is-visible {
  transform: translateY(0);
}

.mobile-sticky-cta .btn {
  width: 100%;
}

.mobile-sticky-cta__microcopy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 0.35rem;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
}


/* ============================================================
   GLASSMORPHISM UTILITIES
   ============================================================ */
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 226, 216, 0.5);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 24px rgba(8, 54, 59, 0.08);
}


/* ============================================================
   GET STARTED PAGE — centered form layout
   ============================================================ */
.get-started-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.get-started-hero {
  background: var(--c-off-white);
  padding: 4rem 0 3rem;
  text-align: center;
}

.get-started-hero__heading {
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.get-started-hero__sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.get-started-form-section {
  flex: 1;
  padding: var(--sp-12) 0;
  background: var(--c-white);
}

.get-started-alt {
  text-align: center;
  padding: var(--sp-8) 0 var(--sp-12);
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.get-started-alt__heading {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--sp-4);
  color: var(--c-text-muted);
}


/* ============================================================
   PARTNER LOGOS BAR — trusted partner logos strip
   ============================================================ */
.partner-logos-bar {
  background: var(--c-white);
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.partner-logos-bar__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

.partner-logos-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logos-bar__logo {
  height: 34px;
  width: auto;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.25s ease;
}

.partner-logos-bar__logo:hover {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 768px) {
  .partner-logos-bar__logos {
    gap: 1.5rem 2.5rem;
  }
  .partner-logos-bar__logo {
    height: 26px;
  }
}

/* ============================================================
   INDUSTRY ICONS BAR — trust strip below photo marquee
   ============================================================ */
.industry-icons-bar {
  background: var(--c-primary);
  padding: 1.25rem 0;
}

.industry-icons-bar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.industry-icons-bar__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.industry-icons-bar__icons {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.industry-icons-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.industry-icons-bar__item svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-accent);
  stroke-width: 1.75;
}

@media (max-width: 768px) {
  .industry-icons-bar__inner {
    flex-direction: column;
    gap: 0.75rem;
  }
  .industry-icons-bar__icons {
    gap: 1rem 1.5rem;
  }
}


/* ============================================================
   HERO MICROCOPY — small trust line below CTA
   ============================================================ */
.hero-layered__microcopy {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 0.75rem;
}


/* ============================================================
   HOW IT WORKS — clean staggered cards
   ============================================================ */
.hiw-cards {
  display: flex;
  align-items: stretch;
  gap: var(--sp-6);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-block: 3rem;
}

.hiw-card {
  flex: 1;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  z-index: 1;
}

.hiw-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.hiw-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.hiw-card__step {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-light);
}

.hiw-card__stat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-primary);
  background: rgba(250, 237, 74, 0.35);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
}

.hiw-card__title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.hiw-card__desc {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  flex: 1;
}

.hiw-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-6);
}

.hiw-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-primary);
  stroke-width: 1.75;
}

/* Curved trajectory SVG sweeping above & below cards */
.hiw-trajectory {
  position: absolute;
  top: -2rem;
  left: 0;
  width: 100%;
  height: calc(100% + 4rem);
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.hiw-trajectory__line {
  fill: none;
  stroke: var(--c-primary);
  stroke-width: 2.5;
  stroke-dasharray: 10 7;
  opacity: 0.15;
  stroke-linecap: round;
}

.hiw-trajectory__dot {
  fill: var(--c-accent);
  stroke: var(--c-primary);
  stroke-width: 2;
  opacity: 0.35;
}

/* Stagger: cards appear left → middle → right */
.hiw-cards.reveal-stagger.reveal--visible > .hiw-trajectory { transition-delay: 0ms; }
.hiw-cards.reveal-stagger.reveal--visible > .hiw-card:nth-of-type(1) { transition-delay: 0ms; }
.hiw-cards.reveal-stagger.reveal--visible > .hiw-card:nth-of-type(2) { transition-delay: 300ms; }
.hiw-cards.reveal-stagger.reveal--visible > .hiw-card:nth-of-type(3) { transition-delay: 600ms; }


/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hiw-cards {
    flex-direction: column;
    gap: var(--sp-4);
    max-width: 420px;
  }
  .hiw-trajectory {
    display: none;
  }
}


/* ============================================================
   PAIN BRIDGE — lightweight frustration callout
   ============================================================ */
.pain-bridge {
  background: var(--c-primary);
  padding: var(--sp-12) 0;
}

.pain-bridge__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pain-bridge__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: var(--sp-6);
}

.pain-bridge__pains {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.pain-bridge__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.pain-bridge__item svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.75;
}

.pain-bridge__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.pain-bridge__pivot {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-accent);
}

@media (max-width: 600px) {
  .pain-bridge__pains {
    flex-direction: column;
    gap: var(--sp-3);
  }
  .pain-bridge__divider {
    display: none;
  }
}


/* ============================================================
   MOBILE RESPONSIVE FIXES (≤ 600px)
   Comprehensive overrides for phone-sized viewports.
   ============================================================ */
@media (max-width: 600px) {

  /* ── Typography scale-down ── */
  .text-display {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }
  .text-h2 {
    font-size: clamp(1.3rem, 5.5vw, 1.6rem);
  }
  .text-lead {
    font-size: 0.95rem;
  }

  /* ── Section spacing tighter ── */
  .section {
    padding-block: var(--sp-10);
  }

  /* ── Hero layered ── */
  .hero-layered {
    padding: 3rem 0 2rem;
  }
  .hero-layered__visual {
    min-height: 260px;
  }
  .hero-phone-mockup {
    width: 145px !important;
  }
  .hero-layered__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-layered__ctas .btn {
    justify-content: center;
    width: 100%;
  }
  .hero-layered__microcopy {
    text-align: center;
  }

  /* Floating badges — smaller & tighter on phones */
  .hero-float-badge {
    padding: 0.4rem 0.7rem;
  }
  .hero-float-badge__value {
    font-size: 0.85rem;
  }
  .hero-float-badge__label {
    font-size: 0.5rem;
  }
  .hero-float-badge--top-left {
    left: 4%;
    top: 2%;
  }
  .hero-float-badge--top-right {
    right: 4%;
    top: 0%;
  }
  .hero-float-badge--bottom-right {
    right: 6%;
    bottom: 2%;
  }

  /* ── Pain bridge — tighter ── */
  .pain-bridge {
    padding: var(--sp-8) 0;
  }

  /* ── HIW cards — compact ── */
  .hiw-cards {
    padding-block: 1rem;
    gap: var(--sp-4);
    max-width: 100%;
  }
  .hiw-card {
    padding: var(--sp-6) var(--sp-5) var(--sp-5);
  }

  /* ── Bento grid — compact ── */
  .bento-card {
    padding: var(--sp-6);
  }
  .bento-card__value {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  /* ── Industry cards — shorter on mobile ── */
  .industry-card {
    min-height: 220px;
  }

  /* ── CTA banner ── */
  .cta-banner {
    padding: var(--sp-12) 0;
  }
  .cta-banner__heading {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }
  .cta-banner__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-banner__buttons .btn {
    justify-content: center;
    width: 100%;
  }

  /* ── Footer — stack vertically ── */
  .footer {
    padding-block: var(--sp-8);
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-4);
  }
  .footer__logo {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
  }
  .footer__canadian {
    margin-left: 0;
  }
  .footer__links {
    justify-content: center;
    gap: var(--sp-4);
  }
}

/* ── Very narrow phones (≤ 400px) ── */
@media (max-width: 400px) {
  .text-display {
    font-size: 1.75rem;
  }
  .partner-logos-bar__logos {
    gap: 0.75rem 1.25rem;
  }
  .partner-logos-bar__logo {
    height: 20px;
  }
  .hero-layered__visual {
    min-height: 230px;
  }
  .hero-phone-mockup {
    width: 130px !important;
  }
}
