:root {
  --blue-900: #102a56;
  --blue-800: #123b7a;
  --blue-700: #174ea6;
  --blue-100: #eaf2ff;
  --ink: #172033;
  --muted: #667085;
  --line: #d9e2f1;
  --surface: #f6f8fb;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-soft: #e6fffb;
  --indigo: #4f46e5;
  --indigo-soft: #eef2ff;
  --amber: #b7791f;
  --amber-soft: #fff7e6;
  --shadow: 0 18px 50px rgba(16, 42, 86, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
p { margin: 0 0 0.78rem; }
h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: 0; }
h1 { font-size: clamp(2.05rem, 4.8vw, 3.9rem); max-width: 940px; }
h2 { font-size: clamp(1.55rem, 3vw, 2.6rem); }
h3 { font-size: 1.05rem; }

.site-header {
  min-height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--blue-900);
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
}
.brand-name { font-size: 1.2rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}
.site-nav a {
  text-decoration: none;
  color: #27364d;
}
.site-nav a:hover { color: var(--blue-700); }
.nav-cta {
  border: 1px solid var(--blue-700);
  color: var(--blue-700) !important;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
}
.language-selector {
  border-left: 1px solid var(--line);
  padding-left: 16px;
  color: var(--muted);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-900);
  border-radius: 6px;
  padding: 8px 10px;
}

.hero {
  position: relative;
  min-height: clamp(540px, 70vh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-900);
  color: var(--white);
  padding: 78px 32px 68px;
}
.hero-home {
  min-height: clamp(600px, 78vh, 760px);
}
.hero-home h1 {
  font-size: clamp(2.1rem, 5vw, 4.05rem);
  max-width: 960px;
}
.hero-page h1 {
  font-size: clamp(2rem, 4.35vw, 3.75rem);
  max-width: 880px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16,42,86,0.86);
  z-index: 1;
}
.workflow-background {
  position: absolute;
  inset: 0;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
  padding: 120px 42px 58px;
  opacity: 0.56;
}
.workflow-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 58px 58px;
}
.flow-lane {
  position: relative;
  align-self: end;
  min-height: 250px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flow-lane span { color: rgba(255,255,255,0.78); font-size: 0.85rem; }
.flow-lane strong { font-size: 1.35rem; }
.lane-quote { transform: translateY(-34px); }
.lane-job { transform: translateY(20px); }
.lane-payment { transform: translateY(-12px); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  min-width: 0;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: #5eead4;
}
.hero-intro {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  white-space: nowrap;
}
.button-primary {
  background: var(--white);
  color: var(--blue-900);
}
.button-secondary {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.button-light {
  background: var(--white);
  color: var(--blue-900);
}
.interest-note {
  margin-top: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}
.legal-hero {
  padding: 44px 32px 34px;
  background: var(--blue-900);
  color: var(--white);
}
.legal-hero-content {
  max-width: 920px;
  margin: 0 auto;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal-hero p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.84);
}

.flow-strip {
  scroll-margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.flow-step {
  background: var(--white);
  padding: 22px;
  min-height: 146px;
}
.flow-step h2 { font-size: 1.35rem; margin: 12px 0; }
.step-number {
  display: inline-block;
  font-weight: 900;
  color: var(--blue-700);
}
.flow-step-2 .step-number { color: var(--indigo); }
.flow-step-3 .step-number { color: var(--teal); }
.flow-step-4 .step-number { color: #8a4f12; }

.content-section,
.faq,
.related {
  padding: 48px 32px;
}
.content-section:nth-of-type(odd) { background: var(--surface); }
.bi {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}
.section-copy,
.section-heading,
.faq-list,
.related-grid,
.highlight-grid,
.quick-actions {
  max-width: 1120px;
  margin: 0 auto;
}
.section-copy {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(300px, 1.25fr);
  gap: 34px;
}
.section-copy h2 { color: var(--blue-900); }
.section-copy p,
.section-list {
  grid-column: 2;
}
.section-copy p { color: #3f4b5f; }
.legal-section {
  padding: 28px 32px;
}
.legal-section .section-copy {
  display: block;
  max-width: 920px;
}
.legal-section .section-copy h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-bottom: 10px;
}
.legal-section .section-copy p {
  margin-bottom: 0.7rem;
}
.legal-section .section-list {
  margin-top: 12px;
}
.section-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
  margin-top: 8px;
}
.section-list ul {
  margin: 12px 0 0;
  padding-left: 22px;
}
.section-list li { margin: 7px 0; }

.highlight-band {
  padding: 40px 32px;
  background:
    linear-gradient(90deg, rgba(23,78,166,0.08), rgba(15,118,110,0.08)),
    var(--white);
  border-bottom: 1px solid var(--line);
}
.highlight-band .section-heading { margin-bottom: 20px; }
.highlight-band h2 {
  max-width: 840px;
  color: var(--blue-900);
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.highlight-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  min-height: 200px;
  box-shadow: 0 10px 28px rgba(16,42,86,0.07);
}
.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  margin-bottom: 16px;
}
.highlight-card:nth-child(2) .highlight-icon { color: var(--indigo); background: var(--indigo-soft); }
.highlight-card:nth-child(3) .highlight-icon { color: var(--teal); background: var(--teal-soft); }
.highlight-card:nth-child(4) .highlight-icon { color: #8a4f12; background: var(--amber-soft); }
.highlight-card h2 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--blue-900);
}
.highlight-card p { color: #46566d; margin: 0; }

.quick-actions {
  padding: 30px 32px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-actions-copy h2 {
  color: var(--blue-900);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
}
.quick-actions-copy p:last-child {
  color: #3f4b5f;
  margin: 12px 0 0;
}
.quick-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.quick-action-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--blue-900);
  font-weight: 800;
  white-space: nowrap;
}

