:root {
  --ink: #102d3b;
  --ink-soft: #506975;
  --navy: #0b2d3f;
  --navy-deep: #072330;
  --blue: #087eb5;
  --blue-strong: #066a9a;
  --teal: #079870;
  --teal-strong: #057b5b;
  --green: #52b96a;
  --mint: #eaf8f2;
  --sky: #eaf7fb;
  --surface: #f6fafb;
  --white: #ffffff;
  --line: #d7e5e9;
  --error: #b42318;
  --success: #08775b;
  --whatsapp: #107a3f;
  --shadow-sm: 0 12px 30px rgba(17, 70, 89, 0.09);
  --shadow-lg: 0 28px 80px rgba(8, 50, 67, 0.18);
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.4rem;
  --max-width: 75rem;
  --consent-offset: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #20a8d6;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: clamp(4.25rem, 8vw, 7rem) 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  min-height: 2.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  padding: 0.72rem 1.1rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--teal) 0%, var(--blue) 100%);
  box-shadow: 0 10px 24px rgba(7, 126, 181, 0.2);
}

.button-primary:hover {
  box-shadow: 0 14px 32px rgba(7, 126, 181, 0.28);
}

.button-secondary {
  color: var(--navy);
  border-color: #bfd4db;
  background: #fff;
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-strong);
}

.button-text {
  min-height: 2.75rem;
  padding-inline: 0.25rem;
  color: var(--blue-strong);
  background: transparent;
}

.button-text span {
  transition: transform 170ms ease;
}

.button-text:hover span {
  transform: translateX(4px);
}

.button-light {
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 10px 26px rgba(16, 122, 63, 0.22);
}

.button-whatsapp:hover {
  background: #0c6634;
}

.button-large {
  min-height: 3.3rem;
  padding-inline: 1.35rem;
}

.button-full {
  width: 100%;
  min-height: 3.25rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--teal-strong);
  font-size: 0.71rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.4rem;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #74d8c1;
}

.section-intro h2,
.system-copy h2,
.faq-heading h2,
.contact-copy h2 {
  max-width: 19ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-intro > p,
.split-intro > p,
.centered-intro > p,
.faq-heading > p,
.system-copy > p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(215, 229, 233, 0.85);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 4.6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}

.brand img {
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.desktop-nav,
.header-actions {
  display: none;
}

.menu-button {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-content: center;
  gap: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 170ms ease, opacity 170ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: 99;
  inset: 4.6rem 0 auto;
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mobile-nav > a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 680;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 0.45rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(145deg, #f7fcfd 0%, #effaf6 56%, #edf7fb 100%);
}

.hero-decoration {
  position: absolute;
  inset: 0;
  opacity: 0.54;
  background-image: radial-gradient(circle at 82% 15%, rgba(8, 126, 181, 0.17), transparent 30%), radial-gradient(circle at 68% 86%, rgba(7, 152, 112, 0.14), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(4.5rem, 10vw, 7rem);
}

.hero-copy {
  max-width: 39rem;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 7vw, 4.55rem);
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.hero-lead {
  max-width: 37rem;
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.visitor-note {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.25rem;
  color: #46616d;
  font-size: 0.82rem;
}

.visitor-note strong {
  color: var(--navy);
}

.status-dot {
  flex: 0 0 auto;
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.38rem;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(82, 185, 106, 0.18);
}

.hero-product {
  position: relative;
  min-width: 0;
  align-self: center;
}

.product-window,
.dashboard-frame {
  overflow: hidden;
  border: 1px solid #c8dde4;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.window-bar {
  min-height: 2.55rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.85rem;
  color: #536b75;
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}

.window-bar span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #bdced4;
}

.window-bar small {
  margin-left: 0.4rem;
  font-size: 0.68rem;
}

.screenshot-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) #e7f0f2;
}

.screenshot-scroll img {
  width: 47.5rem;
  min-width: 47.5rem;
  height: auto;
  padding: 0.8rem;
}

.screen-hint {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  color: #55717c;
  font-size: 0.7rem;
  font-weight: 650;
}

.product-badge {
  position: absolute;
  right: -0.35rem;
  bottom: 1.55rem;
  display: none;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border: 1px solid #b8dce7;
  border-radius: 0.7rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.product-badge strong {
  color: var(--teal-strong);
}

.product-badge span {
  font-size: 0.7rem;
  font-weight: 700;
}

.trust-bar {
  color: #d8ebf0;
  background: var(--navy);
}

.trust-grid {
  display: grid;
  gap: 0.8rem;
  padding-block: 1.2rem;
}

.trust-grid > p {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 760;
}

.trust-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
}

.trust-grid li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
}

