/* ─── RESET & VARS ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange:       #E8701A;
  --orange-dk:    #C45A0E;
  --orange-lt:    #FF8C35;
  --orange-pale:  #FFF4EC;
  --navy:         #13111F;
  --navy-mid:     #1E1B34;
  --bg:           #F8F7F4;
  --surface:      #FFFFFF;
  --text:         #1C1C1E;
  --muted:        #6E6D7A;
  --border:       #E8E8E8;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow:       0 6px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.12);
  --t:            .22s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

/* ─── NAVBAR ─── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  height: 72px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px) saturate(1.9);
  -webkit-backdrop-filter: blur(18px) saturate(1.9);
  border-bottom: 1px solid rgba(232,232,232,.7);
  transition: box-shadow var(--t), background var(--t);
}
.nav.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.98);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  padding: 0 24px; height: 100%;
}
.logo-link { display:flex; align-items:center; flex-shrink:0; }
.nav-logo { height: 44px; width: auto; display:block; }
.nav-links {
  display: flex; list-style: none; gap: 2px;
  margin-left: 12px; flex: 1;
}
.nav-link {
  text-decoration: none; color: var(--muted);
  font-size: 13.5px; font-weight: 500;
  padding: 7px 12px; border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav-link:hover { color: var(--orange); background: var(--orange-pale); }
.nav-link.active {
  color: var(--orange); background: var(--orange-pale);
  font-weight: 600;
}
.nav-cta { margin-left: auto; flex-shrink: 0; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--t);
}
.nav-toggle:hover { background: var(--bg); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, width .2s ease;
  transform-origin: center;
}
/* X state */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  font-weight: 600; border-radius: 999px;
  transition: all var(--t); text-decoration: none;
  white-space: nowrap; font-size: 14px;
}
.btn-orange {
  background: var(--orange); color: #fff;
  padding: 11px 22px;
  box-shadow: 0 4px 14px rgba(232,112,26,.3);
}
.btn-orange:hover {
  background: var(--orange-dk);
  box-shadow: 0 6px 20px rgba(232,112,26,.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--text);
  padding: 11px 22px; border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.btn-ghost-dark {
  background: rgba(255,255,255,.12); color: #fff;
  padding: 11px 22px; border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }
.btn-white {
  background: #fff; color: var(--orange);
  padding: 14px 28px; font-size: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

/* ─── HERO ─── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  padding: 90px 24px 90px;
  min-height: 520px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(232,112,26,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(255,140,53,.09) 0%, transparent 55%);
}

/* Geometric decoration */
.hero-deco {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0; animation: heroDeco 1s ease .5s forwards;
}
@keyframes heroDeco {
  from { opacity: 0; transform: translateY(-50%) scale(.92); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}

.hero-inner { position: relative; z-index:1; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,112,26,.15); border: 1px solid rgba(232,112,26,.3);
  color: var(--orange-lt); font-size: 12px; font-weight: 600;
  padding: 5px 13px; border-radius: 999px; margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: .5px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-lt);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px,5vw,56px);
  font-weight: 800; color: #fff;
  line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--orange-lt); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 36px; max-width: 520px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; }
.section { padding: 88px 24px; }
.bg-light { background: var(--bg); }
.bg-white { background: var(--surface); }
.text-center { text-align: center; }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; max-width: 540px; }
.section-label {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--orange); margin-bottom: 8px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px,3.5vw,38px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 14px;
}
.section-desc { font-size: 16px; color: var(--muted); line-height: 1.7; }

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

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children in grids */
.grid-3 .reveal:nth-child(1), .grid-2 .reveal:nth-child(1) { transition-delay: 0s; }
.grid-3 .reveal:nth-child(2), .grid-2 .reveal:nth-child(2) { transition-delay: .1s; }
.grid-3 .reveal:nth-child(3) { transition-delay: .2s; }
.faq-grid .reveal:nth-child(1) { transition-delay: 0s; }
.faq-grid .reveal:nth-child(2) { transition-delay: .08s; }
.faq-grid .reveal:nth-child(3) { transition-delay: .16s; }
.faq-grid .reveal:nth-child(4) { transition-delay: .24s; }

