/* ===========================================================
   PERFECT CIRURGIA PLÁSTICA — Estilo elegante e clean
   =========================================================== */

:root {
  /* Paleta baseada no logo Perfect — turquesa/teal + preto */
  --gold: #0d8a8f;        /* teal principal */
  --gold-light: #35bcc2;  /* turquesa claro */
  --gold-dark: #0a6b6f;   /* teal escuro */
  --rose: #8fc4c4;
  --ink: #15201f;
  --ink-soft: #5a6463;
  --cream: #f4faf9;
  --cream-2: #e4f2f1;
  --white: #ffffff;
  --line: #d6e8e6;
  --shadow: 0 18px 50px rgba(13, 60, 60, 0.12);
  --shadow-sm: 0 8px 24px rgba(13, 60, 60, 0.09);
  --radius: 18px;
  --maxw: 1200px;
  --font: "Jost", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

.serif { font-family: var(--serif); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); }
.section-head p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2.1rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s ease;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(13,138,143,.38); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold-dark); }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--cream-2); transform: translateY(-3px); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.4rem 0; transition: all .4s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  padding: .8rem 0;
  box-shadow: 0 6px 24px rgba(13,60,60,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: .55rem; }
.logo-mark { height: 46px; width: auto; flex-shrink: 0; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo .name { font-family: var(--font); font-size: 1.7rem; font-weight: 400; letter-spacing: .005em; color: var(--ink); text-transform: lowercase; }
.logo .tag { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-dark); margin-top: 4px; font-weight: 500; }
.header:not(.scrolled) .logo .name,
.header.transparent:not(.scrolled) .logo .name { color: var(--white); }
.header:not(.scrolled).transparent .logo .tag { color: var(--gold-light); }

.menu { display: flex; gap: 2.4rem; align-items: center; list-style: none; }
.menu a {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: .3rem 0; color: var(--ink); transition: color .3s;
}
.header.transparent:not(.scrolled) .menu a { color: rgba(255,255,255,.92); }
.menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width .3s;
}
.menu a:hover::after, .menu a.active::after { width: 100%; }
.menu a:hover, .menu a.active { color: var(--gold-dark); }
.header.transparent:not(.scrolled) .menu a:hover { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone { font-size: .85rem; font-weight: 600; letter-spacing: .04em; }
.header.transparent:not(.scrolled) .nav-phone { color: var(--white); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }
.header.transparent:not(.scrolled) .burger span { background: var(--white); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  background: linear-gradient(120deg, #0a1716 0%, #0e2625 45%, #123a38 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(53,188,194,.30), transparent 55%),
              radial-gradient(circle at 15% 80%, rgba(13,138,143,.22), transparent 50%);
}
.hero-deco {
  position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  border: 1px solid rgba(53,188,194,.28);
}
.hero-deco::after {
  content: ""; position: absolute; inset: 60px; border-radius: 50%;
  border: 1px solid rgba(53,188,194,.20);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding-top: 4rem; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--white); letter-spacing: .01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.18rem; margin: 1.6rem 0 2.5rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-since {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); font-size: .78rem; letter-spacing: .3em; text-transform: uppercase; z-index: 2;
}

/* Selo comemorativo "20 ANOS" no cabeçalho (fácil de remover) */
.seal-20 { height: 42px; width: auto; align-self: center; margin-left: .8rem; padding-left: .9rem; border-left: 1px solid rgba(255,255,255,.28); }
.header.scrolled .seal-20 { border-left-color: var(--line); }

/* Foto opcional dentro do círculo do hero */
.hero-photo {
  position: absolute; right: 7%; top: 50%; transform: translateY(-50%);
  width: 430px; height: 430px; border-radius: 50%; object-fit: cover; z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,.45); border: 6px solid rgba(255,255,255,.1);
}
@media (max-width: 1100px) { .hero-photo { width: 320px; height: 320px; right: 3%; } }
@media (max-width: 900px) { .hero-photo { display: none; } }

