@font-face {
  font-family: "Aeonik";
  src: local("Aeonik Regular"), local("Aeonik-Regular"), url("assets/fonts/Aeonik%20Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: local("Inter Medium"), local("Inter-Medium"), url("assets/fonts/Inter%20Medium.ttf") format("truetype");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --navy: #012e7a;
  --navy-dark: #071633;
  --blue: #017dc2;
  --cyan: #00cdc7;
  --support: #e08a2b;
  --remote: #0e4e84;
  --success: #009b78;
  --danger: #d7264a;
  --ink: #0b1736;
  --muted: #5d6880;
  --subtle: #7f8ca3;
  --paper: #eef8fb;
  --paper-2: #f6fafc;
  --panel: #fbfdfe;
  --panel-warm: #fffaf3;
  --line: rgba(1, 46, 122, .14);
  --line-strong: rgba(1, 46, 122, .24);
  --shadow: 0 24px 70px rgba(1, 46, 122, .14);
  --soft-shadow: 0 14px 36px rgba(1, 46, 122, .09);
  --font-body: "Aeonik", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-ui: "Inter", "Aeonik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 205, 199, .18), transparent 31rem),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 46%, #fafdfe 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::selection { background: rgba(0, 205, 199, .25); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 252, 254, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: clamp(220px, 17vw, 258px);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a:hover { color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn-primary {
  color: #f8fcfd;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 55%, var(--navy));
  box-shadow: 0 18px 38px rgba(1, 125, 194, .25);
}

.btn-secondary,
.btn-whatsapp {
  color: var(--navy);
  background: rgba(253, 254, 254, .94);
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
}

.btn-whatsapp { border-color: rgba(37, 211, 102, .35); }
.btn-whatsapp img { width: 23px; height: 23px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6.5vw, 88px) 0 clamp(54px, 6vw, 86px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -23vw;
  bottom: 6rem;
  width: 56vw;
  height: 56vw;
  border-radius: 42% 0 0 42%;
  background: rgba(0, 205, 199, .16);
  z-index: -1;
}

.hero-inner {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 24px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(253, 254, 254, .9);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(0, 205, 199, .13);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-ui);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  display: grid;
  font-size: clamp(54px, 7.2vw, 96px);
  font-weight: 900;
  max-width: 1060px;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
}

h3 {
  font-size: 20px;
  color: var(--navy);
  font-weight: 900;
}

.accent { color: var(--blue); }

.lead {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero .lead {
  text-align: center;
  text-align-last: auto;
  hyphens: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 14px;
}

.product-stage {
  border: 0;
  border-radius: 24px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.stage-top {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  background: rgba(250, 253, 254, .88);
  box-shadow: 0 18px 44px rgba(1, 46, 122, .06);
}

.stage-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(253, 254, 254, .82);
}

.stage-brand::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 205, 199, .12);
}

.stage-brand span {
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
}

.stage-search {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  font-size: 15px;
}

.stage-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--success);
  background: rgba(0, 205, 199, .13);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.stage-grid {
  display: grid;
  grid-template-columns: minmax(176px, .74fr) minmax(690px, 1.64fr) minmax(184px, .78fr);
  gap: 16px;
  align-items: center;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(213, 224, 235, .76);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(90deg, rgba(14, 78, 132, .045), transparent 18%, transparent 82%, rgba(0, 205, 199, .08)),
    rgba(237, 246, 250, .66);
  box-shadow: 0 24px 62px rgba(1, 46, 122, .08);
}

.stage-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.stage-side article {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(253, 254, 254, .9);
  box-shadow: 0 12px 28px rgba(1, 46, 122, .07);
}

.stage-side strong {
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 900;
}

.stage-side span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.stage-screen {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 24px 62px rgba(1, 46, 122, .18);
  outline: 8px solid rgba(253, 254, 254, .72);
}

.stage-screen img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: 50% 0;
}

.section { padding: clamp(44px, 5.2vw, 76px) 0; }

