@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Archivo:wght@500;600;700&display=swap");

:root {
  --bg: #f6f7f9;
  --panel: #ffffff;
  --ink: #172534;
  --muted: #5a6a78;
  --line: #dde4eb;
  --accent: #1d3f5d;
  --accent-soft: #1d3f5d;
  --accent-green: #2f6b56;
  --accent-ink: #ffffff;
  --shadow: rgba(12, 30, 46, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: "Archivo", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

p,
ul,
blockquote {
  margin: 0 0 1.15rem;
}

.page {
  max-width: 940px;
  margin: 0 auto;
  padding: 3.5rem 1.3rem 5rem;
}

.hero {
  margin-bottom: 2.75rem;
  max-width: 760px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.82rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: 1.45rem;
  object-fit: contain;
}

.brand-service-area {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a4f70;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
}

.trust-strip {
  margin-top: 1rem;
}

.trust-title {
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #355c7a;
}

.trust-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 2.2rem;
  overflow: hidden;
  background: transparent;
}

.trust-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0.65rem;
  padding: 0 0.7rem;
  animation: trust-scroll 30s linear infinite;
  transform: translateY(-50%);
}

.trust-track span {
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(40, 74, 102, 0.62);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.trust-track span + span {
  margin-left: 0.72rem;
  padding-left: 0.72rem;
  border-left: 1px solid rgba(53, 92, 122, 0.34);
}

@keyframes trust-scroll {
  from {
    transform: translate(0, -50%);
  }
  to {
    transform: translate(-50%, -50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }

  .industry-track {
    animation: none;
  }
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a4f70;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.1rem, 3.55vw, 3.45rem);
  color: #13293d;
  letter-spacing: -0.012em;
  line-height: 1.12;
}

.lead {
  font-size: clamp(1.04rem, 2.05vw, 1.2rem);
  color: #31485c;
  max-width: 64ch;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  margin-top: 1.2rem;
}

.cta-button {
  display: inline-block;
  border-radius: 4px;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.84rem 1.12rem;
  box-shadow: 0 4px 10px rgba(17, 39, 57, 0.12);
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #18334d;
}

.cta-button--small {
  padding: 0.7rem 0.94rem;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(17, 39, 57, 0.1);
}

.text-cta {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.3px;
  text-underline-offset: 0.16em;
  font-weight: 600;
}

.text-cta:hover,
.text-cta:focus-visible {
  color: #144f83;
}

.subtle {
  color: var(--muted);
}

.accent-word {
  color: rgba(26, 94, 154, 0.8);
  font-weight: 600;
}

.hero-points {
  margin: 1rem 0 0;
  padding-left: 1.05rem;
}

.hero-points li {
  margin-bottom: 0.38rem;
  color: #284b66;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.content {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(12, 30, 46, 0.07);
  min-width: 0;
}

.content {
  padding: 2.05rem;
  border-top: 0;
}

.content section + section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.85rem;
}

.split-item ul {
  margin-bottom: 0;
}

.inline-cta {
  margin-top: 1.6rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(29, 63, 93, 0.18);
  border-radius: 8px;
  background: #fafbfd;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 1rem;
}

.inline-cta p {
  margin: 0;
  color: #1f415d;
  font-weight: 600;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.snapshot-card {
  border: 1px solid rgba(53, 92, 122, 0.16);
  border-radius: 8px;
  background: #ffffff;
  padding: 1rem;
}

.snapshot-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.snapshot-card h3 {
  margin: 0;
  color: #184a77;
  font-size: 1rem;
}

.snapshot-icon {
  width: 3rem;
  height: 3rem;
  color: #2b577a;
  flex-shrink: 0;
}

.snapshot-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snapshot-card p {
  margin-bottom: 0;
  color: #2e536f;
  font-size: 0.93rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.fit-grid article {
  border: 1px solid rgba(53, 92, 122, 0.16);
  border-radius: 8px;
  background: #ffffff;
  padding: 0.95rem;
}

.fit-grid ul {
  margin-bottom: 0;
}

.fit-grid h3 {
  margin-bottom: 0.42rem;
  color: #1c476c;
}

.process-step p {
  margin-bottom: 0.7rem;
  color: #38556c;
}

.process-steps {
  counter-reset: process-step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
}

.process-step {
  counter-increment: process-step;
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.14rem;
  align-items: start;
  border: 1px solid rgba(53, 92, 122, 0.16);
  border-radius: 10px;
  background: #ffffff;
  padding: 0.9rem 0.95rem;
}

.process-step::before {
  content: counter(process-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  grid-row: 1 / 3;
  width: 2.2rem;
  font-family: "Archivo", "Segoe UI", "Trebuchet MS", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #1d3f5d;
  opacity: 0.8;
  transform: none;
}

.process-step h3 {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0.46rem;
  color: #1c476c;
}

.process-step p {
  grid-column: 2;
  grid-row: 2;
}

.process-step p:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.5rem;
}

.reviews {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-left: -1.9rem;
  margin-right: -1.9rem;
  padding: 1.45rem 3.1rem;
  border-top: 1px solid rgba(23, 37, 52, 0.12);
  border-bottom: 1px solid rgba(23, 37, 52, 0.12);
  border-left: 0;
  border-right: 0;
  background: #eef2f6;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
}

.trust-line {
  margin-top: 2rem;
  margin-bottom: 0.28rem;
  color: #2e536f;
  font-weight: 600;
  text-align: center;
}

.industry-strip {
  margin-top: 0.08rem;
}

.industry-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 2.2rem;
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.industry-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0.7rem;
  padding: 0 0.7rem;
  animation: industry-scroll 34s linear infinite;
  transform: translateY(-50%);
}

.industry-track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(40, 74, 102, 0.58);
  padding: 0;
}

