
:root {
  --emerald: #0f766e;
  --emerald-dark: #0b514e;
  --teal: #14b8a6;
  --indigo: #4338ca;
  --blue: #2563eb;
  --ink: #14213a;
  --muted: #697386;
  --soft: #f5f8fc;
  --white: #ffffff;
  --border: #e5ebf3;
  --danger: #e5484d;
  --success: #0f9f6e;
  --shadow: 0 22px 65px rgba(15, 31, 56, .12);
  --shadow-soft: 0 12px 36px rgba(15, 31, 56, .075);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(20,184,166,.08), transparent 28%),
    radial-gradient(circle at 90% 16%, rgba(67,56,202,.08), transparent 26%),
    linear-gradient(#fff, #fff);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-soft { background: var(--soft); }
.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(45,212,191,.18), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(99,102,241,.28), transparent 34%),
    linear-gradient(135deg, #0d3c42, #0f766e 52%, #3432a7 135%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(20,184,166,.11);
}
.section-dark .eyebrow { color: #b8fff6; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.045em; }
h1 { font-size: clamp(42px, 6vw, 78px); font-weight: 920; }
h2 { font-size: clamp(34px, 4vw, 54px); font-weight: 900; }
h3 { font-size: 21px; font-weight: 850; }
.lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}
.section-dark .lead { color: rgba(255,255,255,.78); }
.muted { color: var(--muted); }
.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--emerald), #138a80);
  box-shadow: 0 14px 30px rgba(15,118,110,.24);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(15,118,110,.30); }
