@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ===========================================================
   PURRU Transportes — Sistema visual
   Editorial · minimalista · escuro · acento dourado
   =========================================================== */

:root {
  --bg:           #0C1116;
  --bg-2:         #12181D;
  --bg-3:         #090E13;
  --line:         #191E23;
  --gold:         #C4A570;
  --gold-soft:    rgba(196,165,112,0.12);
  --gold-line:    rgba(196,165,112,0.32);
  --white:        #F5F5F5;
  --gray:         #A3A5A6;

  --max:    1240px;
  --gutter: 32px;
  --r:      2px;
  --t:      220ms cubic-bezier(.2,.6,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TIPOGRAFIA ────────────────────────────────────────────── */
h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
}

h4 {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray);
}

p  { color: var(--gray); line-height: 1.75; font-weight: 400; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.lead { font-size: 1.05rem; color: var(--gray); margin-bottom: 32px; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.center p { margin-top: 16px; }

.section         { padding: 120px 0; }
.section.compact { padding: 72px 0; }

/* ── HEADER ────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,14,19,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo img { height: 28px; width: auto; display: block; }

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-menu a {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--gray);
  transition: color var(--t);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }

.nav-menu a.active::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 9px 18px;
  cursor: pointer;
  border-radius: var(--r);
  transition: border-color var(--t), color var(--t);
}
.menu-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hero.tall { padding: 144px 0 120px; }

.hero-inner h1 { max-width: 880px; margin-bottom: 24px; }
.hero-inner > p {
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 40px;
  color: var(--gray);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--gray);
}
.breadcrumb a       { color: var(--gray); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb strong  { color: var(--gold); font-weight: 400; }
.breadcrumb span    { opacity: 0.4; }

.btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BOTÕES ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg-3);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--gold);
  border-radius: var(--r);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.btn:hover { background: transparent; color: var(--gold); }

.btn.secondary,
.btn.dark {
  background: transparent;
  color: var(--white);
  border-color: var(--line);
}
.btn.secondary:hover,
.btn.dark:hover { border-color: var(--gold); color: var(--gold); }

.btn.small { padding: 10px 18px; font-size: 0.78rem; }

.red-link {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
}
.red-link::after {
  content: '→';
  display: inline-block;
  transition: transform var(--t);
}
.red-link:hover::after { transform: translateX(4px); }

/* ── DIFERENCIAIS ──────────────────────────────────────────── */
.diff-wrap {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.diff-title {
  grid-column: 1 / -1;
  margin-bottom: 64px;
}
.diff-title h2 { max-width: 720px; }

.diff-card {
  padding: 0 32px;
  border-right: 1px solid var(--line);
}
.diff-card:first-child { padding-left: 0; }
.diff-card:last-child  { padding-right: 0; border-right: none; }

.icon-red {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 28px;
}

.diff-card h3 { margin-bottom: 12px; font-size: 1.02rem; }
.diff-card p  { font-size: 0.9rem; line-height: 1.72; }

/* ── IMAGE CARD ────────────────────────────────────────────── */
.image-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.image-card img { display: none; }

.image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('ISOTIPO-purru.svg') no-repeat center / 42%;
  opacity: 0.06;
  pointer-events: none;
}

.image-card::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  pointer-events: none;
}

.float-card { display: none; }

/* ── ASSINATURA ────────────────────────────────────────────── */
.signature {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── LISTA OPERAÇÃO ───────────────────────────────────────── */
.operation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.op-item {
  background: transparent;
  padding: 22px 24px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background var(--t);
}
.op-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.op-item:hover { background: var(--bg-2); }

/* ── BANDA ESCURA (red-band) ──────────────────────────────── */
.red-band {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.red-band::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: url('ISOTIPO-purru.svg') no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none;
}
.red-band > * { position: relative; z-index: 1; }
.red-band .eyebrow { color: var(--gold); }

.video-placeholder {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('ISOTIPO-purru.svg') no-repeat center / 30%;
  opacity: 0.07;
  pointer-events: none;
}
.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  pointer-events: none;
}
.play { display: none; }

/* ── CTA ───────────────────────────────────────────────────── */
.cta-section { padding: 100px 0; }

.cta-box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: var(--r);
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cta-box h2 { max-width: 540px; }
.cta-box p  { max-width: 600px; }

/* ── TIMELINE ──────────────────────────────────────────────── */
.timeline {
  max-width: var(--max);
  margin: 80px auto 0;
  padding: 0 var(--gutter);
}
.roadline { display: none; }

.timeline-items {
  border-left: 1px solid var(--line);
  margin-left: 28px;
}

.timeline-card {
  display: block;
  padding: 48px 0 48px 56px;
  position: relative;
  border-bottom: 1px solid var(--line);
  max-width: 820px;
}
.timeline-card:last-child { border-bottom: none; }
.timeline-card > div:last-child { display: none; }

.timeline-card::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 56px;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-card h3 {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.timeline-card h4 {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

.timeline-card p { font-size: 0.95rem; max-width: 560px; line-height: 1.72; }
.timeline-img { display: none; }

/* ── SERVIÇOS ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 56px;
}

.service-card {
  background: transparent;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.service-card:hover { background: var(--bg-2); }

.service-icon {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
  width: auto; height: auto;
  border: none;
  background: transparent;
  display: block;
  margin-bottom: 8px;
}

.service-card h3 { font-size: 1.08rem; font-weight: 500; }
.service-card p  { font-size: 0.9rem; flex: 1; line-height: 1.72; }
.service-card .btn { align-self: flex-start; margin-top: 12px; }

/* ── BENEFÍCIOS ───────────────────────────────────────────── */
.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 64px;
}

.benefit-card {
  background: transparent;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-card strong {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
}

.benefit-card span {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── QUALIDADE ────────────────────────────────────────────── */
.quality {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.quality .icon-red { margin-bottom: 16px; }
.quality h2        { margin-bottom: 24px; }

/* ── MVV ──────────────────────────────────────────────────── */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 64px;
}

.mvv-card {
  background: transparent;
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mvv-card h3 {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mvv-card p  { font-size: 0.95rem; line-height: 1.7; color: var(--gray); }
.mvv-card ul { display: flex; flex-direction: column; gap: 12px; }

.mvv-card li {
  font-size: 0.93rem;
  color: var(--gray);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.mvv-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ── BRAND STRIP ──────────────────────────────────────────── */
.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 96px auto 0;
  max-width: var(--max);
}

.brand-strip h2 {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 400;
  max-width: 720px;
  letter-spacing: -0.01em;
}

.pill {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  white-space: nowrap;
  border-bottom: 1px solid var(--gold);
}

/* ── GALERIA ──────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 56px;
}

.shot {
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--t);
}
.shot::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--line);
}
.shot:hover { background: var(--bg-3); }

/* ── STATS ────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 44px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.stat-num em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

.stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}

/* ── CONTATO ──────────────────────────────────────────────── */
.contact-map {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

.unit-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  max-width: 720px;
  width: calc(100% - var(--gutter) * 2);
}

.unit-head {
  background: transparent;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 28px;
}

.unit-body { background: transparent; }

.unit-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--white);
}
.unit-row:last-child { border-bottom: none; }
.unit-row span  { color: var(--gold); font-size: 0.78rem; }
.unit-row small { color: var(--gray); font-size: 0.85rem; }

/* ── FORMULÁRIOS ──────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: border-color var(--t), background var(--t);
  appearance: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder { color: var(--gray); }

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--gold);
  background: var(--bg-2);
}

.form-grid select { color: var(--gray); cursor: pointer; }

.form-grid textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-grid .full { grid-column: 1 / -1; }

/* ── CONTACT INFO ─────────────────────────────────────────── */
.contact-info {
  background: transparent;
  border-top: 1px solid var(--line);
  padding: 80px 0;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 16px; max-width: 620px; }

/* ── RODAPÉ ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.footer-top img { height: 26px; }

.ouvidoria {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ouvidoria span { font-size: 0.8rem; color: var(--gray); }

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding: 72px 0;
}

.footer h3 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer p { font-size: 0.88rem; line-height: 1.78; }

.footer ul   { display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 0.88rem; color: var(--gray); transition: color var(--t); }
.footer ul a:hover { color: var(--white); }

.social { display: flex; gap: 8px; margin-top: 28px; }

.social a {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray);
  transition: border-color var(--t), color var(--t);
  text-transform: uppercase;
}
.social a:hover { border-color: var(--gold); color: var(--gold); }

.copyright {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--gray);
}

/* ── PRIVACIDADE ──────────────────────────────────────────── */
.section-title { margin-bottom: 24px; }

.section h3 {
  color: var(--white);
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 500;
}

/* ── RESPONSIVO ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .diff-card {
    padding: 32px !important;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .diff-card:nth-child(2n)        { border-right: none; }
  .diff-card:nth-last-child(-n+2) { border-bottom: none; }
  .footer-main  { grid-template-columns: 1fr 1fr; gap: 48px; }
  .stats        { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-right: none; }
  .quality      { gap: 48px; }
  .split        { gap: 64px; }
}

@media (max-width: 768px) {
  :root { --gutter: 24px; }
  .menu-toggle { display: block; }

  .nav { height: 68px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg-3);
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu a.active::before { left: -16px; }

  .split           { grid-template-columns: 1fr; gap: 48px; }
  .hero            { padding: 64px 0 56px; }
  .hero.tall       { padding: 80px 0 64px; }
  .diff-grid       { grid-template-columns: 1fr; }
  .diff-card       { padding: 28px 0 !important; border-right: none; }
  .diff-card:last-child { border-bottom: none; }
  .services-grid   { grid-template-columns: 1fr; }
  .benefit-row     { grid-template-columns: 1fr; }
  .mvv             { grid-template-columns: 1fr; }
  .operation-list  { grid-template-columns: 1fr; }
  .cta-box         { padding: 40px 32px; }
  .footer-main     { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .footer-top      { flex-direction: column; gap: 16px; align-items: flex-start; }
  .ouvidoria       { flex-direction: column; align-items: flex-start; gap: 12px; }
  .brand-strip     { flex-direction: column; gap: 24px; align-items: flex-start; padding: 48px 0; }
  .quality         { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; padding: 56px 0; }
  .form-grid       { grid-template-columns: 1fr; }
  .gallery         { grid-template-columns: repeat(2, 1fr); }
  .section         { padding: 72px 0; }
  .section.compact { padding: 56px 0; }
  .timeline-items  { margin-left: 14px; }
  .timeline-card   { padding: 36px 0 36px 36px; }
  .stats           { grid-template-columns: 1fr; }
  .stat            { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .red-band        { padding: 72px 0; }
  .cta-section     { padding: 64px 0; }
  .image-card::after { bottom: 28px; left: 28px; }
}
