:root {
  --black: #000000;
  --ink: #2b2b2b;
  --muted: #a7a7a7;
  --paper: #e6e6e6;
  --white: #ffffff;
  --line: rgba(230, 230, 230, 0.16);
  --line-dark: rgba(0, 0, 0, 0.12);
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --container: 1180px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: var(--black);
  letter-spacing: 0;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--paper), rgba(230, 230, 230, 0.34));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.cursor-spotlight {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(230, 230, 230, 0.09), rgba(230, 230, 230, 0.026) 42%, transparent 70%);
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
  will-change: transform;
}

body.has-pointer .cursor-spotlight {
  opacity: 1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--black);
  background: var(--paper);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: var(--header-height);
  padding: 14px max(20px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(0, 0, 0, 0.86);
  border-bottom-color: var(--line);
}

.brand {
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  line-height: 1.05;
}

.brand img,
.site-footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  max-width: 118px;
  color: var(--paper);
  font-size: 14px;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.primary-nav a {
  color: rgba(230, 230, 230, 0.76);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230, 230, 230, 0.42);
  border-radius: var(--radius);
  padding: 0 18px;
  color: var(--black);
  background: var(--paper);
  font-weight: 900;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms 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);
}

.section {
  padding: 112px 0;
}

.section-dark,
.services-section,
.process-section,
.social-proof-section,
.contact-section {
  background: var(--black);
}

.section-light {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(230,230,230,1)),
    var(--paper);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 76px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(230, 230, 230, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 1)),
    repeating-linear-gradient(90deg, rgba(230,230,230,0.055) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(230,230,230,0.04) 0 1px, transparent 1px 90px);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 45%, rgba(230,230,230,0.08) 45.2%, transparent 46.2% 100%);
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 52px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: rgba(43, 43, 43, 0.66);
}

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

h1 {
  margin-bottom: 22px;
  font-size: 76px;
  line-height: 0.96;
  font-weight: 950;
}

h2 {
  margin-bottom: 0;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 930;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-statement {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 32px;
  line-height: 1.16;
  font-weight: 850;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(230, 230, 230, 0.78);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 15px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  white-space: normal;
  text-align: center;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.32) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--black);
  background: var(--paper);
  border-color: var(--paper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--white);
}

.btn-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(230, 230, 230, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(230, 230, 230, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.trust-strip {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: rgba(230, 230, 230, 0.78);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.visual-shell {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.05;
}

.hero-symbol {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: contrast(1.08);
}

.signal-board {
  position: absolute;
  right: -18px;
  bottom: 30px;
  width: min(88%, 380px);
  border: 1px solid rgba(230, 230, 230, 0.24);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.board-topline,
.metric-row,
.board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.board-topline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 22px;
}

.metric-row span {
  color: rgba(230, 230, 230, 0.78);
  font-weight: 700;
}

.metric-row strong {
  font-size: 42px;
  line-height: 1;
}

.chart-bars {
  height: 118px;
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
}

.chart-bars span {
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--white), rgba(230, 230, 230, 0.26));
  transform-origin: bottom;
  animation: growBar 1200ms ease both;
}

.chart-bars span:nth-child(1) { height: 34%; animation-delay: 80ms; }
.chart-bars span:nth-child(2) { height: 52%; animation-delay: 140ms; }
.chart-bars span:nth-child(3) { height: 68%; animation-delay: 200ms; }
.chart-bars span:nth-child(4) { height: 82%; animation-delay: 260ms; }
.chart-bars span:nth-child(5) { height: 100%; animation-delay: 320ms; }

.board-footer small {
  color: var(--muted);
  font-size: 11px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

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

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

.rich-copy p {
  color: rgba(43, 43, 43, 0.75);
  font-size: 19px;
}

.values-grid {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.values-grid article,
.proof-list article {
  border-left: 3px solid var(--black);
  padding: 18px 0 18px 22px;
}

.values-grid span,
.metric-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(43, 43, 43, 0.58);
}

.values-grid p,
.proof-list p {
  margin-bottom: 0;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.96), rgba(0,0,0,1)),
    repeating-linear-gradient(135deg, rgba(230,230,230,0.04) 0 1px, transparent 1px 100px);
}

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

