/* =====================================================
   BREEZY LAUNDRY LOCKERS — DESIGN SYSTEM
   Single source of truth. All pages import this file.
   ===================================================== */

:root {
  /* Color — confident commercial blue, single warm accent */
  --ink: #0A1628;
  --ink-2: #1E2A3F;
  --slate: #475569;
  --slate-light: #64748B;
  --line: #E2E8F0;
  --line-soft: #F1F5F9;
  --paper: #FFFFFF;
  --paper-2: #F8FAFC;
  --paper-3: #F1F5F9;

  --blue: #1E5FAD;
  --blue-deep: #133E73;
  --blue-light: #3B82F6;
  --blue-pale: #EFF6FF;
  --blue-tint: #DBEAFE;

  --accent: #F4B740;       /* warm gold — same energy as your PDFs */
  --accent-deep: #D4961D;
  --accent-pale: #FEF3C7;

  --success: #059669;
  --danger: #DC2626;

  /* Type */
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Scale — modular, predictable */
  --t-xs: 0.75rem;     /* 12 */
  --t-sm: 0.875rem;    /* 14 */
  --t-base: 1rem;      /* 16 */
  --t-lg: 1.125rem;    /* 18 */
  --t-xl: 1.25rem;     /* 20 */
  --t-2xl: 1.5rem;     /* 24 */
  --t-3xl: 1.875rem;   /* 30 */
  --t-4xl: 2.25rem;    /* 36 */
  --t-5xl: 3rem;       /* 48 */
  --t-6xl: 3.75rem;    /* 60 */
  --t-7xl: 4.5rem;     /* 72 */

  /* Space — 8pt scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-7: 1.75rem;
  --s-8: 2rem;
  --s-9: 2.25rem;
  --s-10: 2.5rem;
  --s-11: 2.75rem;
  --s-12: 3rem;
  --s-14: 3.5rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Radii */
  --r-sm: 4px;
  --r: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(10, 22, 40, 0.04);
  --sh: 0 1px 3px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
  --sh-md: 0 4px 6px -1px rgba(10, 22, 40, 0.08), 0 2px 4px -1px rgba(10, 22, 40, 0.04);
  --sh-lg: 0 10px 15px -3px rgba(10, 22, 40, 0.08), 0 4px 6px -2px rgba(10, 22, 40, 0.04);
  --sh-xl: 0 20px 25px -5px rgba(10, 22, 40, 0.10), 0 10px 10px -5px rgba(10, 22, 40, 0.04);

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --container-text: 720px;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: var(--blue); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: var(--blue-deep); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.03em; font-weight: 700; }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: var(--t-2xl); }
h5 { font-size: var(--t-xl); }

p { color: var(--slate); }

::selection { background: var(--blue); color: white; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }

/* Section spacing */
.section { padding: var(--s-24) 0; }
.section--sm { padding: var(--s-16) 0; }
.section--lg { padding: var(--s-32) 0; }
.section--dark { background: var(--ink); color: white; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: white; }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--paper-2 { background: var(--paper-2); }
.section--paper-3 { background: var(--paper-3); }

@media (max-width: 768px) {
  .section { padding: var(--s-16) 0; }
  .section--lg { padding: var(--s-20) 0; }
}

/* ============= NAVIGATION ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-6);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--s-8);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
}
.nav__brand-img {
  display: block;
  height: 40px;
  width: auto;
}
.nav__brand-mark {
  width: 36px;
  height: 36px;
  background: var(--ink);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  color: white;
}
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-lg);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__brand-text span { color: var(--blue); }
.nav__links {
  display: flex;
  gap: var(--s-5);
  align-items: center;
  list-style: none;
}
.nav__link {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--slate);
  position: relative;
  padding: var(--s-2) 0;
}
.nav__link:hover { color: var(--ink); }
.nav__link--active { color: var(--ink); }
.nav__link--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
}
.nav__cta {
  display: flex;
  gap: var(--s-3);
  align-items: center;
}
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav__toggle-icon {
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav__toggle-icon::before, .nav__toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
}
.nav__toggle-icon::before { top: -6px; }
.nav__toggle-icon::after { top: 6px; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta .btn--secondary { display: none; }
  .nav__inner { gap: var(--s-3); }
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  padding: var(--s-4) var(--s-6);
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-1); }
.nav-mobile a {
  display: block;
  padding: var(--s-3) 0;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  transition: all 0.15s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--lg { padding: var(--s-4) var(--s-6); font-size: var(--t-base); }
.btn--xl { padding: var(--s-5) var(--s-8); font-size: var(--t-lg); }

.btn--primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.btn--ink {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.btn--ink:hover {
  background: var(--ink-2);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.btn--secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn--secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  padding-left: var(--s-2);
  padding-right: var(--s-2);
}
.btn--ghost:hover { color: var(--blue); }

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

.btn-arrow { transition: transform 0.15s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: var(--s-20) 0 var(--s-24);
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 10%, rgba(30, 95, 173, 0.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(244, 183, 64, 0.05), transparent 50%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: var(--s-6);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: var(--s-6);
  max-width: 18ch;
}
.hero__title em {
  font-style: normal;
  color: var(--blue);
  position: relative;
}
.hero__lede {
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  color: var(--slate);
  max-width: 56ch;
  margin-bottom: var(--s-8);
  line-height: 1.55;
}
.hero__cta { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-10); }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.hero__proof-label {
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-light);
}
.hero__proof-logos {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.hero__proof-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-base);
  color: var(--slate-light);
  opacity: 0.7;
}
.hero__proof-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* ============= SEGMENT ROUTER (homepage core) ============= */
.segments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-8);
}
@media (max-width: 768px) {
  .segments { grid-template-columns: 1fr; }
}
.segment-card {
  position: relative;
  display: block;
  padding: var(--s-8);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s var(--ease);
  overflow: hidden;
}
.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.segment-card:hover {
  border-color: var(--ink);
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}
.segment-card:hover::before { transform: scaleY(1); }
.segment-card__num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--slate-light);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.segment-card__title {
  font-size: var(--t-2xl);
  font-weight: 600;
  margin: var(--s-3) 0 var(--s-2);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.segment-card__sub {
  font-size: var(--t-sm);
  color: var(--blue);
  font-weight: 500;
  margin-bottom: var(--s-4);
}
.segment-card__desc {
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: var(--s-5);
}
.segment-card__stats {
  display: flex;
  gap: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-soft);
  margin-bottom: var(--s-5);
}
.segment-card__stat-num {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.segment-card__stat-label {
  font-size: var(--t-xs);
  color: var(--slate-light);
  margin-top: var(--s-1);
}
.segment-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--ink);
  font-size: var(--t-sm);
  font-weight: 600;
}
.segment-card:hover .segment-card__arrow { color: var(--blue); }

