/* ============================================================
   SearchCube — Brand & Product Design System
   Color tokens:
     orange:  #ED6632 / #F39342 / #E55A26 / #FDEEE6
     navy:    #0F1B2D / #1A2942 / #08111F
     cream:   #FAF7F2 / #F2EDE3
     gray:    #1F2937 / #4B5563
   Reference brand orange per founder: #FF6535 — current tokens
   are 18 RGB units darker, more burnt, intentionally kept for
   contrast against #FAF7F2 (orange-on-cream hits AA Large only).
   Founder to confirm swap; do not change without sign-off.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Brand colors (see top-of-file comment for source note) */
  --orange-primary: #ED6632;
  --orange-light:   #F39342;
  --orange-dark:    #E55A26;
  --orange-pale:    #FDEEE6;
  --gray-dark:      #1F2937;
  --gray-mid:       #4B5563;
  --navy:           #0F1B2D;
  --navy-light:     #1A2942;
  --navy-deep:      #08111F;
  --cream:          #FAF7F2;
  --cream-dark:     #F2EDE3;
  --white:          #FFFFFF;

  /* Type scale */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-hero:   clamp(2.5rem, 5vw, 4.25rem);
  --fs-h1:     clamp(2rem, 4vw, 3rem);
  --fs-h2:     clamp(1.5rem, 2.8vw, 2.25rem);
  --fs-h3:     clamp(1.25rem, 2vw, 1.5rem);
  --fs-body:   1rem;
  --fs-small:  0.875rem;
  --fs-eyebrow:0.75rem;

  /* Spacing */
  --gutter:    clamp(20px, 4vw, 64px);
  --section-y: clamp(60px, 9vw, 120px);
  --content-max: 1180px;
  --text-col-max: 720px;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15,27,45,0.06), 0 1px 3px rgba(15,27,45,0.08);
  --shadow-md: 0 4px 12px rgba(15,27,45,0.08), 0 2px 6px rgba(15,27,45,0.06);
  --shadow-lg: 0 12px 40px rgba(15,27,45,0.12), 0 4px 12px rgba(15,27,45,0.08);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--gray-dark);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--orange-primary); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--orange-dark); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; line-height: 1.15; font-weight: 700; color: var(--navy); letter-spacing: -0.015em; }
h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.text-col { max-width: var(--text-col-max); }
.section { padding: var(--section-y) 0; }
.section--tight { padding: calc(var(--section-y) * 0.55) 0; }
.section--navy   { background: var(--navy); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--cream  { background: var(--cream); }
.section--orange { background: var(--orange-primary); color: var(--white); }
.section--orange h1, .section--orange h2, .section--orange h3 { color: var(--white); }

/* ---------- EYEBROW LABEL ---------- */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--orange-light); }
.section--orange .eyebrow { color: var(--white); opacity: 0.9; }

/* Section header (eyebrow + h2 + lede) */
.section-header { max-width: 720px; margin-bottom: 48px; }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { font-size: 1.0625rem; color: var(--gray-mid); line-height: 1.6; }
.section--navy .section-header p { color: rgba(250,247,242,0.88); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary — outlined orange (brand default for most CTAs) */
.btn--primary {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
  background: transparent;
}
.btn--primary:hover {
  background: var(--orange-primary);
  color: var(--white);
}

/* Solid orange (used sparingly — only the "Hire Talent" / "Submit CV" final CTAs) */
.btn--solid {
  background: var(--orange-primary);
  color: var(--white);
  border-color: var(--orange-primary);
}
.btn--solid:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

/* White (on dark backgrounds) */
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: var(--white);
}

/* Ghost — no border, just text + arrow */
.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--orange-primary);
  padding: 14px 12px;
}
.btn--ghost:hover { color: var(--orange-dark); transform: translateX(2px); }

/* Size variants */
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 18px 32px; font-size: 1.0625rem; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 44px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav__link {
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  border-radius: var(--radius-sm);
  transition: background 0.18s ease, color 0.18s ease;
}
.site-nav__link:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.site-nav__link.is-active { color: var(--orange-light); }