.service-card,
.timeline-step {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card::before,
.timeline-step::before,
.company-card::before,
.quote-card::before,
.testimonial-panel::before,
.rating-panel::before,
.platform-strip::before,
.results-calculator::before,
.calculator-card::before,
.calculator-chart::before,
.lead-form::before,
.footer-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.16), transparent 34%);
  transition: opacity 220ms ease;
}

.service-card:hover,
.timeline-step:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 230, 230, 0.34);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.service-card:hover::before,
.timeline-step:hover::before,
.company-card:hover::before,
.quote-card:hover::before,
.testimonial-panel:hover::before,
.rating-panel:hover::before,
.platform-strip:hover::before,
.results-calculator:hover::before,
.calculator-card:hover::before,
.calculator-chart:hover::before,
.lead-form:hover::before,
.footer-map:hover::before {
  opacity: 1;
}

.service-card span,
.timeline-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid rgba(230, 230, 230, 0.26);
  border-radius: var(--radius);
  color: var(--paper);
  font-weight: 900;
}

.service-card p,
.timeline-step p {
  color: rgba(230, 230, 230, 0.7);
  margin-bottom: 0;
}

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

.proof-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 45px;
  height: 1px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  min-height: 286px;
}

.section-support {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(230, 230, 230, 0.72);
  font-size: 18px;
}

.section-support.dark {
  color: rgba(43, 43, 43, 0.68);
}

.results-calculator {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 0;
  margin-top: 46px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  padding: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025) 42%, rgba(255, 255, 255, 0.075)),
    #050505;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.26);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.results-calculator::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(230, 230, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 230, 230, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.72), transparent 68%);
}

.results-calculator:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.32);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.34);
}

.calculator-panel,
.calculator-output {
  position: relative;
  z-index: 1;
}

.calculator-panel {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: clamp(24px, 3.2vw, 42px);
  border-right: 1px solid rgba(230, 230, 230, 0.13);
  border-radius: calc(var(--radius) - 2px) 0 0 calc(var(--radius) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.calculator-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calculator-title-row .eyebrow {
  margin-bottom: 0;
}

.calculator-title-row span {
  border: 1px solid rgba(230, 230, 230, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(230, 230, 230, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-heading h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 0.98;
}

.calculator-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(230, 230, 230, 0.72);
}

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

.calculator-field {
  display: grid;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(230, 230, 230, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.calculator-field:focus-within {
  transform: translateY(-2px);
  border-color: rgba(230, 230, 230, 0.42);
  background: rgba(0, 0, 0, 0.34);
}

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

.calculator-field span {
  color: rgba(230, 230, 230, 0.82);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-field input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(230, 230, 230, 0.24);
  border-radius: 0;
  padding: 0 0 8px;
  color: var(--white);
  background: transparent;
  font-size: 22px;
  font-weight: 900;
  outline: none;
  transition: border-color 160ms ease;
}

.calculator-field input:focus {
  border-color: rgba(230, 230, 230, 0.72);
}

.calculator-field input[type="range"] {
  min-height: auto;
  height: 24px;
  padding: 0;
  accent-color: var(--paper);
  border-bottom: 0;
  cursor: pointer;
}

.calculator-field input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(230, 230, 230, 0.22);
}

.calculator-field input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -6px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 6px rgba(230, 230, 230, 0.08);
  appearance: none;
}

.calculator-field input[type="range"]::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(230, 230, 230, 0.22);
}

.calculator-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--black);
}

.calculator-field small {
  display: flex;
  justify-content: space-between;
  color: rgba(230, 230, 230, 0.58);
  font-size: 12px;
}

.calculator-note {
  border-left: 2px solid rgba(230, 230, 230, 0.5);
  padding-left: 16px;
}

.calculator-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
}

.calculator-note p {
  margin-bottom: 0;
  color: rgba(230, 230, 230, 0.62);
  font-size: 13px;
}

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

.btn-light {
  color: var(--black);
  border-color: var(--paper);
  background: var(--paper);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--white);
}

.btn-ghost {
  color: var(--paper);
  border-color: rgba(230, 230, 230, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(230, 230, 230, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.calculator-output {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 28px);
}

.calculator-summary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 230, 230, 0.16);
  border-radius: var(--radius);
  padding: clamp(22px, 2.8vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
}

.calculator-summary::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -118px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(230, 230, 230, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 230, 230, 0.12), transparent 64%);
}

.calculator-summary span,
.calculator-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-summary strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.calculator-summary p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(230, 230, 230, 0.66);
  font-size: 14px;
}

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

