/* ==========================================================================
   Converta — Design tokens (Vercel-style monochrome system)
   Geist Sans/Mono substituted with Inter / JetBrains Mono (web-safe, same
   metrics family). Do not reintroduce chromatic color outside --accent-green.
   ========================================================================== */
:root {
  /* Colors */
  --paper: #fafafa;
  --white: #ffffff;
  --hairline: #ebebeb;
  --ash: #c9c9c9;
  --smoke: #a8a8a8;
  --graphite: #8f8f8f;
  --slate: #7d7d7d;
  --stone: #666666;
  --charcoal: #4d4d4d;
  --obsidian: #171717;
  --carbon: #000000;
  --accent-green: #297a3a;

  /* Type */
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --text-eyebrow: 11px;
  --text-caption: 13px;
  --text-body: 16px;
  --text-heading: 30px;
  --text-heading-lg: 56px;
  --text-display: 64px;

  /* Spacing (4px grid) */
  --sp-4: 4px; --sp-6: 6px; --sp-8: 8px; --sp-12: 12px; --sp-16: 16px;
  --sp-20: 20px; --sp-24: 24px; --sp-32: 32px; --sp-40: 40px; --sp-44: 44px;
  --sp-section: 112px;

  /* Shape */
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-full: 9999px;

  /* Elevation — hairline rings, never drop shadow */
  --ring: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 0 0 2px var(--paper);
  --ring-tight: 0 0 0 1px var(--hairline);

  --max-width: 1280px;
}

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

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

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

@media (min-width: 900px) {
  .wrap { padding: 0 48px; }
}

/* -------------------------------------------------------------------------
   Eyebrow / section label
   ------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.071em;
  text-transform: uppercase;
  color: var(--obsidian);
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--ash); }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-12) var(--sp-20);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.btn-filled { background: var(--obsidian); color: var(--white); }
.btn-filled:hover { opacity: 0.78; }
.btn-ghost { background: transparent; color: var(--charcoal); box-shadow: var(--ring-tight); }
.btn-ghost:hover { color: var(--obsidian); box-shadow: 0 0 0 1px var(--obsidian); }
.btn-link {
  background: none; border: none; padding: 0; color: var(--charcoal);
  font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: var(--sp-6);
}
.btn-link:hover { color: var(--obsidian); }
.btn-pill { border-radius: var(--radius-full); padding: var(--sp-8) var(--sp-16); }

/* -------------------------------------------------------------------------
   Nav
   ------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--hairline);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  font-family: var(--font-sans); font-weight: 600; font-size: 16px;
  color: var(--obsidian); text-decoration: none; letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--charcoal);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--obsidian); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-12); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px;
}
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--obsidian); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--paper); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 24px; font-weight: 500; color: var(--obsidian); text-decoration: none; }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 24px; cursor: pointer; }

/* -------------------------------------------------------------------------
   Page header (per-page hero, lighter than home hero)
   ------------------------------------------------------------------------- */
.page-header {
  padding: 160px 0 var(--sp-section);
  box-shadow: 0 1px 0 var(--hairline);
}
.page-header h1 {
  font-size: clamp(36px, 5vw, var(--text-heading-lg));
  font-weight: 450;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--sp-16);
}
.page-header p {
  font-size: 17px; color: var(--charcoal); max-width: 560px; font-weight: 400; line-height: 1.6;
}

/* -------------------------------------------------------------------------
   Home hero — two real columns: headline left, boxed live 3D object right.
   They share a grid row, so the text and object are always aligned (no
   floating canvas / no dead space).
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 0 64px;
  background: var(--paper);
  overflow: hidden;
}
.hero-copy-wrap { position: relative; z-index: 2; width: 100%; }
.hero-copy { max-width: 520px; }
.hero-h1 {
  font-size: clamp(40px, 5.2vw, var(--text-display));
  font-weight: 450; letter-spacing: -0.045em; line-height: 1.0;
}
.hero-h1 .accent { color: var(--stone); }
.hero-sub {
  font-size: 17px; color: var(--charcoal); line-height: 1.6; max-width: 440px;
  margin: var(--sp-24) 0 var(--sp-32);
}
.hero-actions { display: flex; align-items: center; gap: var(--sp-20); flex-wrap: wrap; margin-bottom: var(--sp-40); }
.hero-meta {
  display: flex; gap: var(--sp-32); flex-wrap: wrap;
  padding-top: var(--sp-32); border-top: 1px solid var(--hairline); max-width: 560px;
}
.hero-meta-num { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; }
.hero-meta-label { font-size: 12px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* The 3D lives in a wide area on the right half of the viewport, giving the
   form lots of room to roam. Absolutely placed so it can extend to the edge
   without affecting the text column's layout. */