/* ─── CARDS ─── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--t); position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all var(--t);
}
.card:hover .card-icon { background: var(--orange); color: #fff; }
.card-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 10px; color: var(--text); }
.card-desc { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 22px; }
.card-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--orange); font-weight: 600; font-size: 13.5px;
  text-decoration: none; transition: gap var(--t);
}
.card-link:hover { gap: 11px; }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--orange); }
.trust-bar-inner {
  display: flex; align-items: stretch;
  padding: 0 24px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 28px; color: #fff; font-size: 14px; font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.2); flex: 1; min-width: 200px;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; opacity: .9; }

/* ─── FORMAT CARDS ─── */
.format-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--t); display: flex; flex-direction: column; gap: 10px;
}
.format-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.format-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px; transition: all var(--t);
}
.format-card:hover .format-icon { background: var(--orange); color: #fff; }
.format-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; }
.format-desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.badge {
  display: inline-block; background: var(--orange-pale); color: var(--orange);
  font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 999px;
  width: fit-content;
}
.format-link {
  color: var(--orange); font-weight: 600; font-size: 14px;
  text-decoration: none; margin-top: 4px; display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--t);
}
.format-link:hover { gap: 9px; }

/* ─── FAQ ─── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-card:hover { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,112,26,.07); }
.faq-card h4 { font-weight: 700; font-size: 15.5px; margin-bottom: 10px; color: var(--text); }
.faq-card p { color: var(--muted); font-size: 14.5px; line-height: 1.75; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  right: -80px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,112,26,.14) 0%, transparent 70%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}
.cta-inner h2 {
  font-family: 'Sora', sans-serif; font-size: clamp(22px,3vw,34px);
  font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.8px;
}
.cta-inner p { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.6; }
.cta-meta { font-size: 13px; color: rgba(255,255,255,.38); margin-top: 10px; }

/* ─── PAGE HERO (páginas internas) ─── */
.page-hero {
  background: var(--navy); padding: 72px 24px 68px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 110%, rgba(232,112,26,.16) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--orange-lt); }
.page-hero h1 {
  font-family: 'Sora', sans-serif; font-size: clamp(26px,4vw,46px);
  font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 14px;
  line-height: 1.12;
}
.page-hero p { color: rgba(255,255,255,.65); font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ─── CONTENT BLOCKS ─── */
.content-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px; margin-bottom: 20px;
}
.content-block h3 {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--text); margin-bottom: 12px;
}
.content-block p { color: var(--muted); line-height: 1.75; font-size: 15.5px; }
.content-block ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.content-block ul li { color: var(--muted); font-size: 15px; padding-left: 22px; position: relative; line-height: 1.6; }
.content-block ul li::before { content: '·'; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: 22px; line-height: 1.2; }
.content-block .btn { margin-top: 20px; }
.tag-for { display: inline-block; background: var(--orange-pale); color: var(--orange); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 6px; margin-bottom: 14px; }

/* ─── TABLE ─── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
thead th {
  background: var(--navy); color: #fff; font-weight: 600;
  padding: 13px 14px; text-align: left; white-space: nowrap;
  font-size: 12.5px;
}
thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
thead th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
tbody tr:nth-child(even) { background: var(--bg); }
tbody tr:hover { background: var(--orange-pale); }
tbody td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--muted); }
tbody td:first-child { color: var(--text); font-weight: 500; }
.check-yes { color: #16a34a; font-weight: 700; font-size: 16px; }
.check-no  { color: #cbd5e1; font-size: 16px; }

/* ─── COMPARE TABLE (Assinaturas) ─── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.compare-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.compare-card.highlight { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,112,26,.08); }
.compare-card h3 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 14px; }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.compare-card ul li { font-size: 14.5px; color: var(--muted); padding-left: 22px; position: relative; }
.compare-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: 22px; line-height: 1.2; }

/* ─── STATS ─── */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 32px 0; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: border-color var(--t), box-shadow var(--t);
}
.stat-card:hover { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,112,26,.07); }
.stat-value { font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* ─── CONTATO ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color var(--t), box-shadow var(--t);
}
.contact-item:hover { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,112,26,.06); }
.contact-item h3 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; }
.contact-item a, .contact-item p { color: var(--muted); font-size: 15px; text-decoration: none; }
.contact-item a:hover { color: var(--orange); }
.contact-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--orange); margin-bottom: 4px; }