/* ============= STAT TILES ============= */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-1);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 768px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-tile {
  background: white;
  padding: var(--s-6);
}
.stat-tile__num {
  font-family: var(--font-display);
  font-size: var(--t-4xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.stat-tile__num em { color: var(--blue); font-style: normal; }
.stat-tile__label {
  font-size: var(--t-sm);
  color: var(--slate);
  margin-top: var(--s-2);
}

/* ============= FEATURE / VALUE GRID ============= */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(var(--lg-cols, 3), 1fr);
  gap: var(--s-6);
}
@media (max-width: 960px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  padding: var(--s-6);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.2s var(--ease);
}
.feat:hover { border-color: var(--blue); box-shadow: var(--sh); }
.feat__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: var(--blue-pale);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-4);
}
.feat__title {
  font-size: var(--t-lg);
  font-weight: 600;
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}
.feat__desc {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--slate);
}

/* ============= SECTION HEADERS ============= */
.section-head {
  max-width: 56ch;
  margin: 0 0 var(--s-12);
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: var(--s-3);
}
.section-head__title {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  letter-spacing: -0.025em;
  margin-bottom: var(--s-4);
}
.section-head__lede {
  font-size: var(--t-lg);
  color: var(--slate);
  line-height: 1.55;
}

/* ============= TESTIMONIAL ============= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  align-items: stretch;
}
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.testi-grid .testimonial {
  padding: var(--s-7) var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
}
.testi-grid .testimonial::before {
  font-size: 80px;
  top: var(--s-3);
  left: var(--s-6);
  opacity: 0.3;
}
.testi-grid .testimonial__quote {
  font-size: var(--t-base);
  line-height: 1.55;
  padding-top: var(--s-5);
  margin-bottom: var(--s-7);
  flex: 1;
  max-width: none;
}
.testi-grid .testimonial__author {
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testimonial {
  background: var(--ink);
  color: white;
  padding: var(--s-12) var(--s-10);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--s-6);
  font-family: var(--font-display);
  font-size: 200px;
  color: var(--blue);
  opacity: 0.4;
  line-height: 1;
  font-weight: 700;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.4;
  font-weight: 500;
  color: white;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-6);
  position: relative;
  max-width: 56ch;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  position: relative;
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
}
.testimonial__name {
  font-weight: 600;
  color: white;
  font-size: var(--t-base);
}
.testimonial__role {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ============= PRESS / LOGO STRIP ============= */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-8) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) { .logo-strip { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); } }
.logo-strip__item {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-lg);
  color: var(--slate-light);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.logo-strip__item:hover { opacity: 1; }

/* image-mode logo strip — for real customer logos */
.logo-strip--images {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7) var(--s-8);
  padding: var(--s-7) 0;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 768px) { .logo-strip--images { grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-6); } }
@media (max-width: 480px) { .logo-strip--images { gap: var(--s-4); } }
.logo-strip--images .logo-strip__item {
  padding: var(--s-3) var(--s-4);
  min-height: 80px;
}
.logo-strip--images .logo-strip__item img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.logo-strip--images .logo-strip__item:hover img {
  opacity: 1;
}

/* ============= COMPARISON TABLE ============= */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: var(--t-sm);
}
.compare th, .compare td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.compare thead th {
  background: var(--paper-3);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: var(--t-sm);
  letter-spacing: -0.01em;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare td:first-child {
  font-weight: 600;
  color: var(--ink);
  background: var(--paper-2);
}
.compare__highlight {
  background: var(--blue-pale) !important;
  color: var(--blue-deep) !important;
}
.compare__cell-good { color: var(--success); font-weight: 600; }
.compare__cell-bad { color: var(--slate-light); }

/* Mobile: cards instead of table */
@media (max-width: 768px) {
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare { min-width: 600px; }
}

/* ============= PRICING CARDS ============= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: var(--s-8);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border-color: var(--ink);
  box-shadow: var(--sh-lg);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.price-card__badge {
  position: absolute;
  top: -10px;
  left: var(--s-6);
  background: var(--accent);
  color: var(--ink);
  font-size: var(--t-xs);
  font-weight: 700;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-card__sub {
  font-size: var(--t-sm);
  color: var(--slate);
  margin-top: var(--s-2);
  line-height: 1.5;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: var(--t-5xl);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: var(--s-6) 0 var(--s-2);
  line-height: 1;
}
.price-card__price-suffix {
  font-size: var(--t-base);
  color: var(--slate);
  font-weight: 400;
}
.price-card__list {
  list-style: none;
  margin: var(--s-6) 0;
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.5;
}
.price-card__list li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231E5FAD' stroke-width='2.5'><path d='M2 8l4 4 8-8'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============= FAQ ============= */
.faq { max-width: var(--container-text); margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: var(--s-5) 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: var(--t-xl);
  color: var(--slate);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] summary::after { content: '−'; }
.faq__answer {
  margin-top: var(--s-4);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--slate);
}
.faq__answer p + p { margin-top: var(--s-3); }

/* ============= CTA BLOCK ============= */
.cta-block {
  background: var(--ink);
  color: white;
  padding: var(--s-16) var(--s-10);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(30, 95, 173, 0.4), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(244, 183, 64, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 { color: white; margin-bottom: var(--s-4); }
.cta-block p { color: rgba(255,255,255,0.75); margin-bottom: var(--s-8); max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-block__actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

/* ============= LOCKER VISUAL ============= */
.locker-render {
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.locker-render::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(30, 95, 173, 0.08), transparent 70%);
  pointer-events: none;
}

/* ============= FOOTER ============= */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--s-16) 0 var(--s-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-12);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .footer__about { grid-column: 1 / -1; }
}
.footer__about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--t-sm);
  line-height: 1.6;
  margin-top: var(--s-4);
  max-width: 40ch;
}
.footer__brand-img {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: var(--s-3);
}
.footer__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-xl);
  color: white;
  letter-spacing: -0.02em;
}
.footer__brand-text span { color: var(--blue-light); }
.footer__heading {
  color: white;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-4);
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: var(--s-2); }
.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--t-sm);
}
.footer__list a:hover { color: white; }
.footer__bottom {
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.5);
}