/* On cream/light sections, header text flips to navy */
.site-header.is-light .site-nav__link { color: var(--navy); }
.site-header.is-light .site-nav__link:hover { background: var(--cream-dark); color: var(--orange-primary); }
.site-header.is-light .site-nav__link.is-active { color: var(--orange-primary); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--cream);
}
.site-header.is-light .nav-toggle { color: var(--navy); }
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.site-header.is-light .nav-toggle:hover { background: var(--cream-dark); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  padding: clamp(96px, 14vw, 180px) 0 clamp(80px, 12vw, 160px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/sg-cbd-01.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,27,45,0.55) 0%, rgba(15,27,45,0.78) 100%),
    linear-gradient(90deg, rgba(15,27,45,0.7) 0%, rgba(15,27,45,0.2) 60%, rgba(15,27,45,0.1) 100%);
}
.hero > .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__grid--solo { grid-template-columns: 1fr; max-width: 880px; gap: 0; }
.hero__grid--solo > * { grid-column: 1; }
.hero--photo { padding: clamp(96px, 14vw, 160px) 0 clamp(72px, 10vw, 120px); }
.hero__copy h1 {
  color: var(--white);
  font-size: var(--fs-hero);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero__copy h1 em { font-style: normal; color: var(--orange-primary); }
.hero__lede {
  font-size: 1.125rem;
  color: rgba(250,247,242,0.88);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(250,247,242,0.12);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(250,247,242,0.75);
}
.hero__trust-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero visual — geometric abstract */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.hero__visual-shape {
  position: absolute;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
}
.hero__visual-shape--1 {
  inset: 0 32% 32% 0;
  transform: rotate(-8deg);
  opacity: 0.95;
}
.hero__visual-shape--2 {
  inset: 28% 0 0 32%;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-primary) 100%);
  transform: rotate(6deg);
  opacity: 0.7;
}
.hero__visual-shape--3 {
  inset: 50% 18% 18% 18%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(250,247,242,0.12);
  transform: rotate(-3deg);
}
.hero__visual-label {
  position: absolute;
  bottom: 8%;
  right: 8%;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* Hero photograph (replaces abstract shapes when image asset present) */
.hero__visual { position: relative; aspect-ratio: 1 / 1; max-width: 520px; width: 100%; margin-left: auto; overflow: hidden; }
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}
.hero__visual-label { z-index: 1; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(70px, 10vw, 110px) 0 clamp(50px, 7vw, 80px);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 800px;
}
.page-hero p {
  font-size: 1.125rem;
  color: rgba(250,247,242,0.78);
  max-width: 640px;
  margin: 0;
}

/* page-hero with background image */
.page-hero--image {
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.88) 0%, rgba(15,27,45,0.65) 100%);
  z-index: 1;
}
.page-hero--image .container {
  position: relative;
  z-index: 2;
}

/* thanks page hero with subtle background image */
.thanks-hero-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  box-shadow: 0 30px 60px -15px rgba(15,27,45,0.25);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,27,45,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(237,102,50,0.2); }
.card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--orange-pale);
  color: var(--orange-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}
.card__num--navy {
  background: rgba(250,247,242,0.08);
  color: var(--orange-light);
}
.card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.card p { color: var(--gray-mid); font-size: 0.95rem; line-height: 1.6; }

.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Dark cards on navy backgrounds */
.section--navy .card {
  background: rgba(250,247,242,0.04);
  border-color: rgba(250,247,242,0.08);
  backdrop-filter: blur(6px);
}
.section--navy .card:hover { border-color: rgba(237,102,50,0.4); background: rgba(250,247,242,0.06); }
.section--navy .card h3 { color: var(--white); }
.section--navy .card p  { color: rgba(250,247,242,0.92); }
.section--navy .card__num { background: rgba(237,102,50,0.16); color: var(--orange-light); }

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  text-align: left;
}
.stat__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--orange-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.section--navy .stat__num { color: var(--orange-light); }
.stat__label { font-size: 0.92rem; color: var(--gray-mid); line-height: 1.4; }
.section--navy .stat__label { color: rgba(250,247,242,0.7); }

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--orange-primary);
  max-width: 760px;
  margin: 0 auto;
}
.testimonial__quote {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--gray-dark);
  margin-bottom: 24px;
  font-weight: 500;
}
.testimonial__quote::before { content: "\201C"; color: var(--orange-primary); margin-right: 4px; }
.testimonial__quote::after  { content: "\201D"; color: var(--orange-primary); margin-left: 2px; }
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; color: var(--navy); }
.testimonial__role { font-size: 0.875rem; color: var(--gray-mid); }

/* ---------- DUAL CTA (I'm Hiring / I'm a Candidate) ---------- */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.dual-cta__panel {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(15,27,45,0.08);
}
.dual-cta__panel--hire { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.dual-cta__panel--candidate { background: var(--cream); border-color: var(--cream-dark); color: var(--navy); }
.dual-cta__panel h3 { font-size: 1.5rem; margin-bottom: 16px; }
.dual-cta__panel--hire h3 { color: var(--white); }
.dual-cta__panel ul { list-style: none; padding: 0; margin: 0 0 28px; }
.dual-cta__panel li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.dual-cta__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange-primary);
  background-image: radial-gradient(circle at center, var(--white) 0%, var(--white) 25%, transparent 30%);
}
.dual-cta__panel--candidate li { color: var(--gray-dark); }
.dual-cta__panel--candidate li::before {
  background: var(--navy);
  background-image: radial-gradient(circle at center, var(--orange-primary) 0%, var(--orange-primary) 22%, transparent 30%);
}