.calculator-card,
.calculator-chart {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(230, 230, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.calculator-card {
  min-height: 144px;
  padding: 18px;
}

.calculator-card:hover,
.calculator-chart:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 230, 230, 0.34);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.calculator-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.calculator-card small {
  color: rgba(230, 230, 230, 0.6);
}

.calculator-chart {
  min-height: 330px;
  padding: 22px;
  background:
    linear-gradient(rgba(230, 230, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 230, 230, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.05);
  background-size: 44px 44px, 44px 44px, auto;
}

.chart-topline,
.calculator-scale {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.chart-topline {
  margin-bottom: 22px;
}

.chart-topline span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-topline strong,
.calculator-scale span {
  color: rgba(230, 230, 230, 0.72);
  font-size: 13px;
}

.calculator-bars {
  min-height: 220px;
  display: grid;
  grid-template-columns: repeat(var(--bar-count, 12), minmax(6px, 1fr));
  gap: clamp(4px, 0.7vw, 8px);
  align-items: end;
  border-left: 1px solid rgba(230, 230, 230, 0.18);
  border-bottom: 1px solid rgba(230, 230, 230, 0.18);
  padding: 14px 2px 0 14px;
}

.calculator-bars span {
  position: relative;
  display: block;
  min-height: 8px;
  border-radius: 7px 7px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 230, 230, 0.68) 42%, rgba(230, 230, 230, 0.18)),
    var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 14px 26px rgba(0, 0, 0, 0.18);
  transform-origin: bottom;
  animation: growBar 620ms ease both;
  transition: height 360ms ease, opacity 220ms ease, transform 220ms ease;
}

.calculator-bars span:hover {
  opacity: 0.86;
  transform: translateY(-3px);
}

.calculator-bars span::after {
  content: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(230, 230, 230, 0.16);
  border-radius: 6px;
  padding: 5px 7px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.88);
  font-size: 11px;
  transition: opacity 160ms ease;
}

.calculator-bars span:hover::after {
  content: attr(data-label);
  opacity: 1;
}

.calculator-scale {
  margin-top: 14px;
}

.client-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}

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

.proof-kicker,
.company-card,
.testimonial-panel,
.rating-panel,
.quote-card,
.platform-strip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.proof-kicker {
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(230, 230, 230, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.proof-kicker span,
.company-card span,
.quote-card span,
.platform-strip > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-kicker p {
  max-width: 36rem;
  margin-bottom: 0;
  color: rgba(230, 230, 230, 0.72);
  font-size: 15px;
  line-height: 1.58;
}

.company-card {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.company-card:hover,
.quote-card:hover,
.testimonial-panel:hover,
.rating-panel:hover,
.platform-strip:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 230, 230, 0.32);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.company-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.1;
}

.company-card p,
.quote-card p,
.rating-list p {
  color: rgba(230, 230, 230, 0.7);
  line-height: 1.58;
}

.company-card a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--white);
  font-weight: 900;
  border-bottom: 1px solid rgba(230, 230, 230, 0.45);
}

.social-proof-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 22px;
}

.testimonial-panel,
.rating-panel {
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.testimonial-panel .proof-kicker,
.rating-panel .proof-kicker {
  min-height: auto;
  margin-bottom: 16px;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(230, 230, 230, 0.12);
  border-radius: 0;
  border-color: rgba(230, 230, 230, 0.12);
  background: transparent;
}

.quote-list,
.rating-list {
  display: grid;
  gap: 14px;
}

.quote-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rating-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-card {
  min-height: 188px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.rating-list article {
  min-height: 168px;
  border-left: 2px solid rgba(230, 230, 230, 0.42);
  padding: 4px 6px 4px 16px;
}

.rating-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 17px;
  line-height: 1.16;
}

.rating-list p {
  margin-bottom: 0;
  font-size: 14px;
}

.platform-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 0;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.platform-strip > span,
.platform-mark {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.platform-grid .platform-mark:last-child {
  border-right: 0;
}

.platform-mark strong {
  color: var(--paper);
  font-size: 20px;
  line-height: 1.05;
}

.platform-mark small {
  margin-top: 6px;
  color: rgba(230, 230, 230, 0.58);
  font-weight: 700;
}

.partner-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.partner-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  color: rgba(230, 230, 230, 0.74);
  border-right: 1px solid var(--line);
  font-weight: 850;
}

.partner-strip span:last-child {
  border-right: 0;
}

.final-cta {
  padding: 112px 0;
  background:
    linear-gradient(135deg, rgba(230,230,230,0.12), transparent 36%),
    var(--black);
}

.final-cta-inner {
  max-width: 980px;
  text-align: center;
}

.final-cta h2 {
  font-size: 58px;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 28px;
  color: rgba(230, 230, 230, 0.76);
  font-size: 20px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.76fr);
  gap: 58px;
  align-items: start;
}