.hero-visual {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 52vw; z-index: 1;
  pointer-events: none;
}
.hero-visual canvas {
  width: 100%; height: 100%; display: block;
}
/* Soft white fade on the left so the form melts into the page toward the text
   (prevents any clash on narrower screens; reads as the form emerging). */
.hero-visual::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(250,250,250,0) 20%);
}

.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.071em;
  text-transform: uppercase; color: var(--smoke); pointer-events: none;
  transition: opacity 0.3s ease;
}
.hero-scroll-line {
  width: 1px; height: 34px; background: var(--ash);
  animation: scrollPulse 2s ease-in-out infinite; transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* -------- Mobile: 3D on top (in flow), text below, both clearly visible -------- */
@media (max-width: 820px) {
  .hero {
    padding: 80px 0 48px; min-height: auto;
    flex-direction: column; align-items: stretch;
  }
  .hero-copy-wrap { order: 2; }
  .hero-copy { max-width: 100%; }
  /* Visual back into normal flow, stacked on top. */
  .hero-visual {
    position: relative; top: auto; right: auto; bottom: auto;
    width: 100%; height: 40vh; order: 1; margin-bottom: var(--sp-8);
  }
  .hero-visual::after { display: none; }  /* no side-fade when stacked */
  .hero-h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-actions { width: 100%; gap: var(--sp-12); }
  .hero-actions .btn-filled { flex: 1; justify-content: center; padding: var(--sp-16); }
  .hero-meta { gap: var(--sp-20); }
  .hero-meta-num { font-size: 24px; }
  .hero-scroll-hint { display: none; }
}

/* -------------------------------------------------------------------------
   Sections — generic
   ------------------------------------------------------------------------- */
section { padding: var(--sp-section) 0; }
.section-dark { background: var(--obsidian); color: var(--white); }
.section-dark .eyebrow { color: var(--ash); }
.section-dark .eyebrow::before { background: #333; }
.section-alt { background: var(--white); box-shadow: 0 1px 0 var(--hairline), 0 -1px 0 var(--hairline); }

.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 450; letter-spacing: -0.03em; line-height: 1.08;
}
.section-head p { font-size: 16px; color: var(--charcoal); line-height: 1.7; }
.section-dark .section-head p { color: var(--ash); }

/* -------------------------------------------------------------------------
   Bordered card grid (hairline rings, never shadow)
   ------------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); box-shadow: var(--ring-tight); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); box-shadow: var(--ring-tight); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); box-shadow: var(--ring-tight); }

.card { background: var(--white); padding: var(--sp-40) var(--sp-32); }
.section-dark .card { background: var(--obsidian); }
.card-num { font-family: var(--font-mono); font-size: 13px; color: var(--ash); margin-bottom: var(--sp-20); }
.card h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: var(--sp-8); }
.card p { font-size: 14px; color: var(--charcoal); line-height: 1.65; }
.section-dark .card p { color: var(--slate); }

.pillar-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  box-shadow: var(--ring-tight); display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-20); color: var(--obsidian);
}

/* -------------------------------------------------------------------------
   Stat / result blocks
   ------------------------------------------------------------------------- */
.result-num { font-size: 44px; font-weight: 450; letter-spacing: -0.02em; margin-bottom: var(--sp-8); }
.result-label { font-size: 13px; color: var(--stone); line-height: 1.5; }

/* -------------------------------------------------------------------------
   Case studies
   ------------------------------------------------------------------------- */
.case-industry {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.071em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: var(--sp-20);
}
.case h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: var(--sp-16); }
.case-metrics { display: flex; gap: var(--sp-32); margin-bottom: var(--sp-16); flex-wrap: wrap; }
.case-metric-num { font-size: 32px; font-weight: 450; letter-spacing: -0.02em; }
.case-metric-label { font-size: 12px; color: var(--stone); margin-top: 2px; }

/* -------------------------------------------------------------------------
   Services list (line items)
   ------------------------------------------------------------------------- */
