/* =================================================================
   O MAGNATA DA REFRIGERAÇÃO — Design System
   Paleta: Amarelo (ouro) + Preto · Bricolage Grotesque / Manrope
   ================================================================= */

:root {
  /* Cores */
  --black:        #0A0A0A;   /* fundo principal */
  --black-2:      #121212;   /* fundo seções */
  --black-3:      #1A1A1A;   /* superfícies / cards */
  --ink:          #0B0B0C;   /* texto sobre amarelo */
  --gold:         #FFC400;   /* cor principal da marca */
  --gold-2:       #FFD23F;   /* destaque claro */
  --amber:        #FF9D00;   /* acento / urgência */
  --cta:          #FFC400;   /* cor de CTA */
  --cta-hover:    #FFD23F;
  --white:        #FFFFFF;
  --text:         #ECECEC;   /* texto corpo (sobre escuro) */
  --muted:        #A6A6A6;   /* texto secundário */
  --line:         rgba(255,255,255,.10);
  --line-strong:  rgba(255,196,0,.30);
  --glass:        rgba(255,255,255,.04);
  --glass-2:      rgba(255,255,255,.06);
  --green:        #25D366;   /* WhatsApp */

  /* Tipografia */
  --font-title: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:  "Manrope", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --shadow-gold: 0 14px 40px rgba(255,196,0,.28);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }
h1,h2,h3,h4 { font-family: var(--font-title); font-weight: 800; line-height: 1.08; letter-spacing: -.01em; color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ===================== HELPERS ===================== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 860px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); background: rgba(255,196,0,.10);
  border: 1px solid var(--line-strong); padding: 7px 14px; border-radius: 999px;
  max-width: 100%; word-break: break-word;
}
.eyebrow.eyebrow-light { color: var(--ink); background: rgba(10,10,10,.12); border-color: rgba(10,10,10,.18); }
.hl { color: var(--gold); }
.glass {
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--gold); color: var(--ink); padding: 12px 18px; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--amber)); z-index: 999;
  transition: width .1s linear;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 13px 22px; border-radius: 14px; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn i { font-size: 1.05em; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: linear-gradient(135deg, var(--cta-hover), var(--gold)); transform: translateY(-2px); box-shadow: 0 18px 46px rgba(255,196,0,.40); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.28); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--white); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.pulse { position: relative; }
.pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255,196,0,.55); animation: pulse 2.2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(255,196,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,196,0,0); } }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(10,10,10,.55);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { background: rgba(10,10,10,.92); border-bottom-color: var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--ink); font-family: var(--font-title); font-weight: 800; font-size: 1.35rem;
  box-shadow: var(--shadow-gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-title); font-size: 1.12rem; color: var(--white); }
.brand-text em { font-style: normal; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.nav { display: flex; gap: 26px; }
.nav a { font-weight: 600; font-size: .98rem; color: var(--text); position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width .25s var(--ease); }
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .btn { padding: 10px 16px; font-size: .9rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,.75) 30%, rgba(10,10,10,.25) 100%),
    linear-gradient(to bottom, rgba(10,10,10,.10) 0%, rgba(10,10,10,.55) 100%),
    url('../img/bg-hero.webp') center center / cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(255,196,0,.14), transparent 60%),
    radial-gradient(700px 500px at 10% 100%, rgba(255,157,0,.08), transparent 55%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.hero-title { font-size: clamp(2.1rem, 5.2vw, 3.7rem); margin: 18px 0; }
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 600px; }
.hero-sub strong { color: var(--white); }
.hero-benefits { display: grid; gap: 11px; margin: 26px 0; }
.hero-benefits li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text); }
.hero-benefits i { color: var(--gold); width: 22px; text-align: center; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--muted); font-size: .92rem; flex-wrap: wrap; }
.stars { color: var(--gold); display: inline-flex; gap: 3px; }

/* Hero card / formulário */
.hero-card { border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.hero-card-title { font-size: 1.5rem; }
.hero-card-sub { color: var(--muted); margin: 8px 0 20px; font-size: .96rem; }

/* ===================== FORMULÁRIOS ===================== */
.quick-form, .lead-form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .82rem; font-weight: 700; color: var(--text); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1.5px solid var(--line); color: var(--white);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #777; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FFC400' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { background: var(--black-3); color: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,196,0,.06); box-shadow: 0 0 0 4px rgba(255,196,0,.12); }
.field.invalid input, .field.invalid select { border-color: #ff5a5a; box-shadow: 0 0 0 4px rgba(255,90,90,.12); }
.form-note { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 7px; margin-top: 2px; }
.form-note i { color: var(--gold); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ===================== BARRA DE CONFIANÇA ===================== */
.trust-bar { background: linear-gradient(180deg, var(--gold), var(--gold-2)); color: var(--ink); padding: 22px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item i { font-size: 1.7rem; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(10,10,10,.10); }
.trust-item strong { display: block; font-family: var(--font-title); font-size: 1.05rem; color: var(--ink); }
.trust-item span { font-size: .85rem; color: rgba(10,10,10,.7); font-weight: 600; }

/* ===================== SEÇÕES ===================== */
.section { padding: 92px 0; position: relative; }
.section-dark { background: linear-gradient(180deg, var(--black-2), var(--black)); }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 16px 0 14px; }
.section-lead { color: var(--muted); font-size: 1.08rem; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }

/* Cards de serviço */
.service-card { border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--amber)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem; color: var(--gold); background: rgba(255,196,0,.10); border: 1px solid var(--line-strong); margin-bottom: 18px; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .98rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--ink);
  font-weight: 700; font-size: .9rem; padding: 10px 18px; border-radius: 12px;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), gap .2s;
}
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); gap: 13px; }

