/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
svg { display: block; flex-shrink: 0; }

/* Replace the browser's native focus ring (often orange on macOS, per system
   accent color) with an on-brand one, shown only for keyboard navigation. */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ---------- Tokens ---------- */
:root {
  --dark: #072013;
  --red: #B2000E;
  --red-border: transparent;
  --card-icon-red: #BA1A1A;
  --text: #181C1C;
  --text-muted: #5D3F3C;
  --text-faint: #916F6B;
  --text-on-dark: #B1CDB9;
  --nav-muted: #4A6454;
  --bg: #F7FAF9;
  --bg-alt: #F1F4F3;
  --bg-alt2: #E0E3E2;
  --bg-card-muted: #EBEEED;
  --bg-table-head: #E6E9E8;
  --white: #FFFFFF;
  --green-cta: #22C55E;
  --green-cta-hover: #16A34A;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 4px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 20px rgba(13, 38, 25, 0.08);
  --shadow-btn: 0 1px 2px rgba(0, 0, 0, 0.05);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

p { color: #3b3b3b; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow { max-width: 768px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { background: #8f000b; }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--white); }

.btn--whatsapp {
  background: var(--green-cta);
  color: var(--white);
  padding: 16px 32px;
  box-shadow: var(--shadow-btn);
}
.btn--whatsapp:hover { background: var(--green-cta-hover); }
.btn--whatsapp svg { width: 24px; height: 24px; }

.btn--sm { padding: 10px 20px; }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--dark); padding: 8px 0; }
.topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__msg {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.topbar__links { display: flex; gap: 16px; }
.topbar__link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  opacity: 0.9;
}
.topbar__link:hover { opacity: 1; }
.topbar__link svg { width: 14px; height: 14px; }

/* ---------- Nav ---------- */
.nav {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--red-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--dark);
}
.logo__img {
  height: 40px;
  width: auto;
}
.logo__img--footer { height: 48px; }
.logo--light { color: var(--white); }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--nav-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--red); }
.nav__link--active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero { background: var(--white); padding: 96px 0; overflow: hidden; }
.hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero__copy { flex: 1; display: flex; flex-direction: column; gap: 32px; min-width: 0; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b3b3b;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: #3b3b3b;
  max-width: 576px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #3b3b3b;
}
.hero__note svg { width: 16px; height: 16px; color: var(--red); }

.hero__media {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  outline: 1px solid var(--red-border);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 578 / 598; }

