/* ===== Design tokens ===== */
:root {
  --petrol: #1b424e;
  --petrol-dark: #142f38;
  --petrol-soft: #2c5561;
  --cream: #fffbf8;
  --cream-2: #f6efe7;
  --brown: #502c1e;
  --sand: #cbb79f;
  --ink: #20363d;
  --muted: #5f7178;
  --line: #e7ddd0;

  --serif: "Cinzel", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;

  --maxw: 1160px;
  --radius: 14px;
  --shadow: 0 18px 50px -24px rgba(20, 47, 56, .35);
  --shadow-lg: 0 30px 70px -30px rgba(20, 47, 56, .5);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.24; color: var(--petrol); letter-spacing: .5px; }
h1 { font-size: clamp(1.65rem, 3.2vw, 2.5rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-size: 1.15rem; letter-spacing: .3px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 1rem;
}

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100;
  background: linear-gradient(90deg, var(--brown), var(--sand));
  transform: scaleX(0); transform-origin: left; will-change: transform;
}

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--rd, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  background: var(--petrol);
  color: var(--cream);
  border: 1.5px solid var(--petrol);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { background: var(--petrol-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-ghost { background: transparent; color: var(--petrol); border-color: var(--sand); }
.btn-ghost:hover { background: var(--cream-2); color: var(--petrol); }
.btn-light { background: var(--cream); color: var(--petrol); border-color: var(--cream); }
.btn-light:hover { background: #fff; color: var(--petrol-dark); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 248, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(20,47,56,.4); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; }
.brand { display: flex; align-items: center; }
.brand-mark { height: 40px; width: auto; display: block; transition: transform .3s ease; }
.brand:hover .brand-mark { transform: scale(1.03); }
.nav { display: flex; gap: 1.5rem; margin-left: auto; }
.nav a { font-size: .88rem; font-weight: 500; color: var(--ink); position: relative; padding: .3rem 0; white-space: nowrap; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--brown); transition: width .25s ease; }
.nav a:hover::after { width: 100%; }
.btn-header { padding: .65rem 1.35rem; font-size: .88rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2px; background: var(--petrol); transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: flex; flex-direction: column; gap: 1rem; padding: 1.2rem 24px 1.8rem; border-top: 1px solid var(--line); background: var(--cream); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) { font-weight: 500; padding: .4rem 0; }

/* ===== Hero (banner com Samer à direita) ===== */
.hero {
  position: relative; overflow: hidden; color: var(--cream);
  min-height: min(74vh, 660px); display: flex; align-items: center;
  background:
    linear-gradient(90deg, rgba(15,38,46,.94) 0%, rgba(15,38,46,.8) 34%, rgba(15,38,46,.4) 54%, rgba(15,38,46,.05) 72%, rgba(15,38,46,0) 82%),
    url('assets/web/hero-desktop.webp?v=5') right center / cover no-repeat;
  background-color: var(--petrol-dark);
}
.hero-inner {
  position: relative; width: 100%;
  padding: clamp(2.4rem, 4vw, 3.6rem) 24px clamp(2.4rem, 4vw, 3.6rem);
}
.hero-text { max-width: 620px; }
.hero-mobile-photo { display: none; }
.eyebrow-light { color: var(--sand); }
.hero h1 { color: var(--cream); margin-bottom: 1.1rem; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero .lead { font-size: 1.05rem; color: rgba(255,251,248,.86); max-width: 46ch; margin: 0 0 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.9rem; }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(255,251,248,.4); }
.btn-outline-light:hover { background: rgba(255,251,248,.1); color: var(--cream); border-color: rgba(255,251,248,.65); }
.hero-trust {
  list-style: none; padding: 1.2rem 0 0; margin: 0; display: flex; flex-wrap: wrap;
  gap: .7rem 1.7rem; border-top: 1px solid rgba(255,251,248,.18);
}
.hero-trust li { font-size: .88rem; color: rgba(255,251,248,.8); white-space: nowrap; }
.hero-trust strong { color: var(--cream); font-weight: 600; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* ===== Marquee (loop infinito, dois grupos de largura >= 100%) ===== */
.marquee {
  display: flex; overflow: hidden;
  background: var(--petrol-dark); padding: 1.05rem 0;
  border-top: 1px solid rgba(203,183,159,.18); border-bottom: 1px solid rgba(203,183,159,.18);
}
.marquee-group {
  flex: 0 0 auto; min-width: 100%;
  display: flex; align-items: center; justify-content: space-around; gap: 2.5rem;
  white-space: nowrap; will-change: transform;
  animation: marquee 30s linear infinite;
}
.m-item { font-family: var(--serif); font-size: 1rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); }
.m-dot { color: var(--sand); font-size: .6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-alt { background: var(--cream-2); }
/* offset da âncora para o header fixo não cortar o topo da seção */
section[id], footer[id] { scroll-margin-top: 92px; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; }

.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.about-copy p { color: var(--muted); margin-top: 1rem; }
.about-copy strong { color: var(--ink); font-weight: 600; }
.about-highlights { display: flex; gap: 1.5rem; margin-top: 2.2rem; flex-wrap: wrap; }
.highlight { display: flex; align-items: center; gap: .7rem; }
.highlight-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--brown); line-height: 1; }
.highlight-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.about-figure { display: flex; justify-content: center; }
.about-logo { width: min(100%, 380px); }
.about-photo-wrap { position: relative; width: min(100%, 460px); }
.about-photo { width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.about-photo-wrap::before {
  content: ""; position: absolute; inset: -14px -14px 24px 24px; z-index: -1;
  border: 1px solid var(--sand); border-radius: 20px;
}

/* ===== O Advogado (bio) ===== */
.bio-grid { align-items: center; }
.bio-figure { display: flex; justify-content: center; }
.bio-photo-wrap { position: relative; width: min(100%, 380px); }
.bio-photo { width: 100%; border-radius: 200px 200px var(--radius) var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.bio-photo-wrap::before { content: ""; position: absolute; inset: -16px -16px 34px; border: 1px solid var(--sand); border-radius: 216px 216px 20px 20px; z-index: -1; }
.bio-badge { position: absolute; right: -14px; bottom: 20px; background: var(--cream); border-radius: 50%; padding: 9px; box-shadow: var(--shadow); }
.bio-badge img { width: 96px; height: 96px; }
.bio-copy .bio-role { color: var(--brown); font-weight: 600; letter-spacing: .04em; margin: .4rem 0 1.2rem; }
.bio-copy p { color: var(--muted); margin-top: 1rem; }
.bio-copy strong { color: var(--ink); font-weight: 600; }
.bio-copy .btn { margin-top: 1.9rem; }

/* ===== Cards (áreas) ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line); border-radius: 18px;
  padding: 2.4rem 2rem 2.1rem;
  box-shadow: 0 1px 2px rgba(20,47,56,.04);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, background .45s ease, border-color .45s ease;
}
/* número em marca-d'água */
.card::before {
  content: attr(data-num);
  position: absolute; top: .2rem; right: 1.1rem;
  font-family: var(--serif); font-size: 5rem; font-weight: 700; line-height: 1;
  color: var(--sand); opacity: .16; z-index: -1;
  transition: opacity .45s ease, color .45s ease, transform .45s ease;
}
/* acento inferior */
.card::after {
  content: ""; position: absolute; left: 2rem; right: 2rem; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--brown), var(--sand));
  transform: scaleX(0); transform-origin: left; transition: transform .5s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--petrol);
  background: linear-gradient(158deg, var(--petrol) 0%, var(--petrol-dark) 100%);
}
.card:hover::after { transform: scaleX(1); }
.card:hover::before { color: var(--cream); opacity: .12; transform: translateY(-3px); }

