/* ============================================================
   PracticeLink Courier — Global Stylesheet
   RhythmWorks AI Premium Build
   Font: Montserrat (headings) + Inter (body)
   ============================================================ */

/* ── Token System ──────────────────────────────────────────── */
:root {
  --brand-green:        #1A6B3C;
  --brand-green-dark:   #134F2D;
  --brand-green-light:  #2D8A54;
  --brand-orange:       #F05E00;
  --brand-orange-light: #FF7520;
  --brand-orange-pale:  #FFF4EC;

  --bg-base:            #FFFFFF;
  --bg-raised:          #F7F9F7;
  --bg-card:            #FFFFFF;
  --bg-dark:            #0F3D22;
  --bg-dark-alt:        #133529;

  --text-primary:       #1A1A1A;
  --text-muted:         #4A5568;
  --text-dim:           #718096;
  --text-on-dark:       #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,0.75);

  --border:             #D1E4D8;
  --border-dark:        rgba(255,255,255,0.1);
  --glow:               rgba(240, 94, 0, 0.12);
  --glow-green:         rgba(26, 107, 60, 0.12);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(26,107,60,0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 28px rgba(26,107,60,0.14), 0 2px 8px rgba(0,0,0,0.08);

  --transition: 200ms ease;
  --transition-slow: 400ms ease;

  --max-w: 1180px;
  --section-pad: 96px;
  --section-pad-sm: 64px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); }
p { font-size: 1rem; line-height: 1.7; color: var(--text-muted); }
.lead { font-size: 1.125rem; line-height: 1.7; }

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 2px 0 #B84600, inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  background: var(--brand-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,94,0,0.35), 0 2px 0 #B84600;
}
.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn--green {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 2px 0 var(--brand-green-dark), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn--green:hover {
  background: var(--brand-green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,60,0.35), 0 2px 0 var(--brand-green-dark);
}
.btn--outline-green {
  background: transparent;
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
}
.btn--outline-green:hover {
  background: var(--brand-green);
  color: #fff;
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--brand-orange); }
.nav__logo small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: -2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-on-dark-muted);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav__link--active { color: #fff; }
.nav__cta { margin-left: 12px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0 24px;
}
.nav__mobile.is-open { display: block; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile-link {
  display: block;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition), background var(--transition);
}
.nav__mobile-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav__mobile-cta { padding: 16px 24px 0; }

/* ── Video Hero ─────────────────────────────────────────────── */
.hero-video {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Branded dark gradient — visible as placeholder before video loads
     and as fallback on browsers/devices that block autoplay */
  background:
    radial-gradient(ellipse 90% 70% at 20% 60%, rgba(26,107,60,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(240,94,0,0.07) 0%, transparent 50%),
    linear-gradient(155deg, #091F10 0%, #0F3D22 42%, #112C1C 100%);
}
/* Ambient animated glow — makes placeholder feel alive, hides behind real video */
.hero-video::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 55% 50% at 25% 65%, rgba(26,107,60,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 80% 15%, rgba(240,94,0,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: hero-ambient 9s ease-in-out infinite alternate;
}
@keyframes hero-ambient {
  from { transform: scale(1) translateY(0); opacity: 0.65; }
  to   { transform: scale(1.09) translateY(-12px); opacity: 1; }
}
/* Video element — absolute cover behind all content layers */
.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
/* Multi-layer gradient overlay — left column darkens for text legibility
   without burying the video. Three passes: left, bottom, top. */
.hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(9,28,16,0.75) 0%, rgba(9,28,16,0.50) 52%, rgba(9,28,16,0.18) 100%),
    linear-gradient(to top, rgba(9,28,16,0.60) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(9,28,16,0.35) 0%, transparent 30%);
  pointer-events: none;
}
/* Route line sits above overlay, below content */
.hero-video__route-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
/* Content wrapper */
.hero-video__wrap {
  position: relative;
  z-index: 4;
  padding: 108px 0 96px;
  width: 100%;
}
.hero-video__content { max-width: 630px; }

/* Eyebrow pill */
.hero-video__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,94,0,0.13);
  border: 1px solid rgba(240,94,0,0.28);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange-light);
  margin-bottom: 22px;
}
.hero-video__eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--brand-orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.75); }
}

/* H1 */
.hero-video__h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-video__h1 em { font-style: normal; color: var(--brand-orange); }

/* Cycling subtitle — pure CSS, 4 items × 4s = 16s loop */
.hero-video__cycling {
  position: relative;
  height: 1.8em;
  margin-bottom: 40px;
  overflow: hidden;
}
.hero-video__cycle {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  opacity: 0;
  transform: translateY(8px);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 16s;
}
.hero-video__cycle--1 { animation-name: text-cycle; animation-delay: 0s; }
.hero-video__cycle--2 { animation-name: text-cycle; animation-delay: 4s; }
.hero-video__cycle--3 { animation-name: text-cycle; animation-delay: 8s; }
.hero-video__cycle--4 { animation-name: text-cycle; animation-delay: 12s; }
@keyframes text-cycle {
  0%, 2%   { opacity: 0; transform: translateY(8px); }
  7%, 20%  { opacity: 1; transform: translateY(0); }
  25%      { opacity: 0; transform: translateY(-6px); }
  100%     { opacity: 0; }
}