/* ---------- LEAD MAGNET FORM ---------- */
.lead-magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lead-magnet__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.lead-magnet__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.16;
  filter: grayscale(0.3) contrast(1.05);
}
.lead-magnet__visual > *:not(.lead-magnet__cover-img) {
  position: relative;
  z-index: 1;
}
.lead-magnet__visual:hover { transform: rotate(0); }
.lead-magnet__cover-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 24px;
}
.lead-magnet__cover-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.lead-magnet__cover-subtitle {
  font-size: 0.95rem;
  color: rgba(250,247,242,0.7);
  line-height: 1.5;
  margin-bottom: 28px;
}
.lead-magnet__cover-meta {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(250,247,242,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(250,247,242,0.5);
}
.lead-magnet__cover-meta strong { color: var(--orange-primary); font-weight: 700; }

.lead-magnet__copy h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 18px; }
.lead-magnet__copy > p { font-size: 1.0625rem; color: var(--gray-mid); margin-bottom: 28px; }
.lead-magnet__perks { list-style: none; padding: 0; margin: 0 0 28px; }
.lead-magnet__perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.lead-magnet__perks li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-primary);
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Form fields */
.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.01em;
}
.section--navy .form__label,
.section--cream-dark .form__label,
.section--orange .form__label { color: var(--cream); }
.form__input, .form__select {
  padding: 12px 14px;
  border: 1px solid rgba(15,27,45,0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form__input:focus, .form__select:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(237,102,50,0.15);
}
.form__submit { margin-top: 6px; }
.form__hint { font-size: 0.78rem; color: var(--gray-mid); margin-top: 4px; }
.form__error { font-size: 0.8rem; color: var(--orange-dark); margin-top: 6px; display: none; }
.form--error .form__error { display: block; }

/* ---------- INTENT TABS (contact form) ---------- */
.intent-tab {
  appearance: none;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid rgba(15,27,45,0.12);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.intent-tab:hover { border-color: var(--orange-primary); }
.intent-tab.is-active {
  background: var(--orange-primary);
  color: var(--white);
  border-color: var(--orange-primary);
}

/* ---------- HERO META LINE ---------- */
.hero__meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ---------- FUNCTIONS LIST (chip-grid) ---------- */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid rgba(15,27,45,0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-dark);
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-primary);
}

/* ---------- PROCESS / TIMELINE ---------- */
.process { counter-reset: step; display: grid; gap: 20px; }
.process__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange-primary);
  align-items: center;
}
.process__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  letter-spacing: -0.02em;
}
.process__step h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.process__step p { color: var(--gray-mid); font-size: 0.92rem; margin: 0; }

/* ---------- ARTICLE LIST (Insights) ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15,27,45,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card__cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
}
.article-card__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.article-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,27,45,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.article-card__cover-tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(237,102,50,0.85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-card__body { padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.article-card__date { font-size: 0.78rem; color: var(--gray-mid); margin-bottom: 8px; }
.article-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.article-card__excerpt {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.article-card__more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(250,247,242,0.7);
  padding: 64px 0 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.site-footer__brand img { height: 44px; width: auto; max-width: none; filter: brightness(0) invert(1); }
.site-footer__brand p { font-size: 0.92rem; line-height: 1.6; max-width: 320px; }
.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a {
  color: rgba(250,247,242,0.7);
  font-size: 0.92rem;
  transition: color 0.18s ease;
}
.site-footer a:hover { color: var(--orange-primary); }
.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.site-footer__contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-footer__contact-icon svg { width: 14px; height: 14px; color: var(--white); }
.site-footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250,247,242,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.site-footer__bottom a { color: rgba(250,247,242,0.6); }
.site-footer__socials { display: flex; gap: 12px; }
.site-footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(250,247,242,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}
.site-footer__socials a:hover { background: var(--orange-primary); color: var(--white); }

/* ---------- MOBILE ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 360px; margin: 0 auto; }
  .dual-cta { grid-template-columns: 1fr; }
  .lead-magnet { grid-template-columns: 1fr; gap: 48px; }
  .lead-magnet__visual { max-width: 280px; margin: 0 auto; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form__row { grid-template-columns: 1fr; }
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .card-grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(15,27,45,0.06);
    transform: translateY(-110%);
    transition: transform 0.28s ease;
    z-index: 99;
    overflow-y: auto;
    max-height: calc(100vh - 72px);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav__link {
    padding: 14px var(--gutter);
    border-radius: 0;
    color: var(--navy);
  }
  .site-nav__link:hover { background: var(--cream-dark); color: var(--orange-primary); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1 1 100%; min-width: 0; }
  .hero__copy h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
  .lead-magnet__visual { max-width: 100%; }
  .form__row { grid-template-columns: 1fr; }
  .intent-tabs { gap: 6px; }
  .intent-tab { flex: 1 1 auto; padding: 10px 14px; font-size: 0.85rem; }
  details summary { padding: 4px 0; }
}

/* ---------- UTILITY ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-orange { color: var(--orange-primary); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.fw-700 { font-weight: 700; }
.fs-small { font-size: 0.875rem; }

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--orange-primary);
  outline-offset: 3px;
  border-radius: 4px;
}