/* ============================================================
   ALBERTA SEACANS R US  —  style.css
   albertaseacanrus.ca
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:          #0D1B2A;
  --navy-mid:      #1A2E45;
  --navy-light:    #1E3A5F;
  --orange:        #E8861A;
  --orange-dark:   #C47316;
  --orange-light:  #F5A63A;

  /* Neutrals */
  --white:     #FFFFFF;
  --gray-50:   #F7F9FC;
  --gray-100:  #EEF2F7;
  --gray-200:  #E2E8F0;
  --gray-400:  #A0AEC0;
  --gray-500:  #718096;
  --gray-700:  #4A5568;
  --gray-900:  #1A202C;

  /* Semantic */
  --text:        #1A202C;
  --text-light:  #4A5568;
  --text-muted:  #718096;
  --border:      #E2E8F0;
  --success:     #22C55E;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Impact', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing (8 px base) */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Border-radius */
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
  --r-xl: 24px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(0,0,0,.10);
  --sh:    0 4px 16px rgba(0,0,0,.12);
  --sh-lg: 0 10px 40px rgba(0,0,0,.18);

  /* Transitions */
  --ease: 0.22s ease;

  /* Layout */
  --max-w: 1200px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
iframe { border: none; }

/* ── BASE TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.3px;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { line-height: 1.7; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container-sm {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--s6);
}
.section        { padding: var(--s20) 0; }
.section-sm     { padding: var(--s12) 0; }
.section-lg     { padding: var(--s24) 0; }
.text-center    { text-align: center; }
.text-white     { color: var(--white) !important; }
.text-orange    { color: var(--orange); }
.text-muted     { color: var(--text-muted); }
.bg-navy        { background: var(--navy); }
.bg-gray        { background: var(--gray-50); }
.bg-white       { background: var(--white); }
.mb-4  { margin-bottom: var(--s4); }
.mb-6  { margin-bottom: var(--s6); }
.mb-8  { margin-bottom: var(--s8); }
.mb-12 { margin-bottom: var(--s12); }
.mt-4  { margin-top: var(--s4); }
.mt-8  { margin-top: var(--s8); }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4  { gap: var(--s4); }
.gap-6  { gap: var(--s6); }
.gap-8  { gap: var(--s8); }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--s3);
}
.section-title {
  margin-bottom: var(--s4);
}
.section-title-block {
  margin-bottom: var(--s12);
}
.section-title-block .section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin-top: var(--s3);
}
.section-title-block.centered {
  text-align: center;
}
.section-title-block.centered .section-desc {
  margin: var(--s3) auto 0;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
  border-radius: var(--r-lg);
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* Top bar */
.header-topbar {
  background: var(--navy);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--navy-mid);
}
.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--s6);
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.topbar-item svg { flex-shrink: 0; }
.topbar-item a:hover { color: var(--orange-light); }
.topbar-phone {
  font-weight: 700;
  color: var(--orange-light);
  font-size: 0.9rem;
}
.topbar-phone:hover { color: var(--white); }