/* ============= UTIL ============= */
.text-center { text-align: center; }
.muted { color: var(--slate); }
.eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
}
.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: var(--s-12) 0;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-12); align-items: center; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; gap: var(--s-8); } }

/* ============= ANIMATIONS ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s var(--ease-out) backwards; }
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }

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

/* Print */
@media print {
  .nav, .footer, .cta-block { display: none; }
}

/* ============= IMAGERY ============= */
/* Hero with image — two-column layout */
.hero--with-image .hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-12);
  align-items: center;
}
.hero--with-image .hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--paper-3) 0%, var(--paper-2) 100%);
  border: 1px solid var(--line);
}
.hero--with-image .hero__media img,
.hero--with-image .hero__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .hero--with-image .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .hero--with-image .hero__media {
    aspect-ratio: 4/3;
    order: -1;
  }
}

/* Install photo gallery — horizontal ribbon */
.install-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.install-gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.install-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.install-gallery__item:hover img { transform: scale(1.03); }
.install-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-4) var(--s-5);
  background: linear-gradient(180deg, transparent 0%, rgba(10,22,40,0.85) 100%);
  color: white;
  font-size: var(--t-sm);
  font-weight: 500;
}
@media (max-width: 768px) {
  .install-gallery { grid-template-columns: 1fr; }
}

/* Feature image block — text left, image right (or alternated) */
.feat-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.feat-image--reverse { grid-template-columns: 1fr 1fr; }
.feat-image--reverse .feat-image__media { order: -1; }
.feat-image__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  aspect-ratio: 4/3;
}
.feat-image__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feat-image__media--contain { background: transparent; border: none; }
.feat-image__media--contain img { object-fit: cover; padding: 0; }
@media (max-width: 900px) {
  .feat-image, .feat-image--reverse {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .feat-image--reverse .feat-image__media { order: 0; }
}

/* Locker spec gallery on /lockers page */
.locker-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
  margin-top: var(--s-10);
}
.locker-gallery__item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
}
.locker-gallery__media {
  aspect-ratio: 4/3;
  background: #ECFAFE;
  display: grid;
  place-items: center;
  padding: var(--s-6);
}
.locker-gallery__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.locker-gallery__body {
  padding: var(--s-6) var(--s-7) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.locker-gallery__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.locker-gallery__sub {
  font-size: var(--t-xs);
  color: var(--slate);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.locker-gallery__desc {
  color: var(--slate);
  font-size: var(--t-base);
  margin: var(--s-2) 0 0;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .locker-gallery { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ============= LOCKER MIX CALCULATOR ============= */
.mix-calc {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-10);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.04);
}
@media (max-width: 900px) {
  .mix-calc {
    grid-template-columns: 1fr;
    padding: var(--s-7);
    gap: var(--s-8);
  }
}
.mix-calc__inputs {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.mix-calc__field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.mix-calc__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.mix-calc__select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  padding-right: var(--s-9);
  font-family: var(--font-body);
  font-size: var(--t-base);
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.mix-calc__select:hover { border-color: var(--blue); }
.mix-calc__select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 95, 173, 0.12);
}
.mix-calc__results {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--paper-2) 0%, white 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-6);
}
.mix-calc__results-label {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.mix-calc__bars {
  display: flex;
  height: 14px;
  border-radius: 99px;
  overflow: hidden;
  background: var(--line-soft, #e9ecf2);
  margin-bottom: var(--s-5);
}
.mix-calc__bar {
  height: 100%;
  transition: width 0.4s var(--ease-out);
}
.mix-calc__breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.mix-calc__row {
  display: grid;
  grid-template-columns: 14px 1fr auto auto;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--line-soft);
}
.mix-calc__row:last-child { border-bottom: none; }
.mix-calc__row-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}
.mix-calc__row-label {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  font-size: var(--t-base);
}
.mix-calc__row-count {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: var(--t-lg);
}
.mix-calc__row-unit {
  font-weight: 400;
  font-size: var(--t-sm);
  color: var(--slate);
}
.mix-calc__row-pct {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--slate);
  letter-spacing: 0.04em;
  min-width: 40px;
  text-align: right;
}
.mix-calc__rationale {
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.6;
  padding: var(--s-4);
  background: var(--paper-2);
  border-radius: var(--r-md);
  border-left: 3px solid var(--blue);
  margin-bottom: var(--s-5);
}
.mix-calc__cta {
  margin-top: auto;
}

/* ============= LOCKS DETAIL — improved layout ============= */
.locks-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  margin-top: var(--s-10);
}
@media (max-width: 900px) {
  .locks-detail { grid-template-columns: 1fr; gap: var(--s-6); }
}
.locks-detail__card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.locks-detail__media {
  background: #ECFAFE;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  padding: var(--s-7);
}
.locks-detail__media img {
  max-width: 65%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.locks-detail__body {
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.locks-detail__model {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 600;
}
.locks-detail__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-xl);
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.locks-detail__desc {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.55;
  margin: 0;
}
.locks-detail__list {
  list-style: none;
  padding: 0;
  margin: var(--s-2) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.locks-detail__list li {
  font-size: var(--t-sm);
  color: var(--slate);
  padding-left: var(--s-5);
  position: relative;
}
.locks-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.locks-detail__note {
  margin-top: var(--s-8);
  padding: var(--s-5) var(--s-6);
  background: white;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.6;
}
.locks-detail__note strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============= CASE STUDY STATS (24/7 retail page) ============= */
.case-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-8);
  align-items: stretch;
}
@media (max-width: 900px) {
  .case-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .case-stats { grid-template-columns: 1fr; }
}
.case-stats__tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 240px;
}
.case-stats__tile--highlight {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a44 100%);
  border-color: var(--ink);
  color: white;
}
.case-stats__tile--highlight .case-stats__num { color: var(--accent, #F4B740); }
.case-stats__tile--highlight .case-stats__label { color: rgba(255,255,255,0.95); }
.case-stats__tile--highlight .case-stats__sub { color: rgba(255,255,255,0.75); }
.case-stats__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: var(--s-1);
}
.case-stats__num em {
  font-style: normal;
  font-size: 0.5em;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
  margin-left: 0.15em;
}
.case-stats__tile--highlight .case-stats__num em { color: rgba(255,255,255,0.6); }
.case-stats__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  color: var(--ink);
}
.case-stats__sub {
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.45;
  margin-top: var(--s-1);
}
.case-stats__quote {
  margin-top: var(--s-10);
  padding: var(--s-8) var(--s-10);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.case-stats__quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--s-8);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--blue);
  font-weight: 700;
}
.case-stats__quote p {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
}
.case-stats__quote cite {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 600px) {
  .case-stats__quote { padding: var(--s-7) var(--s-6); }
  .case-stats__quote p { font-size: var(--t-lg); }
}
.case-stats__expansion {
  margin-top: var(--s-8);
  padding: var(--s-6) var(--s-7);
  background: white;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, #F4B740);
  border-radius: var(--r-md);
}
.case-stats__expansion-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.case-stats__expansion p {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.6;
  margin: 0;
}
.case-stats__expansion strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============= CASE STUDY: HERO VIDEO ============= */
.case-video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
}
.case-video__player {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.case-video__caption {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: var(--s-4) var(--s-6);
  font-size: var(--t-sm);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

.section--no-bottom-pad { padding-bottom: 0 !important; }

/* ============= CASE STUDY: THE "BEFORE" PAIN POINT ============= */
.case-pain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid #C0392B;
  border-radius: var(--r-lg);
  padding: var(--s-10);
}
@media (max-width: 900px) {
  .case-pain {
    grid-template-columns: 1fr;
    gap: var(--s-8);
    padding: var(--s-7);
  }
}
.case-pain__media {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
}
.case-pain__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.case-pain__media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-5) var(--s-5) var(--s-4);
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.92) 70%);
  color: white;
  font-size: var(--t-sm);
  font-style: italic;
  line-height: 1.4;
}
.case-pain__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.case-pain__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #C0392B;
  font-weight: 600;
}
.case-pain__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-2xl);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 var(--s-3);
}
.case-pain__body p {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.65;
  margin: 0;
}

