/* =========================================================================
   Canal DTK — stylesheet (forest green / mustard-gold / warm cream duotone,
   "ticket-stub" shape language with dashed seams and punched notch circles,
   hero built as a stylized admission ticket for the free 6-hour test)
   ========================================================================= */

:root {
  --green: #1F5D45;
  --green-dark: #153F2F;
  --mustard: #E3A72E;
  --mustard-dark: #C08A1B;
  --cream: #FBF3E1;
  --cream-deep: #F3E4C4;
  --ink: #20281F;
  --ink-soft: #5B6357;
  --muted: #7C8574;
  --line: #E7DCC0;
  --surface: #FFFFFF;
  --surface-alt: #FBF3E1;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(32, 40, 31, 0.08);
  --shadow-md: 0 14px 30px rgba(32, 40, 31, 0.12);
  --shadow-lg: 0 26px 60px rgba(21, 63, 47, 0.24);
  --maxw: 1180px;
  --font-body: 'Inter', 'Liberation Sans', Arial, sans-serif;
  --font-head: 'Outfit', 'Liberation Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.14;
  margin: 0 0 .5em;
  color: var(--ink);
}
p { margin: 0 0 1em; color: var(--ink-soft); }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- buttons (fully rounded pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 26px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, filter .15s ease;
}
.btn-primary { background: var(--mustard); color: var(--green-dark); }
.btn-primary:hover { background: var(--mustard-dark); }
.btn-secondary { background: var(--green); color: #fff; }
.btn-secondary:hover { background: var(--green-dark); }
.btn-outline { background: var(--surface-alt); color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { background: var(--cream-deep); }
.btn-outline-light { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.18); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }

.icon { width: 22px; height: 22px; flex: none; }
.icon-sm { width: 18px; height: 18px; flex: none; }

/* ---------- header (light cream) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 225, 0.96);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 18px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand-logo { height: 33px; width: auto; }
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.nav-link {
  display: block;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { color: var(--green-dark); background: rgba(31,93,69,0.08); }
.nav-link.active { color: #fff; background: var(--green); }
.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.nav-toggle {
  display: none;
  background: rgba(31,93,69,0.08);
  border: 1px solid rgba(31,93,69,0.2);
  color: var(--green);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-pill);
}
.icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- breadcrumb ---------- */
.breadcrumb { background: var(--surface-alt); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 24px; font-size: 13px; color: var(--muted); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #C9BE9E; }
.breadcrumb a:hover { color: var(--green); text-decoration: underline; }
.breadcrumb li[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- sections & utility ---------- */
section { padding: 92px 0; }
.section-tight { padding: 58px 0; }
.section-dark { background: var(--green-dark); color: #fff; }
.section-dark p { color: #C7D8CC; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-alt { background: var(--surface-alt); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--mustard);
  margin-bottom: 20px;
}
.section-dark .eyebrow { color: var(--mustard); border-color: var(--mustard); }
.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 46px); }
.section-head p { font-size: 17px; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ---------- hero: split layout with admission-ticket visual ---------- */
.hero { background: var(--cream-deep); padding: 64px 0 76px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31,93,69,0.08); border: 1px solid rgba(31,93,69,0.2);
  color: var(--green-dark); font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mustard); }
.hero h1 { font-size: clamp(32px, 4vw, 50px); color: var(--ink); }
.hero-lead { font-size: 17.5px; max-width: 540px; color: var(--ink-soft); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin: 30px 0 8px; }

/* admission-ticket hero visual */
.hero-visual { display: flex; justify-content: center; }
.hero-ticket {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ticket-main { flex: 1; padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; }
.ticket-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green);
}
.ticket-title {
  font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--ink);
  line-height: 1.08; margin: 4px 0 2px;
}
.ticket-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 6px; }
.ticket-barcode {
  height: 34px;
  margin-top: 6px;
  background: repeating-linear-gradient(90deg, var(--ink) 0px, var(--ink) 2px, transparent 2px, transparent 5px, var(--ink) 5px, var(--ink) 6px, transparent 6px, transparent 10px);
  opacity: 0.75;
  border-radius: 3px;
}
.ticket-code { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--muted); margin-top: 8px; }
.hero-ticket::before {
  content: "";
  position: absolute; top: 0; bottom: 0; right: 128px;
  border-left: 2px dashed rgba(32,40,31,0.22);
}
.seam-notch {
  position: absolute; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream-deep); right: 128px; transform: translateX(50%);
  z-index: 2;
}
.seam-notch-top { top: -12px; }
.seam-notch-bottom { bottom: -12px; }
.ticket-stub {
  width: 128px; flex: none;
  background: var(--green);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 20px 10px;
}
.stub-dial { color: var(--mustard); }
.stub-hours { font-family: var(--font-head); font-weight: 800; font-size: 34px; line-height: 1; }
.stub-label { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-align: center; color: #CFE0D5; }

/* trust strip */
.trust-strip { background: var(--green-dark); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 18px 32px; justify-content: center; padding: 22px 24px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 14px; }
.trust-item .icon { color: var(--mustard); width: 19px; height: 19px; }

/* ---------- why-choose: ticket-stub grid ---------- */
.ticket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ticket-cell {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ticket-cell-stub {
  width: 66px; flex: none; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-right: 2px dashed rgba(255,255,255,0.4);
}
.ticket-cell-green { background: var(--green); color: #fff; }
.ticket-cell-mustard { background: var(--mustard); color: var(--green-dark); border-right-color: rgba(21,63,47,0.3); }
.cell-notch { position: absolute; right: -9px; width: 18px; height: 18px; border-radius: 50%; background: var(--surface); }
.cell-notch-top { top: -9px; }
.cell-notch-bottom { bottom: -9px; }
.cell-index { font-family: var(--font-head); font-size: 19px; font-weight: 800; }
.ticket-cell-body { padding: 22px 22px 22px 20px; flex: 1; }
.ticket-cell-body h3 { font-size: 17px; margin-bottom: 6px; }
.ticket-cell-body p { font-size: 14.5px; margin-bottom: 0; }

/* compatibility */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.app-pill {
  background: var(--surface); border: 1px solid var(--line);
  padding: 10px 18px; font-weight: 600; font-size: 14px;
  border-radius: var(--radius-pill);
}
.device-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; padding: 26px 10px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
}
.device-card .icon { width: 26px; height: 26px; color: var(--green); }
.device-card span { font-size: 13.5px; font-weight: 600; }

/* ---------- plans ---------- */
.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.featured { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.plan-card.featured:hover { transform: translateY(-11px); }
.plan-media { position: relative; aspect-ratio: 16/8.2; overflow: hidden; }
.plan-media img { width: 100%; height: 100%; object-fit: cover; }
.plan-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--mustard); color: var(--green-dark); font-weight: 800; font-size: 11.5px;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.plan-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.plan-name { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .currency { font-size: 17px; font-weight: 700; color: var(--ink); }
.plan-price .value { font-size: 44px; font-weight: 800; font-family: var(--font-head); color: var(--ink); }
.plan-period { color: var(--green); font-weight: 700; font-size: 14px; }
.plan-list { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 6px; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.plan-list .icon { width: 17px; height: 17px; color: var(--green); margin-top: 2px; flex: none; }

/* ---------- teste gratis ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md); overflow: hidden; }
.step { position: relative; padding: 30px 22px 22px; background: var(--green-dark); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: var(--mustard); color: var(--green-dark);
  border-radius: 50%;
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  margin-bottom: 14px;
}
.step h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 16px; margin-top: 0; }
.step p { color: #C7D8CC; font-size: 14px; margin-bottom: 0; }

.advantage-list { display: flex; flex-direction: column; gap: 16px; }
.advantage-list li { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.advantage-list li:last-child { border-bottom: none; }
.advantage-list .icon-wrap {
  width: 42px; height: 42px; flex: none;
  background: var(--surface-alt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.advantage-list .icon-wrap .icon { color: var(--green); width: 20px; height: 20px; }
.advantage-list strong { display: block; color: var(--ink); font-size: 15.5px; }
.advantage-list span { color: var(--ink-soft); font-size: 14px; }

/* ---------- blog ---------- */
.article-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-media { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--green-dark), var(--green)); position: relative; display: flex; align-items: center; justify-content: center; }
.article-media .icon { width: 30px; height: 30px; color: var(--mustard); opacity: .95; }
.article-tag {
  position: absolute; top: 12px; left: 12px; background: var(--surface); color: var(--green-dark);
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.article-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-date { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.article-body h3 { font-family: var(--font-body); font-weight: 700; font-size: 18px; }
.article-body p { font-size: 14.5px; margin-bottom: 8px; }
.article-link { font-weight: 700; font-size: 13px; color: var(--green); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.article-link .icon { width: 16px; height: 16px; }

.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { font-family: var(--font-body); font-weight: 700; font-size: 22px; margin-top: 1.4em; }
.article-content p { font-size: 16.5px; color: var(--ink-soft); }
.article-content ul { margin: 0 0 1.2em; padding-left: 0; }
.article-content ul li { display: flex; gap: 10px; font-size: 16px; color: var(--ink-soft); margin-bottom: 8px; }
.article-content ul li .icon { width: 16px; height: 16px; color: var(--green); margin-top: 5px; flex: none; }
.article-hero { padding: 46px 0 8px; }
.article-hero h1 { font-family: var(--font-body); font-weight: 800; font-size: clamp(26px, 3.6vw, 38px); }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.article-cta {
  margin-top: 46px; padding: 32px; border-radius: var(--radius-md);
  background: var(--green-dark); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.article-cta p { color: #C7D8CC; margin: 0; }
.related-grid { margin-top: 20px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item {
  background: var(--surface); border-top: 1px solid var(--line);
  padding: 4px 4px;
}
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 4px; font-weight: 700;
  font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { width: 18px; height: 18px; color: var(--green); transition: transform .2s ease; flex: none; }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-item p { padding-bottom: 20px; margin: 0; font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-dark);
  border-radius: var(--radius-md);
  padding: 48px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  border-top: 5px solid var(--mustard);
}
.cta-band h2 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 26px; margin-bottom: 6px; }
.cta-band p { color: #C7D8CC; margin: 0; }

/* ---------- misc content pages ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-family: var(--font-body); font-weight: 700; font-size: 24px; margin-top: 1.5em; }
.prose p, .prose li { font-size: 16px; color: var(--ink-soft); }
.prose ul { padding-left: 20px; list-style: disc; margin-bottom: 1.2em; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.contact-card {
  background: var(--green-dark); color: #fff; border-radius: var(--radius-md); padding: 40px;
  border-top: 5px solid var(--mustard);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.contact-card h2 { font-family: var(--font-body); font-weight: 800; }
.contact-card p { color: #C7D8CC; }
.value-card { background: var(--surface-alt); padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); }

/* ---------- footer (dark green) ---------- */
.site-footer { background: var(--green-dark); color: #B9CDBE; padding: 64px 0 0; border-top: 3px solid var(--mustard); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand p { color: #A9C0B0; font-size: 14.5px; margin: 14px 0 18px; }
.footer-col h3 { color: var(--mustard); font-family: var(--font-body); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #B9CDBE; font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-muted { font-size: 13.5px; color: #7E9A88; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; text-align: center;
}
.footer-bottom p { color: #7E9A88; font-size: 13.5px; margin: 0; }

/* ---------- whatsapp floating button ---------- */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,.45);
}
.icon-float { width: 28px; height: 28px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .ticket-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-copy { text-align: center; }
  .hero-lead { margin: 0 auto; }
  .hero-ctas { justify-content: center; }
}

@media (max-width: 760px) {
  section { padding: 60px 0; }
  .main-nav { position: fixed; inset: 82px 0 0 0; background: var(--cream); padding: 18px 24px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; overflow-y: auto; z-index: 99; }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { padding: 14px 16px; font-size: 15px; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary.btn-sm span { display: none; }
  .hero-ctas .btn { width: 100%; }
  .grid-4, .grid-3, .grid-6 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ticket-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-ticket { max-width: 380px; }
  .hero-ticket::before, .seam-notch { right: 104px; }
  .ticket-stub { width: 104px; }
}

@media (max-width: 520px) {
  .grid-4, .grid-3, .grid-6, .grid-2 { grid-template-columns: 1fr; }
  .header-inner { height: 68px; }
  .main-nav { top: 68px; }
  .hero { padding: 40px 0 52px; }
  .plan-card.featured { transform: none; }
  .cta-band { padding: 32px 24px; }
  .contact-card, .value-card { padding: 26px; }
}