/* ─── FOOTER ─── */
.footer { background: var(--navy); padding: 72px 24px 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07);
  max-width: 1200px; margin: 0 auto;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 18px; display: block; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.42); line-height: 1.8; margin-bottom: 24px; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  color: rgba(255,255,255,.5); font-size: 13.5px; text-decoration: none;
  transition: color var(--t); line-height: 1.5;
}
.footer-contact-item:hover { color: var(--orange-lt); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-col-title {
  font-weight: 700; font-size: 11.5px; color: rgba(255,255,255,.85);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.48); font-size: 13.5px; text-decoration: none; transition: color var(--t); }
.footer-links a:hover { color: var(--orange-lt); }
.footer-bottom { padding: 24px; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.25); }
.footer-badges { display: flex; align-items: center; gap: 20px; }
.footer-badge-img { height: 28px; width: auto; opacity: .45; filter: brightness(0) invert(1); transition: opacity var(--t); }
.footer-badge-img:hover { opacity: .75; }

/* ─── WHATSAPP FLOAT ─── */
.wpp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none; transition: all var(--t);
}
.wpp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
/* Pulse ring */
.wpp-float::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366;
  animation: wppPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wppPulse {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wpp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; font-size: 13px; font-weight: 500;
  padding: 7px 13px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--t);
  box-shadow: var(--shadow);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ─── LINK ─── */
.link-orange { color: var(--orange); font-weight: 600; text-decoration: none; }
.link-orange:hover { text-decoration: underline; }

/* ─── STEPS LIST ─── */
.steps {
  list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 16px;
  counter-reset: step;
}
.steps li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--muted); line-height: 1.6;
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
  font-family: 'Sora', sans-serif;
}
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* Remove bottom margin from content-blocks inside grids */
.grid-3 > .content-block,
.grid-2 > .content-block { margin-bottom: 0; }

/* ─── FOOTER ACCORDION (Práticas de Negócio) ─── */
.footer-accordion {
  border: none;
  background: none;
  margin-top: 22px;
}
.footer-accordion > summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; gap: 6px;
  user-select: none;
  transition: color var(--t);
}
/* Remove native triangle in all browsers */
.footer-accordion > summary::-webkit-details-marker { display: none; }
.footer-accordion > summary::marker { display: none; }
/* Custom arrow */
.footer-accordion > summary::after {
  content: '›';
  font-size: 15px; font-weight: 600; line-height: 1;
  color: rgba(255,255,255,.35);
  transition: transform .25s ease, color var(--t);
  display: inline-block;
}
.footer-accordion[open] > summary::after {
  transform: rotate(90deg);
  color: var(--orange-lt);
}
.footer-accordion[open] > summary {
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
}
.footer-accordion > ul { padding-top: 2px; }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--border); margin: 0 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { padding-top: 64px; }
  .nav { height: 64px; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px 16px; gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .grid-3, .grid-2, .compare-grid, .contact-grid, .faq-grid, .footer-inner { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { flex-direction: column; padding: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); min-width: unset; padding: 18px 24px; }
  .trust-item:last-child { border-bottom: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .hero { padding: 64px 20px; min-height: auto; }
  .hero-deco { display: none; }
  .section { padding: 64px 20px; }
  .footer-col-wide { grid-column: 1; }
  .content-block { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .footer-inner { gap: 32px; }
}