/* Main header */
.header-main {
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  padding: var(--s3) 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo-name span { color: var(--orange); }
.logo-tagline {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Navigation */
.site-nav { display: flex; align-items: center; gap: var(--s1); }
.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding: var(--s2) var(--s3);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--orange);
  background: var(--gray-50);
}
.header-cta { display: flex; align-items: center; gap: var(--s3); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--r-sm);
  background: var(--gray-100);
  cursor: pointer;
  border: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 9998;
  flex-direction: column;
  padding: var(--s20) var(--s8) var(--s8);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: var(--s5);
  right: var(--s5);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  padding: var(--s4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.5px;
}
.mobile-nav a:hover { color: var(--orange-light); }
.mobile-nav .mobile-cta {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.mobile-nav .mobile-cta-info {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: var(--s4);
}
.mobile-nav .mobile-cta-info a { color: var(--orange-light); }

/* ── HERO — HOMEPAGE ────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(rgba(8,19,31,0.78), rgba(13,27,42,0.85)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(232,134,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(30,58,95,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s20) var(--s6) var(--s16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(232,134,26,0.18);
  border: 1px solid rgba(232,134,26,0.35);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: var(--s2) var(--s4);
  border-radius: var(--r-xl);
  margin-bottom: var(--s5);
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  margin-bottom: var(--s5);
  line-height: 1.05;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin-bottom: var(--s8);
  max-width: 520px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s8);
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}
.hero-bullet::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-color: var(--orange);
}

/* Hero right side — video + stat strip */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

/* Hero YouTube embed */
.hero-yt {
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
}
.hero-yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Compact stat strip below hero video */
.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s6);
  gap: var(--s4);
}
.hero-stat-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.hero-stat-mini-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
}
.hero-stat-mini-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
  margin-top: 3px;
  white-space: nowrap;
}
.hero-stat-mini-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.hero-stats-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: var(--s8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}
.hero-stat {
  text-align: center;
  padding: var(--s4);
  border-radius: var(--r);
  background: rgba(232,134,26,0.08);
  border: 1px solid rgba(232,134,26,0.15);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  margin-top: var(--s1);
}
.hero-quote-card {
  background: var(--orange);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s8);
  text-align: center;
}
.hero-quote-card p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s4);
  line-height: 1.3;
}
.hero-quote-card .btn {
  background: var(--white);
  color: var(--orange-dark);
  font-weight: 700;
}
.hero-quote-card .btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 3px solid var(--orange);
  padding: var(--s6) 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s8);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.18);
}

/* ── PRODUCT CARDS ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--orange);
}
.product-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}
.product-card-img svg {
  opacity: 0.35;
  width: 80px;
  height: 80px;
  color: var(--white);
}
.product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.product-card-img .product-card-badge { position: absolute; z-index: 2; }
.product-card-badge {
  position: absolute;
  top: var(--s3);
  right: var(--s3);
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-xl);
  z-index: 1;
}
.product-card-body {
  padding: var(--s6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s2);
}
.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--s4);
}
.product-card-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: var(--s4);
}
.product-card-cta {
  margin-top: auto;
}

/* ── VIDEO SECTION ──────────────────────────────────────────── */
.video-section {
  background: var(--gray-50);
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  margin-top: var(--s10);
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
}
/* YouTube facade */
.yt-facade {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sh-lg);
  background: var(--navy);
}
.yt-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}
.yt-facade:hover img { transform: scale(1.03); }
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.yt-play-btn svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform var(--ease);
}
.yt-facade:hover .yt-play-btn svg { transform: scale(1.1); }
.yt-facade.loaded { padding-bottom: 56.25%; }

.video-cta-wrap {
  text-align: center;
  margin-top: var(--s10);
}

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  text-align: center;
  transition: all var(--ease);
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: var(--sh);
  transform: translateY(-3px);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,134,26,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s4);
}
.why-icon svg { color: var(--orange); }
.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: var(--s3);
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── INDUSTRIES ─────────────────────────────────────────────── */
.industries-section { background: var(--navy); }
.industries-section .section-label { color: var(--orange-light); }
.industries-section .section-title { color: var(--white); }
.industries-section .section-title-block .section-desc { color: rgba(255,255,255,0.65); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s10);
}
.industry-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--s6);
  text-align: center;
  transition: all var(--ease);
}
.industry-card:hover {
  background: rgba(232,134,26,0.12);
  border-color: rgba(232,134,26,0.4);
  transform: translateY(-3px);
}
.industry-icon {
  font-size: 2.4rem;
  margin-bottom: var(--s3);
}
.industry-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: var(--s2);
}
.industry-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.steps-section { background: var(--gray-50); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--orange-dark));
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s5);
  border: 4px solid var(--gray-50);
  box-shadow: var(--sh);
}
.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--s3);
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── RENTALS TEASER ─────────────────────────────────────────── */
.rentals-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.rentals-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.rentals-content h2 { color: var(--white); }
.rentals-content p  { color: rgba(255,255,255,0.75); margin-top: var(--s4); line-height: 1.7; }
.rentals-content .rentals-cta { margin-top: var(--s8); display: flex; flex-wrap: wrap; gap: var(--s4); }
.rentals-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.rental-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--s5);
  text-align: center;
}
.rental-feature-icon { font-size: 2rem; margin-bottom: var(--s2); }
.rental-feature h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-light);
}

