/* ============ Notepet · Design System (premium leve) ============ */
:root {
  --teal:        #009ca6;
  --teal-dark:   #017b83;
  --navy:        #243353;
  --orange:      #ff8200;
  --orange-dark: #e67500;
  --green:       #7eb339;
  --cream:       #fbf5ef;
  --card:        #ffffff;

  --ink:      #221c18;
  --ink-soft: #5b524b;
  --muted:    #938a83;
  --line:     #eee7e0;
  --bg:       #faf7f4;

  --font: "Montserrat", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-pill: 50px;
  --shadow-sm: rgba(36,51,83,0.07) 0 8px 30px -8px;
  --shadow-md: rgba(36,51,83,0.12) 0 20px 50px -14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { text-wrap: balance; }
::selection { background: var(--teal); color: #fff; }

.kicker { color: var(--teal-dark); font-weight: 600; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 14px; }
.center { text-align: center; }

/* ---------- Botões ---------- */
.btn {
  font-family: var(--font); font-weight: 600; font-size: 14px;
  padding: 13px 26px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.65); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-wpp { background: var(--green); color: #fff; }
.btn-wpp:hover { background: #6fa02f; transform: translateY(-2px); }

/* ---------- Header ---------- */
header.site { background: var(--teal); position: sticky; top: 0; z-index: 40; }
header.site .wrap { display: flex; align-items: center; gap: 40px; height: 74px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 34px; width: auto; display: block; }
header.site nav { display: flex; align-items: center; gap: 30px; margin: 0 auto 0 8px; }
.nav-item { position: relative; }
.nav-item > a {
  color: rgba(255,255,255,.9); font-weight: 500; font-size: 14.5px;
  padding: 26px 0; display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease;
}
.nav-item > a .chev { font-size: 10px; opacity: .8; }
.nav-item > a:hover, .nav-item > a.active { color: #fff; }
.nav-item > a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 20px; height: 2px; background: #fff;
}
/* dropdown */
.submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 8px; min-width: 250px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease; z-index: 50;
}
.nav-item:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.submenu a:hover { background: var(--cream); color: var(--teal-dark); }
.header-cta { background: #fff; color: var(--teal-dark); font-weight: 600; font-size: 14px; padding: 11px 22px; border-radius: var(--r-pill); transition: transform .15s ease, box-shadow .2s ease; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px -8px rgba(0,0,0,.35); }
.nav-toggle { display: none; background: transparent; border: 0; color: #fff; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero carrossel (home) ---------- */
.hero-sec { padding: 30px; }
.carousel { position: relative; border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-md); }
.slides { position: relative; height: 540px; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; z-index: 0;
  transition: opacity 1.1s ease-in-out, visibility 0s linear 1.1s;
  background-size: cover; background-position: right center; background-repeat: no-repeat;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; visibility: visible; z-index: 1; transition: opacity 1.1s ease-in-out, visibility 0s linear 0s; }
.slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,21,34,.82) 0%, rgba(16,21,34,.6) 34%, rgba(16,21,34,.12) 58%, rgba(16,21,34,0) 74%); }
.slide-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.slide-card { max-width: 520px; color: #fff; }
.slide-card .eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); padding: 7px 16px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.slide-card h1 { font-size: 46px; line-height: 1.08; font-weight: 600; margin: 22px 0 18px; letter-spacing: -1px; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.slide-card h1 strong { font-weight: 700; color: #ffd8a8; }
.slide-card p { font-size: 17px; line-height: 1.6; margin: 0 0 30px; color: rgba(255,255,255,.92); max-width: 44ch; text-shadow: 0 1px 16px rgba(0,0,0,.4); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.c-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.85); color: var(--navy); font-size: 22px; display: grid; place-items: center; transition: background .2s ease; }
.c-arrow:hover { background: #fff; }
.c-arrow.prev { left: 24px; }
.c-arrow.next { right: 24px; }
.c-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 26px; z-index: 4; display: flex; gap: 8px; }
.c-dots button { width: 9px; height: 9px; border-radius: var(--r-pill); border: 0; cursor: pointer; background: rgba(255,255,255,.5); padding: 0; transition: width .25s ease, background .25s ease; }
.c-dots button.active { background: #fff; width: 28px; }

/* ---------- Page hero (páginas internas) ---------- */
.page-hero { padding: 72px 0 8px; text-align: center; }
.page-hero h1 { font-size: 44px; font-weight: 600; letter-spacing: -1px; margin: 0; line-height: 1.12; }
.page-hero p { max-width: 620px; margin: 18px auto 0; color: var(--ink-soft); font-size: 17px; }

/* ---------- Section shell ---------- */
section.block { padding: 92px 0; }
section.block.tight { padding: 64px 0; }
.head { max-width: 660px; margin: 0 auto 52px; text-align: center; }
.head h2 { font-size: 36px; font-weight: 600; margin: 0; letter-spacing: -0.8px; line-height: 1.15; }
.head p { margin: 16px 0 0; color: var(--ink-soft); font-size: 16px; }
.bg-white { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bg-cream { background: var(--cream); }

/* ---------- Serviços (cards com foto) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc { display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
.svc:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); border-color: transparent; }
.svc-img { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc:hover .svc-img img { transform: scale(1.06); }
.svc-body { display: block; padding: 26px 26px 28px; }
.svc-body h3 { font-size: 20px; font-weight: 600; margin: 0 0 10px; letter-spacing: -0.3px; }
.svc-body p { margin: 0 0 18px; color: var(--ink-soft); font-size: 14.5px; }
.svc-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 13px; color: var(--teal-dark); transition: gap .2s ease; }
.svc:hover .svc-link { gap: 12px; }

/* ---------- Problema (lista) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--r-xl); width: 100%; box-shadow: var(--shadow-sm); }
.checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.checks li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--cream); color: var(--teal-dark); display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 2px; }
.checks.warn li::before { content: "!"; background: #fdeee2; color: var(--orange-dark); }

/* ---------- Resultados ---------- */
.results-inner { border: 1px solid var(--line); border-radius: var(--r-2xl); background: var(--card); display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; }
.stat { padding: 46px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .n { font-size: 46px; font-weight: 600; color: var(--teal-dark); letter-spacing: -1.5px; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .n span { color: var(--orange-dark); }
.stat .l { font-size: 13px; color: var(--muted); margin-top: 10px; font-weight: 500; }

/* ---------- Diferenciais ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px 26px; }
.feat .dot { width: 40px; height: 40px; border-radius: 12px; background: var(--cream); display: grid; place-items: center; margin-bottom: 18px; color: var(--teal-dark); }
.feat .dot svg { width: 20px; height: 20px; }
.feat h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.feat p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ---------- Serviço (detalhe) ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.svc-detail img { border-radius: var(--r-2xl); width: 100%; box-shadow: var(--shadow-sm); }
.svc-detail .lead { font-size: 18px; color: var(--ink-soft); margin: 6px 0 24px; }

/* ---------- Cases ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px 30px; transition: box-shadow .25s ease, transform .25s ease; }
.case:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.case .cat { color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.case .metric-n { font-size: 44px; font-weight: 600; color: var(--teal-dark); letter-spacing: -1.5px; line-height: 1; margin: 18px 0 6px; }
.case .metric-l { font-size: 14.5px; color: var(--ink-soft); }
.case h3 { font-size: 15px; font-weight: 600; margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; }
.post:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.post-img { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post:hover .post-img img { transform: scale(1.05); }
.post { display: block; }
.post-body { display: block; padding: 24px 24px 26px; }
.post .cat { color: var(--teal-dark); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.post h3 { font-size: 18px; font-weight: 600; margin: 10px 0 8px; line-height: 1.3; }
.post p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ---------- Post individual ---------- */
.post-hero { padding: 56px 0 24px; text-align: center; }
.post-hero .back-link { display: inline-block; color: var(--teal-dark); font-weight: 600; font-size: 13px; margin-bottom: 20px; }
.post-hero .cat { display: block; color: var(--teal-dark); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.post-hero h1 { font-size: 42px; font-weight: 600; letter-spacing: -1px; line-height: 1.12; margin: 0; max-width: 800px; margin: 0 auto; }
.post-meta { color: var(--muted); font-size: 13px; margin-top: 16px; }
.post-cover { width: 100%; max-width: 900px; margin: 24px auto 0; border-radius: var(--r-2xl); aspect-ratio: 16 / 9; object-fit: cover; box-shadow: var(--shadow-sm); }
.prose { max-width: 720px; margin: 48px auto 80px; font-size: 17px; line-height: 1.8; color: #35302b; }
.prose > * + * { margin-top: 1.3em; }
.prose h2 { font-size: 27px; font-weight: 600; letter-spacing: -.4px; margin-top: 1.8em; }
.prose h3 { font-size: 21px; font-weight: 600; margin-top: 1.6em; }
.prose a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose img { border-radius: var(--r-lg); width: 100%; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .5em 0; }
.prose blockquote { border-left: 3px solid var(--teal); padding: 4px 0 4px 20px; color: var(--ink-soft); font-style: italic; }
.prose code { background: var(--cream); padding: 2px 6px; border-radius: 6px; font-size: .9em; }
.prose-note { color: var(--ink-soft); background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 24px; font-size: 15px; }
.prose.legal { margin-top: 40px; font-size: 16px; }
.prose.legal h2 { font-size: 22px; margin-top: 1.6em; }
.legal-meta { color: var(--muted); font-size: 14px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }

/* ---------- CTA ---------- */
.cta-band { padding: 0 30px 92px; }
.cta-inner { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-2xl); padding: 68px 40px; text-align: center; }
.cta-inner h2 { font-size: 34px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.6px; color: var(--navy); }
.cta-inner p { margin: 0 auto 30px; color: var(--ink-soft); font-size: 17px; max-width: 46ch; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contato ---------- */
.contact-info { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 28px; margin: 24px 0 0; color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.contact-info a { color: var(--teal-dark); font-weight: 600; }

/* ---------- Formulário (contato) ---------- */
.form-wrap { max-width: 720px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-2xl); padding: 40px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15px; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,156,166,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Footer ---------- */
footer.site { background: var(--card); border-top: 1px solid var(--line); padding: 66px 0 32px; }
.fgrid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; }
.brand-plaque { display: inline-flex; background: var(--teal); border-radius: var(--r-md); padding: 12px 16px; }
.brand-plaque .brand-logo { height: 28px; }
.brand-blurb { color: var(--ink-soft); font-size: 14px; max-width: 34ch; margin: 18px 0 0; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--teal-dark); transition: background .2s ease, color .2s ease, transform .15s ease; }
.socials a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
footer.site h4 { font-size: 12px; font-weight: 600; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.fcol a, .fcol p { display: block; color: var(--ink-soft); font-size: 14px; margin-bottom: 11px; transition: color .2s ease; }
.fcol a:hover { color: var(--teal-dark); }
.flegal { border-top: 1px solid var(--line); margin-top: 46px; padding-top: 22px; display: flex; gap: 24px; flex-wrap: wrap; }
.flegal a { color: var(--ink-soft); font-size: 13px; font-weight: 500; }
.flegal a:hover { color: var(--teal-dark); }
.fbottom { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.fbottom a { color: var(--teal-dark); font-weight: 600; }
.fbottom a:hover { text-decoration: underline; }

/* ---------- WhatsApp flutuante ---------- */
.wpp-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(126,179,57,.6); transition: transform .2s ease; }
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 30px; height: 30px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 16px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-dark); }
.faq-ic { width: 20px; height: 20px; flex: none; color: var(--teal); transition: transform .25s ease; }
.faq-item[open] .faq-ic { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.faq-item:hover { border-color: #e4dcd3; }

/* ---------- Modal de captação (CTAs) ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(18,23,38,.55); backdrop-filter: blur(3px); display: grid; place-items: center; padding: 20px; }
.modal-overlay[hidden] { display: none; }
.modal { background: var(--card); border-radius: var(--r-2xl); padding: 36px; width: 100%; max-width: 440px; box-shadow: var(--shadow-md); position: relative; animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.modal h3 { font-size: 22px; font-weight: 600; margin: 0 0 6px; letter-spacing: -.3px; }
.modal .sub { color: var(--ink-soft); font-size: 14px; margin: 0 0 22px; line-height: 1.5; }
.modal .field:last-of-type { margin-bottom: 24px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--bg); color: var(--ink-soft); font-size: 20px; cursor: pointer; line-height: 1; transition: background .2s ease; }
.modal-close:hover { background: var(--line); }
@media (prefers-reduced-motion: reduce) { .modal { animation: none; } }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  header.site nav { gap: 20px; }
  .slides { height: 480px; }
  .slide-card h1 { font-size: 36px; }
  .svc-grid, .cases, .post-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .results-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .split, .svc-detail { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail .media { order: -1; }
  .fgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  header.site nav {
    position: fixed; top: 74px; left: 0; right: 0; background: var(--teal);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 16px; margin: 0;
    transform: translateY(-120%); transition: transform .3s ease; box-shadow: var(--shadow-md);
  }
  header.site nav.open { transform: translateY(0); }
  .nav-item > a { padding: 14px 24px; }
  .nav-item > a.active::after { display: none; }
  .submenu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; background: rgba(255,255,255,.08); margin: 0 24px 8px; }
  .submenu a { color: rgba(255,255,255,.85); }
  .submenu a:hover { background: rgba(255,255,255,.12); color: #fff; }
  .nav-toggle { display: block; margin-left: auto; }
  header.site .wrap { gap: 12px; }
  .header-cta { display: none; }
  .hero-sec { padding: 16px; }
  .slide::before { background: linear-gradient(90deg, rgba(16,21,34,.9) 0%, rgba(16,21,34,.72) 60%, rgba(16,21,34,.45) 100%); }
  .slide-card h1 { font-size: 25px; font-weight: 500; letter-spacing: -0.2px; }
  .slide-card h1 strong { font-weight: 600; }
  .slide-card p { font-size: 15px; }
  .c-arrow { display: none; }
  section.block { padding: 60px 0; }
  .page-hero { padding: 48px 0 4px; }
  .page-hero h1, .head h2, .post-hero h1 { font-size: 25px; font-weight: 500; letter-spacing: -0.2px; }
  .cta-inner h2 { font-size: 24px; font-weight: 500; }
  .stat .n, .case .metric-n { font-size: 34px; }
  .svc-body h3, .post h3 { font-size: 18px; }
  .svc-grid, .cases, .post-grid, .feat-grid, .field-row { grid-template-columns: 1fr; }
  .cta-band { padding: 0 16px 60px; }
  .cta-inner { padding: 48px 24px; }
  .form-wrap { padding: 26px; }
  .fgrid { grid-template-columns: 1fr; gap: 32px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto; } }
