:root {
  --navy-950: #0a1424;
  --navy-900: #101d31;
  --navy-800: #14243d;
  --navy-700: #213754;
  --ink: #17243a;
  --text: #3f4b5f;
  --muted: #647086;
  --muted-light: #aab4c2;
  --orange: #e2641c;
  --orange-strong: #b9470e;
  --orange-soft: #fff0e7;
  --blue: #2264d1;
  --blue-soft: #eaf1ff;
  --green: #17724a;
  --green-soft: #e8f6ef;
  --surface: #ffffff;
  --surface-warm: #f6f4ef;
  --surface-cool: #f4f7fa;
  --line: rgba(20, 36, 61, 0.11);
  --line-strong: rgba(20, 36, 61, 0.18);
  --white-line: rgba(255, 255, 255, 0.12);
  --white-muted: rgba(255, 255, 255, 0.72);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-ring:
    0 0 0 1px rgba(20, 36, 61, 0.07),
    0 1px 2px -1px rgba(20, 36, 61, 0.09),
    0 8px 24px -16px rgba(20, 36, 61, 0.22);
  --shadow-ring-hover:
    0 0 0 1px rgba(20, 36, 61, 0.1),
    0 2px 4px -2px rgba(20, 36, 61, 0.12),
    0 18px 36px -22px rgba(20, 36, 61, 0.3);
  --shadow-elevated:
    0 0 0 1px rgba(20, 36, 61, 0.08),
    0 10px 24px -12px rgba(10, 20, 36, 0.22),
    0 28px 70px -30px rgba(10, 20, 36, 0.42);
  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(80px, 9vw, 120px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-elevated);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition-property: transform;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

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

:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px var(--navy-950) !important;
}

#conteudo:focus {
  outline: 0;
  box-shadow: none !important;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: #ff9b61;
}

.eyebrow-on-orange {
  color: var(--navy-950);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(226, 100, 28, 0.14);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 5vw, 64px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.faq-intro h2,
.cta-copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading > p:last-child,
.section-heading-wide > p,
.faq-intro > p,
.cta-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 64px;
  max-width: none;
}

.section-heading-wide h2 {
  margin-bottom: 0;
}

.mobile-swipe-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: -18px 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition-property: background-color, color, box-shadow, transform;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:active {
  transform: scale(0.96);
}

.button-sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.button-lg {
  min-height: 54px;
  padding: 0 24px;
  font-size: 16px;
}

.button-primary {
  background: var(--orange-strong);
  box-shadow: 0 10px 24px -14px rgba(185, 71, 14, 0.85), inset 0 1px rgba(255, 255, 255, 0.2);
  color: #fff;
}

.button-primary:hover {
  background: #9f3a0a;
  box-shadow: 0 14px 30px -14px rgba(185, 71, 14, 0.95), inset 0 1px rgba(255, 255, 255, 0.18);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #fff;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.button-outline {
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(20, 36, 61, 0.25);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--surface-cool);
  box-shadow: 0 0 0 1px rgba(20, 36, 61, 0.42);
}

.button-dark {
  background: var(--navy-800);
  box-shadow: 0 10px 24px -14px rgba(10, 20, 36, 0.85), inset 0 1px rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

.button-block {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(16, 29, 49, 0.84);
  box-shadow: 0 1px rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  transition-property: background-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.site-header.is-scrolled {
  background: rgba(10, 20, 36, 0.94);
  box-shadow: 0 1px rgba(255, 255, 255, 0.08), 0 12px 32px -20px rgba(0, 0, 0, 0.75);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition-property: background-color, color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 1.5px;
  border-radius: 2px;
  background: #fff;
  transform-origin: center;
  transition-property: opacity, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

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

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

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

.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 20, 36, 0.98);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-block: 12px 20px;
}

.mobile-nav-inner > a:not(.button) {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-inner .button {
  margin-top: 10px;
}

.nojs-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-950);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(118px, 10vw, 148px);
  background:
    radial-gradient(circle at 78% 16%, rgba(67, 111, 170, 0.28), transparent 35%),
    radial-gradient(circle at 9% 76%, rgba(226, 100, 28, 0.12), transparent 27%),
    var(--navy-800);
  color: #fff;
}

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

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 92px);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(48px, 4.2vw, 62px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hero h1 span {
  color: #ff8950;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--white-muted);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.65;
}

.hero-lead strong {
  color: #fff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-checks svg,
.cta-copy li svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #ff8950;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 20px 18px 44px 0;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  inset: 2px 0 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
  content: "";
  transform: rotate(2deg);
}

.product-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 26px 72px -22px rgba(0, 0, 0, 0.72);
  color: var(--ink);
}

