/* ============================================================
   Boyd & Co — Main Stylesheet
   Brand colours: Orange gradient + Navy | Per style guide v1.0
   ============================================================ */

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

:root {
  /* ── Brand Orange (from logo) ── */
  --orange-light:  #FFA940;
  --orange:        #FF7B00;
  --orange-dark:   #E8430A;
  --orange-grad:   linear-gradient(135deg, #FFA940 0%, #FF7B00 50%, #E8430A 100%);
  --orange-tint:   #FFF0E0;   /* icon backgrounds, tag backgrounds */
  --orange-border: #FFD6A5;   /* tag borders */

  /* ── Brand Navy ── */
  --navy:          #1E2235;
  --navy-dark:     #13162A;
  --navy-mid:      #2D3150;

  /* ── UI / Neutral ── */
  --blue:          #2563EB;   /* form focus & body-text links only */
  --blue-light:    #EFF6FF;
  --slate:         #64748B;
  --text:          #1A1A2E;
  --muted:         #64748B;
  --border:        #E2E8F0;
  --bg-light:      #F8F9FA;
  --white:         #FFFFFF;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w:     1160px;
  --radius:    8px;
  --shadow:    0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { color: var(--slate); line-height: 1.75; }

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

/* --- Layout helpers --------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--bg-light); }
.section--dark { background: var(--navy); }
.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark .eyebrow { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }
.section--dark .eyebrow { color: var(--orange-light); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: .75rem; }

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

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity .2s, color .2s, border-color .2s, background .2s, transform .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

/* Primary — orange gradient (main CTA) */
.btn-primary {
  background: var(--orange-grad);
  color: var(--white);
  border-color: transparent;
}
.btn-primary:hover { opacity: .9; color: var(--white); }

/* Dark — navy solid (secondary on light backgrounds) */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* White outline (for dark/navy backgrounds) */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* Gold — warm contrast button for dark hero sections */
.btn-gold {
  background: var(--orange-light);
  color: var(--navy-dark);
  border-color: var(--orange-light);
  font-weight: 700;
}
.btn-gold:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* --- Navigation ------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo:hover { text-decoration: none; color: var(--navy); }
.nav__logo span { color: var(--orange); }
.nav__logo-img { height: 64px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--orange); text-decoration: none; }

.nav__cta { margin-left: .5rem; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: .5rem 0 1rem;
}
.nav__mobile a {
  display: block;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--orange); background: var(--bg-light); }

/* --- Hero ------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #232744 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Orange accent bar at top of hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange-grad);
}

.hero__inner {
  position: relative;
  max-width: 760px;
}

.hero__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.25rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

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

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
}
.hero__badge svg { color: var(--orange-light); flex-shrink: 0; }

/* --- Services card --------------------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-border);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-tint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange-dark);
}

.service-card h3 { margin-bottom: .625rem; }
.service-card p  { font-size: .9375rem; }

/* --- Team card ------------------------------------------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-card__avatar {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.2);
  font-weight: 800;
  letter-spacing: -.05em;
}

.team-card__body { padding: 1.75rem 1.5rem; }
.team-card__body h3 { margin-bottom: .25rem; }
.team-card__title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.team-card__bio { font-size: .9375rem; text-align: left; }

.team-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.badge {
  font-size: .75rem;
  font-weight: 600;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--slate);
  padding: .25rem .75rem;
  border-radius: 100px;
}

/* --- Case study card ------------------------------------- */
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.case-card__tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-tint);
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.case-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.case-card h3 { margin-bottom: .75rem; }
.case-card p  { font-size: .9375rem; flex: 1; }

.case-card__result {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}
.case-card__result-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .25rem;
}
.case-card__result p { font-size: .9375rem; color: var(--text); font-weight: 500; }

/* --- Stats ----------------------------------------------- */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 4rem;
  padding: 3.5rem 0;
}
.stat { text-align: center; }
.stat__number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat__label { font-size: .875rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* --- Contact form ---------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-tint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}
.contact-detail__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.contact-detail__value a { color: var(--text); }
.contact-detail__value a:hover { color: var(--orange); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,123,0,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Footer ---------------------------------------------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand { max-width: 300px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.footer__logo span { color: var(--orange-light); }
.footer__logo-img { height: 48px; width: auto; display: block; }
.footer__brand p { font-size: .9375rem; line-height: 1.7; }

.footer__col h4 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__col a:hover { color: var(--orange-light); text-decoration: none; }

.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background .2s, color .2s;
}
.footer__social a:hover { background: var(--orange); color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .875rem;
}

/* Orange accent bar at footer top */
.footer { border-top: 3px solid var(--orange); }

/* --- Page hero (inner pages) ----------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 0;
  color: var(--white);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange-grad);
}
.page-hero .eyebrow { color: var(--orange-light); }
.page-hero h1 { color: var(--white); margin: .5rem 0 1rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; font-size: 1.0625rem; }

/* --- CTA Banner ------------------------------------------ */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle orange glow behind CTA */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,123,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; position: relative; }

/* --- Utilities ------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.gap-sm { gap: .75rem; }

/* --- Responsive ------------------------------------------ */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: flex; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero__badges { gap: 1rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  .stats { gap: 1.5rem 2.5rem; }
  .stat__number { font-size: 2.25rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ── Scroll animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Case card hover lift ───────────────────────────────────── */
.case-card {
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-border);
}

/* ── Nav shadow on scroll ───────────────────────────────────── */
.nav {
  transition: box-shadow .3s;
}
.nav--scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  border-bottom-color: transparent;
}

