/* ============================================================
   DESIGN SYSTEM — Paleta da marca
   ============================================================ */
:root {
  --azul: #073F8A;        /* Principal */
  --azul-700: #052e66;    /* Principal escurecido */
  /* Acentos agora seguem o manual: Concordância no lugar de laranja/amarelo */
  --laranja: #073F8A;     /* (ex-Destaque 1) → Principal: CTAs e acentos em fundo claro */
  --laranja-600: #052e66; /* hover */
  --amarelo: #D9E1F2;     /* (ex-Destaque 2) → Concordância 1: acentos em fundo escuro */
  --azul-claro: #D9E1F2;  /* Concordância 1 */
  --cinza-claro: #F5F5F5; /* Concordância 2 */
  --grafite: #4A4A4A;     /* texto secundário */
  --vermelho: #D72638;    /* erro/contraste */
  --rosa: #E91E63;

  --ink: #0f1c33;
  --muted: #5b6b85;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(7,63,138,.35);
  --shadow-sm: 0 8px 24px -12px rgba(7,63,138,.25);
  --max: 1180px;
  --font-head: 'Poppins', system-ui, sans-serif;                 /* manual: Poppins SemiBold */
  --font-body: 'Santander', 'Inter', system-ui, sans-serif;       /* manual: Santander Regular (proprietária) → fallback Inter */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.12; color: var(--azul); letter-spacing: -.02em; }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
.section-title.center, .section-lead.center { text-align: center; }
.section-title.light { color: var(--white); }
.section-lead { font-size: 1.08rem; color: var(--muted); max-width: 640px; }
.section-lead.center { margin: 14px auto 0; }
.section-lead.light { color: rgba(255,255,255,.85); }
.hl { color: var(--azul); background: var(--azul-claro); border-radius: 5px; padding: 0 .14em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.hl-y { color: var(--azul-claro); }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--laranja); margin-bottom: 10px; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  border: none; border-radius: 999px; padding: 15px 28px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--azul); color: #fff; box-shadow: 0 10px 26px -12px rgba(7,63,138,.6); }
.btn-primary:hover { background: var(--azul-700); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: .92rem; }
.btn-block { width: 100%; }
/* Em fundos navy (painel do CTA), o botão inverte para branco com texto azul */
.cta-panel .btn-primary { background: #fff; color: var(--azul); box-shadow: 0 12px 30px -14px rgba(0,0,0,.5); }
.cta-panel .btn-primary:hover { background: var(--azul-claro); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7,63,138,.08);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }
.footer-logo { height: 30px; }
.numbers-logo { height: 52px; width: auto; }
.brand-mark { color: var(--laranja); transform: scaleX(1.4); display: inline-block; }
.brand-mark.big { font-size: 2.6rem; }
.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a { font-weight: 500; color: var(--grafite); font-size: .95rem; transition: color .2s; }
.main-nav a:hover { color: var(--azul); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--azul); border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 56px 0 72px; background: linear-gradient(160deg, #fff 0%, var(--azul-claro) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-card { background: rgba(255,255,255,.7); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.9); padding: 38px; border-radius: 24px; box-shadow: var(--shadow); }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; }
.hero-title span { color: var(--laranja); }
.hero-feats { display: flex; gap: 28px; margin: 26px 0; flex-wrap: wrap; }
.feat { display: flex; flex-direction: column; gap: 2px; padding-left: 16px; border-left: 3px solid var(--laranja); flex: 1 1 160px; }
.feat-num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--azul); line-height: 1.05; display: flex; align-items: baseline; gap: 6px; }
.feat-num small { font-size: .72rem; font-weight: 600; color: var(--laranja); letter-spacing: .02em; }
.feat-label { color: var(--muted); font-size: .85rem; order: -1; }

.sim-mini { border-top: 1px solid rgba(7,63,138,.12); padding-top: 22px; }
.sim-mini > label { font-family: var(--font-head); font-weight: 600; color: var(--grafite); font-size: .95rem; }
.sim-input { display: flex; align-items: center; gap: 8px; margin: 8px 0 14px; border-bottom: 2px solid var(--azul-claro); padding-bottom: 6px; }
.sim-input span { font-family: var(--font-head); font-weight: 700; color: var(--azul); font-size: 1.4rem; }
.sim-input input { border: none; background: none; font-family: var(--font-head); font-weight: 600; font-size: 1.8rem; color: var(--azul); width: 100%; outline: none; }
.sim-range { width: 100%; margin-bottom: 18px; accent-color: var(--laranja); }
.sim-note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 10px; }
.sim-hint { text-align: right; color: var(--muted); font-size: .78rem; margin: -10px 0 14px; }

.hero-media { position: relative; }
.hero-blob { position: absolute; inset: -8% -6% -8% 6%; background: var(--azul); border-radius: 42% 58% 55% 45% / 55% 45% 55% 45%; z-index: 0; }
.hero-photo { position: relative; z-index: 1; width: 100%; border-radius: 24px; box-shadow: var(--shadow); aspect-ratio: 4/4.4; object-fit: cover; object-position: 50% 28%; }
.hero-cert { position: absolute; z-index: 2; left: -22px; bottom: 26px; width: 168px; background: #fff; border-radius: 16px; padding: 8px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; margin: 0; }
.hero-cert img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; object-position: 50% 20%; }
.hero-cert figcaption { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--font-head); }
.hero-cert figcaption span { font-size: .72rem; color: var(--muted); }
.hero-cert figcaption strong { font-size: 1.05rem; color: var(--azul); font-weight: 600; }