/* ── MODIFICATIONS TEASER ───────────────────────────────────── */
.mods-section {}
.mods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s10);
}
.mod-chip {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s4);
  text-align: center;
  transition: all var(--ease);
}
.mod-chip:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.mod-chip:hover .mod-chip-label { color: var(--white); }
.mod-chip-icon { font-size: 1.8rem; margin-bottom: var(--s2); }
.mod-chip-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--ease);
}

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews-section { background: var(--gray-50); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--sh-sm);
  transition: all var(--ease);
}
.review-card:hover {
  box-shadow: var(--sh);
  border-color: var(--orange);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--s4);
}
.review-stars svg { color: #f59e0b; }
.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--s6);
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-location { font-size: 0.8rem; color: var(--text-muted); }

/* ── QUOTE CTA / FORM SECTION ───────────────────────────────── */
.quote-section { background: var(--gray-50); }
.quote-section.dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.quote-content h2 { color: var(--navy); }
.quote-content.light h2 { color: var(--white); }
.quote-content p  { color: var(--text-light); margin-top: var(--s4); line-height: 1.7; }
.quote-content.light p { color: rgba(255,255,255,0.7); }
.quote-content .trust-list {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.quote-content .trust-list li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.9rem;
  font-weight: 500;
}
.quote-content .trust-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-color: var(--success);
}
.quote-content.light .trust-list li { color: rgba(255,255,255,0.85); }

/* Quote form */
.quote-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s10);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-200);
}
.quote-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s6);
  padding-bottom: var(--s4);
  border-bottom: 2px solid var(--gray-100);
}
.form-group { margin-bottom: var(--s5); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s2);
}
.form-group .required { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 0.7rem var(--s4);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,134,26,0.12);
}
textarea.form-control {
  resize: vertical;
  min-height: 90px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--s3);
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--s8);
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: var(--s4);
}
.form-success h3 { color: var(--navy); margin-bottom: var(--s3); }
.form-success p  { color: var(--text-light); }

/* ── FINAL CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: var(--orange);
  padding: var(--s16) 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--s4);
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto var(--s8);
}
.cta-banner-buttons { display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: center; }
.cta-banner .btn-white {
  background: var(--white);
  color: var(--orange-dark);
  border: 2px solid var(--white);
}
.cta-banner .btn-white:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.cta-banner .btn-outline-white { border-color: rgba(255,255,255,0.7); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: var(--s20) 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s10);
  padding-bottom: var(--s12);
}
.footer-brand .logo-name { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--s4);
  color: rgba(255,255,255,0.60);
  max-width: 300px;
}
.footer-contact { margin-top: var(--s6); display: flex; flex-direction: column; gap: var(--s3); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.footer-contact-item a { transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--orange-light); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: var(--s5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: var(--s5); }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.footer-bottom-links a:hover { color: var(--orange-light); }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(232,134,26,0.15);
  border: 1px solid rgba(232,134,26,0.3);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: var(--s2) var(--s3);
  border-radius: var(--r);
  margin-top: var(--s5);
}

/* ── MOBILE STICKY CTA ──────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--navy);
  border-top: 2px solid rgba(255,255,255,0.1);
  padding: var(--s3) var(--s4);
  gap: var(--s3);
}
.mobile-sticky-cta .btn { flex: 1; justify-content: center; padding: 0.7rem; font-size: 0.95rem; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: var(--s16) 0 var(--s12);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,134,26,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--s5);
}
.breadcrumb a { transition: color var(--ease); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--s4);
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 650px;
  line-height: 1.6;
}

/* ── INNER PAGE SECTIONS ────────────────────────────────────── */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
  margin-bottom: var(--s16);
}
.content-block:last-child { margin-bottom: 0; }
.content-block.reverse .content-img { order: -1; }
.content-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.content-img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
}
.content-img-placeholder svg { width: 80px; height: 80px; margin: 0 auto var(--s3); }
.content-img-placeholder p { font-size: 0.8rem; }
.content-text h2 { margin-bottom: var(--s5); }
.content-text p  { color: var(--text-light); margin-bottom: var(--s4); }
.feature-list { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s5); }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 0.95rem;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-color: var(--orange);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--s8);
  text-align: center;
  transition: all var(--ease);
}
.pricing-card:hover,
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: var(--sh-lg);
}
.pricing-card.featured {
  transform: scale(1.03);
  position: relative;
}
.pricing-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: var(--s1) var(--s4);
  border-radius: var(--r-xl);
  white-space: nowrap;
}
.pricing-size {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pricing-type {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: var(--s1);
  margin-bottom: var(--s6);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: var(--s2);
}
.pricing-price sup { font-size: 1rem; vertical-align: top; margin-top: 6px; }
.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--s6);
}
.pricing-features { display: flex; flex-direction: column; gap: var(--s3); text-align: left; margin-bottom: var(--s6); }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.88rem;
  color: var(--text);
}
.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* FAQ section */
.faq-list { margin-top: var(--s10); display: flex; flex-direction: column; gap: var(--s3); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--orange); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s6);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  user-select: none;
  gap: var(--s4);
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--orange);
  transition: all var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 var(--s6) var(--s6);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* About page specifics */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
}
.credential-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--s8);
  text-align: center;
}
.credential-icon { font-size: 2.5rem; margin-bottom: var(--s3); }
.credential-card h3 { font-size: 1.4rem; margin-bottom: var(--s2); }
.credential-card p { font-size: 0.9rem; color: var(--text-light); }

