:root {
  --blue: #0a2063;
  --blue-2: #123894;
  --blue-3: #071746;
  --green: #4c5d9a;
  --green-dark: #0a2063;
  --red: #6c6d6d;
  --ink: #111827;
  --muted: #5b6472;
  --line: #dfe6f2;
  --soft: #f5f6f8;
  --soft-2: #e8ebf3;
  --white: #ffffff;
  --shadow: 0 22px 65px rgba(10, 32, 99, .18);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 9999;
  background: var(--blue);
  color: white;
  padding: .8rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { left: 1rem; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 230, 242, .75);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
}
.brand-logo {
  width: auto;
  height: 54px;
  max-width: 240px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: #2d3748;
  font-weight: 750;
  font-size: .94rem;
}
.main-nav a {
  padding: .75rem .9rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: var(--soft); color: var(--blue); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--blue);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 68px;
  background:
    radial-gradient(circle at 85% 15%, rgba(22, 163, 74, .14), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef4ff 48%, #ffffff 100%);
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
  pointer-events: none;
}
.hero-bg::before {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 110px;
  background: rgba(10, 32, 99, .12);
}
.hero-bg::after {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: -120px;
  background: rgba(217, 4, 4, .10);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .9rem;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--green);
  border-radius: 999px;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.55rem, 6vw, 5.15rem);
  line-height: .96;
  letter-spacing: -.065em;
  color: var(--blue-3);
  margin-bottom: 1.25rem;
  max-width: 920px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  color: var(--blue-3);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--blue-3);
  margin-bottom: .55rem;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #334155;
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
  margin-bottom: 1.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 52px;
  padding: .9rem 1.22rem;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(10, 32, 99, .12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10, 32, 99, .18);
}
.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(10, 32, 99, .16);
}
.btn-full {
  width: 100%;
  border-radius: 15px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  max-width: 780px;
}
.trust-row span {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(10, 32, 99, .12);
  color: #26364f;
  border-radius: 999px;
  padding: .48rem .75rem;
  font-weight: 800;
  font-size: .88rem;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(10, 32, 99, .11);
  border-radius: 32px;
  padding: clamp(1.35rem, 4vw, 2.1rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -88px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(10, 32, 99, .18), transparent 65%);
}
.card-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  background: #eef6ff;
  color: var(--blue);
  border: 1px solid rgba(10, 32, 99, .12);
  border-radius: 999px;
  padding: .38rem .72rem;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 1rem;
}
.hero-card h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}
.check-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.25rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(223, 230, 242, .75);
  color: #26364f;
  font-weight: 760;
}
.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  font-size: .8rem;
  font-weight: 900;
  margin-top: .02rem;
}
.mini-proof {
  position: relative;
  z-index: 1;
  background: var(--blue);
  color: white;
  border-radius: 20px;
  padding: 1rem;
}
.mini-proof strong,
.mini-proof span { display: block; }
.mini-proof span { opacity: .82; margin-top: .15rem; }

.section { padding: 82px 0; }
.tinted { background: var(--soft); }
.problem-section {
  background: var(--blue);
  color: white;
  padding: 66px 0;
}
.problem-section h2,
.problem-section .section-kicker { color: white; }
.problem-section .section-kicker::before { background: var(--green); }
.problem-section p { color: rgba(255, 255, 255, .86); }

.two-col {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.text-block p { font-size: 1.06rem; }
.text-block p:last-child { margin-bottom: 0; }

.section-heading {
  max-width: 790px;
  margin-bottom: 2rem;
}
.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}
.section-heading.centered .section-kicker { justify-content: center; }
.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 235px;
  box-shadow: 0 12px 36px rgba(10, 32, 99, .06);
}
.feature-card p { color: var(--muted); margin-bottom: 0; }
.feature-highlight {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
}
.feature-highlight h3,
.feature-highlight p { color: white; }
.feature-highlight p { opacity: .85; }
.icon-dot {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--soft-2);
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 1.05rem;
}
.feature-highlight .icon-dot {
  background: rgba(255, 255, 255, .14);
  color: white;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  color: #26364f;
  font-weight: 820;
}
.service-item span {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, .12);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: timeline;
}
.timeline-item {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 12px 36px rgba(10, 32, 99, .06);
}
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 950;
  margin-bottom: 1rem;
}
.timeline-item p { color: var(--muted); margin-bottom: 0; }