.card-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--cream-2); color: var(--petrol); margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  transition: background .45s ease, color .45s ease, transform .45s ease, border-color .45s ease;
}
.card:hover .card-icon {
  background: var(--sand); color: var(--petrol-dark); border-color: transparent;
  transform: translateY(-3px) rotate(-5deg) scale(1.04);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .7rem; transition: color .45s ease; }
.card p { color: var(--muted); font-size: .96rem; transition: color .45s ease; }
.card:hover h3 { color: var(--cream); }
.card:hover p { color: rgba(255,251,248,.82); }

.card-tag {
  align-self: flex-start; margin-top: 1.4rem;
  font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em;
  color: var(--brown); background: var(--cream-2);
  padding: .35rem .8rem; border-radius: 999px; border: 1px solid var(--line);
  transition: color .45s ease, background .45s ease, border-color .45s ease;
}
.card:hover .card-tag { color: var(--petrol-dark); background: var(--sand); border-color: transparent; }

/* card CTA (destaque escuro) */
.card-cta { background: linear-gradient(158deg, var(--petrol) 0%, var(--petrol-dark) 100%); border-color: var(--petrol); color: var(--cream); }
.card-cta::before { content: ""; }
.card-cta:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); background: linear-gradient(158deg, var(--petrol-dark) 0%, #0f262d 100%); }
.card-cta:hover::after { transform: scaleX(1); }
.card-cta::after { background: linear-gradient(90deg, var(--sand), var(--cream)); }
.card-cta-inner { flex: 1; }
.card-cta h3 { color: var(--cream); }
.card-cta p { color: rgba(255,251,248,.8); }
.link-arrow { margin-top: 1.6rem; color: var(--sand); font-weight: 600; font-size: .95rem; transition: color .25s ease, letter-spacing .25s ease; }
.card-cta:hover .link-arrow { color: var(--cream); letter-spacing: .04em; }

/* ===== Método (processo, dark) ===== */
.metodo { position: relative; overflow: hidden; color: var(--cream);
  background: linear-gradient(165deg, #12303a 0%, var(--petrol) 55%, #0f2831 100%); }
.metodo .section-head h2 { color: var(--cream); }
.metodo-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 12% 0%, rgba(203,183,159,.14), transparent 70%),
              radial-gradient(520px 320px at 100% 100%, rgba(203,183,159,.08), transparent 70%); }
.flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-top: 34px; }
.flow::before, .flow::after { content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; }
.flow::before { background: rgba(203,183,159,.22); }
.flow::after { background: linear-gradient(90deg, var(--sand), var(--brown));
  transform: scaleX(0); transform-origin: left; transition: transform 1.6s cubic-bezier(.4,0,.2,1) .2s; }