/* ============================================================
   BANCOS
   ============================================================ */
.banks { padding: 72px 0; }
.banks-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 38px; }
.bank-logo {
  font-family: var(--font-head); font-weight: 700; color: var(--grafite);
  background: var(--cinza-claro); padding: 16px 30px; border-radius: 12px;
  font-size: 1.05rem; filter: grayscale(.2); transition: transform .2s, box-shadow .2s;
}
.bank-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ============================================================
   VANTAGENS
   ============================================================ */
.advantages { padding: 80px 0; background: var(--azul); position: relative; }
.advantages .section-title, .advantages .section-lead { position: relative; }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.adv-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 30px; transition: transform .2s, background .2s;
}
.adv-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.adv-ic { font-size: 1.6rem; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; background: rgba(217,225,242,.16); margin-bottom: 16px; }
.adv-card h3 { color: #fff; font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.adv-card p { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 80px 0; background: #fff; }
.reviews-layout { display: grid; grid-template-columns: 0.85fr 1.5fr; gap: 48px; align-items: center; }
.reviews-photo { margin: 0; }
.reviews-photo img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/4.6; }
.reviews-photo figcaption { margin-top: 12px; text-align: center; font-size: .85rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; }
.reviews-head { margin-bottom: 40px; }
.reviews-head.center { text-align: center; }
.stars { color: #FBBC05; letter-spacing: 2px; }
.reviews-carousel { position: relative; max-width: 1040px; margin: 0 auto; }
.reviews-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px; scrollbar-width: none; -ms-overflow-style: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.rev-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--azul-claro); background: #fff; box-shadow: var(--shadow-sm); color: var(--azul); font-size: 1.8rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.rev-arrow:hover { background: var(--azul-claro); transform: translateY(-50%) scale(1.06); }
.rev-prev { left: -22px; }
.rev-next { right: -22px; }

/* ---- Galeria de fotos (alto padrão) ---- */
.gallery-head { text-align: center; margin: 72px 0 32px; }
.gallery-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 600; color: var(--azul); margin-top: 6px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.g-item { position: relative; margin: 0; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 3/4; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption { position: absolute; inset: auto 0 0 0; padding: 34px 16px 14px; background: linear-gradient(transparent, rgba(5,28,55,.82)); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .88rem; }
.review-card { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; background: #f4f5f7; border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review-card p { color: var(--grafite); font-size: .95rem; flex-grow: 1; }
.rv-head { display: flex; align-items: center; gap: 12px; }
.rv-id { flex-grow: 1; line-height: 1.25; }
.rv-id strong { display: block; font-size: .95rem; color: var(--ink); font-family: var(--font-head); }
.rv-id small { color: var(--muted); font-size: .8rem; }
.avatar { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--azul); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.g-icon { width: 22px; height: 22px; flex-shrink: 0; }
.rv-stars { display: flex; align-items: center; gap: 8px; }
.verified { width: 18px; height: 18px; border-radius: 50%; background: #4285F4; color: #fff; font-size: .65rem; display: grid; place-items: center; }
.rv-more { color: var(--muted); font-size: .85rem; text-decoration: none; }
.rv-more:hover { color: var(--azul); }

/* ============================================================
   CERTIFICAÇÕES
   ============================================================ */
.certs { padding: 64px 0; background: var(--cinza-claro); border-top: 1px solid rgba(7,63,138,.06); }
.certs-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px; margin-top: 42px; }
.cert { display: inline-flex; }
.cert img { height: 110px; width: auto; object-fit: contain; background: #fff; border-radius: 14px; padding: 14px 22px; box-shadow: var(--shadow-sm); }
.cert-fb { display: none; align-items: center; justify-content: center; height: 110px; padding: 0 32px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); font-family: var(--font-head); font-weight: 700; color: var(--azul); }
@media (max-width: 560px) { .cert img, .cert-fb { height: 84px; } }

/* ============================================================
   STEPS
   ============================================================ */
.steps { padding: 90px 0; }
.steps-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.steps-intro { position: sticky; top: 100px; }
.steps-intro .section-lead { margin-top: 20px; }
.steps-intro .btn { margin-top: 26px; }
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.steps-list li { display: flex; gap: 20px; padding: 22px; border-radius: var(--radius); transition: background .2s, box-shadow .2s; }
.steps-list li:hover { background: var(--cinza-claro); box-shadow: var(--shadow-sm); }
.step-num { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--azul); background: var(--azul-claro); width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; }
.steps-list h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.steps-list p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   NÚMEROS
   ============================================================ */
.numbers { padding: 72px 0; background: linear-gradient(150deg, var(--azul) 0%, var(--azul-700) 100%); }
.numbers-head { display: flex; align-items: center; gap: 28px; margin-bottom: 38px; flex-wrap: wrap; }
.numbers-head .brand-mark { color: var(--amarelo); }
.numbers-head p { color: #fff; font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; max-width: 640px; }
.numbers-head strong { color: var(--amarelo); }
.numbers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.num-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 30px; }
.num-ic { font-size: 1.6rem; }
.num-card strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--amarelo); margin: 10px 0 4px; }
.num-card small { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { padding: 96px 0; background: var(--cinza-claro); }
.cta-panel {
  position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(120% 140% at 50% -20%, #0d4ea0 0%, var(--azul) 45%, var(--azul-700) 100%);
  border-radius: 28px; padding: 72px 32px; box-shadow: var(--shadow);
}
.cta-panel::before, .cta-panel::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0;
}
.cta-panel::before { width: 260px; height: 260px; background: rgba(217,225,242,.16); top: -90px; right: -60px; }
.cta-panel::after { width: 220px; height: 220px; background: rgba(255,255,255,.08); bottom: -90px; left: -50px; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amarelo); margin-bottom: 14px; }
.cta-panel h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; max-width: 720px; margin: 0 auto; }
.cta-panel p { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 580px; margin: 16px auto 32px; }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500; }
.cta-trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--amarelo); display: inline-block; }

