:root {
  --ink: #10263b;
  --muted: #5d6c79;
  --line: #dce6ed;
  --blue: #126196;
  --blue-deep: #0d426a;
  --aqua: #2ba6a4;
  --gold: #b99149;
  --cream: #f7f4ee;
  --paper: #ffffff;
  --soft: #eef5f6;
  --shadow: 0 24px 70px rgba(16, 38, 59, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 230, 237, 0.8);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 172px;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 14px;
}

.main-nav a:hover {
  color: var(--blue);
  background: var(--soft);
}

.header-cta {
  border: 1px solid rgba(18, 97, 150, 0.18);
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(18, 97, 150, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero-section {
  min-height: calc(94vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  padding: clamp(64px, 7vw, 92px) clamp(20px, 5vw, 76px) 52px;
  background:
    linear-gradient(120deg, rgba(238, 245, 246, 0.86), rgba(255, 255, 255, 0.62) 54%, rgba(247, 244, 238, 0.76)),
    radial-gradient(circle at 78% 12%, rgba(43, 166, 164, 0.18), transparent 34%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

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

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 18px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 24px;
  font-weight: 800;
}

.button.primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white;
  box-shadow: 0 18px 38px rgba(18, 97, 150, 0.3);
}

.button.secondary {
  border: 1px solid rgba(16, 38, 59, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(16, 38, 59, 0.08);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button,
.header-cta {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.trust-row {
  margin-top: 26px;
}

.trust-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-left: 3px solid var(--gold);
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.portal-preview {
  overflow: hidden;
  border: 1px solid rgba(220, 230, 237, 0.9);
  border-radius: 8px;
  background: #f9fbfc;
  box-shadow: var(--shadow);
}

.preview-topbar {
  display: flex;
  gap: 8px;
  padding: 14px;
  background: var(--ink);
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.42);
}

.preview-layout {
  min-height: 440px;
  display: grid;
  grid-template-columns: 172px 1fr;
}

.preview-layout aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 16px;
  background: #eff5f7;
  border-right: 1px solid var(--line);
}

.preview-layout aside strong {
  margin-bottom: 18px;
  color: var(--blue-deep);
}

.preview-layout aside a {
  border-radius: 6px;
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.preview-layout aside a.active {
  color: var(--ink);
  background: white;
  box-shadow: 0 10px 24px rgba(16, 38, 59, 0.08);
}

.preview-content {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 26px;
}

.status-card,
.task-list,
.support-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 20px;
}

.status-card p {
  margin-bottom: 6px;
  font-size: 13px;
}

.status-card strong {
  font-size: 24px;
}

.progress {
  height: 8px;
  margin-top: 18px;
  border-radius: 99px;
  background: #e8eef2;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
}

.task {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.task span,
.document-row span {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 2px solid #b6c7d2;
  border-radius: 4px;
}

.task.done span,
.document-row.complete span {
  border-color: var(--aqua);
  background: var(--aqua);
}

.support-note {
  color: var(--muted);
  line-height: 1.55;
}

.support-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-strip article {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px clamp(22px, 4vw, 48px);
  background: white;
}

.quick-strip strong {
  font-size: 20px;
}

.quick-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.section,
.document-section,
.payment-section,
.contact-section,
.security-band,
.final-cta {
  padding: clamp(68px, 8vw, 118px) clamp(20px, 5vw, 76px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 6vw, 92px);
}

.two-column > div:first-child {
  position: sticky;
  top: 120px;
  align-self: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.steps span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.testimonials-section {
  background: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 286px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #f8fbfc;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

.testimonial-card footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article,
.reassurance-grid article,
.tariff-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.reassurance-section {
  background: #f7fafb;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reassurance-grid article {
  min-height: 230px;
}

.reassurance-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.reassurance-grid p {
  margin-bottom: 0;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 6px;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.document-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 7vw, 100px);
  background: var(--cream);
}

.document-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(185, 145, 73, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(100, 72, 29, 0.08);
}

.document-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border-bottom: 1px solid rgba(220, 230, 237, 0.72);
  color: var(--muted);
  font-weight: 700;
}

.document-row:last-child {
  border-bottom: 0;
}

.prepare-section {
  background: white;
}

.prepare-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.prepare-list div {
  min-height: 86px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  background: #f8fbfc;
  font-weight: 750;
  line-height: 1.45;
}

.tariff-section {
  background: #f7fafb;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tariff-grid article {
  min-height: 244px;
}

.tariff-grid article span {
  color: var(--muted);
  font-weight: 700;
}

.tariff-grid strong {
  display: block;
  margin: 8px 0 20px;
  font-size: 42px;
  letter-spacing: 0;
}

.tariff-grid .featured {
  border-color: rgba(18, 97, 150, 0.4);
  box-shadow: 0 22px 54px rgba(18, 97, 150, 0.1);
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: white;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.payment-methods article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #f8fbfc;
}

.payment-methods span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 6px;
  color: white;
  background: var(--blue-deep);
  font-weight: 900;
}

.payment-methods strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.security-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  color: white;
  background: var(--ink);
}

.security-band .eyebrow,
.security-band p {
  color: rgba(255, 255, 255, 0.78);
}

.security-band h2 {
  color: white;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: #f7fafb;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: white;
  box-shadow: 0 20px 50px rgba(16, 38, 59, 0.08);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin: 0;
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(43, 166, 164, 0.32);
  background: rgba(43, 166, 164, 0.1);
}

.form-status.is-error {
  border: 1px solid rgba(185, 145, 73, 0.42);
  background: rgba(185, 145, 73, 0.12);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(18, 97, 150, 0.22);
  border-color: var(--blue);
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.final-cta {
  text-align: center;
  background: linear-gradient(120deg, #edf6f6, #ffffff);
}

.final-cta p {
  max-width: 650px;
  margin-inline: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 148px;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 12px 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: white;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .header-cta {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .hero-section,
  .two-column,
  .document-section,
  .payment-section,
  .contact-section,
  .security-band {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .portal-preview {
    max-width: 760px;
  }

  .two-column > div:first-child {
    position: static;
  }

  .contact-copy {
    position: static;
  }

  .feature-grid,
  .testimonial-grid,
  .reassurance-grid,
  .prepare-list,
  .tariff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand img {
    width: 138px;
  }

  .header-cta {
    display: none;
  }

  .hero-section,
  .section,
  .document-section,
  .payment-section,
  .contact-section,
  .security-band,
  .final-cta {
    padding-inline: 18px;
  }

  h1 {
    font-size: 38px;
  }

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-layout aside {
    display: none;
  }

  .quick-strip,
  .feature-grid,
  .testimonial-grid,
  .reassurance-grid,
  .prepare-list,
  .payment-methods,
  .tariff-grid {
    grid-template-columns: 1fr;
  }

  .steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .steps span {
    grid-row: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
