:root {
  --bg: #FBF6F0;
  --bg-warm: #F4ECE0;
  --ink: #1A2434;
  --ink-soft: #4B5566;
  --muted: #8A8A8A;
  --line: rgba(26, 36, 52, 0.10);
  --line-soft: rgba(26, 36, 52, 0.06);
  --coral: #E85D3F;
  --coral-soft: #FBE4DD;
  --coral-tint: #FCEFE9;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(26, 36, 52, 0.04);
  --shadow-md: 0 8px 28px rgba(26, 36, 52, 0.06);

  --serif: "Newsreader", "Times New Roman", serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --content-w: 1280px;
  --pad-x: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

.wrap {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---------- NAV ---------- */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 240, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 10px;
  background-image: url("assets/commonvox-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex: 0 0 auto;
}
.brand-mark.full {
  width: 46px; height: 46px;
  background-size: cover;
  background-position: center;
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 15px;
  color: var(--ink);
  transition: color .15s;
}
.nav-links a:hover { color: var(--coral); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 14px rgba(232, 93, 63, 0.22);
}
.btn-primary:hover { background: #D9523A; transform: translateY(-1px); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

.menu-toggle { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(80px, 14vh, 160px);
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 90% 30%, rgba(232,93,63,0.06) 0%, transparent 70%),
    radial-gradient(70% 60% at 0% 100%, rgba(232,93,63,0.04) 0%, transparent 70%),
    var(--bg);
}
.hero-watermark img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.hero-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-40%);
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  width: clamp(340px, 36vw, 560px);
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral-tint);
  color: var(--coral);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pill::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
}
.pill.plain::before { display: none; }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 28px 0 0;
  max-width: 980px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex; gap: 0;
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  max-width: 520px;
  box-shadow: var(--shadow-sm);
}
.hero-trust .cell {
  flex: 1;
  padding: 22px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.4;
  border-right: 1px solid var(--line-soft);
}
.hero-trust .cell:last-child { border-right: 0; }

/* ---------- SECTION SHELL ---------- */
section { position: relative; }
.sec {
  padding: clamp(80px, 11vh, 140px) 0;
}
.sec-head {
  max-width: 720px;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 22px 0 0;
}
.sec-title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.sec-lede {
  margin-top: 22px;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.65;
}

/* ---------- ABOUT ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 50% 50%, #fff 0%, var(--bg) 100%);
  overflow: hidden;
}
.about-visual .wm {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  opacity: 0.18;
}
.about-visual .wm img { width: 52%; height: auto; mix-blend-mode: multiply; }
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}
.float-card.bp {
  top: 32px; left: 32px;
  min-width: 200px;
}
.float-card.bp .t1 { font-weight: 600; font-size: 15px; color: var(--ink); }
.float-card.bp .t2 { font-size: 12px; color: var(--muted); margin-top: 2px; }
.float-card.reg {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  padding: 18px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 18px 40px rgba(232, 93, 63, 0.28);
  white-space: nowrap;
}
.float-card.reg .l1 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; opacity: 0.9; }
.float-card.reg .l2 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 4px 0 2px; letter-spacing: 0.01em; }
.float-card.reg .l3 { font-size: 12px; opacity: 0.9; }

.about-feats {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.feat-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.feat-row strong { color: var(--ink); font-weight: 600; }

/* ---------- SOLUÇÕES ---------- */
.sol-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sol-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sol-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 93, 63, 0.30);
}
.sol-num {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--coral);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.02em;
}
.sol-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--coral-tint);
  color: var(--coral);
  display: grid; place-items: center;
}
.sol-name {
  margin: 60px 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.sol-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}
.tag-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.tag {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 500;
}

/* ---------- PROCESSO ---------- */
.processo {
  background: var(--coral);
  color: #fff;
  overflow: hidden;
}
.processo .pill {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.processo .pill::before { background: #fff; }
.processo .sec-title { color: #fff; }
.processo .sec-lede { color: rgba(255, 255, 255, 0.86); }
.steps {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  transition: background .2s ease;
}
.step:hover { background: rgba(255, 255, 255, 0.14); }
.step-num {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: grid; place-items: center;
  margin: 0 auto 22px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.step-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
}
.step-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

/* ---------- PORQUÊ ---------- */
.why-grid {
  margin-top: clamp(40px, 5vw, 56px);
  display: flex; flex-direction: column;
}
.why-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.why-row:last-child { border-bottom: 1px solid var(--line); }
.why-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  display: grid; place-items: center;
}
.why-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 6px 0 6px;
}
.why-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 820px;
}
.why-desc strong { color: var(--ink); font-weight: 600; }