/* ============================================================
   FORMULÁRIOS
   ============================================================ */
.lead-form { background: #fff; border-radius: 20px; padding: 32px; box-shadow: var(--shadow); }
.lead-form h3 { font-size: 1.4rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--grafite); }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field select {
  font-family: var(--font-body); font-size: 1rem; padding: 13px 15px;
  border: 1.5px solid #e3e8f0; border-radius: var(--radius-sm); background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(7,63,138,.12); }
.field input.invalid, .field select.invalid { border-color: var(--vermelho); box-shadow: 0 0 0 3px rgba(215,38,56,.12); }
.cur { display: flex; align-items: center; border: 1.5px solid #e3e8f0; border-radius: var(--radius-sm); padding-left: 14px; transition: border-color .2s, box-shadow .2s; }
.cur:focus-within { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(7,63,138,.12); }
.cur span { font-family: var(--font-head); font-weight: 700; color: var(--azul); }
.cur input { border: none !important; box-shadow: none !important; padding-left: 8px; }
.lead-form .btn { margin-top: 8px; }
.form-note { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 12px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

/* ============================================================
   CONTATO
   ============================================================ */
.contact { padding: 90px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-info .section-title { margin-top: 4px; }
.contact-info .section-lead { margin-bottom: 28px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-ic { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: var(--azul-claro); font-size: 1.3rem; }
.contact-list strong { display: block; font-family: var(--font-head); color: var(--azul); font-size: 1rem; margin-bottom: 2px; }
.contact-list a, .contact-list span { color: var(--grafite); font-size: .96rem; line-height: 1.45; }
.contact-list a:hover { color: var(--laranja); }
.contact-map { height: 100%; min-height: 380px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: none; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-hours { display: block; margin-top: 9px; font-size: .85rem; color: rgba(255,255,255,.55); }
.site-footer { background: var(--azul-700); color: rgba(255,255,255,.8); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.footer-desc { max-width: 320px; font-size: .92rem; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-grid > div a { display: block; margin-bottom: 9px; font-size: .92rem; transition: color .2s; }
.footer-grid > div a:hover { color: var(--amarelo); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; padding-top: 22px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.55); }

/* ============================================================
   MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7,28,51,.6); backdrop-filter: blur(4px); }
.modal-dialog {
  position: relative; max-width: 640px; margin: 5vh auto; background: #fff; border-radius: 22px;
  padding: 40px; box-shadow: var(--shadow); max-height: 90vh; overflow-y: auto;
  animation: pop .25s ease;
}
@keyframes pop { from { transform: translateY(20px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-dialog h3 { font-size: 1.5rem; }
.modal-sub { color: var(--muted); margin: 6px 0 22px; font-size: .95rem; }
.modal-close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--cinza-claro); font-size: 1.5rem; color: var(--grafite); cursor: pointer; line-height: 1; transition: background .2s; }
.modal-close:hover { background: var(--azul-claro); }
.lead-form.full { box-shadow: none; padding: 0; }
.modal-form { max-width: 560px; padding: 28px 28px 24px; }
.ghl-form { width: 100%; min-height: 600px; border: none; border-radius: 8px; background: #fff; display: block; }

/* ============================================================
   ANIMAÇÕES DE SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-inner .btn-primary { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; margin: 0 auto; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-layout { grid-template-columns: 1fr; gap: 32px; }
  .reviews-photo { max-width: 360px; margin: 0 auto; }
  .reviews-photo img { aspect-ratio: 16/10; }
  .review-card { flex-basis: calc((100% - 22px) / 2); }
  .rev-prev { left: -8px; }
  .rev-next { right: -8px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-intro { position: static; }
  .numbers-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 56px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-card { padding: 26px; }
  .adv-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: 86%; }
  .rev-arrow { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-dialog { padding: 28px 22px; margin: 0; min-height: 100vh; border-radius: 0; }
}