/* ── Sticky mobile CTA bar ──────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 2px solid var(--orange);
  padding: .875rem 1.25rem;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
.sticky-cta p { font-size: .875rem; color: rgba(255,255,255,.8); margin: 0; font-weight: 500; }
.sticky-cta .btn { white-space: nowrap; font-size: .875rem; padding: .625rem 1.25rem; flex-shrink: 0; }
.sticky-cta__close { background: none; border: none; color: rgba(255,255,255,.4); cursor: pointer; font-size: 1.25rem; line-height: 1; padding: 0 0 0 .5rem; flex-shrink: 0; }
.sticky-cta__close:hover { color: white; }
@media (max-width: 768px) { .sticky-cta { display: flex; } }

/* ── Cookie consent banner ──────────────────────────────────── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 300;
  background: var(--navy-dark);
  border: 1px solid var(--navy-mid);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  max-width: 560px;
  gap: 1rem;
  align-items: center;
}
.cookie-banner.show { display: flex; flex-wrap: wrap; }
.cookie-banner p { font-size: .875rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-banner p a { color: var(--orange-light); }
.cookie-banner__actions { display: flex; gap: .625rem; flex-shrink: 0; }
.cookie-banner .btn { font-size: .8125rem; padding: .5rem 1rem; }

/* ── Hero word stagger animation ────────────────────────────── */
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.hero__word.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   World-Class Funnel Enhancements - v2.0
   ============================================================ */

/* ── Hero two-column layout ─────────────────────────────────── */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 348px;
  gap: 3.5rem;
  align-items: center;
}
.hero__layout .hero__inner { max-width: none; }

/* ── Hero glow orb ───────────────────────────────────────────── */
@keyframes hero-glow-pulse {
  0%, 100% { opacity: .18; transform: translateY(-50%) scale(1); }
  50%       { opacity: .34; transform: translateY(-50%) scale(1.12); }
}
.hero__glow {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,123,0,.38) 0%, transparent 68%);
  border-radius: 50%;
  animation: hero-glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }

/* ── Hero aside credential card ──────────────────────────────── */
.hero__aside {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__aside-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  padding: .3rem .875rem;
  margin-bottom: 1.5rem;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}
.hero__aside-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__aside-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: .625rem;
}
.hero__aside-list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero__aside-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  line-height: 1.5;
}
.hero__aside-author {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem;
}
.hero__aside-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}
.hero__aside-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 .15rem;
  line-height: 1.3;
}
.hero__aside-brands {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  font-weight: 500;
}
@media (max-width: 980px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__aside  { display: none; }
}

/* ── Button shine effect ──────────────────────────────────────── */
@keyframes btn-shine {
  0%         { left: -80%; opacity: 0; }
  8%         { opacity: 1; }
  50%, 100%  { left: 130%; opacity: 0; }
}
.btn-primary, .btn-gold { position: relative; overflow: hidden; }
.btn-primary::after, .btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  animation: btn-shine 4s ease-in-out infinite;
  pointer-events: none;
}

/* ── Nav animated underline ───────────────────────────────────── */
.nav__links a { position: relative; padding-bottom: 3px; }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange-grad);
  border-radius: 1px;
  transition: width .3s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* ── Service card icon pop on hover ───────────────────────────── */
@keyframes icon-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.22); }
  100% { transform: scale(1.06); }
}
.service-card:hover .service-card__icon {
  animation: icon-pop .38s cubic-bezier(.34,1.56,.64,1) forwards;
}

/* ── CTA banner glow pulse ────────────────────────────────────── */
@keyframes cta-glow {
  0%, 100% { opacity: .18; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: .32; transform: translate(-50%,-50%) scale(1.18); }
}
.cta-banner::before { animation: cta-glow 4s ease-in-out infinite; }

/* ── Trust bar ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.trust-bar__item svg { color: var(--orange); flex-shrink: 0; }
.trust-bar__divider { width: 1px; height: 16px; background: var(--border); flex-shrink: 0; }
@media (max-width: 640px) {
  .trust-bar__divider { display: none; }
  .trust-bar__item { font-size: .75rem; }
}

/* ── Process / How We Work ────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  margin: 2.5rem 0 3rem;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-border);
}
/* Orange top-bar that sweeps in on hover */
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.process-step:hover::before { transform: scaleX(1); }
/* Large ghost step number */
.process-step__num {
  position: absolute;
  top: .875rem; right: 1.25rem;
  font-size: 4rem;
  font-weight: 900;
  color: var(--orange-light);
  opacity: .1;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.process-step__icon {
  width: 52px; height: 52px;
  background: var(--orange-grad);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.process-step h3 { margin-bottom: .625rem; font-size: 1.125rem; }
.process-step p  { font-size: .9375rem; line-height: 1.7; }
.process-step__tag {
  display: inline-flex;
  align-items: center;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-tint);
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-top: 1.25rem;
  border: 1px solid var(--orange-border);
}
.process-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3.5rem .75rem 0;
  color: var(--orange-border);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-connector { display: none; }
}

/* ── Checklist strip (warm lead-magnet band) ─────────────────── */
.checklist-strip {
  background: linear-gradient(135deg, var(--orange-tint) 0%, #FFF5E8 100%);
  border-top: 1px solid var(--orange-border);
  border-bottom: 1px solid var(--orange-border);
  padding: 2.75rem 0;
}
.checklist-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.checklist-strip .eyebrow { color: var(--orange-dark); }
.checklist-strip h3 { color: var(--navy); margin: .35rem 0 .5rem; font-size: 1.375rem; }
.checklist-strip p  { color: var(--text); max-width: 480px; font-size: .9375rem; margin: 0; }
@media (max-width: 768px) {
  .checklist-strip__inner { justify-content: center; text-align: center; }
  .checklist-strip p { margin: 0 auto; }
}