/* ---------- PARCEIROS ---------- */
.parceiros {
  background: var(--bg-warm);
  padding: clamp(60px, 8vh, 96px) 0;
  text-align: center;
}
.parceiros .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.parc-card {
  margin: 28px auto 0;
  max-width: 620px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.parc-card strong { color: var(--ink); font-weight: 600; }

.simplefy {
  margin: 32px auto 0;
  max-width: var(--content-w);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  display: flex; align-items: center; gap: 28px;
  text-align: left;
}
.simplefy-logo {
  background: var(--ink);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.simplefy-meta { display: flex; flex-direction: column; gap: 2px; }
.simplefy-meta .t1 { font-weight: 600; font-size: 15px; color: var(--ink); }
.simplefy-meta .t2 { font-size: 12px; color: var(--muted); }
.simplefy-body {
  flex: 1;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.simplefy-body strong { color: var(--ink); font-weight: 600; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  padding: clamp(80px, 12vh, 140px) 0;
  text-align: center;
}
.cta-strip .sec-title { margin-left: auto; margin-right: auto; }
.cta-strip .sec-lede { margin-left: auto; margin-right: auto; }
.cta-strip .hero-ctas { justify-content: center; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-brand .brand-mark {
  background-color: transparent;
  background-image: none;
  border: 1.5px solid var(--coral);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--coral);
}
.foot-brand .brand-mark::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url("assets/commonvox-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-sub { color: rgba(255,255,255,0.6); }
.foot-about {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}
.foot-col h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.foot-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.foot-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.82);
  transition: color .15s;
}
.foot-col a:hover { color: var(--coral); }
.foot-bot {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bot .reg { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- CONTACT FORM ---------- */
.contact-form {
  max-width: 560px;
  margin: 40px auto 0;
  display: grid;
  gap: 18px;
  text-align: left;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  gap: 8px;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  line-height: 1.5;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 93, 63, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button[type="submit"] {
  justify-self: start;
  margin-top: 4px;
}
.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  text-align: center;
}
.form-note a { color: var(--coral); text-decoration: underline; }
.form-alert {
  background: var(--coral-tint);
  color: var(--coral);
  border: 1px solid rgba(232, 93, 63, 0.30);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
  display: none;
}
.form-alert.is-visible { display: block; }

/* ---------- WHATSAPP CHAT WIDGET ---------- */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.wa-float {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  padding: 0;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
.wa-float-icon { transition: opacity .15s ease, transform .2s ease; }
.wa-icon-close { position: absolute; opacity: 0; transform: rotate(-90deg); }
.wa-float[aria-expanded="true"] .wa-icon-chat  { opacity: 0; transform: rotate(90deg); }
.wa-float[aria-expanded="true"] .wa-icon-close { opacity: 1; transform: rotate(0); }
.wa-float[aria-expanded="true"]::after { animation: none; opacity: 0; }

@keyframes wa-pulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

.wa-panel {
  width: 320px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(26, 36, 52, 0.18);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.92) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.wa-panel.is-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.wa-panel-head {
  background: #128C7E;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wa-panel-id { display: flex; align-items: center; gap: 12px; }
.wa-panel-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  color: #fff;
  flex: 0 0 auto;
}
.wa-panel-meta { display: flex; flex-direction: column; line-height: 1.2; }
.wa-panel-title { font-weight: 600; font-size: 15px; }
.wa-panel-status {
  font-size: 12px;
  opacity: 0.85;
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.wa-panel-status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: wa-online 1.6s ease-out infinite;
}
@keyframes wa-online {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  100% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
.wa-panel-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  color: #fff;
  display: grid; place-items: center;
  opacity: 0.85;
  transition: opacity .15s ease, background .15s ease;
}
.wa-panel-close:hover { opacity: 1; background: rgba(255,255,255,0.15); }
.wa-panel-body {
  background-color: #ECE5DD;
  background-image:
    linear-gradient(180deg, #EDE7DE 0%, #E5DDD5 100%),
    radial-gradient(circle at 1px 1px, rgba(26, 36, 52, 0.05) 1px, transparent 0);
  background-size: auto, 18px 18px;
  background-blend-mode: multiply, normal;
  padding: 18px 16px 80px;
}
.wa-bubble {
  display: inline-block;
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  box-shadow: 0 1px 1px rgba(26, 36, 52, 0.10);
  max-width: 240px;
  position: relative;
}
.wa-bubble::before {
  content: "";
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}
.wa-bubble-greet {
  font-weight: 600;
  display: block;
}
.wa-bubble-greet .wa-wave {
  display: inline-block;
  margin-left: 2px;
  transform-origin: 70% 70%;
  animation: wa-wave 2.4s ease-in-out 1s 2;
}
@keyframes wa-wave {
  0%, 60%, 100% { transform: rotate(0); }
  10%, 30%, 50% { transform: rotate(14deg); }
  20%, 40%      { transform: rotate(-8deg); }
}
.wa-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 18px;
  text-decoration: none;
  transition: background .15s ease;
}
.wa-panel-cta:hover { background: #1FB855; }

@media (max-height: 500px) {
  .wa-widget { display: none; }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 76px 0 auto 0;
  background: rgba(251, 246, 240, 0.98);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
  padding: 24px var(--pad-x);
  flex-direction: column;
  gap: 18px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .btn-primary {
  margin-top: 12px;
  align-self: flex-start;
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  padding: clamp(60px, 9vh, 110px) 0;
  max-width: 820px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 16px 0 8px;
  color: var(--ink);
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 40px 0 12px;
  color: var(--ink);
}
.legal p, .legal li {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal ul { padding-left: 22px; }
.legal .updated {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line);
    color: var(--ink);
  }
  .nav-cta { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 4 / 3; }
  .float-card.reg { left: 50%; right: auto; transform: translateX(-50%); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .simplefy { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-trust { flex-wrap: wrap; }
  .hero-trust .cell { flex: 1 1 50%; border-bottom: 1px solid var(--line-soft); }
  .hero-trust .cell:nth-last-child(-n+1) { border-bottom: 0; }
}
@media (max-width: 640px) {
  .sol-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-row { grid-template-columns: 1fr; gap: 14px; }
  .wa-widget { bottom: 18px; right: 18px; }
  .wa-float { width: 54px; height: 54px; }
}