/* CTA row */
.hero-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

/* Badge chips */
.hero-video__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-video__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.77rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.hero-video__badge svg { color: var(--brand-orange); flex-shrink: 0; }

/* Scroll nudge */
.hero-video__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255,255,255,0.38);
  cursor: default;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.38; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.65; }
}

/* Glass button (CTA on dark/video backgrounds) */
.btn--glass {
  background: rgba(255,255,255,0.09);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.82);
  transform: translateY(-2px);
  color: #fff;
}

/* Mobile: hide video, pure gradient fallback */
@media (max-width: 768px) {
  .hero-video__media { display: none; }
  /* MOBILE FALLBACK IMAGE: uncomment when hero-poster.jpg is available
  .hero-video {
    background-image: url('assets/img/hero-poster.jpg');
    background-size: cover; background-position: center;
  } */
  .hero-video { min-height: 100svh; min-height: 100vh; }
  .hero-video__wrap { padding: 84px 0 80px; }
  .hero-video__content { max-width: 100%; }
  .hero-video__h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); }
  .hero-video__cycling { height: 3.2em; }
  .hero-video__cycle { font-size: 0.95rem; }
  .hero-video__actions { flex-direction: column; }
  .hero-video__actions .btn { width: 100%; justify-content: center; }
  .hero-video__route-line { opacity: 0.12; }
}

/* Reduced motion: stop all animations, show first subtitle item statically */
@media (prefers-reduced-motion: reduce) {
  .hero-video::before { animation: none; }
  .hero-video__eyebrow-dot { animation: none; opacity: 1; }
  .hero-video__scroll { animation: none; opacity: 0.4; }
  .hero-video__cycle { animation: none; opacity: 0; transform: none; }
  .hero-video__cycle--1 { opacity: 1; }
}

/* ── Hero (old 2-col layout — kept for reference, no longer used on homepage) ── */
.hero {
  position: relative;
  background: var(--bg-dark);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(240,94,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,107,60,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero__route {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.18;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,94,0,0.15);
  border: 1px solid rgba(240,94,0,0.3);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange-light);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--brand-orange);
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-on-dark-muted);
}
.hero__badge svg { color: var(--brand-orange); flex-shrink: 0; }

/* Hero visual placeholder */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(26,107,60,0.3) 0%, rgba(15,61,34,0.8) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* ── HERO IMAGE PLACEHOLDER ──────────────────────────────────
   REPLACE with a professional motorcycle courier photo.
   Suggested: rider in professional gear, document handoff,
   or Jacksonville street with branded motorcycle.
   Ideal ratio: 4:3 or 16:9, min 1200px wide.
   ─────────────────────────────────────────────────────────── */
.hero__img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 24px;
}
.hero__img-placeholder .hero__bike-icon {
  font-size: 4rem;
  margin-bottom: 12px;
  display: block;
}
.hero__route-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.section-header__eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* Dark section headers */
.section--dark .section-header h2 { color: #fff; }
.section--dark .section-header p { color: var(--text-on-dark-muted); }
.section--dark .section-header__eyebrow { color: var(--brand-orange-light); }
.section--dark .section-header__eyebrow::before { background: var(--brand-orange-light); }

/* ── Trust Badges Strip ────────────────────────────────────── */
.trust-strip {
  background: var(--bg-raised);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.trust-item svg { color: var(--brand-green); flex-shrink: 0; }

/* ── Problem Cards ─────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.problem-card__icon {
  width: 48px; height: 48px;
  background: var(--brand-orange-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-orange);
}
.problem-card h3 { margin-bottom: 10px; color: var(--text-primary); }

/* ── How It Works ──────────────────────────────────────────── */
.section--dark { background: var(--bg-dark); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 64px; height: 64px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(240,94,0,0.4);
  position: relative;
  z-index: 1;
}
.step__connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand-orange) 0, var(--brand-orange) 8px, transparent 8px, transparent 16px);
  opacity: 0.4;
}
.step:last-child .step__connector { display: none; }
.step h3 { color: #fff; margin-bottom: 10px; }
.step p { color: var(--text-on-dark-muted); font-size: 0.95rem; }

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-green);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-left-color: var(--brand-orange);
}
.service-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--bg-raised);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--brand-orange-pale);
  color: var(--brand-orange);
}
.service-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--text-primary); }