.trust-grid li::before {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #5ed6b2;
  content: "";
}

/* Resources */
.resources-section {
  background: #fff;
}

.split-intro {
  display: grid;
  gap: 1.35rem;
  align-items: end;
}

.split-intro > p {
  max-width: 34rem;
}

.resource-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: clamp(2.5rem, 6vw, 4.25rem);
}

.resource-card {
  position: relative;
  min-height: 17.5rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 1.9rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff 0%, #fbfefe 100%);
  box-shadow: 0 8px 24px rgba(17, 70, 89, 0.055);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.resource-card::before {
  position: absolute;
  top: 0;
  right: 1.15rem;
  left: 1.15rem;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  content: "";
  opacity: 0.72;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: #abd2dd;
  box-shadow: var(--shadow-sm);
}

.resource-number {
  position: absolute;
  top: 1.2rem;
  right: 1.3rem;
  color: #506975;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.resource-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  border-radius: 0.72rem;
  color: var(--teal-strong);
  background: var(--mint);
}

.resource-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.resource-card h3 {
  max-width: 19ch;
  font-size: 1.25rem;
  line-height: 1.18;
}

.resource-card > p {
  max-width: 34rem;
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.resource-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.resource-card li {
  border-radius: 2rem;
  padding: 0.3rem 0.62rem;
  color: #365766;
  background: #f0f6f7;
  font-size: 0.68rem;
  font-weight: 720;
}

/* Product workflow */
.workflow-section {
  background: linear-gradient(180deg, #f4fafb 0%, #edf7f8 100%);
}

.workflow-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.workflow-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid #d2e4e8;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(17, 70, 89, 0.06);
}

.workflow-number {
  color: var(--teal-strong);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.workflow-visual {
  min-height: 6.5rem;
  display: grid;
  align-content: center;
  gap: 0.55rem;
  margin: 1.25rem 0 1.35rem;
  padding: 1.1rem;
  border: 1px solid #d8e8eb;
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #f8fcfd, #eef8f6);
}

.workflow-visual span {
  height: 0.48rem;
  border-radius: 999px;
  background: #c9dfe4;
}

.workflow-visual span:nth-child(1) { width: 70%; background: #8ed9c6; }
.workflow-visual span:nth-child(2) { width: 92%; }
.workflow-visual span:nth-child(3) { width: 54%; }

.workflow-visual-progress span:nth-child(1) { width: 100%; background: linear-gradient(90deg, var(--teal) 72%, #d5e5e8 72%); }
.workflow-visual-progress span:nth-child(2) { width: 100%; background: linear-gradient(90deg, var(--blue) 46%, #d5e5e8 46%); }
.workflow-visual-progress span:nth-child(3) { width: 100%; background: linear-gradient(90deg, #52b96a 84%, #d5e5e8 84%); }

.workflow-visual-bars {
  min-height: 6.5rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 0.65rem;
}

.workflow-visual-bars span { width: 100%; height: 42%; border-radius: 0.35rem 0.35rem 0 0; }
.workflow-visual-bars span:nth-child(1) { height: 3rem; background: #8ed9c6; }
.workflow-visual-bars span:nth-child(2) { height: 4.7rem; background: #65b9da; }
.workflow-visual-bars span:nth-child(3) { height: 3.8rem; background: #5fc587; }

.workflow-card h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.workflow-card p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* System */
.system-section {
  padding-block: clamp(4rem, 7vw, 5.75rem);
  color: #fff;
  background: linear-gradient(135deg, var(--navy-deep), #0a3d51);
}

.system-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.system-copy > p {
  max-width: 34rem;
  margin-top: 1.1rem;
  color: #c6dce3;
}

.system-copy .button {
  margin-top: 1.75rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.7rem 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #e4f0f3;
}

.check-list span {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 0.7rem;
  font-weight: 900;
}

.dashboard-frame {
  margin: 0;
  color: var(--ink);
  border-color: #356071;
}

.window-bar-dark {
  color: #b9d2d9;
  border-color: #365765;
  background: #143c4c;
}

.window-bar-dark span {
  background: #7394a0;
}

.screenshot-scroll-financial img {
  width: 56.25rem;
  min-width: 56.25rem;
  padding: 0;
}

.dashboard-frame figcaption {
  padding: 0.85rem 1rem;
  color: #506975;
  background: #fff;
  font-size: 0.71rem;
}

/* Product tour */
.product-tour-section {
  background: #fff;
}

.product-tour-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.tour-card {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfdfd;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: #aed2db;
  box-shadow: var(--shadow-sm);
}

.tour-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #5b747e;
  font-size: 0.68rem;
}

.tour-card-top span {
  color: var(--teal-strong);
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-card-top strong {
  font-weight: 680;
}

.tour-metric,
.tour-statuses,
.tour-chart {
  min-height: 7.5rem;
  margin: 1.35rem 0;
  border: 1px solid #dce9ec;
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #fff, #eff8f8);
}

.tour-metric {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  padding: 1.15rem;
}

.tour-value {
  width: 42%;
  height: 1.2rem;
  border-radius: 0.35rem;
  background: #67c8ad;
}

.tour-line {
  width: 82%;
  height: 0.45rem;
  border-radius: 999px;
  background: #ccdee3;
}

.tour-statuses {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 1.1rem;
}

.tour-statuses span {
  height: 1.15rem;
  border-radius: 0.4rem;
  background: linear-gradient(90deg, #d9ece7 18%, #edf4f5 18%);
}

.tour-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  padding: 1.1rem 1.1rem 0;
}

.tour-chart span {
  flex: 1;
  height: 42%;
  border-radius: 0.35rem 0.35rem 0 0;
  background: #7bcbb6;
}

.tour-chart span:nth-child(2) { height: 70%; background: #65b9da; }
.tour-chart span:nth-child(3) { height: 54%; }
.tour-chart span:nth-child(4) { height: 84%; background: #4cae78; }

.tour-card h3 {
  font-size: 1.16rem;
  line-height: 1.2;
}

.tour-card > p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

/* Steps and FAQ */
.steps-section {
  background: var(--surface);
}

.centered-intro {
  max-width: 47rem;
  margin-inline: auto;
  text-align: center;
}

.centered-intro .eyebrow {
  justify-content: center;
}

.centered-intro h2 {
  margin-inline: auto;
}

.centered-intro > p {
  margin-top: 1rem;
}

.steps-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.steps-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.6rem;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 70, 89, 0.06);
}

.steps-grid > li > span {
  color: var(--blue-strong);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.steps-grid h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.steps-grid p {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.steps-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
}

.steps-cta > span {
  color: #5a747f;
  font-size: 0.72rem;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  gap: 2.75rem;
}

.faq-heading > p {
  max-width: 31rem;
  margin-top: 1rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 4.65rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 740;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 170ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 44rem;
  padding: 0 2.4rem 1.4rem 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Contact */
.contact-section {
  padding: clamp(4.5rem, 8vw, 6.75rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 14%, rgba(92, 210, 177, 0.2), transparent 30%),
    linear-gradient(140deg, #063e59 0%, #075f87 48%, #07674f 100%);
}

.contact-layout {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.contact-copy > p {
  max-width: 34rem;
  margin-top: 1.05rem;
  color: #d9edf2;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-details > div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid rgba(207, 237, 238, 0.22);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
}

.contact-details span {
  color: #9fd1da;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  color: #fff;
  font-size: 0.88rem;
}

.privacy-note {
  display: grid;
  gap: 0.22rem;
  margin-top: 1.75rem;
  padding-left: 1rem;
  border-left: 3px solid #73dfc4;
}

.privacy-note strong {
  color: #fff;
  font-size: 0.8rem;
}

.privacy-note span {
  color: #daf0f4;
  font-size: 0.82rem;
}

.form-card {
  position: relative;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.form-card::before {
  position: absolute;
  top: 0;
  right: 2rem;
  left: 2rem;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  content: "";
}

.form-heading span {
  color: var(--teal-strong);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  max-width: 22ch;
  margin-top: 0.3rem;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1.16;
}

.form-heading p {
  max-width: 36rem;
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.form-row {
  display: grid;
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field label {
  color: #304e5c;
  font-size: 0.77rem;
  font-weight: 720;
}

.field label span {
  color: #506975;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c5d8de;
  border-radius: 0.58rem;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 3rem;
}

.field textarea {
  min-height: 6rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 126, 181, 0.14);
}

.field [aria-invalid="true"] {
  border-color: var(--error);
  background: #fff8f7;
}

.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.field-error {
  color: var(--error);
  font-size: 0.73rem;
}

.form-privacy {
  color: #506975;
  font-size: 0.72rem;
  line-height: 1.5;
}

.form-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.form-actions .button {
  min-height: 3.2rem;
}

.form-actions svg {
  width: 1.12rem;
  height: 1.12rem;
  fill: currentColor;
}

.button-whatsapp-direct {
  color: #0b6f42;
  border-color: #9bcdb2;
  background: #f4fbf7;
}

.button-whatsapp-direct:hover {
  color: #075a35;
  border-color: #4cae78;
  background: #ecf8f1;
}

.form-status {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 650;
}

.form-status.is-error {
  color: #8f1c13;
  border: 1px solid #efb4ae;
  background: #fff2f0;
}

.form-status.is-success {
  color: #075d48;
  border: 1px solid #a8dbc9;
  background: #ecf8f3;
}

/* Final conversion */
.final-conversion {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #f5fafb;
}

.final-conversion-card {
  display: grid;
  gap: 2rem;
  padding: clamp(1.6rem, 5vw, 3.5rem);
  border: 1px solid #cfe2e6;
  border-radius: clamp(1.1rem, 3vw, 1.8rem);
  background:
    radial-gradient(circle at 88% 18%, rgba(7, 152, 112, 0.12), transparent 28%),
    #fff;
  box-shadow: 0 22px 54px rgba(17, 70, 89, 0.09);
}

.final-conversion-card h2 {
  max-width: 19ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.final-conversion-card > div > p:last-child {
  max-width: 38rem;
  margin-top: 0.9rem;
  color: var(--ink-soft);
}

.final-conversion-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-self: center;
}

/* Footer */
.site-footer {
  color: #d2e3e8;
  border-top: 4px solid var(--teal);
  background: linear-gradient(160deg, #061f2b, var(--navy-deep));
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3.5rem, 7vw, 5rem);
}

.brand-footer .brand-copy strong,
.brand-footer .brand-copy small {
  color: #fff;
}

.footer-brand > p {
  max-width: 25rem;
  margin-top: 1rem;
  color: #c1d6dc;
  font-size: 0.92rem;
}

.footer-domain {
  display: inline-flex;
  margin-top: 0.85rem;
  color: #72ddc2;
  font-size: 0.82rem;
  font-weight: 720;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer-grid nav strong {
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-grid nav button {
  width: fit-content;
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: #d0e1e6;
  background: transparent;
  cursor: pointer;
  font-size: 0.86rem;
  text-align: left;
}

.footer-grid nav a:hover,
.footer-grid nav button:hover {
  color: #6ddcc1;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-block: 1.3rem;
  border-top: 1px solid #214452;
  color: #a9c1c9;
  font-size: 0.78rem;
}

/* Floating actions */
.floating-actions {
  position: fixed;
  z-index: 150;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(var(--consent-offset) + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: bottom 220ms ease, opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.floating-actions.is-context-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
}

.floating-button {
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 35, 48, 0.24);
  transition: transform 170ms ease, opacity 170ms ease;
}

.floating-button:hover {
  transform: translateY(-3px);
}

.floating-button svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.back-to-top {
  color: var(--navy);
  border-color: #c5d9df;
  background: #fff;
}

.back-to-top svg {
  fill: none;
}

.whatsapp-float {
  width: 3.7rem;
  min-width: 3.7rem;
  height: 3.7rem;
  display: flex;
  gap: 0.65rem;
  padding: 0.65rem 0.72rem;
  color: #fff;
  border: 3px solid #fff;
  background: linear-gradient(135deg, #25d366 0%, #159b62 52%, #0f7a51 100%);
  box-shadow: 0 16px 36px rgba(7, 87, 51, 0.34), 0 4px 12px rgba(7, 35, 48, 0.14);
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #20c760 0%, #118d58 55%, #0b6b46 100%);
  box-shadow: 0 20px 42px rgba(7, 87, 51, 0.4), 0 5px 14px rgba(7, 35, 48, 0.16);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

/* Consent */
.consent-banner {
  position: fixed;
  z-index: 220;
  right: 0.75rem;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 0.75rem;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.consent-copy {
  display: block;
}

.consent-banner strong {
  font-size: 0.9rem;
}

.consent-banner p {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.consent-actions .button {
  flex: 1 1 9rem;
}

.consent-link {
  display: inline;
  color: var(--blue-strong);
  font: inherit;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.consent-link:hover {
  color: var(--teal-strong);
}

/* Dialogs */
.action-dialog {
  width: min(calc(100% - 2rem), 27rem);
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.action-dialog::backdrop {
  background: rgba(4, 26, 36, 0.72);
  backdrop-filter: blur(4px);
}

.dialog-card {
  position: relative;
  display: grid;
  padding: clamp(1.35rem, 5vw, 2rem);
}

.dialog-card-compact {
  padding: clamp(1.5rem, 5vw, 2.15rem);
  padding-top: clamp(2.6rem, 7vw, 3.2rem);
}

.dialog-card-compact h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.75rem, 6vw, 2.2rem);
  letter-spacing: -0.04em;
}

.dialog-card-compact > p {
  max-width: 31rem;
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.dialog-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink-soft);
  background: #f0f5f6;
  cursor: pointer;
  font-size: 1.4rem;
}

.dialog-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  color: var(--blue-strong);
  background: var(--sky);
  font-weight: 850;
}

.dialog-icon-whatsapp {
  color: #08793a;
  background: #e6f7ec;
}

.dialog-kicker {
  color: var(--teal-strong);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-card h2 {
  margin-top: 0.3rem;
  font-size: clamp(1.7rem, 6vw, 2.3rem);
  line-height: 1.1;
}

.dialog-card > p:not(.dialog-kicker) {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.message-preview {
  max-height: 9rem;
  overflow: auto;
  margin-top: 1rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #3e5a66;
  background: var(--surface);
  font-size: 0.75rem;
  white-space: pre-line;
}

.dialog-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

/* Legal and 404 */
.legal-body {
  background: var(--surface);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.legal-header-inner {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-back {
  color: var(--blue-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.legal-page {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.legal-content {
  max-width: 48rem;
  margin-inline: auto;
  padding: clamp(1.3rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 7vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-updated {
  margin-top: 0.9rem;
  color: #6b828b;
  font-size: 0.75rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.legal-content a {
  color: var(--blue-strong);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.legal-lead {
  max-width: 42rem;
  margin-top: 1.25rem !important;
  color: #365764 !important;
  font-size: clamp(1rem, 2vw, 1.12rem) !important;
}

.legal-summary {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.75rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid #c9e2dc;
  border-radius: var(--radius-sm);
  background: #eff9f5;
}

.legal-summary strong {
  color: var(--teal-strong);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-summary p {
  margin: 0;
}

.legal-content ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.legal-callout {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 3px solid var(--blue);
  color: #345661;
  background: var(--sky);
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-deep), #075d80);
}

.not-found-inner {
  display: grid;
  gap: clamp(3.5rem, 10vw, 7rem);
  padding-block: 3rem;
}

.not-found .brand-copy strong,
.not-found .brand-copy small {
  color: #fff;
}

.not-found .eyebrow {
  color: #78dfc6;
}

.not-found h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.not-found div > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.35rem 0 1.8rem;
  color: #d5e7eb;
}

.legal-contact-card {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #0a5870);
}

.legal-contact-card strong {
  font-size: 1.05rem;
}

.legal-contact-card p {
  color: #d5e8ec;
}

.legal-contact-card a {
  display: inline-flex;
  margin-top: 0.9rem;
  color: #75e0c5;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.reveal-soft {
  transform: translateY(1rem) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 40rem) {
  .container {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .button-primary {
    width: auto;
  }

  .product-badge {
    display: flex;
  }

  .trust-grid {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .trust-grid ul {
    justify-content: flex-end;
  }

  .resource-grid,
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-card:last-child {
    grid-column: 1 / -1;
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid li {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 1.7rem;
  }

  .steps-grid li:first-child,
  .steps-grid li:last-child { padding: 1.7rem; }

  .steps-cta {
    flex-direction: row;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .consent-banner {
    right: 1.25rem;
    bottom: 1.25rem;
    left: auto;
    max-width: 39rem;
  }

  .dialog-actions {
    grid-template-columns: 1fr 1fr;
  }

}

@media (min-width: 54rem) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.4vw, 2rem);
  }

  .desktop-nav a {
    position: relative;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    color: #385968;
    font-size: 0.8rem;
    font-weight: 680;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.22rem;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    content: "";
    transform: scaleX(0);
    transition: transform 170ms ease;
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .header-actions .button {
    min-height: 2.65rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.78rem;
  }

  .menu-button,
  .mobile-nav {
    display: none !important;
  }

  .split-intro {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-conversion-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .final-conversion-actions {
    min-width: 14rem;
  }

  .faq-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 0.65fr));
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (min-width: 64rem) {
  .hero-grid {
    min-height: max(44rem, calc(100svh - 4.6rem));
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(3rem, 6vw, 5.5rem);
    padding-block: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 5.4vw, 4.55rem);
  }

  .screenshot-scroll {
    overflow: hidden;
  }

  .screenshot-scroll img {
    width: 100%;
    min-width: 0;
  }

  .screen-hint {
    display: none;
  }

  .resource-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .product-tour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resource-card {
    min-height: 18.75rem;
    grid-column: span 2;
    padding: 1.65rem;
  }

  .resource-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .resource-card:last-child {
    grid-column: 4 / span 2;
  }

  .resource-card h3 {
    font-size: 1.2rem;
  }

  .resource-card ul {
    align-items: flex-start;
  }

  .system-layout {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .contact-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(4rem, 8vw, 7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.reveal-soft {
    opacity: 1;
    transform: none;
  }
}