/* ---------- Trust ticker ---------- */
.ticker {
  background: var(--bg-alt2);
  border-top: 1px solid var(--red-border);
  border-bottom: 1px solid var(--red-border);
  padding: 16px 48px;
}
.ticker__list {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
  column-gap: 24px;
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.ticker__item svg { width: 18px; height: 18px; color: var(--red); }
.ticker__dot { color: var(--text-faint); }

/* ---------- Client logo grid ---------- */
.clients { padding: 56px 0; background: var(--bg); }
.clients h2 { font-size: 32px; margin-bottom: 16px; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.client-logo {
  height: 88px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-card__media { height: 220px; overflow: hidden; background: var(--bg-alt2); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { font-size: 22px; margin-bottom: 8px; }
.product-card__body p { color: #3b3b3b; font-size: 15px; line-height: 1.55; flex: 1; margin-bottom: 16px; }
.product-card__link {
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-card__link svg { width: 14px; height: 14px; }

/* ---------- Audience cards (Built for Every Business) ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.audience-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-alt2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-card__icon svg { width: 28px; height: 28px; color: var(--red); }
.audience-card h3 { font-size: 18px; font-weight: 600; line-height: 1.4; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--tight { background: var(--bg); }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--red-border);
  border-bottom: 1px solid var(--red-border);
}
.section--dark { background: var(--dark); border-top: 1px solid var(--red-border); border-bottom: 1px solid var(--red-border); }
.section--cta { background: var(--bg); border-top: 1px solid var(--red-border); border-bottom: 1px solid var(--red-border); }

.section__head {
  max-width: 672px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__head--left { max-width: 768px; margin: 0 0 48px; text-align: left; }

.section h2 { font-size: 32px; margin-bottom: 16px; }
.section__head--left h2 { margin-bottom: 16px; }
.section__sub { font-size: 18px; line-height: 1.55; color: #3b3b3b; }

.section__cta { display: flex; justify-content: center; margin-top: 32px; }

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  outline: 1px solid var(--red-border);
  outline-offset: -1px;
  padding: 24px;
}
.card__icon { width: 28px; height: 28px; color: var(--card-icon-red); margin-bottom: 16px; }
.card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.card p { color: #3b3b3b; font-size: 16px; line-height: 1.5; }

.card--feature { padding: 32px 24px; }

.card--muted {
  background: var(--bg-alt);
}

/* included / excluded */
.card--included__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.card--included__head svg { width: 20px; height: 20px; }
.card--included .card--included__head svg,
.card--included h3 { color: var(--red); }
.card--excluded {
  background: var(--bg-card-muted);
  opacity: 0.9;
}
.card--excluded .card--included__head svg,
.card--excluded h3 { color: var(--text-muted); }
.card--included h3, .card--excluded h3 { font-size: 24px; margin: 0; }

.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.check-list--positive li { color: var(--text); }
.check-list--positive li::before {
  background-color: rgba(178, 0, 14, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B2000E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.check-list--negative li { color: var(--text-muted); }
.check-list--negative li::before {
  background-color: rgba(93, 63, 60, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235D3F3C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

.strong-line { font-size: 16px; font-weight: 700; color: #3b3b3b; }

/* ---------- Process ---------- */
.process {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  outline: 1px solid var(--red-border);
  outline-offset: -1px;
  padding: 64px 32px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.process__step {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process__icon {
  width: 64px;
  height: 64px;
  background: var(--bg-alt2);
  border-radius: 16px;
  outline: 1px solid var(--red-border);
  outline-offset: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.process__icon svg { width: 28px; height: 28px; color: var(--red); }
.process__step-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.process__step-desc { font-size: 14px; font-weight: 500; color: #3b3b3b; max-width: 220px; }
.process__arrow {
  flex-shrink: 0;
  color: var(--text-faint);
  margin-top: 22px;
}
.process__arrow svg { width: 20px; height: 20px; }

/* ---------- Sizes table ---------- */
.table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  outline: 1px solid var(--red-border);
  outline-offset: -1px;
  overflow-x: auto;
}
.sizes-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.sizes-table thead tr { background: var(--bg-table-head); border-bottom: 1px solid var(--red-border); }
.sizes-table th {
  text-align: left;
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.sizes-table td {
  padding: 16.5px 16px;
  font-size: 16px;
  border-bottom: 1px solid var(--red-border);
}
.sizes-table tbody tr:nth-child(even) { background: var(--bg); }
.sizes-table tbody tr:last-child td { border-bottom: none; }
.sizes-table__cap { font-weight: 700; }

/* ---------- Placement (dark) ---------- */
.placement {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.placement__icon { width: 40px; height: 40px; color: var(--red); }
.placement h2 { color: var(--white); max-width: 700px; }
.placement p { max-width: 672px; color: var(--text-on-dark); font-size: 18px; line-height: 1.55; }

/* ---------- Spec list ---------- */
.spec-list { margin-top: 8px; border-top: 1px solid var(--red-border); }
.spec-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--red-border);
}
.spec-list__row dt { font-size: 16px; font-weight: 700; color: var(--text-muted); }
.spec-list__row dd { font-size: 16px; }

.note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
}
.note--warning { color: var(--red); }
.note--warning svg { width: 20px; height: 20px; }

/* ---------- Final CTA ---------- */
.section--cta { text-align: center; }
.section--cta h2 { font-size: 48px; margin-bottom: 24px; }
.section--cta p { font-size: 18px; color: #3b3b3b; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); border-top: 1px solid var(--red-border); padding: 64px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer__tagline { color: var(--text-on-dark); font-size: 16px; max-width: 420px; }
.footer__copyright { color: #9db5a5; font-size: 14px; }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-cta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background-color .15s ease, transform .15s ease;
}
.whatsapp-float:hover { background: var(--green-cta-hover); transform: scale(1.06); }
.whatsapp-float:active { transform: scale(0.96); }
.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 720px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ---------- Extra centered copy under a section head ---------- */
.section__extra {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #3b3b3b;
}
.section__extra + .section__extra { margin-top: 8px; }

/* ---------- Comparison cards ---------- */
.compare-grid {
  max-width: 896px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.compare-card {
  background: var(--bg);
  border-radius: var(--radius);
  outline: 1px solid var(--red-border);
  outline-offset: -1px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.compare-card__title { color: var(--red); font-size: 24px; font-weight: 600; }
.compare-card p { color: #3b3b3b; font-size: 16px; line-height: 1.5; }
.compare-card__note {
  margin-top: auto;
  background: var(--bg);
  border-radius: 2px;
  outline: 1px solid var(--red-border);
  outline-offset: -1px;
  padding: 16px;
}
.compare-card__note-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #3b3b3b;
  margin-bottom: 8px;
}
.compare-card__note p { color: #3b3b3b; }

/* ---------- Feature pairs (icon + title, text below) ---------- */
.feature-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.feature-pair__head { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.feature-pair__head svg { width: 24px; height: 24px; color: var(--red); }
.feature-pair__head h3 { font-size: 24px; font-weight: 600; }
.feature-pair p { color: #3b3b3b; font-size: 18px; line-height: 1.55; }

/* ---------- Small uppercase label ---------- */
.small-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #3b3b3b;
  margin: 24px 0 12px;
}

/* ---------- Plain dash list ---------- */
.plain-list { display: flex; flex-direction: column; gap: 8px; }
.plain-list li { font-size: 16px; color: var(--text-muted); padding-left: 14px; position: relative; }
.plain-list li::before { content: '\2013'; position: absolute; left: 0; }

/* ---------- Pricing card ---------- */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  outline: 1px solid var(--red-border);
  outline-offset: -1px;
  padding: 32px;
}
.price-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.price-row { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--red-border); }
.price-row__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text);
  margin-bottom: 4px;
}
.price-row__value { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--red); }

/* ---------- How it works (two-column) ---------- */
.how-it-works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.how-it-works__title { margin-bottom: 16px; }
.how-it-works__lede { font-size: 18px; line-height: 1.55; color: #3b3b3b; margin-bottom: 24px; }

.numbered-list { display: flex; flex-direction: column; gap: 16px; }
.numbered-list li { display: flex; align-items: center; gap: 12px; }
.numbered-list__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 2px;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbered-list__text { font-size: 16px; color: var(--text-muted); }

.temp-card {
  background: var(--white);
  border-radius: var(--radius);
  outline: 1px solid var(--red-border);
  outline-offset: -1px;
  padding: 32px;
}
.temp-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.temp-table { width: 100%; border-collapse: collapse; }
.temp-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 2px 14px;
  border-bottom: 2px solid var(--text-faint);
}
.temp-table td { padding: 12px 2px; border-bottom: 1px solid var(--red-border); font-size: 16px; }
.temp-table tr:last-child td { border-bottom: none; }
.temp-table td:first-child { font-weight: 700; white-space: nowrap; }
.temp-table td:last-child { color: var(--text-muted); }
.temp-table tr.is-highlighted { background: var(--bg); }
.temp-card__footnote { margin-top: 16px; font-size: 14px; font-weight: 500; color: #3b3b3b; }

/* ---------- Square bullet list ---------- */
.square-list { display: flex; flex-direction: column; gap: 8px; }
.square-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-muted);
}
.square-list li::before {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 2px;
}

/* ---------- Stacked spec list ---------- */
.spec-stack {
  border-top: 1px solid var(--red-border);
  margin-top: 16px;
  column-count: 2;
  column-gap: 48px;
}
.spec-stack__row {
  padding: 12px 0;
  border-bottom: 1px solid var(--red-border);
  break-inside: avoid;
}
.spec-stack__row dt {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--text);
  margin-bottom: 2px;
}
.spec-stack__row dd { font-size: 16px; color: var(--text-muted); }

.subhead { font-size: 24px; font-weight: 600; margin: 32px 0 16px; }

/* ---------- Capacity section (image + content) ---------- */
.capacity-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.capacity-media {
  min-width: 0;
  max-width: 460px;
  justify-self: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  outline: 1px solid var(--red-border);
}
.capacity-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }

/* ---------- Process flow steps ---------- */
.flow-steps { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }
.flow-steps__step {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
}
.flow-steps__arrow { color: var(--red); display: flex; }
.flow-steps__arrow svg { width: 18px; height: 18px; }

.how-it-works__note { font-size: 15px; font-weight: 600; color: #3b3b3b; margin: 8px 0 16px; }
.how-it-works__footnote { font-size: 14px; color: #3b3b3b; margin-top: 16px; }

/* ---------- Article listing ---------- */
.article-hero { margin-bottom: 48px; }
.article-hero h1 { font-size: 40px; margin-bottom: 12px; }
.article-hero p { font-size: 18px; color: #3b3b3b; max-width: 640px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--red-border);
  margin-bottom: 48px;
}
.filter-pill {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: 1px solid var(--text-faint);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}
.filter-pill:hover { border-color: var(--red); color: var(--red); }
.filter-pill--active { border-color: var(--red); color: var(--red); background: rgba(178, 0, 14, 0.08); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
  background: var(--white);
  border: 1px solid var(--red-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.article-card:hover { box-shadow: var(--shadow-card); }
.article-card__media { position: relative; height: 192px; overflow: hidden; border-bottom: 1px solid var(--red-border); background: var(--bg-alt2); }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .article-card__media img { transform: scale(1.05); }
.article-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--white);
  border: 1px solid var(--text-faint);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--nav-muted);
}
.article-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.article-card__title { font-family: var(--font-heading); font-size: 20px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; color: var(--text); }
.article-card:hover .article-card__title { color: var(--red); }
.article-card__excerpt { font-size: 14px; line-height: 1.55; color: #3b3b3b; flex: 1; margin-bottom: 16px; }
.article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--red-border);
  font-size: 13px;
}
.article-card__date { color: var(--text-muted); }
.article-card__more { color: var(--red); text-transform: uppercase; font-weight: 600; font-size: 12px; letter-spacing: 0.4px; display: inline-flex; align-items: center; gap: 4px; }
.article-card__more svg { width: 14px; height: 14px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid var(--red-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text-muted);
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .current { background: var(--red); border-color: var(--red); color: var(--white); }

/* ---------- Article detail ---------- */
.entry-hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--red-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}
.entry-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.entry-meta__badge {
  color: var(--nav-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 12px;
  border: 1px solid var(--text-faint);
  padding: 4px 8px;
}
.entry-title { font-size: 36px; margin-bottom: 24px; }

.entry-content { font-size: 18px; line-height: 1.7; color: #3b3b3b; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--red-border);
}
.entry-content h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--text); margin: 32px 0 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 0 0 24px 20px; }
.entry-content li { margin-bottom: 8px; }
.entry-content strong { color: var(--text); }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 24px 0; }
.entry-content blockquote {
  background: var(--bg-alt);
  border-left: 4px solid var(--red);
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.entry-content th { background: var(--dark); color: var(--white); text-align: left; padding: 12px; border: 1px solid var(--red-border); }
.entry-content td { padding: 12px; border: 1px solid var(--red-border); }
.entry-content figure { margin: 24px 0; }
.entry-content figcaption { font-size: 13px; color: var(--text-faint); margin-top: 8px; text-align: center; }

.related-articles { margin-top: 80px; padding-top: 48px; border-top: 1px solid var(--red-border); }
.related-articles h2 { font-size: 28px; margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .topbar__inner, .nav__inner, .ticker { padding-left: 32px; padding-right: 32px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 40px; }
  .process { flex-direction: column; align-items: center; }
  .process__arrow { transform: rotate(90deg); margin: 0; }
  .how-it-works { grid-template-columns: 1fr; }
  .capacity-layout { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .feature-pair { grid-template-columns: 1fr; gap: 32px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .hero__inner { flex-direction: column-reverse; }
  .hero__copy, .hero__media { width: 100%; }
  .hero__lede { max-width: 100%; }
}

@media (max-width: 720px) {
  .topbar__inner { flex-direction: column; gap: 8px; text-align: center; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--red-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 24px 24px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__cta { display: none; }

  .container { padding: 0 20px; }
  .topbar__inner, .ticker { padding-left: 20px; padding-right: 20px; }

  .hero { padding: 56px 0; }
  .hero h1 { font-size: 32px; }
  .hero__lede { font-size: 16px; }

  .section { padding: 64px 0; }
  .section h2 { font-size: 26px; }
  .section--cta h2 { font-size: 32px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

  .spec-list__row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .spec-stack { column-count: 1; }

  .article-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: 30px; }

  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .client-logo { height: 70px; padding: 12px; }
  .entry-title { font-size: 28px; }
  .entry-hero-image { height: 240px; }
  .entry-content { font-size: 16px; }
  .entry-content h2 { font-size: 22px; }
}
