:root {
  --ink: #12172A;
  --ink-soft: #5C6478;
  --ink-faint: #8A91A3;
  --accent: #2D4BF0;
  --accent-hover: #2440d6;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5A;
  --border: #ECEFF7;
  --border-soft: #F5F7FC;
  --success-bg: #EAFBF1;
  --success-border: #BEEBCF;
  --success-ink: #1EA24E;
  --info-bg: #EEF2FF;
  --info-border: #D3DCFF;
  --warn-bg: #FFF6E9;
  --warn-border: #F5DDB0;
  --warn-ink: #D98A00;
  --danger: #E5484D;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

html { scroll-behavior: smooth; }

.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

img { max-width: 100%; }

.page {
  min-height: 100vh;
  background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 440px);
}

/* NAV */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 15px 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 50px;
}
.nav-logo img { height: 150px; width: auto; display: block; margin: -50px 0; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color .16s ease; }
.nav-link:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.btn-whatsapp-sm {
  background: var(--whatsapp);
  color: #fff;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 13.5px;
  box-shadow: 0 3px 10px rgba(37, 211, 102, .3);
}
.btn-whatsapp-sm:hover { background: var(--whatsapp-hover); box-shadow: 0 5px 16px rgba(37, 211, 102, .4); color: #fff; }
.btn-whatsapp-sm i { font-size: 16px; }

/* HERO */
.hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 32px 72px;
  text-align: center;
}
.hero h1 {
  font-size: 54px;
  line-height: 1.07;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 22px;
  text-wrap: balance;
}
.grad-text {
  background: linear-gradient(100deg, #34B364, #25D366 40%, #5FE38C 60%, #25D366 80%, #34B364);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.hero-cta-row { display: flex; align-items: center; justify-content: center; }

@property --gb { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.glow-btn { position: relative; isolation: isolate; }
.glow-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--gb), transparent 0deg, transparent 300deg, rgba(255, 255, 255, .95) 340deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gbSweep 3.4s linear infinite;
  pointer-events: none;
}
@keyframes gbSweep { to { --gb: -360deg; } }

.btn-hero {
  background: linear-gradient(120deg, #25D366, #4F9E8C 50%, #7C6BFF);
  color: #fff;
  font-size: 15.5px;
  padding: 14px 30px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(80, 110, 220, .3);
}
.btn-hero:hover { box-shadow: 0 10px 30px rgba(80, 110, 220, .45); transform: translateY(-1px); color: #fff; }
.btn-hero i { font-size: 15px; }

/* PRODUCT SECTIONS */
.produtos-section { max-width: 1120px; margin: 0 auto; padding: 24px 32px 40px; }
.section-head { margin-bottom: 36px; text-align: center; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.section-head h2 { font-size: 33px; letter-spacing: -0.025em; font-weight: 800; margin: 12px 0 8px; }
.section-head p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

.group-head { text-align: center; margin-bottom: 20px; }
.group-head:not(:first-child) { margin-top: 56px; }
.group-title { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--ink); }
.group-title i { font-size: 16px; color: var(--accent); }
.group-head p { font-size: 13.5px; color: var(--ink-faint); margin: 5px 0 0; }

.product-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: stretch; justify-content: center; }

/* PRODUCT CARD */
.prod-card {
  flex: 0 1 336px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 2px 10px rgba(28, 40, 90, .04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.prod-card:hover { border-color: #C6D0EE; box-shadow: 0 12px 34px rgba(28, 40, 90, .1); transform: translateY(-4px); }
.prod-card.featured {
  background: linear-gradient(180deg, #F4F7FF, #FFFFFF);
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(45, 75, 240, .14);
}

.glow-card { position: relative; isolation: isolate; }
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.8px;
  background: conic-gradient(from var(--gb), #25D366, #7C6BFF, #25D366);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gbSweep 5s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.prod-badge {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #2D4BF0, #4667FF);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 7px;
  margin-bottom: 16px;
  box-shadow: 0 3px 10px rgba(45, 75, 240, .3);
}
.prod-badge i { font-size: 11px; }

.prod-name { margin-bottom: 18px; }
.prod-name h3 { font-size: 16.5px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }

.prod-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.prod-price .currency { font-size: 14px; color: var(--ink-faint); font-weight: 600; }
.prod-price .amount { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }

.prod-features { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prod-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #3D4458; line-height: 1.45; }
.prod-features li i { font-size: 13px; color: var(--whatsapp); margin-top: 3px; flex-shrink: 0; }
.prod-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 4px;
  padding: 10px 13px;
  background: var(--border-soft);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.prod-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  margin-bottom: 12px;
  border-top: 1px solid var(--border);
}
.prod-qty-row .label { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid #DDE3EF;
  border-radius: 9px;
  padding: 2px;
  background: #fff;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: #3D4458;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: #F0F3FA; }
.qty-btn i { font-size: 13px; }
.qty-val { min-width: 28px; text-align: center; font-size: 15px; font-weight: 700; }

.discount-box {
  margin-bottom: 14px;
  padding: 13px 15px;
  border-radius: 11px;
  background: linear-gradient(180deg, var(--success-bg), #F5FEF9);
  border: 1px solid var(--success-border);
}
.discount-box .row1 { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.discount-box .pct { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 800; color: var(--success-ink); }
.discount-box .pct i { font-size: 12px; }
.discount-box .gross { font-size: 13px; color: var(--ink-faint); text-decoration: line-through; }
.discount-box .row2 { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.discount-box .row2 .lbl { font-size: 12.5px; color: var(--ink-soft); font-weight: 500; }
.discount-box .row2 .total { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.discount-box .savings { display: flex; align-items: center; gap: 7px; margin-top: 10px; padding-top: 10px; border-top: 1px solid #C9EED6; }
.discount-box .savings i { font-size: 14px; color: var(--success-ink); }
.discount-box .savings span { font-size: 12.5px; color: var(--success-ink); font-weight: 700; }

.total-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.total-row .lbl { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.total-row .total { font-size: 18px; font-weight: 800; color: var(--ink); }

.bulk-box {
  margin-bottom: 14px;
  padding: 13px 15px;
  border-radius: 11px;
  background: linear-gradient(180deg, var(--info-bg), #F7F9FF);
  border: 1px solid var(--info-border);
}
.bulk-box .row1 { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.bulk-box .row1 i { font-size: 16px; color: var(--accent); }
.bulk-box .row1 span { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.bulk-box p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

.btn-buy {
  width: 100%;
  font-size: 14.5px;
  padding: 12px;
  border-radius: 10px;
}
.btn-buy i { font-size: 16px; }
.btn-buy.is-default {
  background: #fff;
  border: 1px solid #D7DEEC;
  color: var(--ink);
}
.btn-buy.is-default:hover { border-color: var(--whatsapp); color: var(--whatsapp-hover); }
.btn-buy.is-featured {
  background: var(--whatsapp);
  border: 1px solid var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, .3);
}
.btn-buy.is-featured:hover { background: var(--whatsapp-hover); box-shadow: 0 8px 22px rgba(37, 211, 102, .42); color: #fff; }

/* GARANTIAS */
.garantias-section { max-width: 1120px; margin: 0 auto; padding: 40px 32px 72px; }
.garantias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(28, 40, 90, .05);
}
.garantia-item { display: flex; align-items: flex-start; gap: 13px; padding: 26px; border-right: 1px solid var(--border); }
.garantia-item:last-child { border-right: none; }
.garantia-item i { font-size: 22px; color: var(--accent); margin-top: 1px; }
.garantia-item p:first-of-type { font-size: 14.5px; font-weight: 700; margin: 0; }
.garantia-item p:last-of-type { font-size: 13px; color: var(--ink-soft); margin: 4px 0 0; line-height: 1.5; }

@media (max-width: 720px) {
  .garantias-grid { grid-template-columns: 1fr; }
  .garantia-item { border-right: none; border-bottom: 1px solid var(--border); }
  .garantia-item:last-child { border-bottom: none; }
}

/* SERVIÇOS */
.servicos-section { max-width: 720px; margin: 0 auto; padding: 20px 32px 80px; }
.servicos-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #F7FAFF, #FFFFFF);
  box-shadow: 0 10px 34px rgba(28, 40, 90, .07);
}
.servicos-head { padding: 34px 34px 0; }
.servicos-head h2 { font-size: 28px; letter-spacing: -0.025em; font-weight: 800; margin: 12px 0 8px; }
.servicos-head p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 0; }

.servicos-body { padding: 26px 34px 34px; display: flex; flex-direction: column; gap: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: #3D4458; margin-bottom: 7px; }
.field input[type="text"],
.field select {
  width: 100%;
  box-sizing: border-box;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid #DDE3EF;
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
}
.field input[type="text"]:focus,
.field select:focus { border-color: var(--accent); }
.field select { cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%238A91A3" viewBox="0 0 256 256"><path d="M213.66 101.66l-80 80a8 8 0 0 1-11.32 0l-80-80a8 8 0 0 1 11.32-11.32L128 164.69l74.34-74.35a8 8 0 0 1 11.32 11.32Z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.qty-stepper.large { width: fit-content; padding: 3px; border-radius: 10px; }
.qty-stepper.large .qty-btn { width: 38px; height: 38px; }
.qty-stepper.large .qty-btn i { font-size: 14px; }
.qty-stepper.large input {
  width: 110px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink);
}
.svc-note { font-size: 11.5px; color: var(--ink-faint); margin: 8px 0 0; line-height: 1.5; }

.btn-svc {
  width: 100%;
  background: var(--whatsapp);
  color: #fff;
  font-size: 15px;
  padding: 14px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .32);
  margin-top: 4px;
}
.btn-svc:hover { background: var(--whatsapp-hover); transform: translateY(-1px); color: #fff; }
.btn-svc i { font-size: 17px; }

/* FAQ */
.faq-section { max-width: 720px; margin: 0 auto; padding: 0 32px 80px; }
.faq-section > .section-head { text-align: left; margin-bottom: 28px; }
.faq-section .section-head h2 { font-size: 30px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 20px;
}
.faq-item[open] { border-color: #C6D0EE; box-shadow: 0 4px 20px rgba(45, 75, 240, .06); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 17px 0;
  font-size: 15px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-caret { font-size: 14px; color: var(--ink-faint); transition: transform .2s; }
.faq-item[open] .faq-caret { transform: rotate(180deg); }
.faq-item > p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 17px; }

.faq-detail { margin: 0 0 18px; display: flex; flex-direction: column; gap: 16px; }
.faq-detail .kicker { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin: 0; }
.faq-detail .sub-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.faq-detail .sub-head i { font-size: 16px; }
.faq-detail .sub-head span { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.faq-detail ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.faq-detail ul li { display: flex; gap: 9px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.faq-detail ul li i { font-size: 16px; color: var(--ink-faint); flex-shrink: 0; margin-top: 1px; }
.faq-warn { display: flex; gap: 10px; padding: 13px 15px; background: var(--warn-bg); border: 1px solid var(--warn-border); border-radius: 10px; }
.faq-warn i { font-size: 16px; color: var(--warn-ink); flex-shrink: 0; margin-top: 1px; }
.faq-warn p { font-size: 13px; color: #8A6A2E; line-height: 1.55; margin: 0; }
.faq-flow span { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.faq-flow p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* CANAIS OFICIAIS */
.canais-box { margin-top: 36px; border: 1px solid var(--border); border-radius: 14px; padding: 28px 30px; background: #fff; box-shadow: 0 6px 24px rgba(28, 40, 90, .05); }
.canais-head { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; }
.canais-head i { font-size: 18px; color: var(--accent); }
.canais-head h3 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.canais-box > p { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 22px; line-height: 1.6; }
.canais-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 560px) { .canais-grid { grid-template-columns: 1fr; } }

.link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 11px;
  padding: 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.link-card:hover { border-color: #C6D0EE; box-shadow: 0 6px 18px rgba(28, 40, 90, .08); }
.link-card.is-whatsapp { background: #F7FDF9; border: 1px solid #DCF3E4; }
.link-card.is-neutral { background: #F6F8FD; border: 1px solid #E5EAF5; }
.link-card i.icon { font-size: 21px; flex-shrink: 0; }
.link-card .icon-whatsapp { color: var(--whatsapp); }
.link-card .icon-accent { color: var(--accent); }
.link-card .meta { min-width: 0; flex: 1; }
.link-card .meta .kicker { font-size: 11.5px; color: var(--ink-faint); margin: 0; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.link-card .meta .value {
  font-size: 14px;
  font-weight: 700;
  margin: 3px 0 0;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  background: #EAF2FF;
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 99px;
}
.verified-pill i { font-size: 13px; }

/* CTA FINAL */
.cta-final-section { max-width: 1120px; margin: 0 auto; padding: 0 32px 80px; }
.cta-final-outer { position: relative; overflow: hidden; text-align: center; border-radius: 24px; padding: 60px 40px; }
.blobA, .blobB { position: absolute; border-radius: 50%; pointer-events: none; }
.blobA { top: -70px; left: 8%; width: 300px; height: 300px; background: rgba(37, 211, 102, .28); filter: blur(100px); animation: driftA 13s ease-in-out infinite; }
.blobB { bottom: -90px; right: 6%; width: 320px; height: 320px; background: rgba(45, 75, 240, .28); filter: blur(110px); animation: driftB 16s ease-in-out infinite; }
@keyframes driftA { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(46px, 26px) scale(1.08); } }
@keyframes driftB { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-44px, -28px) scale(1.1); } }
.cta-final-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 44px 36px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 12px 40px rgba(20, 30, 80, .12);
}
.cta-final-card h2 { font-size: 31px; letter-spacing: -0.025em; font-weight: 800; margin: 0 0 12px; color: var(--ink); text-wrap: balance; }
.cta-final-card p { color: var(--ink-soft); font-size: 16px; margin: 0 0 28px; }
.btn-cta-final { background: var(--whatsapp); color: #fff; font-size: 15.5px; padding: 15px 34px; border-radius: 12px; box-shadow: 0 8px 22px rgba(21, 120, 55, .4); }
.btn-cta-final:hover { background: var(--whatsapp-hover); transform: translateY(-1px); color: #fff; }
.btn-cta-final i { font-size: 18px; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 28px 32px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-social { display: flex; align-items: center; gap: 10px; }
.social-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.social-icon.is-neutral { background: #F6F8FD; border: 1px solid #E5EAF5; }
.social-icon.is-whatsapp { background: #F7FDF9; border: 1px solid #DCF3E4; }
.social-icon i { font-size: 19px; }

.footer-columns {
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-columns .col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin: 0 0 8px; }
.footer-columns .col-body { font-size: 12.5px; color: var(--ink-soft); margin: 0; line-height: 1.7; }
.footer-columns .col-body a { color: var(--ink-soft); }

.footer-disclaimer { font-size: 11.5px; color: #A2A8B8; margin: 0; text-align: center; max-width: 680px; line-height: 1.6; }
.footer-copyright { font-size: 12.5px; color: var(--ink-faint); margin: 0; text-align: center; }

@media (max-width: 640px) {
  .hero h1 { font-size: 38px; }
  .hero { padding: 64px 24px 48px; }
}