.service-list { display: flex; flex-direction: column; gap: 1px; background: var(--hairline); box-shadow: var(--ring-tight); }
.service-row {
  display: grid; grid-template-columns: 56px 1fr 1fr auto; align-items: center; gap: var(--sp-32);
  background: var(--white); padding: var(--sp-32);
}
.section-dark .service-row { background: var(--obsidian); }
.service-row-num { font-family: var(--font-mono); font-size: 13px; color: var(--ash); }
.service-row-name { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.service-row-desc { font-size: 14px; color: var(--charcoal); line-height: 1.55; }
.section-dark .service-row-desc { color: var(--slate); }
.service-row-price { font-size: 13px; color: var(--stone); text-align: right; white-space: nowrap; }
.service-row-price strong { display: block; font-size: 17px; color: var(--obsidian); font-weight: 500; }
.section-dark .service-row-price strong { color: var(--white); }

/* -------------------------------------------------------------------------
   Process steps
   ------------------------------------------------------------------------- */
.step { background: var(--white); padding: var(--sp-40) var(--sp-32); position: relative; }
.step-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.071em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: var(--sp-16);
}
.step h3 { font-size: 22px; font-weight: 500; margin-bottom: var(--sp-12); letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--charcoal); line-height: 1.65; }

/* -------------------------------------------------------------------------
   Pricing cards
   ------------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: var(--sp-40); }
.price-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--ring); padding: var(--sp-40) var(--sp-32); }
.price-card.featured { background: var(--obsidian); color: var(--white); }
.price-tier {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.071em; text-transform: uppercase;
  color: var(--stone); margin-bottom: var(--sp-16);
}
.price-card.featured .price-tier { color: var(--ash); }
.price-name { font-size: 20px; font-weight: 500; margin-bottom: var(--sp-8); letter-spacing: -0.01em; }
.price-amount { font-size: 40px; font-weight: 450; letter-spacing: -0.02em; margin-bottom: var(--sp-6); }
.price-note { font-size: 12px; color: var(--stone); margin-bottom: var(--sp-24); }
.price-card.featured .price-note { color: var(--slate); }
.price-divider { height: 1px; background: var(--hairline); margin-bottom: var(--sp-20); }
.price-card.featured .price-divider { background: #333; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: var(--sp-12); margin-bottom: var(--sp-32); }
.price-features li { font-size: 14px; color: var(--charcoal); display: flex; gap: var(--sp-8); align-items: flex-start; }
.price-card.featured .price-features li { color: var(--ash); }
.price-features li::before { content: '\2713'; color: var(--accent-green); flex-shrink: 0; font-family: var(--font-mono); }
.price-cta { display: block; text-align: center; width: 100%; }

/* -------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow::before { display: none; }
.cta-band h2 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 450; letter-spacing: -0.03em; line-height: 1.03; margin-bottom: var(--sp-24); }
.cta-band p { font-size: 17px; color: var(--slate); max-width: 520px; margin: 0 auto var(--sp-40); line-height: 1.6; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: var(--sp-20); flex-wrap: wrap; margin-bottom: var(--sp-40); }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: var(--sp-32); flex-wrap: wrap; padding-top: var(--sp-32); box-shadow: 0 -1px 0 #262626; }
.cta-trust-item { font-size: 13px; color: var(--slate); }
.cta-trust-item strong { color: var(--white); font-weight: 500; }

/* -------------------------------------------------------------------------
   CLI-style trust panel (terminal accent — used sparingly)
   ------------------------------------------------------------------------- */
