:root {
  --navy: #070d16;
  --navy-2: #0c1724;
  --ink: #101826;
  --paper: #f7f4ee;
  --cream: #efe8d9;
  --sand: #e7dcc6;
  --muted: #5d6b7c;
  --line: rgba(16, 24, 38, 0.1);
  --red: #d42028;
  --red-2: #b91c22;
  --blue: #003da5;
  --gold: #c4a35a;
  --ok: #0f7a5a;
  --white: #fff;
  --shadow: 0 24px 60px rgba(7, 13, 22, 0.18);
  --radius: 22px;
  --font: var(--font-sans, "Source Sans 3", "Segoe UI", system-ui, sans-serif);
  --display: "Fraunces", Georgia, serif;
  --nav-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.hidden { display: none !important; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip:focus { left: 8px; }

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.wrap-wide { width: min(1280px, calc(100% - 32px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
}
.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
h1, h2, .display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(36px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4.4vw, 48px); }
h3 { font-size: 20px; margin: 0 0 8px; line-height: 1.25; }
.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 58ch;
}
.muted { color: var(--muted); }
.em { color: var(--red); font-style: italic; }

.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hero .actions .btn { white-space: normal; }
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-red {
  background: linear-gradient(180deg, #e23a40, var(--red));
  color: #fff;
  box-shadow: 0 10px 24px rgba(212, 32, 40, 0.28);
}
.btn-red:hover { box-shadow: 0 14px 28px rgba(212, 32, 40, 0.38); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost-dark {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-navy {
  background: var(--navy-2);
  color: #fff;
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* ——— Nav ——— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7, 13, 22, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.brand img { width: 28px; height: 32px; }
.brand span { font-size: 14px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; gap: 8px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  position: relative;
  margin: 0 auto;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

/* ——— Hero ——— */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(212, 32, 40, 0.38), transparent 55%),
    radial-gradient(700px 380px at 92% 8%, rgba(0, 61, 165, 0.42), transparent 50%),
    radial-gradient(500px 280px at 70% 90%, rgba(196, 163, 90, 0.16), transparent 50%),
    var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 28px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(#000 60%, transparent);
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: drift 14s ease-in-out infinite;
  pointer-events: none;
}
.orb-a { width: 280px; height: 280px; background: #d42028; top: -80px; left: 18%; }
.orb-b { width: 220px; height: 220px; background: #003da5; right: 8%; top: 40%; animation-delay: -4s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 18px) scale(1.08); }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.hero .lead { color: rgba(247, 244, 238, 0.74); }
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.pill {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

/* Product stage */
.hero-stage {
  position: relative;
  min-height: 520px;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 4% 4% 8%;
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 32, 40, 0.45), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(0, 61, 165, 0.4), transparent 50%);
  filter: blur(28px);
  z-index: 0;
}
.desk {
  position: absolute;
  inset: 40px 0 0 0;
  background: linear-gradient(180deg, #fffdf8, #f3eee4);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(196, 163, 90, 0.25);
  overflow: hidden;
  padding: 14px;
  z-index: 1;
}
.desk-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.desk-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7cbb6;
  display: block;
}
.desk-bar i:nth-child(1) { background: #d42028; }
.desk-bar i:nth-child(2) { background: #c4a35a; }
.desk-bar i:nth-child(3) { background: #2dd4bf; }
.kanban {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.col {
  background: rgba(16, 24, 38, 0.05);
  border-radius: 12px;
  padding: 8px;
  min-height: 210px;
}
.col b {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}
.ticket {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 7px;
  font-size: 11px;
  color: #101826;
  box-shadow: 0 4px 10px rgba(16, 24, 38, 0.06);
}
.ticket small { display: block; color: #6b7280; margin-top: 4px; }
.ticket.hot { outline: 1px solid rgba(212, 32, 40, 0.55); }

.phone {
  position: absolute;
  right: 8px;
  top: 0;
  width: 232px;
  height: 470px;
  background: #0a1018;
  border: 8px solid #e8e2d4;
  border-radius: 32px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 2;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.phone-notch {
  width: 88px;
  height: 16px;
  background: #1a2433;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 6px;
}
.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.phone-head span {
  background: var(--red);
  border-radius: 999px;
  font-size: 10px;
  padding: 2px 7px;
}
.chat {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bubble {
  max-width: 86%;
  padding: 8px 10px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.35;
  animation: pop 0.5s ease both;
}
.bubble.in { background: #1c2838; color: #e8eef7; border-bottom-left-radius: 4px; }
.bubble.out { background: #003da5; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble.sys {
  align-self: center;
  background: rgba(196, 163, 90, 0.16);
  color: #e7d7a8;
  font-size: 10px;
  max-width: 94%;
}
.bubble:nth-child(1) { animation-delay: 0.2s; }
.bubble:nth-child(2) { animation-delay: 0.7s; }
.bubble:nth-child(3) { animation-delay: 1.2s; }
.bubble:nth-child(4) { animation-delay: 1.8s; }
.bubble:nth-child(5) { animation-delay: 2.4s; }
@keyframes pop {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.float-chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-chip small { display: block; font-weight: 600; color: var(--muted); font-size: 11px; }
.chip-a { left: -8px; bottom: 86px; }
.chip-b { left: 28%; top: 18px; animation-delay: -2s; }
.chip-c { right: 210px; bottom: 24px; animation-delay: -1s; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  margin-top: -36px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow);
}
.stats div {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stats div:last-child { border-right: 0; }
.stats b {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 4px;
}
.stats span { font-size: 13px; color: var(--muted); font-weight: 600; }

@media (max-width: 980px) {
  .stats { margin-top: 16px; }
}

/* Marquee */
.marquee-wrap {
  background: #11080a;
  color: #f3d0d2;
  overflow: hidden;
  border-block: 1px solid rgba(212, 32, 40, 0.25);
  padding: 14px 0;
}
.marquee {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: slide 28s linear infinite;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.marquee span { white-space: nowrap; opacity: 0.85; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 88px 0; }
#produto, #inbox, #gestao, #planos, #faq, #mobile, #crm, #topo {
  scroll-margin-top: 84px;
}
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-dark {
  background: var(--navy-2);
  color: #fff;
}
.section-dark .lead { color: rgba(255, 255, 255, 0.68); }
.section-cream { background: linear-gradient(180deg, #f7f4ee, #ece4d4); }
.section-red {
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, #9d151b, #d42028 55%, #7f1116);
  color: #fff;
}
.section-red .lead { color: rgba(255, 255, 255, 0.86); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(16, 24, 38, 0.04);
}
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #7f1116);
}
.ico.blue { background: linear-gradient(135deg, #003da5, #0b1b4a); }
.ico.gold { background: linear-gradient(135deg, #c4a35a, #8a6914); color: #1a1306; }
.ico.teal { background: linear-gradient(135deg, #0f7a5a, #064e3b); }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.card-dark p { color: rgba(255, 255, 255, 0.68); }
.card h3 { font-family: var(--display); font-size: 24px; }

.pain-card {
  position: relative;
  overflow: hidden;
}
.pain-card::after {
  content: "antes";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.7;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-copy { order: 2; }
.feat-list { list-style: none; padding: 0; margin: 22px 0 0; }
.feat-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
}
.feat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--red);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--red);
}
.section-dark .feat-list li { border-color: rgba(255, 255, 255, 0.08); }
.section-dark .feat-list li::before { box-shadow: inset 0 0 0 3px var(--navy-2), 0 0 0 1px var(--gold); background: var(--gold); }

.panel {
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.panel-dark {
  background: linear-gradient(180deg, #151e2c, #0d1520);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.app-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 8px;
}
.app-av {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.app-av.b { background: var(--blue); }
.app-av.g { background: var(--ok); }
.app-row strong { display: block; font-size: 13px; }
.app-row span { font-size: 12px; color: rgba(255, 255, 255, 0.55); }
.badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 3px 7px;
}

.day {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.day:last-child { border-bottom: 0; }
.day time {
  font-weight: 800;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.day h3 { font-size: 18px; font-family: var(--display); }
.day p { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.section-dark .day { border-color: rgba(255, 255, 255, 0.08); }
.section-dark .day p { color: rgba(255, 255, 255, 0.68); }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare article { padding: 28px; }
.compare .bad { background: #f4ecec; }
.compare .good {
  background: linear-gradient(180deg, #102033, #0b1522);
  color: #fff;
}
.compare h3 { font-family: var(--display); font-size: 26px; margin-bottom: 16px; }
.compare ul { margin: 0; padding: 0; list-style: none; }
.compare li {
  padding: 9px 0 9px 22px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.45;
}
.compare .bad li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.compare .good li::before { content: "✓"; position: absolute; left: 0; color: #5eead4; font-weight: 800; }
.compare .good li { color: rgba(255, 255, 255, 0.86); }

.mod {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mod:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 24, 38, 0.1); }
.mod .tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.phones-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: flex-end;
  margin-top: 12px;
}
.phones-row .phone { border-color: #1c2430; }
.phone.sm { position: relative; width: 200px; height: 400px; right: auto; top: auto; animation-delay: -1.5s; }
.phone.lg { position: relative; right: auto; top: auto; }

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price {
  background: #fff;
  border-radius: 28px;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price.is-hot {
  background: linear-gradient(180deg, #141d2c, #0d1520);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 30px 50px rgba(7, 13, 22, 0.28);
  border-color: rgba(196, 163, 90, 0.45);
}
.flag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: #1a1306;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.price .name { font-family: var(--display); font-size: 28px; }
.price .cost {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 8px 0 4px;
}
.price .cost small { font-size: 14px; font-weight: 600; color: var(--muted); }
.price.is-hot .cost small { color: rgba(255, 255, 255, 0.55); }
.price .who { font-size: 14px; color: var(--muted); min-height: 44px; }
.price.is-hot .who { color: rgba(255, 255, 255, 0.68); }
.price ul {
  list-style: none;
  padding: 16px 0 22px;
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
  flex: 1;
}
.price.is-hot ul { border-color: rgba(255, 255, 255, 0.1); }
.price li { padding: 7px 0; font-size: 14px; }
.price .btn { width: 100%; }
.fine { font-size: 12px; color: var(--muted); margin-top: 18px; text-align: center; }

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.cta-band {
  text-align: center;
  padding: 72px 0;
}
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin-inline: auto; }

.site-foot {
  background: #070d16;
  color: rgba(255, 255, 255, 0.62);
  padding: 36px 0 48px;
  font-size: 13px;
}
.site-foot .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.site-foot a { color: #fff; text-decoration: none; }

.dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 35;
  background: rgba(7, 13, 22, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 10px;
  gap: 8px;
  box-shadow: var(--shadow);
}
.dock .btn { flex: 1; }

/* Cliente modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7, 13, 22, 0.55);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.open { display: flex; }
.modal-card {
  background: #fff;
  width: min(440px, 100%);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.modal-card h2 { font-size: 28px; }
.modal-card .row { display: flex; gap: 8px; margin-top: 14px; }
.modal-card input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.modal-card input:focus { outline: 2px solid rgba(0, 61, 165, 0.25); border-color: var(--blue); }
.err { color: var(--red); font-size: 13px; min-height: 18px; margin: 8px 0 0; }

.ui-dlg {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.45);
}
.ui-dlg.open { display: flex; }
.ui-dlg-card { background: #fff; border-radius: 14px; width: min(420px, 100%); overflow: hidden; }
.ui-dlg-accent { height: 4px; background: #003da5; }
.ui-dlg-body { display: flex; gap: 14px; padding: 20px 20px 8px; }
.ui-dlg-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #003da5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.ui-dlg-title { margin: 0 0 6px; font-size: 15px; }
.ui-dlg-msg { font-size: 13px; color: #475569; }
.ui-dlg-prompt-wrap { margin-top: 12px; }
.ui-dlg-input { width: 100%; padding: 10px 12px; border: 1px solid #e2e8f0; border-radius: 8px; }
.ui-dlg-actions { display: flex; gap: 8px; justify-content: flex-end; padding: 16px 20px 18px; }
.ui-dlg-actions .btn { border-radius: 10px; padding: 10px 14px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s ease forwards;
}
.reveal-d1 { animation-delay: 0.1s; }
.reveal-d2 { animation-delay: 0.2s; }
.reveal-d3 { animation-delay: 0.32s; }
@keyframes reveal {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-grid, .split, .split.reverse, .grid-3, .grid-4, .price-grid, .compare, .grid-2, .stats {
    grid-template-columns: 1fr;
  }
  .stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats div:last-child { border-bottom: 0; }
  .split.reverse .split-copy { order: 0; }
  .hero-stage { min-height: 440px; transform: none; margin-top: 12px; }
  .price.is-hot { transform: none; }
  .chip-c { display: none; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .js-demo { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #0c1724;
    padding: 16px 20px 20px;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .dock { display: flex; }
  .phones-row { transform: scale(0.92); }
  .site-foot { padding-bottom: 110px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 12px; }
  .hero-stage { min-height: 390px; }
  .desk { inset: 64px 8px 0 8px; }
  .phone { width: 190px; height: 390px; right: 4px; }
  .float-chip { font-size: 11px; }
  .chip-a { left: 0; bottom: 40px; }
  .section { padding: 64px 0; }
  .phones-row { display: none; }
  .day { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .phone, .float-chip, .marquee, .bubble, .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
