:root {
  --green: #0F6E56;
  --green-light: #E1F5EE;
  --green-dark: #085041;
  --green-mid: #1D9E75;
  --yellow: #FFD400;
  --text: #222;
  --text-secondary: #666;
  --text-muted: #999;
  --border: #eee;
  --bg-page: #f8f8f8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg-page);
}

.site {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-page);
  min-height: 100vh;
}

a { color: inherit; }

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
}
.nav-name { font-size: 14px; font-weight: 500; line-height: 1.2; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-aderir {
  background: var(--green); color: #fff; border: none; border-radius: 6px;
  padding: 6px 12px; font-size: 12px; font-weight: 500; text-decoration: none;
  display: inline-block;
}
.menu-toggle {
  background: none; border: none; cursor: pointer; padding: 4px;
  font-size: 22px; color: #222; line-height: 1;
}
.nav-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 8px 16px 12px;
}
.nav-menu.open { display: block; }
.nav-menu a {
  display: block; padding: 10px 0; font-size: 15px; text-decoration: none;
  color: #333; border-bottom: 1px solid #f5f5f5;
}
.nav-menu a.active { color: var(--green); font-weight: 500; }

/* Sections */
section { padding: 28px 16px; }
.section-tight { padding: 20px 16px; }
.eyebrow {
  font-size: 12px; color: var(--green); font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; margin: 0 0 4px;
}
h1 { font-size: 22px; font-weight: 500; margin: 0 0 6px; line-height: 1.3; }
h2 { font-size: 18px; font-weight: 500; margin: 0 0 8px; }
h3 { font-size: 15px; font-weight: 500; margin: 0; }
p { line-height: 1.6; }
.muted { color: var(--text-secondary); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-light) 0%, #fff 100%);
  padding: 32px 16px 24px;
  text-align: center;
}
.hero h1 { font-size: 22px; margin: 0 0 10px; }
.hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  padding: 10px 20px; font-size: 14px; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block;
}
.btn-outline {
  background: #fff; color: var(--green); border: 1.5px solid var(--green); border-radius: 8px;
  padding: 10px 20px; font-size: 14px; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block;
}