.industry-track span + span {
  margin-left: 0.72rem;
  padding-left: 0.72rem;
  border-left: 1px solid rgba(53, 92, 122, 0.28);
}

.industry-icon {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  border: 1px solid rgba(53, 92, 122, 0.34);
  background: rgba(53, 92, 122, 0.14);
  flex-shrink: 0;
}

@keyframes industry-scroll {
  from {
    transform: translate(0, -50%);
  }
  to {
    transform: translate(-50%, -50%);
  }
}

.reviews blockquote {
  margin: 0;
  position: relative;
  border: 1px solid rgba(53, 92, 122, 0.18);
  border-left: 3px solid rgba(29, 63, 93, 0.44);
  padding: 1rem 1.15rem 0.92rem 1.2rem;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(13, 37, 59, 0.06);
}

.reviews blockquote::before {
  content: "\201C";
  position: absolute;
  top: 0.25rem;
  right: 0.65rem;
  font-family: "Archivo", "Segoe UI", "Trebuchet MS", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(29, 63, 93, 0.14);
}

.reviews cite {
  display: block;
  margin-top: 0.65rem;
  color: #29506f;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.faq-section details {
  border: 1px solid rgba(53, 92, 122, 0.18);
  border-radius: 8px;
  background: #ffffff;
  padding: 0.7rem 0.82rem;
}

.faq-section details + details {
  margin-top: 0.62rem;
}

.faq-section summary {
  cursor: pointer;
  font-weight: 700;
  color: #1f4668;
}

.faq-section details p {
  margin: 0.6rem 0 0;
  color: #446078;
}

.form-panel {
  background: #eef2f6;
  border-top: 1px solid rgba(23, 37, 52, 0.12);
  border-bottom: 1px solid rgba(23, 37, 52, 0.12);
  border-left: 1px solid rgba(23, 37, 52, 0.12);
  border-right: 1px solid rgba(23, 37, 52, 0.12);
  border-radius: 8px;
  box-shadow: none;
  padding: 1.45rem 3.1rem;
  position: static;
}

.small {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-panel > .small {
  margin-bottom: 0.22rem;
}

.form-panel > .subtle {
  margin-bottom: 0.95rem;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.field-group label {
  margin-top: 0;
}

.field-group--full {
  grid-column: 1 / -1;
}

input,
textarea,
button {
  width: 100%;
  border-radius: 6px;
  font: inherit;
}

input,
textarea {
  margin-top: 0.4rem;
  border: 1px solid #cdd7e1;
  background: #ffffff;
  color: var(--ink);
  padding: 0.84rem 0.86rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(26, 94, 154, 0.28);
  border-color: var(--accent);
}

button {
  margin-top: 1.3rem;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  padding: 0.9rem 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(17, 39, 57, 0.13);
}

button:hover {
  background: #18334d;
}

.fineprint {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.fineprint + .fineprint {
  margin-top: 0.22rem;
}

.gpc-note {
  color: #345b79;
}

.next-steps {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.next-steps p {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.inline-confirmation {
  margin-top: 0.3rem;
  border: 1px solid rgba(29, 63, 93, 0.2);
  border-radius: 8px;
  background: #ffffff;
  padding: 0.95rem 1rem;
}

.inline-confirmation h3 {
  margin-bottom: 0.4rem;
  color: #1d4568;
}

.inline-confirmation p {
  margin: 0;
  color: #37566f;
}

.hidden {
  position: absolute !important;
  left: -9999px !important;
}

.compliance-footer {
  max-width: 940px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
  color: #50687b;
  font-size: 0.8rem;
  line-height: 1.45;
}

.compliance-footer p {
  margin: 0.35rem 0 0;
}

@media (max-width: 900px) {
  .page {
    padding: 2.4rem 1rem 3.8rem;
  }

  .compliance-footer {
    padding: 0 1rem;
    font-size: 0.77rem;
  }

  .form-panel {
    padding: 1.15rem 2rem;
  }

  .small {
    margin-bottom: 0.65rem;
  }

  .form-panel > .small {
    margin-bottom: 0.2rem;
  }

  .form-panel > .subtle {
    margin-bottom: 0.75rem;
  }

  label {
    margin-top: 0.75rem;
    font-size: 0.9rem;
  }

  .hero-cta-row {
    margin-top: 1rem;
  }

  .brand-row {
    margin-bottom: 0.68rem;
  }

  .brand-logo {
    height: 1.3rem;
  }

  .brand-service-area {
    font-size: 0.68rem;
  }

  .cta-button {
    padding: 0.7rem 0.88rem;
    font-size: 0.95rem;
  }

  .hero-points {
    margin-top: 0.75rem;
  }

  .inline-cta {
    margin-top: 1.1rem;
    padding: 0.8rem;
  }

  .inline-cta p {
    width: 100%;
  }

  .snapshot-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .form-grid {
    gap: 0.75rem;
  }

  input,
  textarea {
    margin-top: 0.28rem;
    padding: 0.58rem 0.65rem;
  }

  button {
    margin-top: 0.95rem;
    padding: 0.74rem 0.85rem;
  }

  .fineprint {
    margin-top: 0.36rem;
  }

  .fineprint + .fineprint {
    margin-top: 0.18rem;
  }

  .next-steps {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
  }

  .next-steps p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
  }

  .inline-confirmation {
    padding: 0.82rem 0.88rem;
  }

  .reviews {
    margin-left: -1.9rem;
    margin-right: -1.9rem;
    padding: 1.15rem 2rem;
  }

  .reviews blockquote {
    padding: 0.82rem 0.9rem 0.75rem 0.98rem;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (min-width: 901px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
    margin-top: 0.25rem;
  }

  .fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.88rem;
  }

  .process-step {
    grid-template-columns: 2.5rem 1fr;
  }
}