.flow.is-visible::after { transform: scaleX(1); }
.flow-item { position: relative; display: flex; flex-direction: column; }
.flow-node { width: 68px; height: 68px; border-radius: 50%; margin: -34px auto 1.5rem;
  background: var(--petrol); border: 2px solid var(--sand); display: grid; place-items: center;
  position: relative; z-index: 2; box-shadow: 0 0 0 7px rgba(16,40,49,.85);
  transition: background .35s ease, transform .35s ease; }
.flow-node span { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--sand); transition: color .35s ease; }
.flow-item:hover .flow-node { background: var(--sand); transform: translateY(-4px) scale(1.06); }
.flow-item:hover .flow-node span { color: var(--petrol-dark); }
.flow-card { position: relative; overflow: hidden; text-align: center; flex: 1;
  background: rgba(255,251,248,.05); border: 1px solid rgba(255,251,248,.13); border-radius: 18px;
  padding: 2rem 1.5rem 1.8rem; backdrop-filter: blur(6px);
  transition: transform .4s ease, background .4s ease, border-color .4s ease, box-shadow .4s ease; }
.flow-item:hover .flow-card { transform: translateY(-8px); background: rgba(255,251,248,.09);
  border-color: rgba(203,183,159,.5); box-shadow: 0 30px 60px -30px rgba(0,0,0,.55); }
.flow-icon { width: 54px; height: 54px; margin: 0 auto 1.2rem; border-radius: 14px; display: grid; place-items: center;
  background: rgba(203,183,159,.14); color: var(--sand);
  transition: transform .4s ease, background .4s ease, color .4s ease; }
.flow-item:hover .flow-icon { background: var(--sand); color: var(--petrol-dark); transform: rotate(-5deg) scale(1.05); }
.flow-icon svg { width: 26px; height: 26px; }
.flow-card h3 { color: var(--cream); margin-bottom: .6rem; font-size: 1.1rem; }
.flow-card p { color: rgba(255,251,248,.72); font-size: .93rem; }