/* ============= CASE STUDY: BUILD PROGRESS GALLERY ============= */
.build-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 900px) {
  .build-gallery { grid-template-columns: 1fr; gap: var(--s-5); }
}
.build-gallery__item {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.build-gallery__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.build-gallery__item figcaption {
  padding: var(--s-4) var(--s-5);
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.5;
  font-style: italic;
}

/* ============= CASE STUDY: RUNNING GRID ============= */
.running-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 900px) {
  .running-grid { grid-template-columns: 1fr; }
}
.running-grid__item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.running-grid__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.running-grid__item--wide img {
  aspect-ratio: 4/3;
}
.running-grid__caption {
  padding: var(--s-4) var(--s-5);
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.55;
  flex: 1;
}
.running-grid__caption strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: var(--s-1);
}

/* ============= CASE STUDY: PROOF PAIR ============= */
.proof-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
}
@media (max-width: 768px) {
  .proof-pair { grid-template-columns: 1fr; gap: var(--s-5); }
}
.proof-pair__item {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.proof-pair__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.proof-pair__item figcaption {
  padding: var(--s-5) var(--s-6);
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.55;
}
.proof-pair__item figcaption strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: var(--s-1);
}

/* Lock feature row — small images side-by-side */
.lock-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
  margin-top: var(--s-8);
}
.lock-features__item {
  text-align: center;
}
.lock-features__media {
  aspect-ratio: 1;
  background: #ECFAFE;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  padding: var(--s-6);
  margin-bottom: var(--s-4);
}
.lock-features__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 600px) {
  .lock-features { grid-template-columns: 1fr; }
}

/* ============= ROI CALCULATOR ============= */
.roi-calc {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-10);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.04);
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .roi-calc {
    grid-template-columns: 1fr;
    padding: var(--s-7);
    gap: var(--s-8);
  }
}
@media (max-width: 480px) {
  .roi-calc {
    padding: var(--s-5) var(--s-4);
  }
  .roi-calc__cta .btn { width: 100%; justify-content: center; }
}
.roi-calc__inputs {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  min-width: 0;
}
.roi-calc__field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  min-width: 0;
}
.roi-calc__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.roi-calc__select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  padding-right: var(--s-9);
  font-family: var(--font-body);
  font-size: var(--t-base);
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.roi-calc__select:hover {
  border-color: var(--blue);
}
.roi-calc__select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 95, 173, 0.12);
}
.roi-calc__hint {
  font-size: var(--t-xs);
  color: var(--slate);
  font-style: italic;
}
.roi-calc__results {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.roi-calc__result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
@media (max-width: 600px) {
  .roi-calc__result-grid { grid-template-columns: 1fr; }
}
.roi-calc__result-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5);
}
.roi-calc__result-card--highlight {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a44 100%);
  border-color: var(--ink);
  color: white;
}
.roi-calc__result-card--highlight .roi-calc__result-label,
.roi-calc__result-card--highlight .roi-calc__result-sub {
  color: rgba(255,255,255,0.7);
}
.roi-calc__result-card--highlight .roi-calc__result-value {
  color: var(--accent, #F4B740);
}
.roi-calc__result-label {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  margin-bottom: var(--s-2);
  font-weight: 500;
}
.roi-calc__result-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-3xl);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--s-1);
}
.roi-calc__result-sub {
  font-size: var(--t-xs);
  color: var(--slate);
}
.roi-calc__disclaimer {
  font-size: var(--t-sm);
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: var(--s-5);
  padding: var(--s-5) var(--s-5);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: var(--r-md);
}
.roi-calc__disclaimer-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.roi-calc__disclaimer p {
  margin: 0 0 var(--s-3);
}
.roi-calc__disclaimer p:last-child {
  margin-bottom: 0;
}
.roi-calc__disclaimer strong {
  color: var(--ink);
  font-weight: 600;
}
.roi-calc__disclaimer-list {
  list-style: none;
  padding: 0;
  margin: var(--s-3) 0 var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roi-calc__disclaimer-list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--slate);
}
.roi-calc__disclaimer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
}
.roi-calc__disclaimer-list strong {
  color: var(--ink);
}
.roi-calc__disclaimer-link {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 500;
}
.roi-calc__disclaimer-fineprint {
  font-size: 0.78rem !important;
  color: var(--slate);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  margin-top: var(--s-4) !important;
}
.roi-calc__cta {
  margin-top: auto;
}

