/*
  SEO Tráfego — Landing page estática
  Sem dependências externas. Edite cores, espaçamentos e tipografia pelas variáveis abaixo.
*/

:root {
  --bg: #ffffff;
  --bg-soft: #f4f8f7;
  --bg-muted: #eaf2f0;
  --ink: #0a1722;
  --ink-2: #263746;
  --muted: #62717e;
  --line: #dbe6e3;
  --dark: #08141f;
  --dark-2: #0d2230;
  --dark-3: #143143;
  --accent: #35d9aa;
  --accent-2: #18b88a;
  --accent-3: #d9fff3;
  --blue: #6c9cff;
  --warning: #ffb85c;
  --warning-bg: #fff6e7;
  --danger: #e55f65;
  --white: #ffffff;
  --shadow-sm: 0 8px 28px rgba(8, 20, 31, .08);
  --shadow-md: 0 22px 60px rgba(8, 20, 31, .12);
  --shadow-lg: 0 30px 90px rgba(5, 18, 28, .22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(2.7rem, 5.3vw, 5.3rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.55rem);
}

h3 {
  font-size: 1.25rem;
}

::selection {
  color: var(--dark);
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid rgba(53, 217, 170, .72);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--dark);
  background: var(--accent);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.topbar {
  position: relative;
  z-index: 102;
  color: #d9e6ed;
  background: #05101a;
  font-size: .77rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.topbar a {
  color: var(--accent);
  font-weight: 750;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(53, 217, 170, .1);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(8, 20, 31, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 20, 31, .96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 1.08rem;
  font-weight: 550;
  letter-spacing: -.03em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand strong {
  color: var(--accent);
  font-weight: 850;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .91rem;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #d4e0e7;
  transition: color .2s ease;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.015em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 10px;
  font-size: .86rem;
}

.button--large {
  min-height: 58px;
  padding-inline: 26px;
  border-radius: 14px;
  font-size: .96rem;
}

.button--primary {
  color: #061510;
  background: linear-gradient(135deg, #4ae8bb, #28c796);
  box-shadow: 0 12px 30px rgba(38, 204, 153, .22);
}

.button--primary:hover {
  background: linear-gradient(135deg, #63f1c7, #35d9aa);
  box-shadow: 0 16px 34px rgba(38, 204, 153, .3);
}

.button--outline {
  color: #e3edf2;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
}

.button--outline:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}

.button--ghost {
  color: #e4edf2;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}

.button--ghost svg {
  width: 17px;
  fill: currentColor;
}

.button--ghost:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
}

.button--secondary {
  color: var(--dark);
  border-color: #b8d7ce;
  background: #edf8f4;
}

.button--secondary:hover {
  border-color: var(--accent-2);
  background: var(--accent-3);
}

.button--dark {
  color: var(--white);
  background: var(--dark);
}

.button--dark:hover {
  background: var(--dark-3);
}

.button--full {
  width: 100%;
}

.button.is-disabled {
  pointer-events: none;
  opacity: .42;
  box-shadow: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 105px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8,20,31,.5), rgba(8,20,31,0) 35%),
    radial-gradient(circle at 65% 25%, rgba(31, 118, 135, .28), transparent 38%),
    linear-gradient(135deg, #08141f 0%, #0b1c29 58%, #0a2230 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(15px);
  opacity: .55;
  pointer-events: none;
}

.hero__glow--one {
  top: -190px;
  left: -140px;
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, rgba(53,217,170,.18), transparent 68%);
}

.hero__glow--two {
  right: -220px;
  bottom: -250px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(108,156,255,.14), transparent 68%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .92fr);
  align-items: center;
  gap: 68px;
}

.hero__content {
  max-width: 690px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--accent-2);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.eyebrow {
  color: #98f3d8;
}

.eyebrow span {
  font-size: .62rem;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-weight: 850;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 38px rgba(53,217,170,.15);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: #bfd0d9;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 27px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 26px;
  padding: 0;
  color: #dbe8ed;
  font-size: .85rem;
  list-style: none;
}

.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__checks svg,
.check-list svg,
.price-card li svg {
  width: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.disclosure {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 184, 92, .2);
  border-radius: 14px;
  color: #e8d6bc;
  background: rgba(255, 184, 92, .065);
}

.disclosure svg {
  width: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  fill: none;
  stroke: var(--warning);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.disclosure p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.55;
}

.disclosure strong {
  color: #ffd79d;
}

/* Dashboard mockup */
.hero__visual {
  position: relative;
  padding: 34px 4px 35px 20px;
}

.dashboard {
  position: relative;
  overflow: hidden;
  padding: 0 24px 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  color: #182834;
  background: #f8fbfc;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255,255,255,.025);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.dashboard__bar {
  display: grid;
  grid-template-columns: 68px 1fr 20px;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  margin: 0 -24px 21px;
  padding: 0 16px;
  border-bottom: 1px solid #dde8ec;
  background: #eef4f6;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9c7ce;
}

.window-dots span:first-child { background: #ff837a; }
.window-dots span:nth-child(2) { background: #ffc665; }
.window-dots span:nth-child(3) { background: #54d3a4; }

.dashboard__address {
  overflow: hidden;
  padding: 5px 10px;
  border: 1px solid #dbe5e9;
  border-radius: 7px;
  color: #7b8992;
  background: #fff;
  font-size: .62rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secure-dot {
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--accent-2);
}

.dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.dashboard__kicker {
  display: block;
  margin-bottom: 2px;
  color: #6a7a85;
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.dashboard h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -.03em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #138264;
  background: #dff9f0;
  font-size: .63rem;
  font-weight: 800;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(24,184,138,.12);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 13px;
}

.metric-card {
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid #e0eaed;
  border-radius: 12px;
  background: #fff;
}

.metric-card--accent {
  border-color: #bfeade;
  background: linear-gradient(145deg, #effdf8, #fff);
}

.metric-card span,
.metric-card small {
  display: block;
  overflow: hidden;
  color: #71818c;
  font-size: .59rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card strong {
  display: block;
  margin: 5px 0 1px;
  color: #102532;
  font-size: 1.12rem;
  line-height: 1.1;
}

.metric-card--accent strong {
  color: #0b8a69;
}

.chart-card {
  padding: 15px 15px 9px;
  border: 1px solid #e0eaed;
  border-radius: 14px;
  background: #fff;
}

.chart-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 4px;
}

.chart-card__head strong,
.chart-card__head span {
  display: block;
}

.chart-card__head strong {
  font-size: .75rem;
}

.chart-card__head span {
  color: #84929b;
  font-size: .58rem;
}

.chart-card__head .chart-total {
  padding: 5px 7px;
  border-radius: 7px;
  color: #0f8b68;
  background: #e4faf3;
  font-weight: 800;
}

.line-chart {
  width: 100%;
  height: 142px;
}

.chart-grid line {
  stroke: #e9eff2;
  stroke-width: 1;
}

.chart-area {
  fill: url(#areaGradient);
}

.chart-line {
  fill: none;
  stroke: #25c99a;
  stroke-linecap: round;
  stroke-width: 4;
}

.chart-points circle {
  fill: #fff;
  stroke: #25c99a;
  stroke-width: 2.5;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
  color: #9aa7af;
  font-size: .52rem;
}

.dashboard__footer {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 13px;
  margin-top: 13px;
}

.audience-row {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.audience-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  color: #4b7ff2;
  background: #e8efff;
}

.audience-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.audience-row strong,
.audience-row span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audience-row strong {
  font-size: .66rem;
}

.audience-row span {
  color: #84919a;
  font-size: .54rem;
}

.device-bars {
  display: grid;
  gap: 7px;
}

.device-bars span {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
  color: #697984;
  font-size: .54rem;
}

.device-bars span::before,
.device-bars span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 99px;
  content: "";
}

.device-bars span::before {
  width: 100%;
  background: #e8eef1;
}

.device-bars span::after {
  width: var(--bar);
  background: linear-gradient(90deg, #31d4a5, #74a4ff);
}

.device-bars b {
  color: #213441;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  color: #eef7f9;
  background: rgba(13,34,48,.9);
  box-shadow: 0 14px 35px rgba(0,0,0,.23);
  backdrop-filter: blur(14px);
}

.floating-card svg {
  width: 27px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-card strong,
.floating-card span {
  display: block;
  white-space: nowrap;
}

.floating-card strong {
  font-size: .69rem;
}

.floating-card span {
  color: #a9bdc8;
  font-size: .56rem;
}

.floating-card--one {
  top: 2px;
  right: -22px;
}

.floating-card--two {
  bottom: 35px;
  left: -13px;
}

.visual-note {
  margin: 14px 0 0;
  color: #8196a2;
  font-size: .65rem;
  text-align: center;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 110px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  place-items: center;
  border-radius: 12px;
  color: #0d9f78;
  background: #e3faf3;
}

.trust-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-strip p,
.trust-strip strong,
.trust-strip small {
  display: block;
  margin: 0;
}

.trust-strip strong {
  color: var(--ink);
  font-size: .85rem;
}

.trust-strip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.35;
}

/* General sections */
.section {
  position: relative;
  padding: 112px 0;
}

.section--light {
  background: var(--bg-soft);
}

.section--dark {
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
  font-weight: 830;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center p {
  margin-right: auto;
  margin-left: auto;
}

.section-tag--dark {
  color: #8eefd3;
}

.section--dark .section-heading p {
  color: #9cb3bf;
}

/* Transparency cards */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 280px;
  padding: 28px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 35px rgba(8,20,31,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-card:hover {
  border-color: #b8ddd2;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.info-card--warning {
  border-color: #f0d8ad;
  background: linear-gradient(145deg, #fffaf0, #fff);
}

.icon-box {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 14px;
  color: #0f9c77;
  background: #ddf8f0;
}

.info-card--warning .icon-box {
  color: #bb7417;
  background: #fff0d3;
}

.icon-box svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.info-card h3 {
  margin-bottom: 13px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}

/* Process */
.process-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 95px;
}

.process-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-copy h2 {
  margin-bottom: 22px;
}

.process-copy p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.03rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b9872;
  font-weight: 800;
  border-bottom: 1px solid #87d9c1;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  min-height: 180px;
  padding: 6px 0 42px;
}

.process-step:not(:last-child)::before {
  position: absolute;
  top: 64px;
  bottom: 0;
  left: 29px;
  width: 1px;
  background: linear-gradient(var(--accent), var(--line));
  content: "";
}

.step-number {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid #c4e4da;
  border-radius: 18px;
  color: #0d8f6d;
  background: #e8faf5;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.process-step h3 {
  margin: 5px 0 12px;
  font-size: 1.45rem;
}

.process-step p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
}

/* Feature grid */
.section-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section-orb--one {
  top: -170px;
  right: -140px;
  width: 490px;
  height: 490px;
  background: radial-gradient(circle, rgba(53,217,170,.12), transparent 70%);
}

.section-orb--two {
  bottom: -230px;
  left: -150px;
  width: 530px;
  height: 530px;
  background: radial-gradient(circle, rgba(108,156,255,.1), transparent 70%);
}

.section--dark .container {
  position: relative;
  z-index: 1;
}

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

.feature-card {
  min-height: 268px;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card:hover {
  border-color: rgba(53,217,170,.35);
  background: linear-gradient(145deg, rgba(53,217,170,.085), rgba(255,255,255,.025));
  transform: translateY(-5px);
}

.feature-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(53,217,170,.22);
  border-radius: 15px;
  color: var(--accent);
  background: rgba(53,217,170,.09);
}

.feature-card__icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin-bottom: 13px;
  color: #f3f8fa;
}

.feature-card p {
  margin: 0;
  color: #9eb2bd;
  font-size: .91rem;
}

/* Use cases */
.use-cases {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.use-cases .section-heading {
  margin: 0;
}

.use-case-list {
  display: grid;
  gap: 12px;
}

.use-case {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  padding: 23px 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease;
}

.use-case:hover {
  border-color: #b9ded3;
  transform: translateX(5px);
}

.use-case > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #0f9975;
  background: #e2f8f1;
  font-size: .71rem;
  font-weight: 900;
}

.use-case h3 {
  margin: 1px 0 7px;
  font-size: 1.08rem;
}

.use-case p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0 0 29px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-2);
  font-size: .9rem;
}

.check-list svg {
  margin-top: 4px;
}

/* Lead capture */
.section--lead {
  background:
    radial-gradient(circle at 18% 12%, rgba(53,217,170,.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5faf8 100%);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .75fr);
  align-items: start;
  gap: 56px;
}

.lead-copy {
  position: sticky;
  top: 118px;
}

.lead-copy h2 {
  margin-bottom: 22px;
}

.lead-copy > p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid #d7e6e2;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.lead-form__head {
  padding-bottom: 6px;
}

.lead-form__head span,
.lead-form label span {
  display: block;
  color: #0d9772;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lead-form__head strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.15;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d8e3e6;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcfd;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input,
.lead-form select {
  min-height: 50px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 96px;
  padding: 13px 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent-2);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(53,217,170,.14);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form__status {
  min-height: 22px;
  margin: -2px 0 0;
  color: #667a83;
  font-size: .75rem;
  text-align: center;
}

/* SEO hub */
.seo-hub__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.guide-card {
  display: grid;
  gap: 10px;
  min-height: 205px;
  padding: 22px;
  border: 1px solid #dbe7e4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(8,20,31,.045);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.guide-card:hover,
.guide-card:focus-visible {
  border-color: #8fd7c2;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.guide-card span {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #0b7d62;
  background: #eaf9f4;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.guide-card strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.16;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

/* Pricing */
.section--pricing {
  background:
    radial-gradient(circle at 50% 0, rgba(53,217,170,.07), transparent 32%),
    #f7faf9;
}

.plan-helper {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr .8fr auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 33px;
  padding: 18px;
  border: 1px solid #d7e6e2;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(8,20,31,.04);
}

.plan-helper__label {
  display: block;
  margin-bottom: 3px;
  color: #0d9772;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.plan-helper > div > strong {
  font-size: .98rem;
}

.plan-helper label span {
  display: block;
  margin-bottom: 5px;
  color: #6f7e87;
  font-size: .66rem;
  font-weight: 750;
}

.plan-helper select {
  width: 100%;
  min-height: 46px;
  padding: 0 38px 0 12px;
  border: 1px solid #d8e3e6;
  border-radius: 10px;
  color: var(--ink);
  background-color: #fbfcfd;
  cursor: pointer;
}

.plan-helper__result {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  border-radius: 9px;
  color: #55706b;
  background: #eff8f5;
  font-size: .73rem;
}

.plan-helper__result strong {
  color: #0b8f6b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 660px;
  padding: 30px 27px 25px;
  border: 1px solid #dbe6e3;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(8,20,31,.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.price-card:hover,
.price-card.is-recommended {
  border-color: #8fd7c2;
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.price-card--featured {
  z-index: 2;
  border: 2px solid var(--accent-2);
  box-shadow: 0 20px 55px rgba(19,133,100,.13);
}

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 15px;
  border-radius: 999px;
  color: #06130f;
  background: var(--accent);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-card__head {
  min-height: 107px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e6edeb;
}

.plan-name {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 880;
  letter-spacing: -.025em;
}

.price-card__head p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}

.price-volume {
  padding: 21px 0 13px;
}

.price-volume strong,
.price-volume span {
  display: block;
}

.price-volume strong {
  color: #0c9b76;
  font-size: 1.22rem;
}

.price-volume span {
  color: #7c8a93;
  font-size: .72rem;
}

.price {
  display: flex;
  align-items: flex-start;
  min-height: 71px;
  color: var(--ink);
}

.price > span {
  margin-top: 9px;
  margin-right: 4px;
  font-size: .8rem;
  font-weight: 800;
}

.price strong {
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: -.065em;
}

.price sup {
  margin-top: 9px;
  font-size: 1rem;
  font-weight: 850;
}

.payment-note {
  margin: 3px 0 20px;
  color: #7d8b94;
  font-size: .69rem;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 20px 0 0;
  border-top: 1px solid #e6edeb;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #40525e;
  font-size: .82rem;
}

.price-card li svg {
  width: 16px;
  flex-basis: 16px;
  margin-top: 2px;
}

.button--card {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  color: var(--dark);
  border-color: #b7dcd1;
  background: #edf9f5;
}

.button--card:hover {
  border-color: var(--accent-2);
  background: #dcf8ef;
}

.button--card-featured {
  color: #06140f;
  border-color: transparent;
  background: var(--accent);
}

.button--card-featured:hover {
  background: #54e9bd;
}

.price-card__question {
  margin-top: 13px;
  color: #74838c;
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 16px 18px;
  border: 1px solid #efd7af;
  border-radius: 13px;
  color: #6f552f;
  background: var(--warning-bg);
}

.pricing-disclaimer svg {
  width: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  fill: none;
  stroke: #c27e22;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pricing-disclaimer p {
  margin: 0;
  font-size: .78rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 85px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 20px;
}

.faq-intro p {
  margin-bottom: 25px;
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  overflow: hidden;
  border: 1px solid #dbe6e3;
  border-radius: 15px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.accordion__item:has(button[aria-expanded="true"]) {
  border-color: #a8d9cb;
  box-shadow: 0 10px 25px rgba(8,20,31,.045);
}

.accordion__item h3 {
  margin: 0;
  font-size: 1rem;
}

.accordion__item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 71px;
  padding: 17px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion__item button i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: #edf6f3;
}

.accordion__item button i::before,
.accordion__item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: #0d8e6c;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.accordion__item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__panel {
  padding: 0 20px 20px;
}

.accordion__panel p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #e9efed;
  color: var(--muted);
  font-size: .9rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(120deg, #0a1b27, #0b2b36);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
}

.final-cta__glow {
  position: absolute;
  top: -250px;
  right: 8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,217,170,.2), transparent 65%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.final-cta p {
  max-width: 700px;
  margin: 0;
  color: #adbfca;
}

.final-cta__actions {
  text-align: center;
}

.final-cta__actions small {
  display: block;
  margin-top: 10px;
  color: #91a8b4;
  font-size: .68rem;
}

/* Footer */
.site-footer {
  padding: 72px 0 24px;
  color: #bfd0d8;
  background: #050f17;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr .75fr .8fr .9fr;
  gap: 55px;
  padding-bottom: 50px;
}

.brand--footer {
  color: #fff;
}

.footer__brand > p {
  max-width: 390px;
  margin: 20px 0;
  color: #8fa4af;
  font-size: .85rem;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 800;
}

.footer-whatsapp svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer__column h3 {
  margin-bottom: 9px;
  color: #eff6f8;
  font-size: .87rem;
  letter-spacing: -.01em;
}

.footer__column a,
.footer-link-button,
.footer__column > span {
  padding: 0;
  border: 0;
  color: #91a4ae;
  background: transparent;
  font-size: .78rem;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease;
}

.footer__column a:hover,
.footer-link-button:hover {
  color: var(--accent);
}

.payment-box {
  width: 100%;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}

.payment-box span,
.payment-box strong,
.payment-box small {
  display: block;
}

.payment-box span {
  color: #758b96;
  font-size: .61rem;
}

.payment-box strong {
  margin: 4px 0 7px;
  color: #eef7fa;
  font-size: 1rem;
}

.payment-box small {
  color: #8297a2;
  font-size: .63rem;
  line-height: 1.5;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #6f858f;
  font-size: .67rem;
}

.footer__bottom p {
  margin: 0;
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 11, 17, .75);
  backdrop-filter: blur(7px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  border: 1px solid #dce7e4;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid #dfe8e6;
  border-radius: 50%;
  color: #64747d;
  background: #f6f9f8;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.modal__tag {
  display: block;
  margin-bottom: 7px;
  color: #0e9a74;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.modal h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.modal__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.modal__summary > div {
  padding: 12px;
  border: 1px solid #e0e8e6;
  border-radius: 10px;
  background: #f8faf9;
}

.modal__summary span,
.modal__summary strong {
  display: block;
}

.modal__summary span {
  margin-bottom: 4px;
  color: #809098;
  font-size: .58rem;
}

.modal__summary strong {
  font-size: .76rem;
}

.modal__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 13px;
  border: 1px solid #efd8b3;
  border-radius: 11px;
  color: #6e5633;
  background: #fff8eb;
}

.modal__notice svg {
  width: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  fill: none;
  stroke: #bd7c23;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.modal__notice p {
  margin: 0;
  font-size: .73rem;
}

.confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #42545e;
  font-size: .76rem;
  cursor: pointer;
}

.confirm-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 1px 0 0;
  accent-color: var(--accent-2);
}

.modal .button--full {
  margin-top: 18px;
}

.modal__help {
  display: block;
  margin-top: 14px;
  color: #688079;
  font-size: .72rem;
  font-weight: 750;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Cookies */
.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 990;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  max-width: 920px;
  margin: auto;
  padding: 18px 20px;
  border: 1px solid #d7e4e1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(5,16,23,.2);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: .88rem;
}

.cookie-banner p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.button--cookie-secondary,
.button--cookie-primary {
  min-height: 41px;
  padding-inline: 14px;
  border-radius: 9px;
  font-size: .7rem;
}

.button--cookie-secondary {
  color: var(--ink);
  border-color: #d7e2df;
  background: #f5f8f7;
}

.button--cookie-primary {
  color: #06140f;
  background: var(--accent);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-page {
  background: var(--bg-soft);
}

.legal-header {
  color: #fff;
  background: var(--dark);
}

.legal-header .header__inner {
  min-height: 72px;
}

.legal-main {
  padding: 75px 0 100px;
}

.legal-article {
  width: min(calc(100% - 40px), 850px);
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-article .section-tag {
  margin-bottom: 14px;
}

.legal-article h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-update {
  margin-bottom: 35px;
  color: var(--muted);
  font-size: .8rem;
}

.legal-article h2 {
  margin: 38px 0 14px;
  font-size: 1.45rem;
}

.legal-article h3 {
  margin: 25px 0 10px;
  font-size: 1.05rem;
}

.legal-article p,
.legal-article li {
  color: var(--ink-2);
  font-size: .93rem;
}

.legal-article li + li {
  margin-top: 8px;
}

.legal-note {
  margin: 28px 0;
  padding: 17px;
  border-left: 4px solid var(--warning);
  border-radius: 8px;
  background: var(--warning-bg);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: #0b9671;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1120px) {
  .main-nav {
    gap: 17px;
    font-size: .83rem;
  }

  .main-nav .button--outline {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  }

  .floating-card--one {
    right: 0;
  }

  .trust-strip__grid > div {
    padding-inline: 15px;
  }

  .transparency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-card {
    min-height: 245px;
  }

  .lead-layout {
    grid-template-columns: .9fr .8fr;
    gap: 34px;
  }

  .seo-hub__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-helper {
    grid-template-columns: 1fr 1fr;
  }

  .plan-helper > button {
    align-self: stretch;
  }

  .footer__grid {
    grid-template-columns: 1.35fr .7fr .8fr;
  }

  .footer__column--payment {
    display: none;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .topbar__inner a {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    top: calc(36px + var(--header-height));
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(8,20,31,.99);
    box-shadow: 0 25px 45px rgba(0,0,0,.32);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    padding: 15px 5px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 12px;
  }

  .main-nav .button--outline {
    display: inline-flex;
  }

  .hero {
    padding-top: 65px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 660px);
    margin: 0 auto;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid > div {
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 88px 0;
  }

  .process-layout,
  .use-cases,
  .lead-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-copy,
  .lead-copy,
  .faq-intro {
    position: static;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-cases .section-heading {
    max-width: 680px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .seo-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card {
    min-height: auto;
  }

  .price-card--featured {
    order: -1;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta__actions {
    justify-self: start;
    text-align: left;
  }

  .footer__grid {
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 35px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    font-size: .68rem;
  }

  .hero {
    padding: 54px 0 76px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__checks {
    display: grid;
  }

  .hero__visual {
    padding: 20px 0 30px;
  }

  .dashboard {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 17px;
    transform: none;
  }

  .dashboard__bar {
    margin-right: -15px;
    margin-left: -15px;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-card:last-child {
    grid-column: span 2;
  }

  .dashboard__footer {
    grid-template-columns: 1fr;
  }

  .line-chart {
    height: 115px;
  }

  .floating-card--one {
    top: -10px;
    right: -5px;
  }

  .floating-card--two {
    bottom: 12px;
    left: -4px;
  }

  .floating-card {
    padding: 9px 10px;
  }

  .floating-card svg {
    width: 22px;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child,
  .trust-strip__grid > div:nth-child(3) {
    min-height: 92px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .transparency-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .feature-card {
    min-height: 0;
  }

  .process-step {
    grid-template-columns: 57px 1fr;
    gap: 14px;
    min-height: 170px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .process-step:not(:last-child)::before {
    top: 51px;
    left: 23px;
  }

  .process-step h3 {
    margin-top: 2px;
    font-size: 1.2rem;
  }

  .use-case {
    grid-template-columns: 48px 1fr;
    padding: 19px;
  }

  .plan-helper {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 22px;
  }

  .lead-form__row,
  .seo-hub__grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 0;
  }

  .price-card {
    padding: 28px 22px 22px;
  }

  .faq-layout {
    gap: 35px;
  }

  .accordion__item button {
    min-height: 65px;
    padding: 15px 16px;
  }

  .accordion__panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .final-cta {
    padding: 62px 0 90px;
  }

  .final-cta__actions,
  .final-cta__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 82px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(7,18,27,.96);
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 9px;
    color: #e5eef2;
    background: rgba(255,255,255,.07);
    font-size: .75rem;
    font-weight: 850;
  }

  .mobile-cta a:last-child {
    color: #07150f;
    background: var(--accent);
  }

  .modal__dialog {
    padding: 27px 20px 22px;
  }

  .modal__summary {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 10px;
    bottom: 74px;
    left: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-main {
    padding: 45px 0 85px;
  }

  .legal-article {
    width: min(calc(100% - 28px), 850px);
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