/* ===== Depoimentos (editorial) ===== */
.reviews-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3.5rem; align-items: center; }
.reviews-intro { position: relative; }
.reviews-intro h2 { margin-bottom: 1.4rem; }
.rating-chip { display: inline-flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1.1rem; box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.rc-stars { color: var(--sand); letter-spacing: .12em; font-size: 1rem; }
.rc-label { font-size: .74rem; font-weight: 600; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.reviews-lead { color: var(--muted); max-width: 44ch; }
.giant-quote { position: absolute; right: -.5rem; bottom: -4.5rem; font-family: var(--serif); font-size: 13rem;
  line-height: 1; color: var(--sand); opacity: .15; pointer-events: none; z-index: 0; }
.reviews-stack { display: flex; flex-direction: column; gap: 1.2rem; position: relative; z-index: 1; }
.rv-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.6rem 1.8rem; box-shadow: var(--shadow);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease; }
.rv-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--brown), var(--sand)); }
.rv-card:nth-child(2) { margin-left: 2.6rem; }
.rv-card:nth-child(3) { margin-left: 5.2rem; }
.rv-card:hover { transform: translateX(8px) translateY(-4px); box-shadow: var(--shadow-lg); }
.rv-mark { font-family: var(--serif); font-size: 2.6rem; line-height: .4; color: var(--sand); display: block; height: 1.05rem; }
.rv-stars { color: var(--sand); letter-spacing: .2em; font-size: .9rem; margin: .9rem 0 .7rem; }
.rv-card p { color: var(--ink); font-style: italic; font-size: 1rem; margin-bottom: 1.2rem; }
.rv-foot { display: flex; align-items: center; gap: .7rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.rv-foot img { width: 34px; height: 34px; opacity: .55; }
.rv-line { display: block; flex: 1; max-width: 100px; height: 9px; border-radius: 5px; background: var(--cream-2); }

/* ===== CTA final ===== */
.cta-final { background: var(--petrol); color: var(--cream); text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.cta-inner { max-width: 640px; }
.cta-final h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-final p { color: rgba(255,251,248,.82); font-size: 1.08rem; margin-bottom: 2.2rem; }

/* ===== Footer ===== */
.site-footer { background: var(--petrol-dark); color: rgba(255,251,248,.75); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { width: 190px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1.2rem; }
.footer-oab { font-size: .88rem; line-height: 1.7; }
.footer-col h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; color: var(--sand); margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .7rem; font-size: .92rem; }
.footer-links a { transition: color .2s ease, padding-left .2s ease; }
.footer-links a:hover { color: var(--cream); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,251,248,.12); padding-block: 1.8rem 2.5rem; display: flex; flex-direction: column; gap: .8rem; }
.footer-bottom p { font-size: .82rem; }
.footer-disclaimer { color: rgba(255,251,248,.5); max-width: 70ch; }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px -6px rgba(37,211,102,.55);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px -6px rgba(37,211,102,.7); animation: none; }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 28px -6px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 28px -6px rgba(37,211,102,.55), 0 0 0 12px rgba(37,211,102,0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav, .btn-header { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 900px) {
  /* hero mobile: Samer no topo (sem nada na frente), texto embaixo no escuro */
  .hero {
    min-height: auto; display: block; text-align: center;
    background: var(--petrol-dark);
  }
  .hero-mobile-photo {
    display: block; width: 100%; height: 88vw; max-height: 470px;
    background:
      linear-gradient(180deg, rgba(15,38,46,0) 48%, rgba(15,38,46,.5) 72%, rgba(15,38,46,.9) 90%, var(--petrol-dark) 100%),
      url('assets/web/hero-mobile.webp?v=5') center top / cover no-repeat;
  }
  .hero-inner { padding-top: .5rem; padding-bottom: 2.8rem; }
  .hero-text { max-width: none; }
  .hero .lead { max-width: none; margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-figure { order: -1; }
  .about-logo { width: 260px; }
  .bio-photo-wrap { width: min(72%, 320px); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* processo: 2x2, sem a linha horizontal */
  .flow { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; padding-top: 0; }
  .flow::before, .flow::after { display: none; }
  .flow-node { margin-top: 0; }
  /* depoimentos: empilha */
  .reviews-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .giant-quote { display: none; }
  .reviews-stack { max-width: 520px; }
  .rv-card:nth-child(2), .rv-card:nth-child(3) { margin-left: 0; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .brand-mark { height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .timeline::after { transform: none !important; }
}