/* ============= LOE PREVIEW ============= */
.loe-preview {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-12);
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.04);
}
@media (max-width: 768px) {
  .loe-preview { padding: var(--s-7); }
}
.loe-preview__header {
  text-align: center;
  margin-bottom: var(--s-10);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.loe-preview__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-3xl);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--s-3) 0 var(--s-4);
  line-height: 1.15;
}
.loe-preview__lede {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.6;
}
.loe-preview__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6) var(--s-10);
  margin-bottom: var(--s-8);
}
@media (max-width: 768px) {
  .loe-preview__items {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
}
.loe-preview__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--s-5);
  align-items: start;
}
.loe-preview__num {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  font-weight: 600;
  color: white;
  background: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  letter-spacing: -0.02em;
}
.loe-preview__item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  color: var(--ink);
  margin-bottom: var(--s-2);
  line-height: 1.3;
}
.loe-preview__item-desc {
  color: var(--slate);
  font-size: var(--t-sm);
  line-height: 1.55;
}
.loe-preview__footer {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: var(--paper-2);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: var(--slate);
  border-left: 3px solid var(--blue);
}
.loe-preview__footer-icon {
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.loe-preview__footer strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============= BLOG ============= */
.blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(2, 23, 53, 0.12);
}
@media (max-width: 800px) { .blog-feature { grid-template-columns: 1fr; } }
.blog-feature__media {
  background: linear-gradient(135deg, #01271F 0%, #0a3d2e 100%);
  min-height: 280px;
  position: relative;
  display: grid;
  place-items: end start;
  padding: var(--s-7);
  background-image: linear-gradient(135deg, rgba(1,39,31,0.85) 0%, rgba(10,61,46,0.85) 100%), url('/assets/images/grey-laundry-locker-bank-15-units-exterior.jpg');
  background-size: cover;
  background-position: center;
}
.blog-feature__tag {
  display: inline-block;
  background: var(--accent, #D4A843);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.4em 0.8em;
  border-radius: 4px;
}
.blog-feature__body {
  padding: var(--s-9) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.blog-feature__meta {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
}
.blog-feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.blog-feature__desc {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.6;
  margin: 0;
}
.blog-feature__cta {
  margin-top: var(--s-3);
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 900px) { .blog-list { grid-template-columns: 1fr; } }
.blog-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.blog-card--placeholder {
  opacity: 0.85;
}
.blog-card__tag {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 600;
}
.blog-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-lg);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.blog-card__desc {
  color: var(--slate);
  font-size: var(--t-sm);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.blog-card__meta {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}

/* ============= GLOBAL FLAGS / SHIPPING ============= */
.ship-strip {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding: var(--s-5) var(--s-6);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-top: var(--s-5);
}
.ship-strip__label {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  font-weight: 600;
}
.ship-strip__flags {
  display: flex;
  gap: var(--s-2);
  font-size: 1.5rem;
  line-height: 1;
}
.ship-strip__flags span {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}
.ship-strip__text {
  font-size: var(--t-sm);
  color: var(--slate);
  flex: 1;
  min-width: 240px;
}
.ship-strip__text strong { color: var(--ink); }

.ship-callout {
  background: linear-gradient(135deg, #ECFAFE 0%, #f5fcff 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-6) var(--s-7);
  margin-bottom: var(--s-6);
  display: flex;
  align-items: flex-start;
  gap: var(--s-5);
}
@media (max-width: 700px) { .ship-callout { flex-direction: column; gap: var(--s-3); } }
.ship-callout__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: white;
}
.ship-callout__body { flex: 1; }
.ship-callout__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-lg);
  color: var(--ink);
  margin: 0 0 var(--s-2);
  line-height: 1.3;
}
.ship-callout__desc {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.55;
  margin: 0;
}

/* ============= SERVICES PAGE ============= */
.services-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-7);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.services-block:first-of-type { margin-top: var(--s-7); }
@media (max-width: 800px) { .services-block { grid-template-columns: 1fr; gap: var(--s-4); padding: var(--s-6) 0; } }
.services-block__pillar {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 700;
  padding-top: 0.4em;
  position: sticky;
  top: var(--s-8);
}
@media (max-width: 800px) { .services-block__pillar { position: static; } }
.services-block__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 700px) { .services-block__items { grid-template-columns: 1fr; gap: var(--s-3); } }
.services-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.services-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.services-item__desc {
  color: var(--slate);
  font-size: var(--t-sm);
  line-height: 1.55;
  margin: 0;
}

/* ============= SHIP GLOBE BANNER ============= */
.ship-globe {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a44 100%);
  color: white;
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-9);
  margin-bottom: var(--s-7);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-7);
  align-items: center;
}
@media (max-width: 800px) {
  .ship-globe { grid-template-columns: 1fr; padding: var(--s-7) var(--s-6); gap: var(--s-5); }
}
.ship-globe__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent, #D4A843);
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.ship-globe__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: white;
  margin: 0 0 var(--s-3);
}
.ship-globe__desc {
  color: rgba(255,255,255,0.75);
  font-size: var(--t-base);
  line-height: 1.55;
  margin: 0;
}
.ship-globe__flags {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--s-2) var(--s-3);
  font-size: 1.75rem;
  line-height: 1;
}
@media (max-width: 800px) { .ship-globe__flags { grid-template-columns: repeat(7, 1fr); } }
@media (max-width: 540px) { .ship-globe__flags { grid-template-columns: repeat(5, 1fr); font-size: 1.5rem; } }
.ship-globe__flags span {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  text-align: center;
}

/* ============= FREEDOM (HONESTY) LANDING PAGE ============= */
.freedom-hero {
  padding: var(--s-12) 0 var(--s-10);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(37,99,235,0.06), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(212,168,67,0.07), transparent 55%);
  text-align: center;
}
.freedom-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  padding: 0.5em 1em;
  border: 1px solid var(--blue);
  border-radius: 100px;
  margin-bottom: var(--s-6);
}
.freedom-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.2vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: var(--s-5);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.freedom-h1 em { font-style: italic; font-weight: 400; color: var(--blue); }
.freedom-deck {
  font-size: var(--t-lg);
  color: var(--slate);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 auto var(--s-7);
}
.freedom-byline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: var(--t-sm);
  color: var(--slate);
}
.freedom-byline strong { color: var(--ink); font-weight: 600; }

.freedom-article {
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--ink);
}
.freedom-article p { margin-bottom: var(--s-4); color: var(--ink); }
.freedom-article p.freedom-lead {
  font-size: var(--t-lg);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: var(--s-6);
}
.freedom-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: var(--s-8) 0 var(--s-4);
}
.freedom-h2-large {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 auto var(--s-4);
  max-width: 22ch;
}
.freedom-h2-large em, .freedom-h2 em { font-style: italic; font-weight: inherit; color: var(--blue); }

.freedom-pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.4;
  color: var(--ink);
  border-left: 4px solid var(--blue);
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
  margin: var(--s-6) 0;
}