.related { background: var(--surface); }
.section-heading { margin-bottom: 24px; }
.section-heading .eyebrow { color: var(--blue-700); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 220px;
}
.related-card span {
  color: var(--blue-700);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}
.related-card strong {
  display: block;
  margin: 12px 0;
  font-size: 1.1rem;
}
.related-card em {
  color: var(--muted);
  font-style: normal;
}

.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--blue-900);
}
details p { margin: 14px 0 0; color: var(--muted); }

.product-information {
  scroll-margin-top: 72px;
  margin: 0;
  padding: 52px 32px;
  background: var(--blue-700);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 32px;
}
.product-information > div {
  max-width: 780px;
}
.product-information .eyebrow { color: #c7fff5; }
.product-information p { color: rgba(255,255,255,0.86); }
.interest-form {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.form-extra {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.interest-form label {
  font-size: 0.82rem;
  font-weight: 800;
}
.interest-form input,
.interest-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}
.interest-form textarea { resize: vertical; }
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 4px;
  line-height: 1.35;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.privacy-check span {
  font-size: 0.88rem;
  font-weight: 600;
}
.privacy-check a {
  color: var(--white);
  font-weight: 900;
}
.interest-form .button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  padding: 42px 32px;
  background: #0b1b35;
  color: rgba(255,255,255,0.82);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 30px;
}
.site-footer strong { color: var(--white); font-size: 1.2rem; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
}
.site-footer a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}
.site-footer a:hover,
.footer-link-button:hover { color: var(--white); }
.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font: inherit;
  cursor: pointer;
}
.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
}
.cookie-banner[hidden],
.cookie-modal[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #0b1b35;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(11,27,53,0.25);
}
.cookie-banner-text strong { color: var(--white); }
.cookie-banner-text p {
  margin: 4px 0 0;
  max-width: 760px;
  font-size: 0.94rem;
}
.cookie-banner-text a {
  color: #c7fff5;
  font-weight: 800;
}
.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.button-cookie-primary {
  background: var(--white);
  color: var(--blue-900);
}
.button-cookie-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.42);
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11,27,53,0.52);
}
.cookie-modal-panel {
  width: min(520px, 100%);
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.cookie-modal-panel h2 {
  color: var(--blue-900);
  font-size: 1.55rem;
  margin-bottom: 10px;
}
.cookie-choice {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
  font-weight: 800;
}
.cookie-modal-actions {
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .button-cookie-secondary {
  color: var(--blue-900);
  border-color: var(--line);
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 18px;
    min-height: 64px;
  }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .language-selector {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
  .hero {
    min-height: auto;
    padding: 50px 22px 32px;
  }
  .legal-hero {
    padding: 36px 22px 28px;
  }
  .hero::after {
    background: rgba(16,42,86,0.93);
  }
  .workflow-background {
    grid-template-columns: repeat(2, 1fr);
    padding: 84px 18px 24px;
  }
  .flow-lane { min-height: 150px; }
  .lane-quote,
  .lane-job,
  .lane-payment { transform: none; }
  .flow-strip,
  .related-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  .section-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .section-copy p,
  .section-list {
    grid-column: auto;
  }
  .content-section,
  .faq,
  .related {
    padding: 34px 22px;
  }
  .legal-section {
    padding: 24px 22px;
  }
  .highlight-band {
    padding: 32px 22px;
  }
  .highlight-card {
    min-height: auto;
  }
  .quick-actions {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }
  .quick-action-list {
    justify-content: flex-start;
  }
  .product-information {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 42px 22px;
  }
  .interest-form {
    max-width: none;
    justify-self: stretch;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 22px;
  }
  .site-footer nav {
    justify-content: flex-start;
  }
  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }
  .cookie-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.1rem;
    line-height: 1.22;
    max-width: 100%;
  }
  .hero-content,
  .hero-intro,
  .hero-actions {
    max-width: 100%;
    min-width: 0;
  }
  .workflow-background {
    opacity: 0.24;
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .flow-lane {
    padding: 12px;
    min-width: 0;
  }
  .flow-lane strong {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 8px;
  }
  .button {
    flex: 1 1 154px;
    padding: 9px 10px;
    font-size: 0.9rem;
  }
  .interest-note {
    margin-top: 12px;
    font-size: 0.84rem;
  }
  .flow-step {
    padding: 18px 22px;
    min-height: auto;
  }
  .quick-action-list span {
    flex: 1 1 140px;
  }
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .cookie-banner-inner {
    padding: 14px;
  }
  .cookie-banner-actions .button {
    flex: 1 1 120px;
  }
}
