:root {
  --navy: #07162d;
  --navy-2: #10233e;
  --blue: #1d5fc4;
  --blue-2: #eaf3ff;
  --green: #128553;
  --danger: #d31324;
  --danger-dark: #30070b;
  --danger-ink: #fff2f3;
  --ink: #172033;
  --muted: #596577;
  --line: #d7deea;
  --bg: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(6, 23, 47, 0.1);
  --shadow-soft: 0 10px 24px rgba(6, 23, 47, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px 154px 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 13px;
}

.brand-text {
  font-size: 18px;
}

.language-switcher {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 40;
  display: block;
  width: 118px;
}

.language-select {
  width: 100%;
  height: 40px;
  padding: 0 34px 0 12px;
  color: var(--ink);
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 17px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 12px) 17px / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(7, 22, 45, 0.12);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  appearance: none;
  cursor: pointer;
}

.language-select:focus-visible {
  outline: 3px solid rgba(29, 95, 196, 0.32);
  outline-offset: 2px;
}

.menu-button {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--navy);
  border: 0;
  border-radius: 6px;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.site-nav {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  display: none;
  padding: 12px 18px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 102, 216, 0.18);
}

.section,
.hero,
.final-cta {
  padding: 64px 20px;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--navy);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 68px);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 22, 45, 0.96) 0%, rgba(7, 22, 45, 0.82) 34%, rgba(7, 22, 45, 0.28) 62%, rgba(7, 22, 45, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 22, 45, 0.18), rgba(7, 22, 45, 0.58));
  content: "";
  pointer-events: none;
}