.freedom-reconcile {
  background: var(--ink);
  color: white;
  border-radius: var(--r-lg);
  padding: var(--s-8);
  margin: var(--s-7) 0;
}
.freedom-reconcile__label {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent, #D4A843);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.freedom-reconcile__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.875rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: white;
  margin: 0 0 var(--s-4);
}
.freedom-reconcile p {
  color: rgba(255,255,255,0.8);
  font-size: var(--t-base);
  line-height: 1.6;
  margin: 0 0 var(--s-5);
}
.freedom-reconcile__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.freedom-reconcile__actions .btn--secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}
.freedom-reconcile__actions .btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.freedom-aside {
  background: #FFF8E8;
  border: 1px solid #F0E0B0;
  border-radius: var(--r-md);
  padding: var(--s-6) var(--s-7);
  margin: var(--s-7) 0;
}
.freedom-aside__label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent, #D4A843);
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.freedom-aside__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-lg);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 var(--s-3);
}
.freedom-aside p {
  color: var(--ink);
  font-size: var(--t-sm);
  line-height: 1.65;
  margin: 0;
}

.freedom-turn-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: var(--s-4);
}
.freedom-turn-deck {
  font-size: var(--t-lg);
  color: var(--slate);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 auto;
}

.freedom-change {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s-7);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.freedom-change:last-of-type { border-bottom: 1px solid var(--line); }
@media (max-width: 800px) { .freedom-change { grid-template-columns: 1fr; gap: var(--s-3); } }
.freedom-change__num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  font-weight: 700;
  padding-top: 0.5em;
}
.freedom-change__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.freedom-change__body p {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.65;
  margin: 0 0 var(--s-3);
}
.freedom-change__media {
  margin: var(--s-5) 0 0;
  padding: 0;
}
.freedom-change__media img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -16px rgba(2, 23, 53, 0.18);
}
.freedom-change__caption {
  display: block;
  margin: var(--s-3) 0 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--slate);
  line-height: 1.5;
  max-width: 540px;
}

/* Damaged shipment evidence gallery — honest documentation block */
.freedom-evidence {
  margin: var(--s-6) 0 var(--s-7);
  padding: 0;
}
.freedom-evidence__lede {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--slate);
  background: var(--paper-2);
  border-left: 3px solid var(--blue);
  padding: var(--s-4) var(--s-5);
  margin: 0 0 var(--s-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.freedom-evidence__lede em {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}
.freedom-evidence__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.freedom-evidence__item {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.freedom-evidence__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.freedom-evidence__caption {
  display: block;
  margin: var(--s-2) 0 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--slate);
  line-height: 1.45;
}
@media (max-width: 800px) {
  .freedom-evidence__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .freedom-evidence__item img { height: auto; max-height: 460px; }
  .freedom-evidence__lede { font-size: 0.92rem; padding: var(--s-3) var(--s-4); }
}

.freedom-toolkits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 800px) { .freedom-toolkits { grid-template-columns: 1fr; } }
.freedom-toolkit {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  box-shadow: 0 6px 20px -10px rgba(2,23,53,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.freedom-toolkit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(2,23,53,0.16);
}
.freedom-toolkit__mark {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 700;
}
.freedom-toolkit__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.freedom-toolkit__desc {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.6;
  margin: 0;
}
.freedom-toolkit__list {
  list-style: none;
  padding: 0;
  margin: var(--s-2) 0 var(--s-4);
  font-size: var(--t-sm);
  color: var(--slate);
}
.freedom-toolkit__list li {
  padding: 4px 0 4px var(--s-4);
  position: relative;
  line-height: 1.5;
}
.freedom-toolkit__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--blue);
}
.freedom-toolkit .btn { align-self: flex-start; margin-top: auto; }

.freedom-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 900px) { .freedom-pillars { grid-template-columns: 1fr; } }
.freedom-pillar {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-7);
}
.freedom-pillar__num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: var(--s-4);
}
.freedom-pillar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.freedom-pillar__title em { font-style: italic; font-weight: 400; color: var(--blue); }
.freedom-pillar p {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.65;
  margin: 0;
}