.proof-section { background: #fff; }
.proof-card {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #0a2063, #102b7d);
  color: white;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.proof-card h2,
.proof-card .section-kicker { color: white; }
.proof-card p { color: rgba(255, 255, 255, .84); margin-bottom: 0; }
.proof-points {
  display: grid;
  gap: .75rem;
}
.proof-points div {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  padding: 1rem;
}
.proof-points strong,
.proof-points span { display: block; }
.proof-points span { color: rgba(255, 255, 255, .78); margin-top: .2rem; }


.docs-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.doc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.2rem;
  box-shadow: 0 14px 40px rgba(10, 32, 99, .08);
}
.doc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.doc-card-head h3 { margin-bottom: 0; }
.doc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .38rem .7rem;
  background: #eef6ff;
  color: var(--blue);
  border-radius: 999px;
  border: 1px solid rgba(10, 32, 99, .12);
  font-size: .78rem;
  font-weight: 900;
}
.doc-preview {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem;
}
.doc-preview-top {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid #e8eef8;
  margin-bottom: .9rem;
}
.doc-logo {
  width: auto;
  height: 38px;
  max-width: 150px;
  object-fit: contain;
}
.doc-title-wrap strong, .doc-title-wrap span { display: block; }
.doc-title-wrap strong { color: var(--blue-3); }
.doc-title-wrap span { color: var(--muted); font-size: .88rem; margin-top: .1rem; }
.doc-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin-bottom: .9rem;
}
.meta-chip {
  height: 30px;
  background: #f1f5fb;
  border-radius: 10px;
  border: 1px solid #e4ebf5;
}
.blur-bar {
  position: relative;
  overflow: hidden;
}
.blur-bar::after {
  content: "";
  position: absolute;
  inset: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(10, 32, 99, .18), rgba(10, 32, 99, .38), rgba(10, 32, 99, .18));
  filter: blur(4px);
}
.doc-lines {
  display: grid;
  gap: .48rem;
  margin-bottom: .9rem;
}
.doc-lines.compact { margin-bottom: 0; }
.line {
  height: 10px;
  background: linear-gradient(90deg, #dbe4f2, #eff4fb);
  border-radius: 999px;
}
.photo-box {
  min-height: 82px;
  border-radius: 14px;
  border: 1px solid #dfe7f5;
  background:
    linear-gradient(135deg, rgba(10, 32, 99, .08), rgba(22, 163, 74, .12)),
    linear-gradient(180deg, #ffffff, #edf3fc);
}
.doc-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin-bottom: .9rem;
}
.signature-row {
  display: flex;
  justify-content: flex-end;
}
.signature-box {
  width: min(100%, 235px);
  padding: .85rem;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px dashed #cad6ea;
}
.signature-box span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .5rem;
}
.signature-stroke {
  height: 28px;
  margin-bottom: .45rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='36' viewBox='0 0 220 36'%3E%3Cpath d='M7 26 C30 12, 50 30, 72 18 S110 14, 130 22 S170 30, 205 11' stroke='%230a2063' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .8;
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  margin-bottom: .9rem;
}
.status-box {
  border-radius: 12px;
  padding: .62rem .75rem;
  background: #f1f6ff;
  border: 1px solid #d8e4f7;
  color: var(--blue);
  font-weight: 800;
  text-align: center;
  font-size: .9rem;
}
.doc-note {
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.w-32 { width: 32%; } .w-34 { width: 34%; } .w-35 { width: 35%; } .w-38 { width: 38%; } .w-40 { width: 40%; } .w-45 { width: 45%; } .w-48 { width: 48%; } .w-50 { width: 50%; } .w-60 { width: 60%; } .w-64 { width: 64%; } .w-70 { width: 70%; } .w-72 { width: 72%; } .w-74 { width: 74%; } .w-76 { width: 76%; } .w-80 { width: 80%; } .w-84 { width: 84%; } .w-86 { width: 86%; } .w-88 { width: 88%; } .w-90 { width: 90%; } .w-92 { width: 92%; }


.docs-grid-real {
  align-items: start;
}
.real-doc-card {
  padding: 1rem;
}
.doc-card-head.stack {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: .5rem;
}
.real-doc-image-wrap {
  background: linear-gradient(180deg, #eef1f6 0%, #f9fafc 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: .75rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.real-doc-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #d9e1ef;
  background: white;
}


.docs-grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.wide-card {
  align-self: start;
}
.landscape-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: white;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(22, 163, 74, .13), transparent 25%),
    var(--soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.07rem;
}
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.contact-card .btn + .btn { margin-top: .75rem; }
.small-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}
.small-note a { color: var(--blue); font-weight: 900; }

.legal-note {
  padding: 22px 0;
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legal-note p {
  margin: 0;
  color: #64748b;
  font-size: .88rem;
}

.site-footer {
  background: var(--blue-3);
  color: white;
  padding: 34px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}
.site-footer p { margin: .35rem 0 0; color: rgba(255, 255, 255, .68); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1rem;
  justify-content: flex-end;
  color: rgba(255, 255, 255, .82);
  font-weight: 780;
}
.footer-links a:hover { color: white; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: .6rem;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { border-radius: 12px; }
  .hero { padding-top: 58px; }
  .hero-grid,
  .two-col,
  .proof-card,
  .contact-grid { grid-template-columns: 1fr; }
  .feature-grid,
  .timeline,
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .nav-wrap { min-height: 66px; }
  .brand-logo { height: 42px; max-width: 190px; }
  .doc-preview-top { align-items: flex-start; }
  .doc-photo-row { grid-template-columns: 1fr; }
  .status-grid, .doc-meta-grid { grid-template-columns: 1fr; }
  .real-doc-card { padding: .85rem; }
  .main-nav { inset: 66px 12px auto; }
  .hero { padding: 46px 0 50px; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.25rem); }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { font-size: .8rem; }
  .hero-card { border-radius: 24px; }
  .section { padding: 58px 0; }
  .feature-grid,
  .timeline,
  .service-list,
  .docs-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .footer-grid { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

.footer-logo {
  width: auto;
  height: 42px;
  max-width: 220px;
  margin-bottom: .85rem;
  object-fit: contain;
}