/* ── Dental Spotlight ──────────────────────────────────────── */
.dental-spotlight {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dental-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dental-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,107,60,0.08);
  border: 1px solid rgba(26,107,60,0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 20px;
}
.dental-use-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.dental-use-case {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.dental-use-case::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--brand-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
/* DENTAL IMAGE PLACEHOLDER — replace with dental office / courier handoff photo */
.dental-img-wrap {
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, #e8f4ed 0%, #d1e8db 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

/* ── Industries ────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.industry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.industry-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(240,94,0,0.4);
  transform: translateY(-4px);
}
.industry-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.industry-card h3 {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

/* ── Confirmation Section ──────────────────────────────────── */
.confirm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.confirm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand-green);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.confirm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.confirm-card__icon {
  width: 48px; height: 48px;
  background: rgba(26,107,60,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  margin-bottom: 20px;
}
.confirm-card h3 { color: var(--text-primary); margin-bottom: 8px; }
.confirm-note {
  margin-top: 48px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-green);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── CTA Strip ─────────────────────────────────────────────── */
.cta-strip {
  background: var(--brand-orange);
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.cta-strip__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.btn--white {
  background: #fff;
  color: var(--brand-orange);
  box-shadow: 0 2px 0 rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.btn--white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--brand-green); }
.faq-btn.is-open { color: var(--brand-green); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bg-raised);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  transition: background var(--transition), transform var(--transition);
}
.faq-btn.is-open .faq-icon {
  background: var(--brand-green);
  color: #fff;
  transform: rotate(45deg);
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms ease, padding 400ms ease;
}
.faq-body.is-open { max-height: 400px; }
.faq-body__inner { padding: 0 0 24px; }
.faq-body__inner p { font-size: 0.95rem; }

/* ── Form ──────────────────────────────────────────────────── */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-base);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(26,107,60,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-muted);
}
.form-check-group { display: flex; flex-direction: column; gap: 12px; }
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-check-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--brand-green); }
.form-divider {
  grid-column: 1/-1;
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}
.form-section-label {
  grid-column: 1/-1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-green);
}

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.pricing-card--featured {
  border-color: var(--brand-orange);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(240,94,0,0.15);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-badge {
  display: inline-block;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-green);
  margin-bottom: 16px;
}
.pricing-card h3 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 8px; }
.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--brand-orange);
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-feature::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(26,107,60,0.1);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── About ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-raised);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.about-value__icon {
  flex-shrink: 0;
  color: var(--brand-green);
}
.about-value h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.about-value p { font-size: 0.82rem; }
/* ABOUT IMAGE PLACEHOLDER — replace with founder/team/motorcycle photo */
.about-img-wrap {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e8f4ed 0%, #c5dece 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(26,107,60,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
}
.contact-info-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-info-item a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-green);
}
.contact-info-item a:hover { color: var(--brand-orange); }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(26,107,60,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; position: relative; }
.page-hero p { color: var(--text-on-dark-muted); font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; position: relative; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 0 0;
  color: var(--text-on-dark-muted);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__brand .nav__logo { font-size: 1.1rem; margin-bottom: 12px; }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; max-width: 260px; }
.footer__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--brand-orange-light); }
.footer__contact a svg { color: var(--brand-orange); flex-shrink: 0; }
.footer__col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--brand-orange-light); }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; }
.footer__disclaimer {
  max-width: 600px;
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.6;
}

/* ── Mobile Sticky CTA ─────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  gap: 10px;
}
.mobile-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}
.mobile-sticky-cta__request {
  background: var(--brand-orange);
  color: #fff;
}
.mobile-sticky-cta__call {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ── Chatbot Placeholder ───────────────────────────────────── */
/* CHATBOT PLACEHOLDER — replace with Tidio, Intercom, or custom widget */
.chatbot-placeholder {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
}
.chatbot-btn {
  width: 56px; height: 56px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,107,60,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.chatbot-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(26,107,60,0.5);
}
.chatbot-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--brand-orange);
  border-radius: 50%;
  border: 2px solid var(--bg-base);
}

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .stagger > * { transition-delay: 0ms; }
}

/* ── Contact Cards ─────────────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--brand-green);
  color: var(--text-primary);
}
.contact-card--static:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--border); cursor: default; }
.contact-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--brand-green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.contact-card__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 3px; }
.contact-card__value { font-size: 1rem; font-weight: 600; color: var(--text-primary); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr !important; }
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--brand-orange); }
.text-green  { color: var(--brand-green); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; --section-pad-sm: 40px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .problem-grid, .steps-grid, .confirm-grid { grid-template-columns: 1fr; }
  .dental-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .dental-use-cases { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .mobile-sticky-cta { display: flex; }
  .chatbot-placeholder { bottom: 80px; }
  .step__connector { display: none; }
  .hero { padding: 72px 0 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .form-wrap { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__inner { gap: 10px 20px; }
}