/* Carousel */
.carousel {
  background: var(--green-dark);
  padding: 14px 0;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollTrack linear infinite;
}
.carousel-track span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 16px; white-space: nowrap; font-size: 14px; font-weight: 500; color: #fff;
}
.carousel-track .dot { color: var(--yellow); font-size: 8px; }
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Workshop / blog cards */
.card {
  background: #fff; border-radius: 10px; padding: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  text-decoration: none; color: inherit; display: block;
  transition: box-shadow .2s;
}
.card:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.12); }
.card + .card { margin-top: 10px; }
.workshop-row { display: flex; gap: 12px; align-items: center; }
.workshop-date { width: 44px; text-align: center; flex-shrink: 0; }
.workshop-date .month { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
.workshop-date .day { font-size: 20px; font-weight: 500; color: var(--green); }
.workshop-info { flex: 1; border-left: 1px solid var(--border); padding-left: 12px; min-width: 0; }
.workshop-title-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.badge-price { font-size: 10px; background: #E6F1FB; color: #185FA5; padding: 2px 6px; border-radius: 4px; flex-shrink: 0; }
.workshop-meta { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.workshop-desc { font-size: 12px; color: #777; margin: 10px 0 0; line-height: 1.5; border-top: 1px solid #f0f0f0; padding-top: 10px; }

.blog-row { display: flex; gap: 12px; }
.blog-thumb {
  width: 52px; height: 52px; border-radius: 8px; background: var(--green-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 22px; color: var(--green);
}
.blog-category { font-size: 10px; color: var(--green); font-weight: 500; text-transform: uppercase; }
.blog-title { font-size: 13px; font-weight: 500; margin-top: 1px; }
.blog-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.blog-excerpt { font-size: 13px; color: var(--text-secondary); margin: 10px 0 0; }

.section-link {
  display: block; text-align: center; margin-top: 14px;
  font-size: 13px; color: var(--green); font-weight: 500; text-decoration: none;
}

/* Filters */
.filters { display: flex; gap: 8px; margin-bottom: 16px; }
.filters select {
  flex: 1; font-size: 13px; padding: 8px 10px; border-radius: 8px; border: 1px solid #ddd;
  background: #fff; color: var(--text);
}
.pill-filters { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.pill {
  font-size: 12px; padding: 6px 12px; border-radius: 20px; border: none; cursor: pointer;
  background: #f0f0f0; color: #555; font-weight: 500;
}
.pill.active { background: var(--green); color: #fff; }

/* How it works */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 12px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 18px;
}

/* Notice box */
.notice-box {
  background: var(--green-light); border-radius: 10px; padding: 14px;
  border-left: 3px solid var(--green); margin-bottom: 18px;
}
.notice-box p { font-size: 13px; color: #444; margin: 0; }

/* Instagram / social CTAs */
.social-ctas { display: flex; flex-direction: column; gap: 10px; }
.social-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; border-radius: 10px; padding: 12px; font-size: 14px; font-weight: 500;
  text-decoration: none;
}
.social-cta.instagram { background: var(--green); }
.social-cta.whatsapp { background: #25D366; }

/* Aderir form CTA */
.aderir-section { background: var(--green-light); text-align: center; }

/* Calculator */
.calc-box { background: #f8f8f8; border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.calc-field { margin-bottom: 16px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-label-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.calc-label-row label { font-size: 13px; font-weight: 500; }
.calc-value { font-size: 14px; font-weight: 500; color: var(--green); }
.calc-range-labels { display: flex; justify-content: space-between; font-size: 10px; color: #bbb; margin-top: 2px; }
.calc-hint { font-size: 10px; color: #aaa; margin-top: 4px; }
input[type="range"] { width: 100%; accent-color: var(--green); }
.calc-result { background: var(--green-light); border-radius: 12px; padding: 18px; text-align: center; margin-bottom: 12px; }
.calc-result .eyebrow { margin: 0 0 4px; }
.calc-number { font-size: 32px; font-weight: 500; color: var(--green-dark); margin: 0 0 4px; }
.calc-sub { font-size: 12px; color: #888; margin: 0 0 14px; }
.calc-progress { background: rgba(255,255,255,0.7); border-radius: 20px; height: 8px; overflow: hidden; margin-bottom: 8px; }
.calc-progress-fill { height: 100%; background: var(--green); border-radius: 20px; transition: width .3s; }
.calc-years { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 4px; font-size: 22px; font-weight: 500; color: var(--green-dark); }
.calc-message { font-size: 13px; color: #555; margin: 0; }
.calc-disclaimer { font-size: 10px; color: #bbb; text-align: center; margin: 0; line-height: 1.5; }

/* CTA dark */
.cta-dark { background: var(--green-dark); text-align: center; }
.cta-dark h2 { color: #fff; }
.cta-dark p { color: rgba(255,255,255,0.75); font-size: 13px; }
.btn-light {
  background: #fff; color: var(--green-dark); border: none; border-radius: 8px;
  padding: 10px 24px; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block;
}

/* Aderir form (comunidade + aderir CTA) */
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field input {
  font-size: 14px; padding: 10px 12px; border-radius: 8px; border: 1px solid #ddd;
}
.form-submit {
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  padding: 12px; font-size: 14px; font-weight: 500; cursor: pointer;
}

/* Community cards */
.comm-card { background: #fff; border-radius: 10px; padding: 16px; margin-bottom: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.comm-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.comm-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.comm-card p { font-size: 13px; color: var(--text-secondary); margin: 0 0 12px; }
.comm-cta { display: inline-block; color: #fff; border: none; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 500; text-decoration: none; }

.quote-box { background: var(--green-light); border-radius: 10px; padding: 16px; text-align: center; }
.quote-box p { font-size: 14px; color: var(--green-dark); font-style: italic; margin: 0 0 8px; }

/* Detail pages (workshop / blog / proximo) */
.detail-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 20px 16px 36px; color: #fff; position: relative;
}
.detail-header.centered { text-align: center; }
.back-link {
  display: inline-flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.8);
  font-size: 13px; text-decoration: none; margin-bottom: 14px;
}
.detail-icon-row { display: flex; align-items: center; gap: 14px; }
.detail-icon-box {
  width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 32px; flex-shrink: 0;
}
.detail-badge { font-size: 10px; padding: 3px 8px; border-radius: 4px; font-weight: 500; display: inline-block; }
.detail-badge.free { background: var(--yellow); color: var(--green-dark); }
.detail-badge.paid { background: rgba(255,255,255,0.2); color: #fff; }
.detail-title { font-size: 20px; font-weight: 500; color: #fff; margin: 6px 0 0; line-height: 1.3; }

.info-card {
  background: #fff; margin: -16px 12px 0; border-radius: 14px; padding: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1); position: relative; z-index: 2;
}
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.info-item { display: flex; align-items: center; gap: 8px; }
.info-item .ico { font-size: 20px; color: var(--green); flex-shrink: 0; }
.info-item .label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }
.info-item .value { font-size: 13px; font-weight: 500; }
.info-address {
  font-size: 12px; color: #777; background: #f8f8f8; border-radius: 8px; padding: 8px 10px; margin-top: 14px;
}

.image-placeholder {
  width: 100%; height: 180px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green-light) 0%, #fff 50%, var(--green-light) 100%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; text-align: center;
}
.image-placeholder .ico { font-size: 48px; color: var(--green); opacity: .3; display: block; margin-bottom: 6px; }
.image-placeholder .label { font-size: 11px; color: var(--text-muted); }

.topic-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.topic-item { display: flex; gap: 10px; align-items: flex-start; }
.topic-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--green-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 13px; color: var(--green);
}

.info-notice { background: var(--green-light); border-radius: 12px; padding: 16px; margin-bottom: 20px; }
.info-notice-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-weight: 500; color: var(--green-dark); font-size: 14px; }
.info-notice p { font-size: 13px; color: #555; margin: 0; }

.btn-register {
  width: 100%; background: var(--green); color: #fff; border: none; border-radius: 10px;
  padding: 16px; font-size: 16px; font-weight: 500; cursor: pointer; text-decoration: none;
  display: block; text-align: center; box-shadow: 0 4px 16px rgba(15,110,86,0.3);
}
.register-note { font-size: 11px; color: var(--text-muted); text-align: center; margin: 6px 0 0; }

/* Share row */
.share-box { background: var(--green-light); border-radius: 12px; padding: 16px; margin: 24px 0; text-align: center; }
.share-icons { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.share-icon {
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-size: 18px; text-decoration: none;
}

/* Footer */
.footer { background: #111; padding: 24px 16px 16px; color: rgba(255,255,255,0.6); }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; font-size: 13px; }
.footer-cols .col-title { color: #fff; font-weight: 500; margin-bottom: 8px; }
.footer-cols a { display: block; padding: 4px 0; text-decoration: none; color: inherit; }
.footer-social { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; text-decoration: none;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 12px; }
.footer-bottom .line1 { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-bottom .brand-hl { color: rgba(255,255,255,0.7); }
.footer-bottom .line2 { font-size: 11px; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.footer-bottom .proximo-link { font-size: 9px; color: rgba(255,255,255,0.15); text-decoration: none; }

/* Popup modal */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000;
  display: none; align-items: flex-end; justify-content: center; padding: 16px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: #fff; border-radius: 16px; width: 100%; max-width: 400px; overflow: hidden;
  animation: slideUp .3s ease-out;
}
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.popup-header { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); padding: 20px 16px; position: relative; }
.popup-close {
  position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.2); border: none;
  border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; font-size: 16px;
}
.popup-eyebrow { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 4px; }
.popup-title { font-size: 18px; font-weight: 500; color: #fff; margin: 0; line-height: 1.3; }
.popup-body { padding: 16px; }
.popup-workshop { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.popup-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--green); flex-shrink: 0; }
.popup-free-note { display: flex; align-items: center; gap: 6px; background: var(--green-light); border-radius: 8px; padding: 8px 10px; margin-bottom: 14px; font-size: 12px; color: var(--green-dark); font-weight: 500; }
.popup-cta { width: 100%; background: var(--green); color: #fff; border: none; border-radius: 10px; padding: 14px; font-size: 15px; font-weight: 500; cursor: pointer; margin-bottom: 8px; box-shadow: 0 4px 12px rgba(15,110,86,0.25); text-decoration: none; display: block; text-align: center; }
.popup-share {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #fff; color: #25D366; border: 1.5px solid #25D366; border-radius: 10px;
  padding: 10px; font-size: 13px; font-weight: 500; cursor: pointer; margin-bottom: 6px;
  text-decoration: none; box-sizing: border-box;
}
.popup-dismiss { width: 100%; background: none; color: #999; border: none; padding: 8px; font-size: 12px; cursor: pointer; }

/* Icon font sizing helper */
.ico { display: inline-block; }

/* =====================================================================
   DESKTOP / RESPONSIVE LAYER
   A versão mobile acima fica inalterada (é a versão aprovada). Tudo
   aqui só entra em ação a partir de tablet/desktop, com base na
   proposta desenhada no Claude Design.
   ===================================================================== */

:root {
  --near-black: #0B1E17;
  --dark-card: #132a22;
  --warm-neutral: #F4F2ED;
}

/* Preserva exatamente o visual anterior do "Como funciona" (antes era
   inline style na secção); agora está numa classe para poder ser
   substituído só a partir do desktop. */
.how-section { background: var(--green-light); padding: 28px 16px; }

/* Wrapper invisível em mobile (sem estilos próprios); só ganha
   comportamento de grid a partir do desktop. Usado para emparelhar
   "Redes sociais" + "Adere ao clube" lado a lado. */
.split-wrap { display: block; }

/* Grid de cards: em mobile cada .card já tem o espaçamento próprio
   (margin-top via ".card + .card"), por isso o grid só ganha colunas
   a partir do tablet. */
.card-grid .card + .card { margin-top: 10px; }

/* ---------- Tablet (>= 768px) ---------- */
@media (min-width: 768px) {
  .site { max-width: 720px; }

  .card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card-grid .card + .card { margin-top: 0; }

  .steps { flex-direction: row; gap: 20px; }
  .step { flex: 1; flex-direction: column; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- Desktop (>= 1024px) ---------- */
@media (min-width: 1024px) {
  .site { max-width: 1200px; }

  section, .section-tight { padding-left: 48px; padding-right: 48px; }

  h1 { font-size: 34px; }
  h2 { font-size: 26px; }

  /* Nav: passa de menu deslizante para barra horizontal, sem alterar o HTML.
     .nav-row torna-se "invisível" como caixa e os seus filhos juntam-se
     ao .nav-menu como itens irmãos do mesmo flex container. */
  .nav-row { display: contents; }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
  }
  .nav-brand { order: 1; }
  .nav-menu {
    display: flex !important; order: 2; gap: 32px;
    border-top: none; padding: 0; width: auto;
  }
  .nav-menu a { display: inline; padding: 0; border-bottom: none; font-size: 15px; }
  .nav-actions { order: 3; }
  .menu-toggle { display: none; }

  /* Hero: bloco centrado com fundo verde-escuro (sem imagem) */
  .hero {
    display: block; text-align: center; padding: 96px 56px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--near-black) 100%);
  }
  .hero .eyebrow { color: var(--yellow); }
  .hero h1 { color: #fff; font-size: 46px; max-width: 800px; margin-left: auto; margin-right: auto; }
  .hero p.muted { color: #cfe8de; font-size: 17px !important; max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }

  /* Cards em 3 colunas */
  .card-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  /* Como funciona: banda escura com cards escuros */
  .how-section { background: var(--near-black); padding: 64px 48px; color: #fff; }
  .how-section .eyebrow { color: var(--yellow); }
  .how-section h2 { color: #fff; }
  .steps { gap: 24px; }
  .step {
    background: var(--dark-card); border-radius: 12px; padding: 24px;
    flex-direction: column; align-items: flex-start;
  }
  .step-num { background: var(--yellow); color: var(--near-black); }
  .step .step-desc { color: #a9bcb5 !important; }

  /* Redes sociais + Aderir ao clube lado a lado */
  .split-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    padding: 0 48px 64px;
  }
  .split-wrap section { padding: 40px; border-radius: 14px; }
  .split-wrap section:first-child { background: var(--green-light); }
  .split-wrap .aderir-section {
    background: var(--near-black); text-align: left;
  }
  .split-wrap .aderir-section .eyebrow { color: var(--yellow); }
  .split-wrap .aderir-section h2 { color: #fff; }
  .split-wrap .aderir-section p.muted { color: #a9bcb5; }

  /* Calculadora: resultado à esquerda, inputs à direita */
  #calculadora {
    display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px;
    align-items: start;
  }
  #calculadora > .eyebrow,
  #calculadora > h2,
  #calculadora > p.muted { grid-column: 1 / -1; }
  #calculadora .calc-result { grid-column: 1; grid-row: 2; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
  #calculadora .calc-box { grid-column: 2; grid-row: 2; align-self: stretch; }
  #calculadora > a.btn-primary,
  #calculadora > p.calc-disclaimer { grid-column: 1 / -1; }

  /* Rodapé em 4 colunas, sem alterar o HTML */
  .footer {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
    padding: 48px 48px 28px; align-items: start;
  }
  .footer-brand { grid-column: 1; margin-bottom: 0; }
  .footer-cols { display: contents; }
  .footer-cols > div:nth-child(1) { grid-column: 2; }
  .footer-cols > div:nth-child(2) { grid-column: 3; }
  .footer-social { grid-column: 4; margin-bottom: 0; flex-direction: column; align-items: flex-start; }
  .footer-bottom { grid-column: 1 / -1; }

  .cta-dark { padding: 56px 48px; }
}