.window-bar {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 8px 13px;
  background: var(--navy-950);
}

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

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

.window-dots span:nth-child(1) { background: #ff6b62; }
.window-dots span:nth-child(2) { background: #ffc452; }
.window-dots span:nth-child(3) { background: #48c978; }

.window-address {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-address i {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--orange);
}

.window-status {
  flex: none;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(226, 100, 28, 0.18);
  color: #ff9b61;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.mock-toolbar > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mock-toolbar strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.mock-kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-success,
.complete-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.status-success i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.7fr) repeat(3, minmax(72px, 0.82fr));
  align-items: center;
  min-width: 465px;
  padding: 13px 22px;
  border-bottom: 1px solid var(--line);
  color: #47536a;
  font-size: 11px;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-head {
  padding-block: 8px;
  background: var(--surface-warm);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.comparison-row small {
  padding: 3px 5px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-best {
  background: #f0faf5;
}

.comparison-best small {
  background: var(--green);
  color: #fff;
}

.comparison-best > span:nth-child(2) strong {
  color: var(--green);
}

.comparison-fast {
  background: #f2f6ff;
}

.comparison-fast small {
  background: var(--blue);
  color: #fff;
}

.comparison-fast > span:nth-child(3) strong {
  color: var(--blue);
}

.mock-decision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px;
  background: #f8fafc;
  box-shadow: inset 0 1px var(--line);
}

.mock-decision > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mock-decision span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-decision strong {
  font-size: 13px;
}

.mock-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 7px;
  background: var(--navy-800);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.mock-button span {
  color: #ff8950;
  font-size: 13px;
}

.floating-proof {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-elevated);
  color: var(--ink);
}

.floating-proof-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.floating-proof-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.floating-proof > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-proof small {
  color: var(--muted);
  font-size: 9px;
}

.floating-proof strong {
  font-size: 12px;
}

.hero-trust {
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.hero-trust p {
  margin: 0;
}

.hero-trust p strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-trust > div {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Problem */
.problem-section {
  background: var(--surface);
}

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

.problem-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-ring);
  transition-property: box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.problem-card:hover {
  box-shadow: var(--shadow-ring-hover);
  transform: translateY(-2px);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #667286;
  font-family: var(--font-display);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.icon-box,
.step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-cool);
  color: var(--navy-800);
}

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

.icon-box-warm {
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.icon-box-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-box-green {
  background: var(--green-soft);
  color: var(--green);
}

.problem-card h3 {
  margin: 22px 0 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.problem-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.card-outcome {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding: 15px 16px;
  border-radius: 12px;
  background: var(--surface-cool);
}

.card-outcome span {
  color: var(--orange-strong);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-outcome strong {
  font-size: 13px;
  line-height: 1.45;
}

/* Steps */
.steps-section {
  background: var(--surface-warm);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-width: 0;
  padding: 26px 25px 28px;
  border-right: 1px solid var(--line);
}

.step-card:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.step-card:last-child {
  border-right: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.step-card {
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(20, 36, 61, 0.05), 0 10px 28px -24px rgba(20, 36, 61, 0.22);
}

.step-index {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #667286;
  font-family: var(--font-display);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.step-icon {
  background: var(--navy-800);
  color: #fff;
}

.step-card:nth-child(4) .step-icon {
  background: var(--orange-strong);
}

.step-card h3 {
  margin: 22px 0 8px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.supplier-note {
  display: flex;
  max-width: 760px;
  align-items: center;
  gap: 14px;
  margin: 26px auto 0;
  padding: 14px 18px 14px 14px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-ring);
}

.supplier-note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border-radius: 11px;
  background: var(--green-soft);
  color: var(--green);
}

.supplier-note-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supplier-note > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
}

.supplier-note strong {
  font-size: 14px;
}

.supplier-note span {
  color: var(--muted);
  font-size: 14px;
}

/* Product */
.product-section {
  background: var(--surface);
}

.product-tabs {
  display: grid;
  width: min(100%, 720px);
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 0 auto 24px;
  padding: 5px;
  border-radius: 15px;
  background: var(--surface-warm);
  box-shadow: inset 0 0 0 1px rgba(20, 36, 61, 0.08);
}

.product-tabs button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition-property: background-color, box-shadow, color, transform;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.product-tabs button:active {
  transform: scale(0.96);
}

.product-tabs button span {
  color: #8b96a7;
  font-family: var(--font-display);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.product-tabs button[aria-selected="true"] {
  background: var(--surface);
  box-shadow: var(--shadow-ring);
  color: var(--ink);
}

.product-tabs button[aria-selected="true"] span {
  color: var(--orange-strong);
}

.product-stage {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-elevated);
}

.window-bar-light {
  background: #eef1f4;
  box-shadow: inset 0 -1px var(--line);
}

.window-bar-light .window-address {
  max-width: 360px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(20, 36, 61, 0.08);
  color: #7b8798;
}

.window-secure {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: #5c697b;
  font-size: 10px;
  font-weight: 700;
}

.window-secure svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-panel {
  display: grid;
  min-height: 540px;
  grid-template-columns: 190px minmax(0, 1fr);
  animation: panel-enter 260ms cubic-bezier(0.2, 0, 0, 1) both;
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(10px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 24px 16px;
  background: var(--navy-800);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 8px 22px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.app-brand img {
  width: 20px;
  height: 20px;
}

.app-nav {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 12px;
  font-weight: 600;
}

.app-nav.active {
  background: rgba(226, 100, 28, 0.16);
  box-shadow: inset 3px 0 var(--orange);
  color: #fff;
}

.app-content {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  background: #fbfcfd;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.app-heading small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
}

.app-heading h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.app-heading > span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.mock-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mock-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-field-wide {
  grid-column: 1 / -1;
}

.mock-field span,
.supplier-selector > span {
  color: #566176;
  font-size: 11px;
  font-weight: 700;
}

.mock-field strong {
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(20, 36, 61, 0.14);
  font-size: 12px;
  font-weight: 600;
}

.mock-field:first-child strong {
  box-shadow: 0 0 0 2px rgba(20, 36, 61, 0.75), 0 6px 14px -10px rgba(20, 36, 61, 0.35);
}

.supplier-selector {
  margin-top: 18px;
}

.supplier-selector > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.supplier-selector i {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  box-shadow: 0 0 0 1px rgba(34, 100, 209, 0.16);
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.supplier-selector i:last-child {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(20, 36, 61, 0.18);
  color: var(--muted);
}

.mock-primary-action {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  border: 0;
  border-radius: 9px;
  background: var(--navy-800);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.mock-primary-action span {
  color: #ff8950;
  font-size: 16px;
}

.full-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.scroll-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: -10px 0 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.full-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 11px;
}

.full-table th,
.full-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.full-table th {
  background: var(--surface-warm);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.full-table tbody tr:last-child td {
  border-bottom: 0;
}

.full-table tr.best { background: #f0faf5; }
.full-table tr.fast { background: #f2f6ff; }

.full-table td:first-child small {
  display: block;
  width: fit-content;
  margin-top: 4px;
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.full-table tr.fast td:first-child small {
  background: var(--blue);
}

.table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding-inline: 12px;
  border-radius: 7px;
  background: var(--navy-800);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.comparison-summary {
  display: grid;
  grid-template-columns: auto max-content auto max-content;
  align-items: center;
  gap: 10px 16px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--navy-800);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.comparison-summary strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.audit-content {
  display: grid;
  place-items: center;
  background: #eef1f4;
}

.audit-document {
  width: min(100%, 690px);
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(20, 36, 61, 0.08), 0 18px 44px -28px rgba(20, 36, 61, 0.4);
}

.audit-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.audit-title img {
  width: 32px;
  height: 32px;
}

.audit-title div {
  flex: 1;
}

.audit-title small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-title h3 {
  margin: 0;
  font-size: 18px;
}

.audit-title > span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.audit-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}

.audit-data div {
  display: flex;
  flex-direction: column;
}

.audit-data dt,
.audit-reason span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audit-data dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.audit-reason {
  padding: 16px;
  border-radius: 10px;
  background: var(--surface-warm);
}

.audit-reason p {
  margin: 5px 0 0;
  color: #49556a;
  font-size: 11px;
  line-height: 1.55;
}

.audit-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 9px;
}

/* Product proof */
.product-proof-strip {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-warm);
  box-shadow: var(--shadow-ring);
}

.product-proof-origin {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.product-proof-origin svg {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: var(--orange-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-proof-origin span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-proof-origin strong {
  color: var(--ink);
}

.product-proof-strip ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-proof-strip li {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 10px 10px 10px 34px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(20, 36, 61, 0.07);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.product-proof-strip li::before {
  position: absolute;
  left: 11px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-size: 9px;
  font-weight: 800;
}

/* ROI */
.roi-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(50, 95, 154, 0.24), transparent 30%),
    var(--navy-800);
  color: #fff;
}

.section-heading-on-dark h2 {
  color: #fff;
}

.section-heading-on-dark > p {
  color: rgba(255, 255, 255, 0.66);
}

.roi-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.roi-controls,
.roi-results {
  border-radius: 18px;
}

.roi-controls {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(10, 20, 36, 0.48);
}

.range-group + .range-group {
  margin-top: 34px;
}

.range-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
}

.range-heading label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.range-heading output {
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.03em;
}

input[type="range"] {
  width: 100%;
  height: 44px;
  margin: 0;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(to right, var(--orange) 0 var(--range-progress, 0%), rgba(255, 255, 255, 0.16) var(--range-progress, 0%) 100%) center / 100% 6px no-repeat;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border: 4px solid var(--navy-800);
  border-radius: 50%;
  appearance: none;
  background: #ff8950;
  box-shadow: 0 0 0 2px rgba(255, 137, 80, 0.45);
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 4px solid var(--navy-800);
  border-radius: 50%;
  background: #ff8950;
  box-shadow: 0 0 0 2px rgba(255, 137, 80, 0.45);
}

input[type="range"]:focus-visible {
  outline-offset: 8px;
}

.range-bounds {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.roi-method {
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.roi-results {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 40px);
  background: var(--surface);
  color: var(--ink);
}

.roi-results > p {
  margin-bottom: 18px;
  color: var(--orange-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roi-result-primary,
.roi-result-secondary {
  display: flex;
  flex-direction: column;
}

.roi-result-primary {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.roi-result-secondary {
  margin-bottom: 26px;
  padding-top: 20px;
}

.roi-result-primary span,
.roi-result-secondary span {
  color: var(--muted);
  font-size: 12px;
}

.roi-result-primary strong,
.roi-result-secondary strong {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
}

.roi-result-primary strong {
  color: var(--orange-strong);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
}

.roi-result-secondary strong {
  font-size: 26px;
}

.roi-results .button {
  margin-top: auto;
}

/* Security */
.security-section {
  background: var(--surface);
}

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

.security-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-ring);
  transition-property: box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.security-card:hover {
  box-shadow: var(--shadow-ring-hover);
  transform: translateY(-2px);
}

.security-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-warm);
}

.security-card h3 {
  margin: 19px 0 8px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Plans */
.plans-section {
  background: var(--surface-warm);
}

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

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-ring);
  transition-property: box-shadow, transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.plan-card:hover {
  box-shadow: var(--shadow-ring-hover);
  transform: translateY(-2px);
}

.plan-featured {
  background: var(--navy-800);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07), 0 24px 60px -32px rgba(10, 20, 36, 0.75);
  color: #fff;
}

.plan-heading > span {
  color: var(--orange-strong);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-featured .plan-heading > span {
  color: #ff9b61;
}

.plan-heading h3 {
  margin: 10px 0 8px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.plan-heading p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.plan-featured .plan-heading p {
  color: rgba(255, 255, 255, 0.65);
}

.plan-scope {
  display: flex;
  flex-direction: column;
  margin-block: 24px 20px;
  padding-block: 20px;
  border-block: 1px solid var(--line);
}

.plan-featured .plan-scope {
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-scope strong {
  font-family: var(--font-display);
  font-size: 19px;
}

.plan-scope span {
  color: var(--muted);
  font-size: 12px;
}

.plan-featured .plan-scope span {
  color: rgba(255, 255, 255, 0.52);
}

.plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 25px;
  color: #49556a;
  font-size: 14px;
}

.plan-card li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-size: 10px;
  font-weight: 800;
}

.plan-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.plan-featured li::before {
  background: rgba(226, 100, 28, 0.18);
  color: #ff9b61;
}

.plan-card .button {
  margin-top: auto;
}

.risk-reversal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-ring);
}

.risk-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.risk-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.risk-reversal > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
}

.risk-reversal strong {
  font-size: 14px;
}

.risk-reversal span {
  color: var(--muted);
  font-size: 14px;
}

/* FAQ */
.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: 110px;
}

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

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--orange-strong);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.text-link:hover span {
  transform: translateX(3px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-ring);
  transition-property: box-shadow;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.faq-list details[open] {
  box-shadow: var(--shadow-ring-hover);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--orange-soft);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--orange-strong);
  content: "";
  transform: translate(-50%, -50%);
  transition-property: opacity, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.25);
}

.faq-list details p {
  margin: -2px 22px 0;
  padding: 0 42px 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 9vw, 116px);
  background: var(--orange);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  top: -340px;
  left: -280px;
  width: 680px;
  height: 680px;
}

.final-cta::after {
  right: -180px;
  bottom: -330px;
  width: 580px;
  height: 580px;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  align-items: center;
  justify-content: space-between;
  gap: clamp(60px, 9vw, 120px);
}

.cta-copy h2 {
  margin-bottom: 20px;
  color: var(--navy-950);
}

.cta-copy > p {
  color: var(--navy-950);
}

.cta-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.cta-copy li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-copy li svg {
  stroke: var(--navy-800);
}

.form-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-elevated);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.form-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange-strong);
}

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

.form-heading h3 {
  margin: 0 0 2px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

#demo-form {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.has-js #demo-form {
  display: flex;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  color: #435066;
  font-size: 12px;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(20, 36, 61, 0.18);
  border-radius: 10px;
  background: #fbfcfd;
  color: var(--ink);
  outline: 0;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.form-field input::placeholder {
  color: #687489;
}

.form-field input:hover {
  border-color: rgba(20, 36, 61, 0.32);
}

.form-field input:focus {
  border-color: var(--orange-strong);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(226, 100, 28, 0.15);
}

.form-field input[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.field-error {
  min-height: 0;
  color: #9f1c13;
  font-size: 11px;
  line-height: 1.3;
}

.field-error:empty {
  display: none;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-privacy svg {
  width: 13px;
  height: 13px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-status {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.form-status a {
  color: inherit;
  font-weight: 800;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Footer */
.site-footer {
  padding: 68px 0 28px;
  background: var(--navy-950);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 54px;
}

.footer-brand p {
  max-width: 310px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
  transition-property: color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #1eaa59;
  box-shadow: 0 10px 26px -10px rgba(21, 128, 61, 0.75), inset 0 1px rgba(255, 255, 255, 0.22);
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
  scale: 0.25;
  transition-property: background-color, box-shadow, filter, opacity, scale, transform;
  transition-duration: 160ms, 160ms, 300ms, 300ms, 300ms, 160ms;
  transition-timing-function: ease-out, ease-out, cubic-bezier(0.2, 0, 0, 1), cubic-bezier(0.2, 0, 0, 1), cubic-bezier(0.2, 0, 0, 1), ease-out;
}

.whatsapp-float.is-visible {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  scale: 1;
}

.whatsapp-float:hover {
  background: #168c49;
  box-shadow: 0 14px 34px -10px rgba(21, 128, 61, 0.82), inset 0 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.whatsapp-float:active {
  scale: 0.96;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.wa-bg { fill: #fff; }
.wa-mark { fill: #1eaa59; }

/* Reveal motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-enter {
    animation: hero-enter 520ms cubic-bezier(0.2, 0, 0, 1) both;
  }

  .hero-enter-1 { animation-delay: 40ms; }
  .hero-enter-2 { animation-delay: 120ms; }
  .hero-enter-3 { animation-delay: 200ms; }
  .hero-enter-4 { animation-delay: 280ms; }
  .hero-enter-5 { animation-delay: 360ms; }

  @keyframes hero-enter {
    from { opacity: 0; transform: translateY(14px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }

}

/* Tablet */
@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(46px, 6vw, 58px);
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero-trust > div {
    display: none;
  }

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

  .step-card:nth-child(2) {
    border-right: 0;
    border-radius: 0 var(--radius-lg) 0 0;
  }

  .step-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-radius: 0 0 0 var(--radius-lg);
  }

  .step-card:nth-child(4) {
    border-top: 1px solid var(--line);
    border-radius: 0 0 var(--radius-lg) 0;
  }

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

  .plan-card:last-child {
    grid-column: 1 / -1;
  }

  .plan-heading p {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (min-width: 901px) and (max-height: 700px) {
  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    padding-bottom: 48px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(48px, 5vw, 62px);
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .hero-actions {
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding-block: 78px;
  }

  .header-inner {
    min-height: 64px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 62px);
    letter-spacing: -0.055em;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .button {
    flex: 1 1 190px;
  }

  .hero-checks {
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    width: calc(100% + 4px);
    margin-left: -2px;
    padding: 8px 0 36px;
  }

  .hero-visual::before {
    inset: -2px 6px 20px 14px;
  }

  .window-status,
  .status-success {
    display: none;
  }

  .window-address {
    max-width: none;
  }

  .mock-toolbar {
    padding-inline: 16px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 440px;
    padding-inline: 16px;
  }

  .mock-decision {
    padding-inline: 16px;
  }

  .floating-proof {
    right: 12px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 18px 22px;
  }

  .hero-trust > div {
    display: none;
  }

  .hero-trust > span {
    font-size: 12px;
  }

  .section-heading,
  .section-heading-wide {
    margin-bottom: 38px;
  }

  .section-heading-wide {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading h2,
  .faq-intro h2,
  .cta-copy h2 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .problem-grid,
  .steps-grid,
  .security-grid,
  .plans-grid,
  .roi-card,
  .faq-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    padding: 24px;
  }

  .mobile-swipe-hint {
    display: flex;
  }

  .problem-grid,
  .plans-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-inline: -16px;
    padding: 4px 16px 18px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .problem-grid::-webkit-scrollbar,
  .plans-grid::-webkit-scrollbar {
    display: none;
  }

  .problem-card,
  .plan-card {
    flex: 0 0 calc(100vw - 52px);
    scroll-snap-align: start;
  }

  .steps-grid {
    gap: 12px;
  }

  .step-card,
  .step-card:first-child,
  .step-card:nth-child(2),
  .step-card:nth-child(3),
  .step-card:nth-child(4),
  .step-card:last-child {
    border: 0;
    border-radius: var(--radius-md);
  }

  .supplier-note,
  .risk-reversal {
    align-items: flex-start;
  }

  .supplier-note > div:last-child,
  .risk-reversal > div:last-child {
    flex-direction: column;
  }

  .product-tabs {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-tabs button {
    justify-content: flex-start;
    padding-inline: 16px;
  }

  .product-stage {
    border-radius: 18px;
  }

  .window-bar-light .window-address {
    max-width: none;
  }

  .window-secure {
    display: none;
  }

  .product-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .app-content {
    padding: 24px 18px;
  }

  .app-heading {
    align-items: flex-start;
  }

  .app-heading h3 {
    font-size: 18px;
  }

  .mock-form-grid {
    grid-template-columns: 1fr;
  }

  .mock-field-wide {
    grid-column: auto;
  }

  .comparison-summary {
    grid-template-columns: 1fr max-content;
  }

  .scroll-hint {
    display: flex;
  }

  .audit-content {
    padding: 18px 12px;
  }

  .audit-document {
    padding: 20px;
  }

  .audit-data {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .audit-footer {
    flex-direction: column;
    gap: 4px;
  }

  .product-proof-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-proof-strip ul {
    grid-template-columns: 1fr;
  }

  .roi-card {
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
  }

  .range-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .range-heading output {
    font-size: 24px;
  }

  .plan-card:last-child {
    grid-column: auto;
  }

  .faq-grid {
    gap: 36px;
  }

  .faq-intro {
    position: static;
  }

  .faq-list summary {
    padding-inline: 18px;
    font-size: 15px;
  }

  .faq-list details p {
    margin-inline: 18px;
    padding-right: 30px;
  }

  .cta-grid {
    gap: 40px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-links {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  .steps-grid,
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card,
  .security-card {
    padding: 19px;
  }

  .step-card h3,
  .security-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    flex: none;
  }

  .window-address {
    font-size: 9px;
  }

  .window-bar {
    gap: 8px;
    padding-inline: 10px;
  }

  .mock-toolbar strong {
    font-size: 13px;
  }

  .mock-button {
    padding-inline: 10px;
  }

  .floating-proof {
    max-width: calc(100% - 18px);
  }

  .problem-card,
  .plan-card {
    padding: 22px;
  }

  .problem-grid,
  .plans-grid {
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .audit-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .audit-title div {
    min-width: 140px;
  }

  .form-heading {
    align-items: flex-start;
  }
}

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

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