/* ============= FREEDOM CTA STRIP (above footer, every page) ============= */
.freedom-strip {
  background: linear-gradient(135deg, var(--ink) 0%, #102641 100%);
  color: white;
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}
.freedom-strip::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.freedom-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-8);
  align-items: center;
  position: relative;
}
@media (max-width: 800px) {
  .freedom-strip__inner { grid-template-columns: 1fr; gap: var(--s-5); text-align: center; }
}
.freedom-strip__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent, #D4A843);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.freedom-strip__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: white;
  margin: 0 0 var(--s-3);
  max-width: 22ch;
}
.freedom-strip__title em { font-style: italic; font-weight: 500; color: var(--accent, #D4A843); }
.freedom-strip__desc {
  color: rgba(255,255,255,0.78);
  font-size: var(--t-base);
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
}
.freedom-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: var(--s-4) var(--s-6);
  background: var(--accent, #D4A843);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  border-radius: var(--r-md);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}
.freedom-strip__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(212,168,67,0.5);
}

/* ============= BLOG FEATURED — FREEDOM VARIANT ============= */
.blog-feature--freedom {
  border: 2px solid var(--ink);
  position: relative;
}
.blog-feature__media--freedom {
  background: linear-gradient(135deg, var(--ink) 0%, #102641 60%, #1a3a5c 100%);
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,168,67,0.25) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.18) 0%, transparent 45%),
    linear-gradient(135deg, var(--ink) 0%, #102641 60%, #1a3a5c 100%);
}
.blog-feature__tag--accent {
  background: var(--accent, #D4A843);
  color: var(--ink);
}

/* ============= BLOG POSTS GRID ============= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }
.blog-post-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
a.blog-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -14px rgba(2,23,53,0.18);
  border-color: rgba(37,99,235,0.3);
}
.blog-post-card__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2, #F5F4EE);
}
.blog-post-card__body {
  padding: var(--s-6) var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.blog-post-card__tag {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: var(--s-1);
}
.blog-post-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-lg);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-2);
}
.blog-post-card__desc {
  color: var(--slate);
  font-size: var(--t-sm);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.blog-post-card__meta {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light, #8B8F96);
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}
.blog-post-card--placeholder { opacity: 0.92; }
.blog-post-card--placeholder .blog-post-card__meta {
  color: var(--accent, #D4A843);
  font-weight: 700;
}

/* ============= LOCKER DECK SLIDER ============= */
.locker-deck {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--s-7);
  display: flex;
  flex-direction: column;
}
.locker-deck__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-5);
  padding: var(--s-7) var(--s-7) var(--s-5);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .locker-deck__header { flex-direction: column; padding: var(--s-6); }
}
.locker-deck__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.locker-deck__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--s-2);
}
.locker-deck__sub {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  color: var(--slate);
  letter-spacing: 0.02em;
}
.locker-deck__nav {
  display: flex;
  gap: var(--s-2);
  flex-shrink: 0;
}
.locker-deck__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.locker-deck__btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.locker-deck__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
@media (max-width: 900px) {
  .locker-deck__body { grid-template-columns: 1fr; }
}
.locker-deck__slides {
  position: relative;
  background: #ECFAFE;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.locker-deck__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--s-6);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.locker-deck__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.locker-deck__slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.locker-deck__copy {
  padding: var(--s-7) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
@media (max-width: 700px) { .locker-deck__copy { padding: var(--s-6); } }
.locker-deck__desc {
  color: var(--slate);
  font-size: var(--t-base);
  line-height: 1.65;
  margin: 0;
}
.locker-deck__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.locker-deck__list li {
  position: relative;
  padding-left: var(--s-5);
  font-size: var(--t-sm);
  color: var(--ink);
  line-height: 1.5;
}
.locker-deck__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 1px;
  background: var(--blue);
}
.locker-deck__dots {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  padding: var(--s-4) var(--s-6) var(--s-6);
  border-top: 1px solid var(--line);
}
.locker-deck__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.locker-deck__dot.is-active {
  background: var(--blue);
  transform: scale(1.25);
}
.locker-bank-shot {
  margin-top: var(--s-9);
  background: #ECFAFE;
  border-radius: var(--r-lg);
  padding: var(--s-7);
  text-align: center;
}
.locker-bank-shot img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  margin: 0 auto var(--s-5);
  display: block;
  mix-blend-mode: multiply;
}
.locker-bank-shot__caption {
  color: var(--slate);
  font-size: var(--t-sm);
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Blog card icon overlay - on top of gradient */
.blog-post-card__media {
  position: relative;
  display: grid;
  place-items: center;
}
.blog-post-card__icon {
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  opacity: 0.95;
}

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

/* ============================================================================
 * BREEZY CHAT WIDGET
 * Bottom-right floating chatbot — /assets/js/chat-widget.js loads /assets/data/knowledge-base.json
 * ============================================================================ */

.bzc-root {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: var(--font-body);
}

/* Launcher bubble */
.bzc-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 22px 14px 18px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 36px -10px rgba(2, 23, 53, 0.45), 0 4px 12px -2px rgba(2, 23, 53, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.bzc-launcher:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -10px rgba(37, 99, 235, 0.45), 0 4px 16px -2px rgba(37, 99, 235, 0.3);
}
.bzc-launcher:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.bzc-launcher__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
}
.bzc-launcher__label { white-space: nowrap; }

/* Panel */
.bzc-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 100px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 32px 80px -20px rgba(2, 23, 53, 0.35), 0 8px 24px -8px rgba(2, 23, 53, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.bzc-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.bzc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--ink);
  color: #fff;
  flex-shrink: 0;
}
.bzc-header__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  font-weight: 500;
}
.bzc-header__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.bzc-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.bzc-close:hover { background: rgba(255, 255, 255, 0.18); }

/* Log */
.bzc-log {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.bzc-log::-webkit-scrollbar { width: 6px; }
.bzc-log::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

/* Messages */
.bzc-msg { display: flex; }
.bzc-msg--user { justify-content: flex-end; }
.bzc-msg--bot, .bzc-msg--system { justify-content: flex-start; }

/* Column wrapper inside a bot message — keeps bubble and chips stacked
   vertically (the parent .bzc-msg is a flex row). */
.bzc-msg__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 92%;
  min-width: 0;
}

.bzc-msg__bubble {
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
  word-wrap: break-word;
}
.bzc-msg--user .bzc-msg__bubble {
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 4px;
  max-width: 88%;
}
.bzc-msg--bot .bzc-msg__bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.bzc-msg--system .bzc-msg__bubble {
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.bzc-msg__bubble a { color: var(--blue); text-decoration: underline; }
.bzc-msg--user .bzc-msg__bubble a { color: #fff; }
.bzc-msg__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.bzc-msg__bubble p { margin: 0 0 8px; }
.bzc-msg__bubble p:last-child { margin-bottom: 0; }
.bzc-msg__list {
  margin: 4px 0 8px;
  padding-left: 18px;
}
.bzc-msg__list li {
  margin-bottom: 4px;
}
.bzc-msg__list li:last-child { margin-bottom: 0; }

/* Bot action buttons (e.g. LOE link) */
.bzc-msg__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.bzc-msg__action {
  background: var(--ink);
  color: #fff !important;
  text-decoration: none !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.15s ease;
}
.bzc-msg__action:hover { background: var(--blue); }

/* Related-question chips inside a bot message.
   Renders below the bubble as a label + horizontal pill row that wraps. */
.bzc-msg__chips {
  margin-top: 2px;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bzc-msg__chips-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.bzc-msg__chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bzc-chip {
  display: inline-flex;
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 6px 12px 6px 11px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
  font-weight: 500;
  line-height: 1.2;
}
.bzc-chip::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 7px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: background 0.15s ease;
}
.bzc-chip:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}
.bzc-chip:hover::before {
  background: #fff;
}

/* The first-time, prominent "try one of these" block */
.bzc-suggested {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bzc-suggested__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 2px;
  font-weight: 500;
}
.bzc-chip--prominent {
  background: #fff;
  border-color: var(--line);
  white-space: normal;
  text-align: left;
  line-height: 1.4;
  padding: 9px 14px 9px 13px;
}
.bzc-chip--prominent::before {
  margin-top: 0.4em;
  align-self: flex-start;
}

/* Typing indicator */
.bzc-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  height: 14px;
}
.bzc-typing span {
  width: 7px;
  height: 7px;
  background: var(--slate);
  border-radius: 50%;
  opacity: 0.4;
  animation: bzc-typing-bounce 1.2s infinite ease-in-out;
}
.bzc-typing span:nth-child(2) { animation-delay: 0.15s; }
.bzc-typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes bzc-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Form */
.bzc-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.bzc-input {
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bzc-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.bzc-input::placeholder { color: var(--slate); }
.bzc-send {
  background: var(--blue);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}
.bzc-send:hover { background: var(--ink); transform: translateX(1px); }

.bzc-footnote {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  padding: 6px 14px 10px;
  background: var(--paper);
  flex-shrink: 0;
}

/* Mobile: full-screen takeover */
@media (max-width: 600px) {
  .bzc-root {
    bottom: 14px;
    right: 14px;
  }
  .bzc-launcher {
    padding: 12px 18px 12px 14px;
    font-size: 0.88rem;
  }
  .bzc-launcher__label { display: inline; }
  .bzc-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    width: auto;
    max-width: none;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }
  .bzc-msg__bubble { max-width: 92%; font-size: 0.95rem; }
}