/* page banner (interior pages) */
.banner {
  min-height: 56vh; display: flex; align-items: center; position: relative;
  background: linear-gradient(120deg, #0a1716 0%, #0e2625 50%, #123a38 100%);
  overflow: hidden; padding-top: 6rem;
}
.banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(53,188,194,.28), transparent 55%);
}
.banner-content { position: relative; z-index: 2; }
.banner h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: var(--white); }
.banner .crumbs { color: rgba(255,255,255,.6); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 1rem; }
.banner .crumbs a:hover { color: var(--gold-light); }

/* ---------- Diferenciais ---------- */
.features { background: var(--white); margin-top: -70px; position: relative; z-index: 5; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature {
  padding: 3rem 2rem; text-align: center; border-right: 1px solid var(--line);
  transition: background .4s, transform .4s;
}
.feature:last-child { border-right: none; }
.feature:hover { background: var(--cream); transform: translateY(-6px); }
.feature .ic {
  width: 64px; height: 64px; margin: 0 auto 1.3rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream-2); color: var(--gold-dark);
  transition: all .4s;
}
.feature:hover .ic { background: var(--gold); color: var(--white); transform: rotate(8deg) scale(1.08); }
.feature h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.feature p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 480px; object-fit: cover; }
.split-media .badge {
  position: absolute; bottom: -28px; left: -28px; background: var(--gold);
  color: var(--white); padding: 1.6rem 2rem; border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow);
}
.split-media .badge .num { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; line-height: 1; }
.split-media .badge .lbl { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.split-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 1.3rem; }
.split-text p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.split-text .btn { margin-top: 1rem; }

/* ---------- Ethics banner ---------- */
.quote-band {
  background: var(--cream-2); text-align: center; position: relative;
}
.quote-band .container { max-width: 860px; }
.quote-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--ink); margin-bottom: 1.3rem; }
.quote-band p { color: var(--ink-soft); font-size: 1.05rem; }
.quote-mark { font-family: var(--serif); font-size: 5rem; color: var(--gold-light); line-height: .5; }

