:root {
  --surface: #fbf9fb;
  --surface-low: #f5f3f5;
  --surface-container: #ffffff;
  --surface-gray: #f0f2f5;
  --navy: #05162e;
  --navy-soft: #0b1c34;
  --text: #1b1b1d;
  --muted: #5f6368;
  --line: #e0e4e8;
  --line-strong: #c5c6ce;
  --blue: #0050cd;
  --blue-bright: #0966ff;
  --green: #42b72a;
  --shadow: 0 10px 30px rgba(5, 22, 46, 0.06);
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Inter", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(251, 249, 251, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.hero-stats,
.trust-strip,
.included-list,
.contact-lines,
.site-footer,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.brand-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
}

.brand-icon.small {
  width: 18px;
  height: 18px;
}

.site-nav {
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.site-nav .active,
.site-nav a:hover,
.hero h1 span,
.performance h2 span,
.closing h2 span {
  color: var(--blue);
}

.button,
.strategy-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.button:hover,
.strategy-form button:hover {
  background: var(--blue-bright);
}

.button-sm {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.button-outline {
  color: var(--navy);
  background: var(--surface-container);
  border-color: var(--line-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 90px) 24px 56px;
}

.pill,
.method-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  margin: 0 0 22px;
  padding: 0 10px;
  color: var(--blue);
  background: rgba(9, 102, 255, 0.08);
  border: 1px solid rgba(9, 102, 255, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.4vw, 5.75rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.04rem;
}

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

.hero-stats {
  gap: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.hero-showcase {
  position: relative;
  min-height: 315px;
  filter: drop-shadow(0 24px 36px rgba(5, 22, 46, 0.16));
}

.mockup {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.main-card {
  inset: 38px 54px auto 0;
  min-height: 210px;
  padding: 22px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--navy);
}

.main-card h2 {
  max-width: 330px;
  color: var(--blue);
  font-size: 2.05rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.mini-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-row span {
  height: 36px;
  background: var(--surface-gray);
  border-radius: 8px;
}

.form-card {
  right: 0;
  top: 0;
  width: 220px;
  padding: 16px;
}

.tiny-label {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.input-line {
  height: 24px;
  margin-bottom: 9px;
  background: var(--surface-gray);
  border-radius: var(--radius);
}

.input-line.short {
  width: 74%;
}

.form-card button {
  width: 100%;
  min-height: 30px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 800;
}

.dark-card {
  right: 16px;
  bottom: 10px;
  width: 250px;
  min-height: 118px;
  padding: 20px;
  color: #fff;
  background: var(--navy);
}

.dark-card span,
.dark-card strong {
  display: block;
}

.dark-card span {
  color: #b7c7e7;
  font-size: 0.75rem;
}

.dark-card strong {
  margin-top: 8px;
  color: var(--green);
  font-size: 1.5rem;
}

.trust-strip {
  justify-content: center;
  gap: clamp(20px, 5vw, 72px);
  padding: 20px 24px;
  color: #b7c7e7;
  background: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-strip strong {
  color: #fff;
}

.section {
  padding: 88px 24px;
}

.features,
.faq {
  background: var(--surface-low);
}

.process {
  background: #efedf0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
}

.centered {
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  min-height: 210px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card.featured {
  border-top: 4px solid var(--blue);
  transform: translateY(-6px);
}

.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--blue);
  background: rgba(9, 102, 255, 0.08);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 900;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto 56px;
}

.process-row article {
  text-align: center;
}

.process-row span {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 20px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.process-row article:last-child span {
  background: #000;
}

.process-row h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.process-row p {
  font-size: 0.78rem;
  line-height: 1.45;
}

.included-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(5, 22, 46, 0.12);
}

.included-card h3 {
  text-align: center;
}

.included-list {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.included-list span {
  flex: 1 1 320px;
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.included-list span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.performance {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 24px;
}

.performance-copy h2 {
  max-width: 650px;
}

.insight-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.insight-list article {
  padding: 18px 22px;
  background: var(--surface-low);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
}

.insight-list article:last-child {
  border-left-color: var(--blue);
}

.insight-list h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.video-panel {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 30%, rgba(9, 102, 255, 0.5), transparent 95px),
    linear-gradient(135deg, #06172f, #02070f);
  box-shadow: var(--shadow);
}

.video-dashboard {
  position: absolute;
  inset: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  opacity: 0.55;
}

.video-dashboard span {
  border: 1px solid rgba(183, 199, 231, 0.22);
  border-radius: 12px;
  background: rgba(9, 102, 255, 0.12);
}

.play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.play::before {
  content: "";
  position: absolute;
  inset: 21px 20px 20px 25px;
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.lift-badge {
  position: absolute;
  left: -22px;
  bottom: 34px;
  padding: 18px 22px;
  color: var(--green);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--text);
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 20px;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  padding: 92px clamp(24px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(105deg, transparent 0 68%, rgba(9, 102, 255, 0.16) 68% 100%),
    var(--navy);
}

.closing p {
  max-width: 560px;
  color: #b7c7e7;
}

.contact-lines {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  color: #fff;
  font-weight: 800;
}

.strategy-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  color: var(--text);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
}

.strategy-form h3,
.strategy-form .full {
  grid-column: 1 / -1;
}

.strategy-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.strategy-form input,
.strategy-form select {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  outline: none;
}

.strategy-form input:focus,
.strategy-form select:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 2px rgba(9, 102, 255, 0.14);
}

.strategy-form button {
  width: 100%;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(24px, 6vw, 72px);
  color: #b7c7e7;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.footer-brand {
  color: #fff;
}

.site-footer nav {
  gap: clamp(14px, 3vw, 30px);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero,
  .performance,
  .closing {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    height: 64px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .hero {
    padding: 42px 16px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  .hero-stats,
  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-showcase {
    min-height: 380px;
  }

  .main-card {
    right: 0;
  }

  .form-card {
    top: 190px;
  }

  .dark-card {
    left: 10px;
    right: auto;
  }

  .feature-grid,
  .process-row {
    grid-template-columns: 1fr;
  }

  .section,
  .performance,
  .closing {
    padding: 64px 16px;
  }

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

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

  .site-footer,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