.btn-light {
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-outline {
  color: var(--ink);
  border-color: var(--border);
  background: rgba(255,255,255,.78);
}
.btn-ghost {
  color: var(--emerald);
  background: rgba(15,118,110,.08);
}
.btn-lg { min-height: 58px; padding-inline: 28px; border-radius: 17px; }
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(229,235,243,.85);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(18px);
}
.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand img { width: 43px; height: 43px; }
.brand strong { display: block; font-size: 17px; line-height: 1.1; }
.brand small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.nav-links { display: flex; align-items: center; gap: 27px; }
.nav-links a { color: #465167; font-weight: 700; font-size: 14px; }
.nav-links a:hover { color: var(--emerald); }
.nav-actions { display: flex; gap: 10px; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.announcement-bar {
  padding: 10px 20px;
  text-align: center;
  color: #eafffb;
  background: linear-gradient(90deg, var(--emerald-dark), var(--emerald), var(--indigo));
  font-size: 13px;
  font-weight: 720;
}
.announcement-bar strong { color: #fff; }

.hero {
  padding: 86px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 68px;
}
.hero-copy .lead { max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #536077;
  font-size: 13px;
  font-weight: 700;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.check {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--success);
  font-size: 12px;
}
.hero-visual { position: relative; min-height: 550px; }
.hero-orb {
  position: absolute;
  inset: 2% -8% auto 5%;
  height: 90%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 32%, rgba(20,184,166,.36), transparent 24%),
    radial-gradient(circle at 70% 36%, rgba(67,56,202,.35), transparent 28%),
    linear-gradient(135deg, rgba(15,118,110,.09), rgba(67,56,202,.08));
  filter: blur(4px);
}
.product-window {
  position: absolute;
  inset: 5% 0 auto 0;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 85px rgba(17,32,57,.20);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
}
.product-window::before {
  content: "";
  height: 34px;
  display: block;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 19px 17px, #ff6b6b 0 4px, transparent 5px),
    radial-gradient(circle at 35px 17px, #f7bf45 0 4px, transparent 5px),
    radial-gradient(circle at 51px 17px, #2fc67c 0 4px, transparent 5px),
    #f8fafc;
}
.product-window img { width: 100%; }
.float-card {
  position: absolute;
  z-index: 4;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.float-card strong { display: block; font-size: 17px; }
.float-card small { color: var(--muted); }
.float-card.score { right: -16px; bottom: 52px; }
.float-card.projection { left: -30px; bottom: 4px; }
.score-value { color: var(--emerald); font-size: 28px !important; }

.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(248,250,252,.82);
}
.trust-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #536077;
  font-size: 13px;
  font-weight: 750;
}
.trust-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--emerald);
  border-radius: 12px;
  background: #eafaf7;
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 17px;
  color: var(--emerald);
  background: linear-gradient(135deg, #e9fbf7, #eef0ff);
  font-size: 23px;
}
.feature-card p { margin-bottom: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}
.product-shot {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}
.product-shot .shot-bar {
  height: 38px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 20px 19px, #ff6b6b 0 4px, transparent 5px),
    radial-gradient(circle at 36px 19px, #f7bf45 0 4px, transparent 5px),
    radial-gradient(circle at 52px 19px, #2fc67c 0 4px, transparent 5px),
    #f8fafc;
}
.list-check { display: grid; gap: 17px; margin-top: 28px; }
.list-check div { display: flex; align-items: flex-start; gap: 13px; }
.list-check strong { display: block; margin-bottom: 3px; }
.list-check p { margin: 0; color: var(--muted); font-size: 14px; }

.insight-panel {
  padding: 32px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.10);
  box-shadow: 0 30px 70px rgba(4,35,42,.22);
  backdrop-filter: blur(12px);
}
.insight-card {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.09);
}
.insight-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #bffff6;
  background: rgba(45,212,191,.14);
}
.insight-card strong { display: block; }
.insight-card small { color: rgba(255,255,255,.68); }

.mobile-showcase {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.phone-frame {
  width: min(310px, 86%);
  margin: auto;
  padding: 12px;
  position: relative;
  border: 1px solid #cad4e1;
  border-radius: 42px;
  background: #101827;
  box-shadow: 0 28px 70px rgba(15,31,56,.25);
}
.phone-frame::before {
  content: "";
  width: 92px;
  height: 24px;
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #101827;
}
.phone-screen {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
}
.phone-screen img { width: 100%; }
.mobile-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.mini-point {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.mini-point strong { display: block; margin-bottom: 4px; }
.mini-point small { color: var(--muted); }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plan-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.plan-card.featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 2%, rgba(99,102,241,.33), transparent 30%),
    linear-gradient(145deg, #0f4e50, #0f766e 55%, #4338ca 140%);
  box-shadow: 0 28px 65px rgba(15,118,110,.25);
}
.plan-badge {
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 10px;
  color: var(--emerald);
  border-radius: 999px;
  background: #e9fbf7;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.featured .plan-badge { color: #d6fff9; background: rgba(255,255,255,.13); }
.plan-price {
  margin: 12px 0 24px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.plan-intro {
  min-height: 48px;
  margin: 4px 0 18px;
  color: var(--muted);
}
.featured .plan-intro { color: rgba(255,255,255,.76); }
.price-options {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}
.price-option {
  padding: 14px 15px;
  display: grid;
  gap: 3px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f8fafc;
}
.price-option span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #526077;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.price-option em {
  padding: 3px 7px;
  color: var(--emerald);
  border-radius: 999px;
  background: #dff8f1;
  font-size: 9px;
  font-style: normal;
}
.price-option strong {
  color: var(--ink);
  font-size: 27px;
  letter-spacing: -.04em;
}
.price-option small { color: var(--muted); }
.price-option.best { border-color: rgba(15,118,110,.35); background: #f0fdfa; }
.featured .price-option {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
}
.featured .price-option span,
.featured .price-option small { color: rgba(255,255,255,.72); }
.featured .price-option strong { color: #fff; }
.featured .price-option em { color: #d8fff8; background: rgba(255,255,255,.14); }
.plans-note {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
.plan-card ul {
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  list-style: none;
  color: var(--muted);
}
.plan-card li { display: flex; gap: 9px; }
.plan-card li::before { content: "✓"; color: var(--success); font-weight: 900; }
.featured ul { color: rgba(255,255,255,.76); }
.featured li::before { color: #7fffe9; }
.plan-card .btn { margin-top: auto; }

.faq-list { max-width: 860px; margin: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: 17px;
  font-weight: 820;
}
.faq-button span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  transition: transform .2s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .25s ease, padding .25s ease;
}
.faq-answer p { margin-bottom: 0; }
.faq-item.is-open .faq-answer { max-height: 220px; padding-bottom: 24px; }
.faq-item.is-open .faq-button span:last-child { transform: rotate(45deg); }

.final-cta {
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgba(129,140,248,.34), transparent 28%),
    linear-gradient(135deg, #0f3d43, #0f766e 52%, #4338ca 145%);
  box-shadow: 0 30px 70px rgba(15,78,74,.24);
}
.final-cta h2 { margin-bottom: 9px; font-size: clamp(30px, 4vw, 48px); }
.final-cta p { margin-bottom: 0; color: rgba(255,255,255,.74); }

.site-footer {
  padding: 64px 0 28px;
  color: #657087;
  border-top: 1px solid var(--border);
  background: #fbfcfe;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .7fr);
  gap: 42px;
}
.footer-brand p { max-width: 360px; margin-top: 18px; }
.footer-title { margin-bottom: 13px; color: var(--ink); font-weight: 850; }
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a:hover { color: var(--emerald); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(10,18,32,.58);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity .18s ease;
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }
.modal-dialog {
  width: min(570px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 40px 100px rgba(8,19,37,.35);
  transform: translateY(12px) scale(.98);
  transition: transform .18s ease;
}
.modal.is-open .modal-dialog { transform: translateY(0) scale(1); }
.modal-head { display: flex; align-items: flex-start; gap: 20px; }
.modal-head > div { margin-right: auto; }
.modal-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  font-size: 21px;
}
.form-grid { display: grid; gap: 15px; margin-top: 24px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #dce4ee;
  border-radius: 14px;
  color: var(--ink);
  outline: none;
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #7cc9c2;
  box-shadow: 0 0 0 4px rgba(20,184,166,.12);
}
.form-status { min-height: 22px; margin: 10px 0 0; color: var(--emerald); font-size: 13px; font-weight: 700; }

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.legal {
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 0;
}
.legal h1 { font-size: clamp(38px, 5vw, 60px); }
.legal h2 { margin-top: 42px; font-size: 25px; }
.legal p, .legal li { color: var(--muted); }
.legal-back { margin-bottom: 30px; }


/* Quem somos — DRG Digital */
.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(20,184,166,.10), transparent 28%),
    radial-gradient(circle at 94% 18%, rgba(67,56,202,.10), transparent 28%),
    #fff;
}
.about-section::before {
  content: "";
  width: 360px;
  height: 360px;
  position: absolute;
  right: -190px;
  bottom: -210px;
  border: 70px solid rgba(15,118,110,.045);
  border-radius: 50%;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: stretch;
  gap: 54px;
}
.about-copy {
  padding: 20px 0;
}
.about-copy h2 {
  max-width: 760px;
}
.about-copy > p:not(.lead) {
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.about-copy .lead strong {
  color: var(--ink);
}
.about-meaning {
  padding: 34px;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 8%, rgba(129,140,248,.34), transparent 28%),
    linear-gradient(145deg, #0e4549, #0f766e 58%, #4338ca 145%);
  box-shadow: 0 30px 75px rgba(15,78,74,.23);
}
.about-meaning::after {
  content: "";
  width: 190px;
  height: 190px;
  position: absolute;
  right: -72px;
  bottom: -82px;
  border: 34px solid rgba(255,255,255,.07);
  border-radius: 50%;
}
.about-monogram {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 25px;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: .08em;
}
.about-label {
  color: #bffaf2;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.about-meaning h3 {
  max-width: 380px;
  margin: 10px 0 27px;
  font-size: 29px;
  line-height: 1.15;
}
.initial-list {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.initial-list > div {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 17px;
  background: rgba(255,255,255,.09);
}
.initial-list > div > strong {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #0d625d;
  border-radius: 13px;
  background: #d9fff8;
  font-size: 19px;
}
.initial-list b,
.initial-list small {
  display: block;
}
.initial-list b {
  margin-bottom: 2px;
}
.initial-list small {
  color: rgba(255,255,255,.68);
}
.values-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  min-height: 215px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow-soft);
}
.value-card > span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.value-card h3 {
  margin-bottom: 10px;
}
.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn-outline { display: none; }
  body.nav-open .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 20px;
    display: grid;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .hero-grid, .split, .mobile-showcase, .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .features, .plans { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); padding: 22px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .navbar { height: 70px; gap: 12px; }
  .brand small { display: none; }
  .nav-actions .btn { min-height: 44px; padding-inline: 14px; font-size: 13px; }
  body.nav-open .nav-links { top: 70px; left: 14px; right: 14px; }
  .hero { padding-top: 58px; }
  .hero-grid { gap: 38px; }
  .hero-visual { min-height: 350px; }
  .product-window { transform: none; }
  .float-card { display: none; }
  .trust-grid, .features, .plans, .mobile-points, .values-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 34px; }
  .about-meaning { padding: 27px; }
  .trust-grid { gap: 12px; }
  .trust-item { padding: 11px 0; }
  .split, .mobile-showcase { gap: 42px; }
  .feature-card { min-height: 0; }
  .final-cta { padding: 34px 26px; grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .modal-dialog { padding: 22px; border-radius: 20px; }
}