/* ---------- Categories ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cat-card {
  background: var(--white); border-radius: var(--radius); padding: 3rem 2.2rem; text-align: center;
  border: 1px solid var(--line); transition: all .4s; position: relative; overflow: hidden;
}
.cat-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.cat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card .ic {
  width: 84px; height: 84px; margin: 0 auto 1.5rem; border-radius: 50%;
  background: var(--cream); color: var(--gold-dark); display: grid; place-items: center; transition: all .4s;
}
.cat-card:hover .ic { background: var(--gold); color: var(--white); }
.cat-card h3 { font-size: 1.7rem; margin-bottom: .8rem; }
.cat-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.5rem; }
.cat-card .link { color: var(--gold-dark); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.cat-card .link:hover { color: var(--gold); }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(120deg, #0e2625, #123a38); color: var(--white);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat .num { font-family: var(--serif); font-size: 3.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat .lbl { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: .6rem; }

/* ---------- Procedures gallery ---------- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-bottom: 3rem; }
.filter-btn {
  padding: .7rem 1.8rem; border-radius: 50px; border: 1px solid var(--line); background: var(--white);
  font-family: var(--font); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-soft); cursor: pointer; transition: all .3s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.proc-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden;
  transition: all .4s; display: flex; flex-direction: column;
}
.proc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.proc-card .top {
  height: 150px; background: linear-gradient(135deg, var(--cream-2), var(--cream));
  display: grid; place-items: center; color: var(--gold); position: relative;
}
.proc-card .tag {
  position: absolute; top: 1rem; left: 1rem; background: var(--white); color: var(--gold-dark);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: .35rem .9rem; border-radius: 50px;
}
.proc-card .body { padding: 1.7rem; flex: 1; display: flex; flex-direction: column; }
.proc-card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.proc-card p { color: var(--ink-soft); font-size: .9rem; flex: 1; }
.proc-card .more { margin-top: 1.2rem; color: var(--gold-dark); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.is-hidden { display: none !important; }
.proc-card .more { cursor: pointer; background: none; border: none; padding: 0; text-align: left; }

/* ---------- Instagram ---------- */
.insta-section .section-head h2 a { color: var(--gold-dark); }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.ig-card {
  position: relative; display: block; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: var(--shadow-sm);
}
.ig-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.ig-card:hover img { transform: scale(1.05); }
.ig-ph { width: 100%; height: 100%; display: grid; place-items: center; color: #fff; opacity: .9; }
.ig-ov {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; color: #fff; background: rgba(13, 60, 60, .38); opacity: 0; transition: opacity .25s;
  text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 500;
}
.ig-card:hover .ig-ov { opacity: 1; }
/* quando um widget (LightWidget/SnapWidget) é usado, ocupa a largura toda */
.insta-grid.insta-widget { display: block; }
.insta-grid.insta-widget iframe { width: 100%; border: 0; }
@media (max-width: 900px) { .insta-grid:not(.insta-widget) { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 1rem; overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.4rem 1.7rem; font-family: var(--serif); font-size: 1.22rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .sign { color: var(--gold); font-size: 1.6rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 1.7rem 1.5rem; color: var(--ink-soft); }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.info-block { margin-bottom: 2rem; display: flex; gap: 1.2rem; align-items: flex-start; }
.info-block .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--cream-2); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; }
.info-block h4 { font-family: var(--font); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .25rem; }
.info-block p { color: var(--ink-soft); }
.info-block a:hover { color: var(--gold-dark); }

.form-card { background: var(--white); border-radius: var(--radius); padding: 2.8rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.form-card h3 { font-size: 1.8rem; margin-bottom: .4rem; }
.form-card .sub { color: var(--ink-soft); margin-bottom: 1.8rem; font-size: .95rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font); font-size: .95rem; color: var(--ink); background: var(--cream); transition: border .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(13,138,143,.18); background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 1rem; }
.form-success {
  display: none; background: #eef6ec; border: 1px solid #cfe6c8; color: #3f7a36;
  padding: 1rem 1.2rem; border-radius: 10px; margin-top: 1rem; font-size: .92rem;
}
.form-success.show { display: block; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 1rem; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, #0e2625, #123a38); color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 0%, rgba(53,188,194,.28), transparent 60%); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.footer { background: #0a1716; color: rgba(255,255,255,.7); padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer h4 { font-family: var(--font); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.3rem; }
.footer-logo { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.2rem; }
.footer-logo .logo-mark { height: 44px; width: auto; }
.footer .name { font-family: var(--font); font-weight: 400; font-size: 1.7rem; color: var(--white); text-transform: lowercase; line-height: 1; }
.footer .tag { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); margin-top: 4px; }
.footer p { font-size: .92rem; margin-bottom: .6rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a { font-size: .92rem; transition: color .3s; }
.footer ul a:hover, .footer a:hover { color: var(--gold-light); }
.socials { display: flex; gap: .8rem; margin-top: 1rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: all .3s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.6rem 0; text-align: center; font-size: .82rem; }
.footer-bottom .crm { color: rgba(255,255,255,.5); margin-top: .3rem; }

/* ---------- WhatsApp float ---------- */
.wpp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 62px; height: 62px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .3s; animation: wpp-pulse 2.5s infinite;
}
.wpp-float:hover { transform: scale(1.1); }
.wpp-float svg { width: 32px; height: 32px; }
@keyframes wpp-pulse {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Scroll reveal ---------- */
/* Só oculta para animar quando o JS está ativo; sem JS, tudo aparece normalmente. */
.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ---------- Mobile menu panel ---------- */
.mobile-panel {
  position: fixed; inset: 0; background: rgba(10,23,22,.98); z-index: 1100;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  transform: translateX(100%); transition: transform .4s ease;
}
.mobile-panel.open { transform: none; }
.mobile-panel a { color: #fff; font-family: var(--serif); font-size: 1.8rem; }
.mobile-panel a:hover { color: var(--gold-light); }
.mobile-close { position: absolute; top: 1.6rem; right: 1.6rem; background: none; border: none; color: #fff; font-size: 2.4rem; cursor: pointer; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: none; }
  .cats, .stats-grid, .proc-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .split-media img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu, .nav-phone { display: none; }
  .burger { display: flex; }
}
@media (max-width: 620px) {
  .section { padding: 4rem 0; }
  .features-grid, .cats, .stats-grid, .proc-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--line); }
  .split-media .badge { left: 50%; transform: translateX(-50%); bottom: -24px; }
  .hero h1 { font-size: 2.6rem; }
  .seal-20 { height: 30px; margin-left: .5rem; padding-left: .5rem; }
}