@media (max-width: 380px) {
  .bzc-launcher__label { display: none; }
  .bzc-launcher { padding: 14px; }
  .bzc-launcher__icon { width: 22px; height: 22px; background: transparent; }
}

/* Safe-area clearance so the floating chat launcher doesn't overlap
   the very last content (footer address line) on mobile. We give the
   footer extra bottom padding rather than the body — that avoids the
   permanent blank space the body-padding approach would create. The
   launcher floating over scrolled body content during scroll is standard
   chat-widget behaviour and intended. */
@media (max-width: 600px) {
  .footer {
    padding-bottom: calc(var(--s-8) + 72px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================================
 * BOOK-A-CALL — Gated LOE-first segment selector
 * ============================================================================ */

.bookcall-segments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  margin: 0 auto;
}
@media (max-width: 800px) {
  .bookcall-segments { grid-template-columns: 1fr; gap: var(--s-4); }
}

.bookcall-segment {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-5);
  padding: var(--s-6) var(--s-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  position: relative;
  overflow: hidden;
}
.bookcall-segment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.bookcall-segment:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 40px -16px rgba(37, 99, 235, 0.25), 0 4px 12px -4px rgba(2, 23, 53, 0.08);
  transform: translateY(-2px);
}
.bookcall-segment:hover::before { transform: scaleX(1); }
.bookcall-segment:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.bookcall-segment__num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.04em;
  padding-top: 4px;
}

.bookcall-segment__body {
  display: flex;
  flex-direction: column;
}

.bookcall-segment__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 var(--s-3);
}

.bookcall-segment__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0 0 var(--s-4);
}

.bookcall-segment__points {
  list-style: none;
  margin: 0 0 var(--s-5);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bookcall-segment__points li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.5;
}
.bookcall-segment__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.7;
}

.bookcall-segment__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.bookcall-segment:hover .bookcall-segment__cta {
  color: var(--ink);
}
.bookcall-segment__cta svg {
  transition: transform 0.18s ease;
}
.bookcall-segment:hover .bookcall-segment__cta svg {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .bookcall-segment {
    grid-template-columns: 1fr;
    padding: var(--s-5);
    gap: var(--s-3);
  }
  .bookcall-segment__num {
    font-size: 1.1rem;
  }
}

.bookcall-segments__note {
  text-align: center;
  margin: var(--s-6) auto 0;
  max-width: 56ch;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}
.bookcall-segments__note a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 500;
}

/* "Already have your LOE? Book the call" headline */
.bookcall-call-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.bookcall-call-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

/* Chat cue panel */
.bookcall-chat-cue {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s-5);
  padding: var(--s-6) var(--s-7);
  background: var(--ink);
  border-radius: var(--r-lg);
  color: #fff;
  align-items: start;
}
@media (max-width: 600px) {
  .bookcall-chat-cue {
    grid-template-columns: 1fr;
    padding: var(--s-5);
    gap: var(--s-3);
  }
}
.bookcall-chat-cue__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.bookcall-chat-cue__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-bottom: 6px;
}
.bookcall-chat-cue__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 var(--s-3);
}
.bookcall-chat-cue__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ============================================================================
 * HERO PRICING STRIP — compact tier + global shipping badge for hero areas.
 * Lives below .hero__cta and mirrors the language from the pricing page so
 * every entry-point page sets clear price expectations up front.
 * ============================================================================ */

.hero-pricing-strip {
  margin-top: var(--s-6);
  padding: var(--s-4) var(--s-5);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  align-items: center;
  max-width: 600px;
  box-shadow: 0 6px 18px -10px rgba(2, 23, 53, 0.12);
}
@media (max-width: 600px) {
  .hero-pricing-strip {
    grid-template-columns: 1fr;
    gap: var(--s-3);
    padding: var(--s-4);
  }
}

.hero-pricing-strip__tiers {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-pricing-strip__tier-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.hero-pricing-strip__tier-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  white-space: nowrap;
}
.hero-pricing-strip__tier-value em {
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
}
.hero-pricing-strip__sub {
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: 2px;
}

.hero-pricing-strip__shipping {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--line);
  padding-left: var(--s-5);
  min-width: 0;
}
@media (max-width: 600px) {
  .hero-pricing-strip__shipping {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: var(--s-3);
  }
}
.hero-pricing-strip__shipping-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.hero-pricing-strip__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 1rem;
  line-height: 1;
  align-items: center;
}
.hero-pricing-strip__flags span {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.hero-pricing-strip__more {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--slate);
  letter-spacing: 0.04em;
  margin-left: 2px;
}

/* ============================================================================
 * MID-PAGE ORDER CTA — a strategic conversion block placed between content
 * sections on long-copy pages. Two variants: ink (dark, bold), and soft
 * (paper-2 background, less aggressive) for stacked use.
 * ============================================================================ */

.order-cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-7);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-6);
  align-items: center;
  margin: 0 auto;
  max-width: 1080px;
  position: relative;
  overflow: hidden;
}
.order-cta::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 800px) {
  .order-cta {
    grid-template-columns: 1fr;
    padding: var(--s-7) var(--s-5);
    gap: var(--s-4);
    text-align: left;
  }
}

.order-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.order-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 var(--s-2);
}
.order-cta__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.order-cta__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 56ch;
}
.order-cta__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}
.order-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: background 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.order-cta__btn:hover {
  background: #e6c060;
  transform: translateY(-1px);
}
.order-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.order-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.order-cta--soft {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.order-cta--soft::before { display: none; }
.order-cta--soft .order-cta__eyebrow { color: var(--blue); }
.order-cta--soft .order-cta__title { color: var(--ink); }
.order-cta--soft .order-cta__title em { color: var(--blue); }
.order-cta--soft .order-cta__desc { color: var(--slate); }
.order-cta--soft .order-cta__btn--ghost {
  color: var(--ink);
  border-color: var(--line);
}
.order-cta--soft .order-cta__btn--ghost:hover {
  background: #fff;
  border-color: var(--ink);
}