.contact-note {
  margin-top: 24px;
  color: rgba(230, 230, 230, 0.72);
  font-size: 18px;
}

.lead-form {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.lead-form:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 230, 230, 0.26);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    rgba(255, 255, 255, 0.06);
}

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

.form-row-full {
  grid-column: 1 / -1;
}

.form-row {
  margin-bottom: 0;
}

.form-row label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: rgba(230, 230, 230, 0.84);
  font-weight: 800;
  font-size: 14px;
}

.form-row label span {
  color: rgba(230, 230, 230, 0.5);
  font-size: 12px;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(230, 230, 230, 0.22);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.54);
  outline: none;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 132px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(230, 230, 230, 0.72);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 0 0 3px rgba(230, 230, 230, 0.08);
  transform: translateY(-1px);
}

.form-row input[aria-invalid="true"],
.form-row select[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: var(--white);
}

.form-row small {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: var(--white);
  font-size: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
  min-height: 58px;
  font-size: 16px;
}

.form-submit:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: rgba(230, 230, 230, 0.78);
  font-size: 14px;
}

.form-status[data-type="success"] {
  color: var(--white);
}

.form-status[data-type="error"] {
  color: var(--paper);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-hint {
  margin: 18px 0 0;
  color: rgba(230, 230, 230, 0.58);
  font-size: 13px;
}

.conversion-points {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.conversion-points span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: rgba(230, 230, 230, 0.78);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 32%),
    var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.35fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.site-footer p,
.site-footer a {
  color: rgba(230, 230, 230, 0.68);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 16px;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand span {
  max-width: 130px;
  color: var(--paper);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-map {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 178px;
  margin-top: 16px;
  border: 1px solid rgba(230, 230, 230, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.footer-map:hover,
.footer-map:focus-within {
  transform: translateY(-3px);
  border-color: rgba(230, 230, 230, 0.36);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.42);
}

.footer-map iframe {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 178px;
  display: block;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.88);
}

.footer-map::before {
  z-index: 1;
}

.footer-bottom {
  width: min(100% - 40px, var(--container));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(230, 230, 230, 0.56);
  font-size: 13px;
}

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
}

.whatsapp-card {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(360px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(230, 230, 230, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-card.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-card img {
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.whatsapp-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.whatsapp-card p {
  margin-bottom: 12px;
  color: rgba(230, 230, 230, 0.7);
  font-size: 14px;
}

.whatsapp-card .btn {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  font-size: 13px;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 230, 230, 0.42);
  border-radius: 50%;
  color: var(--black);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  font-weight: 950;
  transition: transform 170ms ease, background 170ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px);
  background: var(--white);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(230, 230, 230, 0.16);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  font-size: 22px;
  line-height: 1;
}

.popup-close:hover,
.popup-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.legal-page {
  color: var(--ink);
  background: var(--paper);
}

.legal-main {
  padding: 140px 0 90px;
}

.legal-document {
  max-width: 840px;
}

.legal-document h1 {
  color: var(--black);
  font-size: 54px;
}

.legal-document h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 26px;
}

.legal-document p,
.legal-document li {
  color: rgba(43, 43, 43, 0.74);
  font-size: 17px;
}

.legal-document a {
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

@keyframes growBar {
  from {
    transform: scaleY(0);
    opacity: 0.4;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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

  .cursor-spotlight,
  .scroll-progress {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-spotlight {
    display: none;
  }
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .client-showcase .proof-kicker {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .quote-list,
  .rating-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline::before {
    display: none;
  }

  .timeline-step {
    min-height: auto;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .header-cta {
    grid-column: 3;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 10px;
    border-color: var(--line);
    background: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 14px;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .results-calculator {
    grid-template-columns: 1fr;
  }

  .results-calculator {
    gap: 8px;
  }

  .calculator-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(230, 230, 230, 0.13);
    border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  }

  .calculator-output {
    padding: 18px;
  }

  .calculator-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-shell {
    max-width: 520px;
    margin-inline: auto;
  }

  .proof-list,
  .client-showcase,
  .social-proof-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .platform-strip {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .platform-strip > span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-grid .platform-mark:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .platform-grid .platform-mark:nth-child(3),
  .platform-grid .platform-mark:nth-child(6) {
    border-right: 0;
  }

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

  .partner-strip span {
    border-bottom: 1px solid var(--line);
  }

  h1 {
    font-size: 58px;
  }

  h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .hero-statement {
    font-size: 26px;
  }
}

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

  .site-header {
    min-height: 72px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .primary-nav {
    top: 72px;
    left: 14px;
    right: 14px;
  }

  .section,
  .final-cta {
    padding: 78px 0;
  }

  .hero {
    padding: 112px 0 56px;
    min-height: 100svh;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    font-size: 46px;
  }

  h2,
  .final-cta h2,
  .legal-document h1 {
    font-size: 32px;
  }

  .hero-statement {
    font-size: 23px;
  }

  .hero-subtitle,
  .final-cta p:not(.eyebrow) {
    font-size: 17px;
  }

  .section-heading.centered {
    margin-bottom: 36px;
  }

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

  .trust-strip span,
  .conversion-points span {
    padding: 12px 14px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
  }

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

  .service-card,
  .timeline-step,
  .company-card,
  .quote-card {
    min-height: auto;
    padding: 20px;
  }

  .service-card span {
    margin-bottom: 28px;
  }

  .timeline {
    gap: 12px;
  }

  .timeline-step span {
    margin-bottom: 20px;
  }

  .visual-shell {
    width: min(100%, 360px);
    aspect-ratio: 1 / 1.08;
  }

  .signal-board {
    right: 8px;
    bottom: 10px;
    width: calc(100% - 16px);
    padding: 16px;
  }

  .metric-row strong {
    font-size: 34px;
  }

  .results-calculator {
    margin-top: 34px;
    padding: 8px;
  }

  .calculator-panel,
  .calculator-chart {
    padding: 20px;
  }

  .calculator-panel {
    gap: 20px;
  }

  .calculator-title-row {
    align-items: flex-start;
  }

  .calculator-heading h3 {
    font-size: 26px;
    line-height: 1.05;
  }

  .calculator-form,
  .calculator-actions,
  .calculator-cards {
    grid-template-columns: 1fr;
  }

  .calculator-field {
    padding: 14px;
  }

  .calculator-field input {
    min-height: 44px;
    font-size: 20px;
  }

  .calculator-summary {
    padding: 20px;
  }

  .calculator-summary strong {
    font-size: 38px;
  }

  .calculator-summary p {
    font-size: 13px;
  }

  .calculator-card {
    min-height: auto;
    padding: 20px;
  }

  .calculator-card strong {
    font-size: 28px;
  }

  .calculator-bars {
    min-height: 180px;
    gap: 4px;
    padding-left: 10px;
  }

  .chart-topline,
  .calculator-scale {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .client-showcase,
  .social-proof-layout {
    gap: 12px;
  }

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

  .quote-list,
  .rating-list {
    grid-template-columns: 1fr;
  }

  .proof-kicker,
  .testimonial-panel,
  .rating-panel {
    padding: 18px;
  }

  .testimonial-panel .proof-kicker,
  .rating-panel .proof-kicker {
    padding: 0 0 16px;
  }

  .company-card,
  .quote-card,
  .rating-list article {
    min-height: auto;
  }

  .company-card h3 {
    font-size: 24px;
  }

  .platform-strip {
    grid-template-columns: 1fr;
  }

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

  .platform-strip > span,
  .platform-mark {
    min-height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .platform-grid .platform-mark {
    border-right: 0;
  }

  .platform-grid .platform-mark:last-child {
    border-bottom: 0;
  }

  .lead-form {
    padding: 20px;
  }

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

  .form-row input,
  .form-row select,
  .form-row textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .form-row textarea {
    min-height: 142px;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 220px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-card {
    right: -2px;
    grid-template-columns: 1fr;
    width: min(330px, calc(100vw - 28px));
  }

  .whatsapp-card img {
    width: 62px;
    height: 62px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}
