/* ======================================================================
   Site de Advogado — Landing de vendas
   Paleta: navy institucional + dourado sóbrio + off-white
   ====================================================================== */

:root {
  --navy:        #0e1b2c;
  --navy-700:    #14283f;
  --navy-600:    #1d3656;
  --ink:         #16202c;
  --gold:        #c2a14e;
  --gold-soft:   #d8bd78;
  --cream:       #f6f3ec;
  --paper:       #ffffff;
  --muted:       #5d6b7a;
  --line:        #e4e0d6;
  --whats:       #25d366;
  --shadow-sm:   0 2px 8px rgba(14,27,44,.05);
  --shadow-md:   0 14px 34px rgba(14,27,44,.10);
  --shadow-lg:   0 28px 70px rgba(14,27,44,.22);
  --radius:      8px;
  --radius-sm:   6px;
  --maxw:        1180px;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Montserrat', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .2px;
  margin: 0 0 .4em;
  color: var(--navy);
}

h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.45rem; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .8em;
}

.section { padding: 88px 0; }
.section--tight { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: #dfe6ee; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--gold-soft); }

.center { text-align: center; }
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 0;
}
.section--navy .lead { color: #b9c5d2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-soft); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--navy); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--light-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.btn--light-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.48);
  color: #fff;
}
.btn--whats { background: var(--whats); color: #fff; }
.btn--whats:hover { background: #1fbe5a; box-shadow: var(--shadow-md); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }
.btn svg { width: 1.15em; height: 1.15em; }

/* ======================================================================
   Header
   ====================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.brand .mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 9px;
  flex: none;
}
.brand .mark svg { width: 20px; height: 20px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: -3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a.navlink {
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy-700);
  position: relative;
}
.nav a.navlink::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav a.navlink:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: .25s;
}

/* ======================================================================
   Hero
   ====================================================================== */
.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 68px));
  background: var(--navy) url('assets/img/landing/hero-landing.png') center right / cover no-repeat;
  color: #e7edf3;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,20,34,.98) 0%, rgba(10,20,34,.88) 42%, rgba(10,20,34,.46) 72%, rgba(10,20,34,.72) 100%),
    linear-gradient(180deg, rgba(10,20,34,.40), rgba(10,20,34,.88));
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(14,27,44,.96), rgba(14,27,44,0));
}
.hero .wrap {
  position: relative;
  z-index: 1;
  min-height: min(760px, calc(100vh - 68px));
  display: flex;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 86px;
}
.hero-text { max-width: 720px; }
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  max-width: 760px;
  margin-bottom: .26em;
}
.hero p.sub {
  font-size: 1.24rem;
  color: #d8e1ea;
  max-width: 660px;
  margin-bottom: 1.65em;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-note {
  margin: 14px 0 0;
  font-size: .86rem;
  color: #9fb0c1;
  letter-spacing: .01em;
}
.hero-trust {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #d5deea;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
}
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-soft); flex: none; }

/* ======================================================================
   Faixa de logos / argumentos
   ====================================================================== */
.argbar {
  background: #102238;
  color: #c6d2de;
  border-top: 1px solid rgba(255,255,255,.06);
}
.argbar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px 24px;
}
.argbar .item { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.argbar svg { width: 26px; height: 26px; color: var(--gold-soft); flex: none; }

/* ======================================================================
   Benefícios
   ====================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transition: transform .3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature:hover::before { transform: scaleX(1); }
.feature .ico {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold-soft);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 24px rgba(14,27,44,.20);
}
.feature .ico svg { width: 30px; height: 30px; }
.feature h3 { margin-bottom: 0; }
.feature h3::after {
  content: '';
  display: block;
  width: 34px; height: 2px;
  background: var(--gold);
  margin: 12px auto 16px;
}
.feature p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ======================================================================
   Slider de Projetos
   ====================================================================== */
.projects { position: relative; }
.slider {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 28px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.slide:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.slide-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.slide-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.slide:hover .slide-media img { transform: scale(1.05); }
.slide-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(14,27,44,.92);
  color: var(--gold-soft);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.slide-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.slide-body h3 { font-size: 1.3rem; margin: 0; }
.slide-body .office { font-size: .82rem; color: var(--muted); margin: 0; }
.slide-body p.desc { font-size: .92rem; color: var(--muted); margin: 4px 0 14px; flex: 1; }
.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  align-self: flex-start;
}
.slide-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.slide-link:hover { color: var(--gold); }
.slide-link:hover svg { transform: translateX(4px); }

/* controles */
.slider-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.slider-arrows { display: flex; gap: 12px; }
.sa-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--navy);
  display: grid; place-items: center;
  cursor: pointer;
  transition: .18s;
}
.sa-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.sa-btn svg { width: 20px; height: 20px; }
.slider-dots { display: flex; gap: 9px; align-items: center; }
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  cursor: pointer;
  transition: .2s;
  padding: 0;
}
.dot.active { background: var(--gold); width: 26px; border-radius: 999px; }

/* ======================================================================
   Spotlight — diferencial do editor
   ====================================================================== */
.spotlight-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.spotlight-visual { position: relative; }
.spotlight-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.spotlight-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.spotlight-text > p {
  color: #c4d0dd;
  font-size: 1.14rem;
  margin: 0 0 24px;
}
.spotlight-text > p b { color: #fff; }
.spotlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 13px;
}
.spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #dfe6ee;
  font-size: 1rem;
}
.spotlight-list svg {
  width: 20px; height: 20px;
  color: var(--gold-soft);
  flex: none;
  margin-top: 4px;
}

/* ======================================================================
   Faixa de números
   ====================================================================== */