.cli-panel {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--ring);
  padding: var(--sp-16); font-family: var(--font-mono); font-size: 13px; color: var(--obsidian);
}
.cli-panel .ok { color: var(--accent-green); }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
footer { background: var(--obsidian); color: var(--slate); padding: 0 0 var(--sp-40); }
.footer-top {
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-20); flex-wrap: wrap;
  padding: var(--sp-40) 0; box-shadow: 0 1px 0 #262626;
}
.footer-logo { font-size: 16px; font-weight: 600; color: var(--white); text-decoration: none; }
.footer-tagline { font-size: 13px; color: var(--slate); }
.footer-links { display: flex; gap: var(--sp-24); list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--slate); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: var(--sp-24); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-8); }
.footer-bottom p { font-size: 12px; color: #4d4d4d; }

/* -------------------------------------------------------------------------
   Audit modal
   ------------------------------------------------------------------------- */
.audit-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; backdrop-filter: blur(4px);
}
.audit-overlay.show { opacity: 1; pointer-events: all; }
.audit-modal {
  background: var(--white); max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  border-radius: var(--radius-md); box-shadow: var(--ring), 0 24px 64px rgba(0,0,0,0.25);
  position: relative; transform: translateY(16px); transition: transform 0.25s ease;
}
.audit-overlay.show .audit-modal { transform: translateY(0); }
.audit-close {
  position: absolute; top: 16px; right: 16px; background: var(--paper); box-shadow: var(--ring-tight);
  width: 28px; height: 28px; border-radius: var(--radius-sm); border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; color: var(--stone);
}
.audit-close:hover { color: var(--obsidian); }
.audit-header { padding: var(--sp-32) var(--sp-40) var(--sp-24); box-shadow: 0 1px 0 var(--hairline); }
.audit-dots { display: flex; align-items: center; gap: 6px; margin-bottom: var(--sp-16); }
.audit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hairline); transition: all 0.2s; }
.audit-dot.active { background: var(--obsidian); width: 18px; border-radius: 3px; }
.audit-dot.done { background: var(--ash); }
.audit-step-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.071em; text-transform: uppercase;
  color: var(--stone); margin-bottom: var(--sp-8);
}
.audit-header h2 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.audit-header p { font-size: 14px; color: var(--charcoal); margin-top: var(--sp-8); line-height: 1.55; }
.audit-body { padding: var(--sp-24) var(--sp-40) var(--sp-32); }
.audit-question { display: none; }
.audit-question.active { display: block; }
.audit-options { display: flex; flex-direction: column; gap: var(--sp-8); }
.audit-option {
  display: flex; align-items: center; gap: var(--sp-12); padding: var(--sp-16);
  border-radius: var(--radius-md); box-shadow: var(--ring-tight); cursor: pointer;
  background: var(--white); font-size: 14px; text-align: left; transition: all 0.15s;
}
.audit-option:hover { box-shadow: 0 0 0 1px var(--obsidian); }
.audit-option.selected { background: var(--obsidian); color: var(--white); box-shadow: 0 0 0 1px var(--obsidian); }
.audit-input-group { display: flex; flex-direction: column; gap: var(--sp-8); margin-bottom: var(--sp-16); }
.audit-label { font-size: 12px; font-weight: 500; color: var(--obsidian); }
.audit-input {
  font-family: var(--font-sans); font-size: 14px; padding: var(--sp-12) var(--sp-16);
  border-radius: var(--radius-md); box-shadow: var(--ring-tight); border: none; outline: none; width: 100%;
}
.audit-input:focus { box-shadow: 0 0 0 1px var(--obsidian); }
.audit-textarea { min-height: 80px; resize: vertical; }
.audit-nav { display: flex; align-items: center; justify-content: space-between; margin-top: var(--sp-24); padding-top: var(--sp-20); box-shadow: 0 -1px 0 var(--hairline); }
.audit-progress { font-size: 12px; color: var(--stone); }
.audit-nav-btns { display: flex; gap: var(--sp-8); }
.audit-btn-next:disabled { opacity: 0.35; cursor: not-allowed; }
.audit-success { padding: var(--sp-section) var(--sp-40); text-align: center; display: none; }
.audit-success h3 { font-size: 24px; font-weight: 500; margin-bottom: var(--sp-8); }
.audit-success p { font-size: 14px; color: var(--charcoal); max-width: 380px; margin: 0 auto; line-height: 1.6; }
.audit-error { display: none; font-size: 13px; color: #b91c1c; margin-top: var(--sp-12); }

/* honeypot — hidden from real users, visible to bots that fill every field */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* -------------------------------------------------------------------------
   Floating actions
   ------------------------------------------------------------------------- */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; background: var(--obsidian); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.2s ease;
}
.fab.visible { opacity: 1; pointer-events: all; }
.fab:hover { transform: scale(1.06); }
.fab svg { stroke: var(--white); }

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .section-head { grid-template-columns: 1fr; gap: 32px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: var(--sp-8); }
  .service-row-price { text-align: left; }
  section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .page-header { padding: 120px 0 64px; }
}