.flow-section {
  padding-top: clamp(24px, 3.8vw, 48px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
}

.split p,
.section-head p,
.trust-copy p,
.dark-copy p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-head.compact {
  margin-bottom: 20px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.flow article {
  min-height: 290px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.flow article:last-child { border-right: 0; }

.flow p,
.trust-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.step {
  color: var(--cyan);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
}

.dark-panel {
  color: #edf6fb;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 205, 199, .22), transparent 26rem),
    linear-gradient(135deg, #071633, #0b2447 54%, #0e4e84);
}

.dark-grid {
  display: grid;
  grid-template-columns: minmax(320px, .55fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.inverse {
  color: #e9fbfd;
  border-color: rgba(238, 248, 251, .18);
  background: rgba(238, 248, 251, .08);
}

.dark-copy {
  display: grid;
  gap: 22px;
}

.dark-copy h2 {
  max-width: 620px;
  color: #f2fbfd;
  font-size: clamp(38px, 4.4vw, 58px);
  text-wrap: balance;
  hyphens: none;
}

.dark-copy p {
  color: rgba(238, 248, 251, .78);
  hyphens: none;
  overflow-wrap: normal;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(238, 248, 251, .18);
  border-radius: 999px;
  color: #ecfbfd;
  background: rgba(238, 248, 251, .08);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
}

.remote-frame {
  margin: 0;
  border: 1px solid rgba(238, 248, 251, .18);
  border-radius: 20px;
  overflow: hidden;
  background: #0c1830;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.remote-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 0;
}

.feature-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--navy);
  background: rgba(0, 205, 199, .16);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  min-height: 178px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(253, 254, 254, .9);
  box-shadow: 0 14px 34px rgba(1, 46, 122, .07);
}

.capability-card h3 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.18;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.trust-section {
  background: linear-gradient(180deg, rgba(238, 248, 251, .2), rgba(1, 46, 122, .045));
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.trust-copy {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(253, 254, 254, .9);
  box-shadow: var(--soft-shadow);
}

.trust-grid strong {
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 900;
}

.gallery {
  display: grid;
  gap: 18px;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(253, 254, 254, .92);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.gallery-tabs button.active {
  color: #f8fcfd;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--navy));
}

.gallery-main,
.screen-pair figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.gallery-main {
  touch-action: pan-y;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 0;
}

figcaption {
  padding: 14px 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.screen-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screen-pair img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 0;
}

.pricing-section {
  background: linear-gradient(180deg, rgba(246, 250, 252, .4), rgba(237, 248, 251, .72));
  padding-bottom: clamp(22px, 3.2vw, 38px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(253, 254, 254, .92);
  box-shadow: var(--soft-shadow);
}

.pricing-card.featured {
  border-color: rgba(1, 125, 194, .38);
  background: linear-gradient(180deg, rgba(229, 247, 252, .92), rgba(253, 254, 254, .96));
  box-shadow: 0 26px 70px rgba(1, 125, 194, .16);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(0, 205, 199, .15);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
}

.pricing-card.featured h3 {
  padding-right: 92px;
}

.pricing-card h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.price {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 9px;
  color: var(--navy);
  font-family: var(--font-ui);
}

.price strong {
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1;
  white-space: nowrap;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.private-card .price strong {
  font-size: clamp(34px, 3vw, 45px);
}

.private-card .price span {
  font-size: 15px;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
}

.pricing-card .btn {
  align-self: end;
  width: 100%;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.8vw, 26px);
  align-items: start;
  padding: clamp(28px, 4.2vw, 52px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 205, 199, .16), transparent 22rem),
    rgba(253, 254, 254, .92);
  box-shadow: var(--shadow);
}

.cta-section {
  padding-top: clamp(22px, 3vw, 38px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.cta-copy {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.cta-copy h2 {
  max-width: 820px;
  font-size: clamp(46px, 6vw, 76px);
}

.contact-options {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, .85fr);
  gap: 12px;
}

.contact-method {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(253, 254, 254, .94);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.contact-method:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.call-panel {
  border-color: rgba(0, 205, 199, .32);
}

.whatsapp-panel {
  border-color: rgba(37, 211, 102, .35);
}

.contact-icon,
.whatsapp-panel img {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f8fcfd;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 15px;
}

.contact-method span {
  display: grid;
  gap: 2px;
}

.contact-method small {
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 900;
  white-space: nowrap;
}

.contact-method b {
  color: var(--blue);
  font-size: 1.14em;
}

.cta-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.phone {
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 19px;
  font-weight: 900;
}

.phone strong {
  color: var(--blue);
  font-size: 1.18em;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2.2vw, 22px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(253, 254, 254, .96);
  box-shadow: var(--soft-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fcfd;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.contact-form input {
  min-height: 44px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 92px;
  resize: vertical;
  padding: 11px 14px;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(1, 125, 194, .55);
  box-shadow: 0 0 0 4px rgba(0, 205, 199, .12);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.privacy-check a,
.footer-links a {
  color: var(--navy);
  font-weight: 900;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.form-submit .btn {
  min-width: 220px;
}

.form-submit .btn {
  border: 0;
  cursor: pointer;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.faq-layout .section-head {
  max-width: 920px;
}

.faq-finder {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(253, 254, 254, .64);
  box-shadow: 0 20px 54px rgba(1, 46, 122, .08);
}

.faq-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 16px;
}

.faq-search {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
}

.faq-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  color: var(--ink);
  background: rgba(253, 254, 254, .96);
  box-shadow: inset 0 1px 0 rgba(1, 46, 122, .04);
  font: 800 16px/1.2 var(--font-ui);
}

.faq-search input:focus {
  border-color: rgba(0, 205, 199, .8);
  box-shadow: 0 0 0 5px rgba(0, 205, 199, .14);
}

.faq-counter {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 205, 199, .12);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.faq-counter b { color: var(--navy); }

.faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.faq-tags button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(253, 254, 254, .9);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
}

.faq-tags button.active {
  color: #f8fcfd;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 55%, var(--navy));
  box-shadow: 0 12px 26px rgba(1, 125, 194, .18);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: 100%;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(253, 254, 254, .92);
  box-shadow: 0 12px 28px rgba(1, 46, 122, .06);
}

.faq-list details[open] {
  background: linear-gradient(180deg, rgba(253, 254, 254, .98), rgba(237, 248, 251, .7));
  border-color: var(--line-strong);
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(0, 205, 199, .16);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  max-width: 980px;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.faq-empty {
  margin: 0;
  padding: 18px 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(253, 254, 254, .72);
  font-size: 16px;
}

.faq-section {
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.legal-page {
  position: relative;
  overflow: hidden;
}

.legal-page::before {
  content: "";
  position: absolute;
  top: 7rem;
  right: -18rem;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  background: rgba(0, 205, 199, .16);
  pointer-events: none;
}

.legal-hero {
  position: relative;
  padding: clamp(54px, 7vw, 96px) 0 clamp(24px, 4vw, 42px);
}

.legal-hero-inner {
  display: grid;
  gap: 18px;
  max-width: none;
  padding-left: clamp(26px, 4vw, 56px);
  padding-right: clamp(26px, 4vw, 56px);
  justify-items: start;
}

.legal-back,
.legal-kicker {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(253, 254, 254, .9);
  box-shadow: var(--soft-shadow);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
}

.legal-back:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.legal-kicker {
  margin-top: 12px;
}

.legal-kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(0, 205, 199, .13);
}

.legal-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  letter-spacing: 0;
  text-align: left;
}

.legal-hero .lead {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
  text-align: left;
}

.legal-content-section {
  position: relative;
  padding: 0 0 clamp(56px, 7vw, 96px);
}

.legal-shell {
  position: relative;
}

.legal-document {
  padding: clamp(26px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(253, 254, 254, .97), rgba(250, 253, 254, .94)),
    var(--panel);
  box-shadow: var(--shadow);
}

.legal-document section {
  padding: clamp(20px, 3vw, 34px) 0;
  border-top: 1px solid rgba(1, 46, 122, .11);
}

.legal-document section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-document section:last-child {
  padding-bottom: 0;
}

.legal-document h2 {
  margin: 0 0 12px;
  max-width: 780px;
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
}

.legal-document p,
.legal-document li {
  max-width: 82ch;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.78;
}

.legal-document p {
  margin: 10px 0 0;
  text-align: left;
  text-align-last: auto;
  hyphens: auto;
}

.legal-document strong {
  color: var(--navy);
  font-family: var(--font-ui);
  font-weight: 900;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.legal-document li {
  position: relative;
  padding-left: 22px;
}

.legal-document li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .73em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
}

.legal-document a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(0, 205, 199, .45);
  text-underline-offset: 3px;
}

.legal-document a:hover {
  text-decoration-color: var(--cyan);
}

.legal-footer {
  border-top: 1px solid var(--line);
}

.footer {
  padding: 46px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(248, 252, 254, .84);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, .7fr));
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
  font-size: 14px;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 380px;
}

.footer-brand img { width: 170px; }

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav strong {
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
}

.footer-nav a,
.footer-nav span {
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--navy);
}

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .stage-top { grid-template-columns: 1fr auto; }
  .stage-search { grid-column: 1 / -1; order: 2; }
  .stage-grid { grid-template-columns: 1fr; }
  .stage-side { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stage-side article { min-height: 120px; }
  .stage-screen { transform: none; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dark-grid,
  .trust-layout,
  .cta-panel,
  .cta-contact,
  .faq-layout,
  .split { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-tools { grid-template-columns: 1fr; align-items: stretch; }
  .faq-counter { justify-self: start; }
  .trust-copy { position: static; }
  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow article:nth-child(2) { border-right: 0; }
  .flow article:nth-child(1),
  .flow article:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .shell { width: min(354px, calc(100% - 34px)); }
  .nav { min-height: auto; padding: 12px 0; flex-wrap: wrap; justify-content: center; }
  .brand img { width: 176px; }
  .nav-actions { width: min(100%, 300px); display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .nav-actions .btn-whatsapp { display: none; }
  .nav-actions .btn { min-height: 40px; font-size: 13px; padding-left: 12px; padding-right: 12px; }
  .hero { padding-top: 38px; }
  .hero::after { right: -62vw; width: 115vw; height: 115vw; bottom: 14rem; }
  .hero-copy { width: min(100%, calc(100vw - 34px)); max-width: 100%; justify-items: stretch; gap: 20px; }
  .eyebrow { justify-content: center; text-align: center; }
  h1 { width: 100%; max-width: 100%; font-size: clamp(40px, 12.2vw, 50px); overflow-wrap: normal; }
  h2 { font-size: clamp(34px, 10vw, 44px); }
  .lead { width: 100%; max-width: 260px; justify-self: center; font-size: 17px; overflow-wrap: normal; hyphens: none; }
  .hero .lead { text-align: center; text-align-last: center; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .btn { width: 100%; padding-left: 16px; padding-right: 16px; }
  .product-stage { margin-left: -4px; margin-right: -4px; border-radius: 20px; }
  .stage-top { grid-template-columns: 1fr; gap: 12px; }
  .stage-brand { justify-self: start; }
  .stage-search { display: none; }
  .stage-grid { padding: 12px; gap: 12px; }
  .stage-side { grid-template-columns: 1fr; }
  .stage-side.right { display: none; }
  .stage-side article { min-height: auto; padding: 16px; }
  .stage-screen { min-height: 360px; }
  .stage-screen img { min-height: 360px; width: 820px; max-width: none; object-position: 0 0; }
  .section { padding: 52px 0; }
  .split p,
  .section-head p,
  .trust-copy p,
  .dark-copy p,
  .cta-panel p { font-size: 17px; }
  .flow { grid-template-columns: 1fr; }
  .flow article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow article:last-child { border-bottom: 0; }
  .dark-panel { padding-top: 68px; padding-bottom: 72px; }
  .remote-frame img,
  .gallery-main img,
  .screen-pair img { aspect-ratio: 4 / 3; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: auto; }
  .trust-grid,
  .screen-pair,
  .cta-panel { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer { grid-template-columns: 1fr; }
  .gallery-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .faq-tags { display: grid; grid-template-columns: 1fr 1fr; }
  .faq-tags button { padding: 0 10px; }
  .faq-list summary { padding: 16px; font-size: 15px; }
  .faq-list p { padding: 0 16px 18px; font-size: 15px; }
  .gallery-tabs button { padding: 0 10px; font-size: 13px; }
  .contact-options,
  .form-submit { align-items: stretch; justify-content: stretch; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-method,
  .form-submit .btn { width: 100%; }
  .legal-page::before {
    top: 4rem;
    right: -24rem;
  }
  .legal-hero {
    padding: 34px 0 24px;
  }
  .legal-hero-inner,
  .legal-shell {
    width: min(326px, calc(100vw - 48px));
    padding-left: 0;
    padding-right: 0;
  }
  .legal-hero-inner {
    gap: 14px;
  }
  .legal-back,
  .legal-kicker {
    max-width: 100%;
    white-space: normal;
  }
  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 44px);
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .legal-hero .lead {
    max-width: none;
    justify-self: stretch;
    text-align: left;
    text-align-last: auto;
    font-size: 17px;
  }
  .legal-document {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .legal-document h2 {
    font-size: 22px;
  }
  .legal-document p,
  .legal-document li {
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    text-align: left;
    text-align-last: auto;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { max-width: none; }
}