.statsbar {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statsbar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 24px;
}
.statsbar .stat {
  text-align: center;
  position: relative;
}
.statsbar .stat + .stat::before {
  content: '';
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%);
  height: 54px; width: 1px;
  background: var(--line);
}
.statsbar .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.statsbar .stat span {
  display: block;
  font-size: .9rem;
  color: var(--muted);
  max-width: 200px;
  margin: 0 auto;
}

/* ======================================================================
   Como funciona
   ====================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 54px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.step h3 { font-size: 1.2rem; }
.step p { color: #aebccb; font-size: .94rem; margin: 0; }

/* ======================================================================
   Pacotes / Preços
   ====================================================================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
  align-items: stretch;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.plan--featured:hover { transform: translateY(-4px); }
.plan-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.7rem; margin-bottom: .1em; }
.plan .plan-sub { color: var(--muted); font-size: .92rem; min-height: 42px; margin-bottom: 18px; }
.plan .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan .price .cur { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.plan .price .val {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.plan .price .once { font-size: .9rem; color: var(--muted); }
.plan .installment {
  font-size: .88rem;
  color: var(--muted);
  margin: 6px 0 0;
}
.plan .installment b { color: var(--navy); font-weight: 600; }
.plan .annual {
  font-size: .9rem;
  color: var(--muted);
  padding-bottom: 22px;
  margin-bottom: 22px;
  margin-top: 14px;
  border-bottom: 1px dashed var(--line);
}
.plan .annual b { color: var(--navy); }
.plan ul {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: grid; gap: 12px;
  flex: 1;
}
.plan ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .94rem;
  color: var(--ink);
}
.plan ul li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.plan ul li.off { color: #b3bcc6; }
.plan ul li.off svg { color: #cdd4dc; }

.pricing-note {
  text-align: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: .9rem;
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  margin: 24px auto 0;
  padding: 20px 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.guarantee-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  flex: none;
}
.guarantee-ico svg { width: 24px; height: 24px; }
.guarantee strong { display: block; color: var(--navy); font-size: 1.02rem; }
.guarantee span { color: var(--muted); font-size: .92rem; }

/* ======================================================================
   OAB / Confiança
   ====================================================================== */
.oab {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.oab-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}
.oab ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.oab li { display: flex; gap: 14px; align-items: flex-start; }
.oab li .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--gold);
  display: grid; place-items: center;
  flex: none;
}
.oab li .ico svg { width: 21px; height: 21px; }
.oab li strong { display: block; color: var(--navy); }
.oab li span { color: var(--muted); font-size: .94rem; }

/* ======================================================================
   FAQ
   ====================================================================== */
.faq { max-width: 820px; margin: 50px auto 0; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  margin-bottom: 14px;
  background: var(--paper);
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 18px; }

/* ======================================================================
   CTA final
   ====================================================================== */
.cta-final {
  background:
    linear-gradient(rgba(14,27,44,.86), rgba(14,27,44,.92)),
    var(--cta-bg, var(--navy)) center/cover;
  color: #fff;
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: #c4d0dd; max-width: 560px; margin: 0 auto 28px; font-size: 1.15rem; }

/* ======================================================================
   Footer
   ====================================================================== */
.site-footer {
  background: #0a1422;
  color: #8a99aa;
  padding: 56px 0 30px;
  font-size: .92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-top .brand { color: #fff; margin-bottom: 14px; }
.footer-top p { max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col a { display: block; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: #6f7e8f;
}

/* ======================================================================
   WhatsApp flutuante
   ====================================================================== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whats);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whats);
  animation: wa-pulse 2.2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ======================================================================
   Responsivo
   ====================================================================== */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
    background-position: 62% center;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(10,20,34,.96), rgba(10,20,34,.76)),
      linear-gradient(180deg, rgba(10,20,34,.28), rgba(10,20,34,.90));
  }
  .hero .wrap { min-height: auto; padding-top: 76px; padding-bottom: 76px; }
  .argbar .wrap { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { transform: none; order: -1; }
  .plan--featured:hover { transform: translateY(-4px); }
  .oab { grid-template-columns: 1fr; }
  .oab-visual { max-width: 420px; margin: 0 auto; }
  .statsbar .wrap { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .statsbar .stat:nth-child(odd)::before { display: none; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 34px; }
  .spotlight-visual { max-width: 520px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .slide { flex-basis: calc((100% - 26px) / 2); }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 22px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a.navlink { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a.navlink::after { display: none; }
  .nav .btn { margin-top: 14px; justify-content: center; }
  .nav-toggle { display: block; }
  .section { padding: 66px 0; }
  .wrap { padding: 0 22px; }
  .brand { font-size: 1.25rem; }
  .brand small { font-size: .58rem; letter-spacing: .18em; }
  .hero {
    background-position: 58% center;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(10,20,34,.93) 0%, rgba(10,20,34,.82) 52%, rgba(10,20,34,.94) 100%);
  }
  .hero .wrap { padding-top: 58px; padding-bottom: 64px; }
  .hero h1 {
    font-size: clamp(2.28rem, 10.8vw, 3.05rem);
    line-height: 1.02;
  }
  .hero p.sub { font-size: 1.08rem; }
  .hero-cta { display: grid; gap: 12px; max-width: 260px; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-trust { display: grid; gap: 10px; }
  .steps { grid-template-columns: 1fr; }
  .slide { flex-basis: 86%; }
  .argbar .wrap { grid-template-columns: 1fr; gap: 16px; }
  .statsbar .wrap { grid-template-columns: 1fr; gap: 28px; }
  .statsbar .stat::before { display: none !important; }
  .guarantee { flex-direction: column; text-align: center; }
}