.hero-copy,
.section-heading,
.split-section > div,
.dashboard-visual,
.problem-list,
.service-grid,
.price-grid,
.flow-list,
.faq-list,
.contact-form,
.feature-strip,
.final-cta,
.site-footer {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-dark .eyebrow {
  color: #69d498;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.32;
  letter-spacing: 0;
}

h1 {
  font-size: 34px;
  max-width: 12.5em;
}

h2 {
  font-size: 28px;
  max-width: 15em;
  margin-right: auto;
  margin-left: auto;
}

h3 {
  font-size: 19px;
}

p {
  margin: 14px 0 0;
}

.hero-lead,
.section-heading p,
.split-section p,
.final-cta p {
  max-width: 760px;
  color: inherit;
  font-size: 16px;
}

.hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.section:not(.section-dark) .section-heading p,
.section:not(.section-dark) .split-section p {
  color: var(--muted);
}

.cta-row {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(18, 133, 83, 0.22);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button:hover,
.site-nav a:hover {
  transform: translateY(-1px);
}

.button,
.site-nav a {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 7px 11px;
  color: #dceaff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.hero-proof {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof span {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof span::before {
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  box-shadow: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-image-message {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(24px, 6vw, 70px);
  z-index: 2;
  max-width: 480px;
  margin: 0;
  padding: 16px 18px;
  color: #fff;
  background: rgba(5, 18, 38, 0.76);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.hero-image-message span,
.hero-image-message small {
  display: block;
}

.hero-image-message span {
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 900;
  line-height: 1.28;
}

.hero-image-message small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

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

.narrative-section {
  scroll-margin-top: 82px;
}

.narrative-section .section-heading,
.final-cta {
  max-width: 980px;
}

.narrative-section .section-heading h2,
.split-section.narrative-section h2,
.final-cta h2 {
  max-width: 13.5em;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.24;
  font-weight: 900;
}

.narrative-section .section-heading p,
.split-section.narrative-section p,
.final-cta p {
  max-width: 760px;
  margin-top: 18px;
}

.support-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.support-section .section-heading {
  margin-bottom: 28px;
}

.support-section .section-heading .support-title {
  max-width: 18em;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(25px, 3.4vw, 36px);
  line-height: 1.34;
  font-weight: 700;
}

.problem-list,
.service-grid,
.price-grid {
  display: grid;
  gap: 14px;
}

.problem-list article,
.service-card,
.price-grid article {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.problem-list .risk-card {
  overflow: hidden;
  padding: 64px 22px 24px;
  color: var(--danger-ink);
  border: 1px solid rgba(255, 125, 135, 0.22);
  background:
    radial-gradient(circle at top right, rgba(255, 80, 95, 0.12), transparent 34%),
    linear-gradient(145deg, #3d0710 0%, #1f0710 48%, #0b1220 100%);
  box-shadow: 0 16px 30px rgba(77, 5, 12, 0.12);
}

.risk-card h3,
.service-card h3,
.price-grid h3 {
  font-size: 18px;
  line-height: 1.42;
}

.problem-list article::before,
.service-card::before,
.price-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--blue);
  border-radius: 6px 6px 0 0;
  content: "";
}

.problem-list .risk-card::before {
  height: 5px;
  background: linear-gradient(90deg, #ff5261, #ff9f45 54%, #ff5261);
  border-radius: 0;
}

.section-muted .service-card,
.section-muted .price-grid article {
  background: var(--white);
}

.problem-list .risk-number {
  position: absolute;
  top: 18px;
  left: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.risk-label {
  position: absolute;
  top: 22px;
  right: 66px;
  padding: 4px 8px;
  color: rgba(255, 244, 245, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.risk-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.risk-card .risk-mark {
  position: absolute;
  top: 18px;
  right: 20px;
}

.risk-bad {
  color: #fff;
  background: #9f1d2a;
  box-shadow: 0 0 0 3px rgba(211, 19, 36, 0.06);
}

.risk-good {
  flex: 0 0 auto;
  color: #fff;
  background: var(--green);
}

.risk-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.risk-flow b,
.risk-flow strong {
  display: block;
}

.risk-flow i {
  color: #ffb25c;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
}

.risk-flow strong {
  color: #ffd0d4;
}

.risk-card h3 {
  color: #fff;
  font-size: 22px;
}

.problem-list .risk-card p {
  color: rgba(255, 244, 245, 0.84);
}

.risk-solution {
  display: flex;
  gap: 16px;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 133, 83, 0.24), rgba(29, 95, 196, 0.14)),
    var(--navy);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.risk-solution h3 {
  color: var(--white);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.28;
}

.risk-solution p {
  color: rgba(255, 255, 255, 0.82);
}

.risk-solution-cta {
  margin-top: 14px;
}

.problem-list .risk-card h3,
.problem-list .risk-card p {
  position: relative;
  z-index: 1;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.problem-list p,
.service-card p,
.price-grid p {
  color: var(--muted);
}

.center-cta {
  max-width: 1120px;
  margin: 32px auto 0;
  text-align: center;
}

.align-left {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.split-section {
  display: grid;
  gap: 30px;
  max-width: 1160px;
  margin: 0 auto;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 26px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "";
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.dashboard-visual {
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.dashboard-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.app-section {
  background:
    linear-gradient(180deg, var(--white), var(--bg));
}

.app-layout {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-strip {
  display: grid;
  gap: 12px;
}

.feature-strip div {
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.app-preview {
  padding: 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.app-preview-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.app-preview-header b {
  color: #bbf7d0;
  font-size: 12px;
}

.app-field {
  margin-top: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.app-field small,
.app-field strong {
  display: block;
}

.app-field small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.app-status {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.app-status span {
  display: block;
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 6px;
}

.app-status p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.compact {
  padding-top: 52px;
  padding-bottom: 52px;
}

.price {
  color: var(--green) !important;
  margin: 10px 0 2px;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card h3 {
  font-size: 21px;
}

.price-card p {
  margin: 0;
}

.price-card .plan-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 9px;
  color: var(--blue);
  background: var(--blue-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.price-card .price-sub {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.plan-lead {
  max-width: 720px;
  font-size: 16px;
  font-weight: 800;
}

.monitor-campaign {
  margin: 0;
}

.monitor-campaign img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(148, 198, 255, 0.28);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(6, 23, 47, 0.24);
}

.monitor-cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #052e1a;
  background: linear-gradient(135deg, #bbf7d0, #7dd3fc);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(52, 211, 153, 0.26);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.monitor-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(52, 211, 153, 0.32);
}

.price-card.featured .plan-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
}

.price-card.featured ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.price-card.featured li {
  padding: 6px 9px 6px 21px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
}

.price-card.featured li::before {
  left: 9px;
  top: 0.88em;
  width: 5px;
  height: 5px;
}

.price-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.price-card.featured {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(18, 133, 83, 0.28), transparent 34%),
    linear-gradient(145deg, var(--navy), #0a2c52);
  border-color: rgba(18, 133, 83, 0.28);
  box-shadow: 0 24px 46px rgba(6, 23, 47, 0.18);
}

.price-card.featured::before {
  height: 7px;
  background: linear-gradient(90deg, var(--green), #7dd3fc);
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--white) !important;
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured .plan-label {
  color: #052e1a;
  background: #bbf7d0;
}

.price-card.consult .price {
  color: var(--blue) !important;
}

.price-card.consult::before {
  background: var(--green);
}

.pricing-note {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 26px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(18, 133, 83, 0.12), transparent 32%),
    #f8fbff;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(6, 23, 47, 0.1);
}

.pricing-note strong {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.36;
}

.pricing-note p {
  margin: 0;
  color: var(--muted);
}

.pricing-note .price-extra {
  justify-self: center;
  max-width: 760px;
  padding: 10px 12px;
  color: #475569;
  background: #fff;
  border: 1px solid #dbe7f6;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.pricing-note .button {
  justify-self: center;
  margin-top: 4px;
}

.flow-showcase {
  display: grid;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.flow-visual {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flow-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 45, 0), rgba(7, 22, 45, 0.24)),
    linear-gradient(90deg, rgba(7, 22, 45, 0.22), transparent 48%);
  content: "";
}

.flow-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.flow-content {
  display: grid;
  gap: 22px;
}

.flow-list {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  content: "";
}

.flow-list li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 18px 18px 66px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  counter-increment: flow;
}

.flow-list li::before {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border: 4px solid #f5f7fa;
  border-radius: 50%;
  content: counter(flow);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(29, 95, 196, 0.22);
}

.flow-list strong,
.flow-list span {
  display: block;
}

.flow-list span {
  color: var(--muted);
}

.faq-layout {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-lead {
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(29, 95, 196, 0.26), transparent 36%),
    linear-gradient(145deg, var(--navy), #0d2443);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-lead .eyebrow {
  color: #93c5fd;
}

.faq-lead .support-title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
}

.faq-lead p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-lead .button {
  margin-top: 12px;
}

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

.faq-item {
  border: 1px solid #cbd8ea;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(6, 23, 47, 0.06);
}

.faq-item button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 18px 50px 18px 18px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}

.faq-item button:hover {
  background: var(--blue-2);
}

.faq-item button:focus-visible {
  background: var(--blue-2);
  outline: 3px solid rgba(29, 95, 196, 0.14);
  outline-offset: -3px;
}

.faq-item button::after {
  position: absolute;
  right: 18px;
  color: var(--blue);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px 60px;
  color: var(--muted);
  border-top: 1px solid #edf2f8;
}

.faq-answer.is-open {
  display: block;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.contact-reassurance {
  display: grid;
  gap: 6px;
  max-width: 860px;
  margin: 0 auto 18px;
  padding: 16px 18px;
  background: #f8fbff;
  border: 1px solid #dbe7f6;
  border-radius: 8px;
}

.contact-reassurance strong {
  color: var(--ink);
  font-size: 18px;
}

.contact-reassurance p {
  margin: 0;
  color: var(--muted);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

label span {
  color: var(--green);
  font-size: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd6e5;
  border-radius: 6px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 102, 216, 0.12);
  outline: none;
}

textarea {
  resize: vertical;
}

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

.checkbox input {
  width: 18px;
  min-height: 18px;
}

.final-cta {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.final-cta p,
.final-cta h2 {
  margin-right: auto;
  margin-left: auto;
}

.final-cta .button {
  margin-top: 26px;
}

.site-footer {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 22px;
  padding: 38px clamp(24px, 5vw, 72px);
  color: #dceaff;
  background: #041026;
}

.site-footer > div {
  max-width: 720px;
}

.site-footer p {
  color: #b9c9df;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 18px;
}

.site-footer a {
  color: #dceaff;
  text-decoration: none;
  font-weight: 700;
}

@media (min-width: 680px) {
  .cta-row {
    display: flex;
    flex-wrap: wrap;
  }

  .problem-list,
  .service-grid,
  .price-grid,
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    grid-column: 1 / -1;
  }

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

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
  }

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

@media (min-width: 980px) {
  .site-header {
    padding-right: 170px;
    padding-left: 32px;
  }

  .menu-button {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .site-nav .nav-cta {
    margin-left: 4px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .section,
  .hero,
  .final-cta {
    padding: 68px 32px;
  }

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

  .hero-copy {
    max-width: 680px;
    margin-left: max(0px, calc((100vw - 1120px) / 2));
    margin-right: auto;
    position: relative;
    z-index: 2;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lead,
  .section-heading p,
  .split-section p,
  .final-cta p {
    font-size: 18px;
  }

  .hero-visual img {
    min-height: 100%;
  }

  .service-grid,
  .problem-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .split-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding-right: 32px;
    padding-left: 32px;
  }

  .app-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

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

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-showcase {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .flow-visual {
    min-height: 560px;
  }

  .flow-visual img {
    min-height: 560px;
  }

  .faq-layout {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
  }

  .faq-lead {
    position: sticky;
    top: 92px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-end;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 46px;
  }

  .hero-visual img {
    min-height: 520px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 25px;
  }

  .button {
    width: 100%;
  }

  .hero-image-message {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 14px;
  }

  .hero-image-message span {
    font-size: 19px;
  }

  .problem-list .risk-card {
    padding-top: 74px;
  }

  .risk-label {
    top: 50px;
    right: auto;
    left: 20px;
  }

  .risk-flow {
    grid-template-columns: 1fr;
  }

  .risk-flow i {
    transform: rotate(90deg);
    justify-self: start;
  }

  .risk-solution {
    display: grid;
  }
}
