/* ActivityHub marketing site */
:root {
  --teal: #0d9488;
  --emerald: #059669;
  --teal-dark: #0f766e;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --slate: #475569;
  --slate-2: #64748b;
  --mist: #f1f5f9;
  --mist-2: #e2e8f0;
  --paper: #ffffff;
  --wash: #f8fafc;
  --teal-wash: #ecfdf5;
  --line: #e2e8f0;
  --amber: #f59e0b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow: 0 10px 30px -12px rgba(15,23,42,.18);
  --shadow-lg: 0 30px 60px -20px rgba(15,23,42,.28);
  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
p { margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--teal-wash);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(5,150,105,.6);
}
.btn-primary:hover { box-shadow: 0 12px 26px -8px rgba(5,150,105,.7); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--slate-2); }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand svg, .brand img { height: 34px; width: auto; }
.nav { display: none; align-items: center; gap: 28px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  transition: color .15s ease;
}
.nav a:hover { color: var(--ink); }
.header-actions { display: none; align-items: center; gap: 10px; }
.header-actions .sign-in { font-size: 15px; font-weight: 600; color: var(--slate); padding: 8px 4px; }
.header-actions .sign-in:hover { color: var(--ink); }

.menu-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px;
  cursor: pointer;
}
.menu-toggle svg { width: 20px; height: 20px; stroke: var(--ink); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 14px 20px 22px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--mist);
}
.mobile-menu .mm-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.mobile-menu .mm-actions .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 60px 0 40px;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(13,148,136,.10), transparent 60%),
    radial-gradient(700px 400px at 0% 10%, rgba(5,150,105,.07), transparent 55%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
.hero h1 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--teal), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: var(--slate);
  max-width: 560px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-trust {
  margin-top: 22px;
  font-size: 14px;
  color: var(--slate-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust svg { width: 16px; height: 16px; flex: none; }

/* Hero product visual: a mini "day board" */
.board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.board-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}
.board-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--mist-2); }
.board-bar .dot.g { background: #34d399; }
.board-bar .dot.a { background: #fbbf24; }
.board-title { margin-left: 8px; font-size: 13px; font-weight: 700; color: var(--slate); }
.board-title .live {
  color: var(--emerald);
  font-size: 12px;
  margin-left: 6px;
}
.board-body { padding: 14px; display: grid; gap: 10px; }
.slot {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.slot .time { font-size: 12px; font-weight: 700; color: var(--slate-2); }
.slot .act { font-size: 14px; font-weight: 600; color: var(--ink); }
.slot .meta { font-size: 12px; color: var(--slate-2); }
.slot .pill {
  font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.pill.ok { background: var(--teal-wash); color: var(--emerald); }
.pill.warn { background: #fffbeb; color: #b45309; }
.slot.flag { border-color: #fde68a; background: #fffdf6; }
.slot .bar {
  width: 4px; height: 34px; border-radius: 4px; background: var(--teal); grid-row: 1; margin-right: 0;
}
.slot.k1 .bar { background: var(--teal); }
.slot.k2 .bar { background: var(--emerald); }
.slot.k3 .bar { background: #8b5cf6; }
.slot.flag .bar { background: var(--amber); }

/* ---------- Logos / stats strip ---------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--wash);
  padding: 26px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  text-align: center;
}
.stat .num { font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.stat .num span { color: var(--emerald); }
.stat .lbl { font-size: 13px; color: var(--slate-2); margin-top: 2px; }

/* ---------- Section shell ---------- */
.section { padding: 72px 0; }
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 30px; font-weight: 800; }
.section-head p { margin-top: 14px; font-size: 17px; color: var(--slate); }

/* ---------- Features grid ---------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cbd5e1; }
.feature .ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--teal-wash);
  margin-bottom: 16px;
}
.feature .ico svg { width: 24px; height: 24px; stroke: var(--emerald); }
.feature h3 { font-size: 18px; font-weight: 700; }
.feature p { margin-top: 8px; font-size: 15px; color: var(--slate); }

/* ---------- Audience two-column ---------- */
.audience { background: var(--wash); }
.two-col { display: grid; grid-template-columns: 1fr; gap: 22px; }
.aud-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.aud-card .tag {
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 10px;
}
.aud-card h3 { font-size: 22px; font-weight: 800; }
.aud-card > p { margin-top: 10px; color: var(--slate); font-size: 15px; }
.checklist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 15px; color: var(--ink-2); }
.checklist svg { width: 20px; height: 20px; margin-top: 2px; flex: none; }

/* ---------- Trust / safety ---------- */
.trust { background: var(--ink); color: #e2e8f0; }
.trust .section-head h2 { color: #fff; }
.trust .section-head p { color: #94a3b8; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.trust-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.trust-item .ico { width: 40px; height: 40px; border-radius: 10px; background: rgba(16,185,129,.14); display: grid; place-items: center; margin-bottom: 14px; }
.trust-item .ico svg { width: 22px; height: 22px; stroke: #34d399; }
.trust-item h3 { color: #fff; font-size: 16px; font-weight: 700; }
.trust-item p { color: #94a3b8; font-size: 14px; margin-top: 6px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: stretch; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.plan.featured {
  border: 2px solid var(--emerald);
  box-shadow: var(--shadow);
  position: relative;
}
.plan .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 999px;
}
.plan .name { font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--emerald); }
.plan .price { margin-top: 12px; font-size: 40px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.plan .price span { font-size: 16px; font-weight: 600; color: var(--slate-2); letter-spacing: 0; }
.plan .who { margin-top: 6px; font-size: 14px; color: var(--slate); }
.plan ul { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 11px; }
.plan li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 14px; color: var(--ink-2); }
.plan li svg { width: 18px; height: 18px; margin-top: 2px; stroke: var(--emerald); }
.plan .btn { margin-top: auto; width: 100%; }
.pricing-note { text-align: center; margin-top: 26px; font-size: 14px; color: var(--slate-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 20px; height: 20px; flex: none; transition: transform .2s ease; stroke: var(--slate-2);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .answer { padding: 0 22px 20px; color: var(--slate); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--emerald));
  color: #fff;
  border-radius: 24px;
  padding: 44px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: 28px; font-weight: 800; color: #fff; }
.cta-band p { margin-top: 12px; color: rgba(255,255,255,.85); font-size: 17px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: 26px; }
.cta-band .btn-primary { background: #fff; color: var(--emerald); box-shadow: none; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { border-color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--wash);
  border-top: 1px solid var(--line);
  padding: 52px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-brand svg, .footer-brand img { height: 32px; }
.footer-brand p { margin-top: 14px; font-size: 14px; color: var(--slate); max-width: 320px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-2); margin: 0 0 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--slate); padding: 5px 0; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-2);
}

/* ---------- Nav active state ---------- */
.nav a.active { color: var(--ink); font-weight: 600; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(13,148,136,.10), transparent 60%),
    radial-gradient(600px 300px at 0% 0%, rgba(5,150,105,.06), transparent 55%);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; max-width: 720px; }
.page-hero p { margin-top: 16px; font-size: 18px; color: var(--slate); max-width: 640px; }
.breadcrumb { font-size: 13px; color: var(--slate-2); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Prose (legal, about, blog article) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 24px; font-weight: 800; margin: 36px 0 12px; }
.prose h3 { font-size: 19px; font-weight: 700; margin: 26px 0 8px; }
.prose p { margin: 0 0 16px; color: var(--ink-2); }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; color: var(--ink-2); }
.prose li { margin: 6px 0; }
.prose a { color: var(--emerald); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .lead { font-size: 19px; color: var(--slate); margin-bottom: 24px; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }
.prose blockquote {
  margin: 0 0 20px; padding: 14px 20px; border-left: 3px solid var(--emerald);
  background: var(--teal-wash); border-radius: 0 8px 8px 0; color: var(--ink-2);
}

/* ---------- Feature detail rows (alternating) ---------- */
.detail-row { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--line); }
.detail-row:last-child { border-bottom: none; }
.detail-row .copy .eyebrow { margin-bottom: 12px; }
.detail-row .copy h3 { font-size: 26px; font-weight: 800; }
.detail-row .copy p { margin-top: 12px; color: var(--slate); font-size: 16px; }
.detail-row .copy .checklist { margin-top: 18px; }
.detail-visual {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px; min-height: 200px;
}
.detail-visual .board { box-shadow: var(--shadow-sm); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; }
.step .n { width: 36px; height: 36px; border-radius: 10px; background: var(--teal-wash); color: var(--emerald); font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { font-size: 17px; font-weight: 700; }
.step p { margin-top: 8px; font-size: 15px; color: var(--slate); }

/* ---------- Sector cards ---------- */
.sector-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.sector-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .15s ease, box-shadow .2s ease; }
.sector-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sector-card .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-wash); display: grid; place-items: center; margin-bottom: 16px; }
.sector-card .ico svg { width: 26px; height: 26px; stroke: var(--emerald); }
.sector-card h3 { font-size: 19px; font-weight: 700; }
.sector-card p { margin-top: 8px; font-size: 15px; color: var(--slate); }
.sector-card a.more { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--emerald); }

/* ---------- Blog list ---------- */
.post-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .15s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card .thumb { height: 8px; background: linear-gradient(135deg, var(--teal), var(--emerald)); }
.post-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--emerald); }
.post-card h3 { font-size: 18px; font-weight: 700; margin-top: 8px; }
.post-card p { margin-top: 8px; font-size: 14px; color: var(--slate); flex: 1; }
.post-card .meta { margin-top: 16px; font-size: 13px; color: var(--slate-2); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.contact-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.contact-info .item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info .item svg { width: 20px; height: 20px; stroke: var(--emerald); flex: none; margin-top: 3px; }
.contact-info .item .k { font-weight: 600; font-size: 15px; }
.contact-info .item .v { font-size: 14px; color: var(--slate); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.form label { display: block; font-size: 14px; font-weight: 600; margin: 14px 0 6px; }
.form label:first-child { margin-top: 0; }
.form input, .form select, .form textarea {
  width: 100%; font-family: inherit; font-size: 15px; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--wash); color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--emerald); background: #fff; box-shadow: 0 0 0 3px rgba(5,150,105,.12); }
.form textarea { min-height: 120px; resize: vertical; }
.form .btn { margin-top: 20px; width: 100%; }
.form-note { font-size: 13px; color: var(--slate-2); margin-top: 12px; text-align: center; }

/* ---------- Comparison table ---------- */
.cmp { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 14px; }
.cmp th, .cmp td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.cmp th { background: var(--wash); font-weight: 700; }
.cmp td.tick { color: var(--emerald); font-weight: 700; }
.cmp td.cross { color: var(--slate-2); }
.table-wrap { overflow-x: auto; }

/* ---------- CTA small inline ---------- */
.inline-cta { text-align: center; padding: 44px 0; }
.inline-cta h2 { font-size: 26px; font-weight: 800; }
.inline-cta p { margin-top: 10px; color: var(--slate); }
.inline-cta .hero-cta { justify-content: center; margin-top: 22px; }

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  body { font-size: 17px; }
  .nav { display: flex; }
  .header-actions { display: flex; }
  .menu-toggle { display: none; }
  .hero { padding: 88px 0 64px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
  .hero h1 { font-size: 54px; }
  .section-head h2 { font-size: 38px; }
  .features { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-band { padding: 60px 40px; }
  .cta-band h2 { font-size: 34px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .detail-row { grid-template-columns: 1fr 1fr; padding: 56px 0; }
  .detail-row.reverse .copy { order: 2; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 44px; }
  .page-hero { padding: 76px 0 56px; }
  .page-hero h1 { font-size: 46px; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 60px; }
}