/* Legal pages */
.legal-content { max-width: 780px; margin: 0 auto; padding: var(--s16) var(--s6); }
.legal-content h2 { font-size: 1.6rem; margin: var(--s10) 0 var(--s4); }
.legal-content h3 { font-size: 1.2rem; margin: var(--s6) 0 var(--s3); }
.legal-content p  { color: var(--text-light); margin-bottom: var(--s4); }
.legal-content ul { margin: var(--s4) 0 var(--s4) var(--s6); list-style: disc; }
.legal-content ul li { color: var(--text-light); margin-bottom: var(--s2); font-size: 0.95rem; }
.legal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--s8); }

/* 404 page */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s20) var(--s6);
}
.page-404 h1 {
  font-size: 8rem;
  color: var(--orange);
  line-height: 1;
}
.page-404 h2 { margin-bottom: var(--s4); }
.page-404 p  { color: var(--text-light); margin-bottom: var(--s8); }
.page-404-links { display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: center; }

/* Reviews page */
.review-platform-bar {
  display: flex;
  align-items: center;
  gap: var(--s8);
  flex-wrap: wrap;
  margin-bottom: var(--s12);
  padding: var(--s6) var(--s8);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.review-platform-item { text-align: center; }
.review-platform-score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.review-platform-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.review-platform-stars { color: #f59e0b; font-size: 1rem; margin: var(--s1) 0; }
.review-platform-div { width: 1px; height: 60px; background: var(--gray-200); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .mods-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; width: 100%; box-sizing: border-box; }
  .hero-visual { display: block; margin-top: var(--s6); }
  .hero-yt { max-height: 260px; }
  .hero { min-height: unset; padding-bottom: var(--s10); overflow-x: hidden; overflow-y: visible; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s8); }
  .steps-grid::before { display: none; }
  .rentals-inner { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .header-topbar { display: none; }
  .site-nav { display: none; }
  .header-cta .btn-outline-orange { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .trust-bar .container {
    justify-content: flex-start;
    gap: var(--s4);
  }
  .trust-divider { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .mods-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .rentals-features { grid-template-columns: 1fr 1fr; }
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse .content-img { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .container { padding: 0 var(--s4); }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-eyebrow { font-size: 0.65rem; white-space: normal; }
  .hero-stats-strip { padding: var(--s3) var(--s3); gap: var(--s2); }
  .hero-stat-mini-num { font-size: 1rem; }
  .hero-stat-mini-label { white-space: normal; font-size: 0.6rem; }
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .mods-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: var(--s12) 0; }
  .section-lg { padding: var(--s16) 0; }
  .cta-banner { padding: var(--s12) 0; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
}

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .mobile-sticky-cta, .cta-banner { display: none; }
  .page-hero { background: var(--gray-100); }
  .page-hero h1 { color: var(--navy); }
}
