:root {
  --ld-navy: #0d3b46;
  --ld-teal-dark: #135f6b;
  --ld-mint: #6edbc1;
  --ld-mint-soft: #e6f6f2;
  --ld-light: #f5f7f7;
  --ld-white: #ffffff;
  --ld-text: #0d1b2a;
  --ld-muted: #5e6b78;
  --ld-border: #dce8e6;
  --ld-shadow: 0 18px 48px rgba(13, 59, 70, 0.08);
  --ld-shadow-soft: 0 10px 28px rgba(13, 59, 70, 0.06);
  --ld-rose: #d94377;
  --ld-rose-soft: #fdebf2;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ld-text);
  background: var(--ld-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(110, 219, 193, 0.8);
  outline-offset: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-band {
  background: linear-gradient(180deg, #f8fbfb 0%, #ffffff 100%);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ld-white);
  background: var(--ld-navy);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 232, 230, 0.72);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 40px, var(--container));
  min-height: 74px;
  margin-inline: auto;
}

.brand img {
  width: 176px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--ld-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 26px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  content: "";
  background: var(--ld-mint);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--ld-white);
  background: linear-gradient(135deg, var(--ld-teal-dark), #159985);
  box-shadow: 0 12px 24px rgba(19, 95, 107, 0.18);
}

.header-cta {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-secondary {
  color: var(--ld-teal-dark);
  background: var(--ld-white);
  border-color: rgba(19, 95, 107, 0.28);
}

.button-light {
  color: var(--ld-navy);
  background: var(--ld-white);
  border-color: var(--ld-white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--ld-shadow-soft);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ld-navy);
  background: var(--ld-white);
  border: 1px solid var(--ld-border);
  border-radius: 8px;
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-line::before {
  transform: translateY(-7px);
}

.menu-toggle-line::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::after {
  transform: translateY(-2px) rotate(-90deg);
}


.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--ld-teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.eyebrow {
  padding: 7px 12px;
  background: var(--ld-mint-soft);
  border-radius: 999px;
}

.eyebrow span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--ld-navy);
  background: rgba(110, 219, 193, 0.36);
  border-radius: 50%;
  font-size: 0.72rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
.section-heading h2,
.partner-inner h2 {
  margin: 0;
  color: var(--ld-navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: 3.35rem;
}

h1 .h1-accent {
  color: var(--ld-mint);
}

.hero-intro {
  max-width: 590px;
  margin: 22px 0 0;
  color: #344558;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.trust-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
}

.trust-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ld-teal-dark);
  background: rgba(110, 219, 193, 0.13);
  border: 1px solid rgba(19, 95, 107, 0.18);
  border-radius: 8px;
  grid-row: 1 / span 2;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-list strong {
  grid-column: 2;
  color: var(--ld-navy);
  font-size: 0.93rem;
  line-height: 1.35;
}

.trust-list span:last-child {
  grid-column: 2;
  color: var(--ld-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}


.faq {
  padding: 70px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.partner-inner h2 {
  font-size: 2.1rem;
}

.section-heading p:not(.section-kicker) {
  margin: 12px 0 0;
  color: var(--ld-muted);
  font-size: 1.05rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.plain-step {
  position: relative;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ld-white) 0%, #fbfefd 100%);
  border: 1px solid var(--ld-border);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(13, 59, 70, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.plain-step::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--ld-mint), var(--ld-teal-dark));
}

.plain-step::after {
  position: absolute;
  right: 18px;
  bottom: -34px;
  content: attr(data-step);
  color: rgba(13, 59, 70, 0.045);
  font-size: 6.4rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.plain-step:hover {
  border-color: rgba(19, 95, 107, 0.28);
  box-shadow: var(--ld-shadow-soft);
  transform: translateY(-4px);
}

.step-head,
.plain-step h3,
.plain-step p {
  position: relative;
  z-index: 1;
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.step-index {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ld-navy);
  background: linear-gradient(135deg, #ffffff, var(--ld-mint-soft));
  border: 1px solid rgba(19, 95, 107, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(110, 219, 193, 0.13), 0 12px 22px rgba(13, 59, 70, 0.08);
  font-size: 0.95rem;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #248f77;
  background: var(--ld-mint-soft);
  border: 1px solid rgba(19, 95, 107, 0.12);
  border-radius: 8px;
}

.step-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plain-step h3,
.benefit-item h3 {
  margin: 0 0 8px;
  color: var(--ld-navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.plain-step p,
.benefit-item p {
  margin: 0;
  color: var(--ld-muted);
}

.form-row {
  display: grid;
  gap: 8px;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row label,
.two-columns label {
  display: block;
  margin-bottom: 8px;
  color: var(--ld-navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--ld-muted);
  font-size: 0.94rem;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--ld-teal-dark);
}

.form-helper,
.form-status {
  margin: 0;
  color: var(--ld-muted);
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  flex: 1 1 260px;
  color: var(--ld-teal-dark);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--ld-rose);
}

.form-status.is-success {
  color: var(--ld-teal-dark);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 50px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--ld-white);
  border: 1px solid var(--ld-border);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(13, 59, 70, 0.03);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ld-navy);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--ld-teal-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ld-muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: #071b31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
  padding: 52px 0 34px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ld-white);
}

.footer-logo span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--ld-white);
  border-radius: 8px;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-logo strong {
  font-size: 1.55rem;
}

.footer-brand p {
  max-width: 260px;
  margin: 16px 0 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--ld-white);
  font-size: 0.92rem;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.site-footer a:hover {
  color: var(--ld-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ld-navy);
  background: var(--ld-white);
  border: 1px solid rgba(19, 95, 107, 0.18);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(13, 59, 70, 0.14);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.scroll-top::before {
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.scroll-top:hover {
  color: var(--ld-navy);
  background: var(--ld-mint);
  transform: translateY(8px);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 860px) {
  .container,
  .header-inner {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    grid-template-columns: auto auto;
    min-height: 68px;
  }

  .brand img {
    width: 152px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    background: var(--ld-white);
    border: 1px solid var(--ld-border);
    border-radius: 8px;
    box-shadow: var(--ld-shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    background: var(--ld-mint-soft);
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 2.35rem;
  }

  .trust-list,
  .steps-grid,
  .faq-grid,
  .footer-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .partner-inner h2 {
    font-size: 1.75rem;
  }

  .trust-list li {
    grid-template-columns: 36px 1fr;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
  }

  .form-actions {
    align-items: stretch;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