/* Marcas */
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.brands li { font-family: var(--font-title); font-weight: 700; font-size: 1.15rem; color: var(--white); padding: 14px 26px; border-radius: 14px; background: var(--glass-2); border: 1px solid var(--line); transition: transform .25s var(--ease), border-color .25s, color .25s; }
.brands li:hover { transform: translateY(-4px); border-color: var(--gold); color: var(--gold); }
.brands-note { text-align: center; color: var(--muted); margin-top: 26px; font-size: .96rem; }
.brands-note a { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Diferenciais */
.diff-card { padding: 26px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s; }
.diff-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.diff-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; color: var(--ink); background: linear-gradient(135deg, var(--gold), var(--gold-2)); margin-bottom: 16px; box-shadow: var(--shadow-gold); }
.diff-card h3 { font-size: 1.2rem; margin-bottom: 9px; }
.diff-card p { color: var(--muted); font-size: .96rem; }

/* Processo / steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; list-style: none; padding: 0; }
.step { position: relative; padding: 28px 24px; border-radius: var(--radius); background: var(--glass); border: 1px solid var(--line); }
.step-num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--amber)); color: var(--ink); font-family: var(--font-title); font-weight: 800; font-size: 1.3rem; margin-bottom: 16px; box-shadow: var(--shadow-gold); }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* Segmentos */
.seg-card { padding: 26px; border-radius: var(--radius); text-align: center; transition: transform .3s var(--ease), border-color .3s; }
.seg-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.seg-card i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.seg-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.seg-card p { color: var(--muted); font-size: .94rem; }

/* Depoimentos */
.testi-card { padding: 28px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 14px; }
.testi-card blockquote { color: var(--text); font-size: 1.04rem; line-height: 1.6; }
.testi-card figcaption strong { display: block; color: var(--white); font-family: var(--font-title); }
.testi-card figcaption span { color: var(--muted); font-size: .88rem; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq-item { border-radius: 14px; background: var(--glass); border: 1px solid var(--line); overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-title); font-weight: 700; font-size: 1.06rem; color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "\002B"; font-size: 1.5rem; color: var(--gold); transition: transform .3s var(--ease); line-height: 1; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { color: var(--muted); font-size: .98rem; }

/* CTA final */
.cta-final { background: radial-gradient(700px 400px at 50% 0%, rgba(255,196,0,.12), transparent 60%), var(--black); }
.cta-card { border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; box-shadow: var(--shadow); }
.cta-card > * { min-width: 0; }
.cta-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 14px 0; }
.cta-text > p { color: var(--muted); font-size: 1.05rem; }
.cta-list { display: grid; gap: 9px; margin: 20px 0 26px; }
.cta-list li { display: flex; align-items: center; gap: 11px; font-weight: 600; }
.cta-list i { color: var(--gold); }
.lead-form { background: rgba(255,255,255,.03); border: 1px solid var(--line); padding: 26px; border-radius: var(--radius); }
.lead-form h3 { font-size: 1.25rem; margin-bottom: 6px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--black-2); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 36px; }
.brand-footer { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .95rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--glass-2); border: 1px solid var(--line); color: var(--white); transition: .25s; }
.footer-social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 16px; color: var(--white); }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a:not(.btn), .footer-col li { color: var(--muted); font-size: .94rem; transition: color .2s; }
.footer-col a:not(.btn):hover { color: var(--gold); }
.footer-col i { color: var(--gold); width: 18px; }
.footer-brands { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid var(--line); margin-top: 44px; padding-top: 24px; color: var(--muted); font-size: .85rem; }
.dev-credit { color: var(--gold); font-family: var(--font-title); font-weight: 800; letter-spacing: .01em; text-decoration: none; transition: opacity .2s; }
.dev-credit:hover { opacity: .78; }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.wpp-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 180;
  display: inline-flex; align-items: center; gap: 0;
  background: var(--green); color: #fff; border-radius: 999px;
  padding: 16px; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), gap .25s, padding .25s;
}
.wpp-float i { font-size: 1.7rem; line-height: 1; }
.wpp-float-label { max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 700; transition: max-width .3s var(--ease), margin .3s; }
.wpp-float:hover { transform: translateY(-3px); }
.wpp-float:hover .wpp-float-label { max-width: 130px; margin-left: 10px; }

/* ===================== STICKY CTA MOBILE ===================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 170;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(100%); transition: transform .3s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: .92rem; }
.sticky-cta .btn-outline { flex: 0 0 auto; }

/* ===================== REVEAL (micro-animação) ===================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 520px; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(10,10,10,.97); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    padding: 14px 22px 24px; border-bottom: 1px solid var(--line);
  }
  .nav.is-open a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .section { padding: 68px 0; }
  .sticky-cta { display: flex; }
  .wpp-float { bottom: 80px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .eyebrow { font-size: .72rem; letter-spacing: .04em; padding: 6px 12px; }
  .field input, .field select, .field textarea { padding: 10px 12px; font-size: .93rem; }
  .field label { font-size: .78rem; }
  .quick-form, .lead-form { gap: 11px; }
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 22px 18px; gap: 28px; }
  .hero-card { padding: 22px 18px; }
  .cta-text > .hero-actions { flex-direction: column; }
  .cta-text > .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .trust-item { flex-direction: column; text-align: center; gap: 6px; padding: 14px 8px; }
  .trust-item strong { font-size: .95rem; }
  .trust-item span { font-size: .78rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .brands { gap: 10px; }
  .brands li { padding: 11px 18px; font-size: 1rem; }
  .section-head { margin-bottom: 36px; }
  .section { padding: 56px 0; }
  .cards-grid { gap: 14px; }
  .seg-grid { grid-template-columns: 1fr 1fr; }
  .lead-form { padding: 20px 16px; }
}
