:root {
  --navy: #07192f;
  --navy-2: #0b2443;
  --blue: #1687d9;
  --blue-dark: #0a67ad;
  --green: #66b64a;
  --green-dark: #438c31;
  --ink: #122033;
  --muted: #5c6b7d;
  --line: #dce5ee;
  --pale: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 27, 51, 0.12);
  --radius: 18px;
  --max: 1160px;
}

* {
  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.65;
}

a {
  color: var(--blue-dark);
}

a:hover {
  color: var(--green-dark);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 229, 238, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

.brand-name {
  font-weight: 850;
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.brand-b {
  color: var(--blue);
}

.brand-v {
  color: var(--green);
}

.brand-subtitle {
  margin-top: 7px;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: #26374b;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  background: var(--white);
  font: inherit;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(22, 135, 217, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
  box-shadow: 0 13px 30px rgba(22, 135, 217, 0.3);
}

.button-small {
  min-height: 40px;
  padding: 8px 15px;
}

.button-secondary {
  background: transparent;
  color: var(--navy) !important;
  border-color: #b9c7d5;
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--pale);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 92px;
  background:
    radial-gradient(circle at 85% 15%, rgba(102, 182, 74, 0.18), transparent 26rem),
    radial-gradient(circle at 10% 10%, rgba(22, 135, 217, 0.18), transparent 30rem),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  bottom: -160px;
  border-radius: 50%;
  border: 55px solid rgba(22, 135, 217, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.14;
  color: var(--navy);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -0.055em;
}

h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 720px;
  margin: 25px 0 0;
  font-size: 1.18rem;
  color: #46586b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.service-area {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card {
  position: relative;
  padding: 33px;
  border: 1px solid rgba(200, 215, 228, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 6px;
  top: 0;
  left: 32px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.hero-card h2 {
  font-size: 1.55rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 31px;
  border-bottom: 1px solid #edf2f6;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.section {
  padding: 88px 0;
}

.section-intro {
  max-width: 770px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.service-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card.featured {
  border-color: rgba(102, 182, 74, 0.55);
  box-shadow: 0 14px 34px rgba(55, 112, 39, 0.1);
}

.card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--pale);
  color: var(--blue-dark);
  font-weight: 900;
}

.service-card.featured .card-number {
  color: var(--green-dark);
  background: #edf8ea;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  padding-left: 20px;
}

.section-dark {
  color: #dce8f5;
  background:
    radial-gradient(circle at 15% 15%, rgba(22, 135, 217, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .eyebrow {
  color: #74c5ff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.steps article {
  position: relative;
}

.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.steps p {
  color: #b9c9d9;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: start;
}

.body-copy {
  font-size: 1.08rem;
  color: #47596c;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  background: #f2f9ef;
  color: #31502a;
}

.section-muted {
  background: var(--pale);
}

.faq-list {
  max-width: 900px;
  margin-top: 42px;
}

details {
  border-bottom: 1px solid #cbd8e4;
}

summary {
  cursor: pointer;
  padding: 22px 4px;
  color: var(--navy);
  font-weight: 820;
  font-size: 1.08rem;
}

details p {
  margin: -4px 4px 24px;
  color: var(--muted);
}

.contact-section {
  padding-top: 70px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 45px;
  align-items: center;
  padding: 42px;
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 25, 47, 0.98), rgba(11, 49, 82, 0.96)),
    var(--navy);
  box-shadow: var(--shadow);
}

.contact-box h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.contact-box p {
  color: #c7d5e3;
}

.contact-actions {
  text-align: center;
}

.contact-actions .button {
  width: 100%;
}

.contact-actions p {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.site-footer {
  margin-top: 45px;
  padding: 44px 0 24px;
  color: #b8c6d3;
  background: #061423;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid p {
  margin: 7px 0 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #dbe7f1;
}

.copyright {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.legal-page {
  min-height: 70vh;
  padding: 78px 0;
  background: var(--pale);
}

.legal-content {
  max-width: 850px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.45rem;
}

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

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    gap: 45px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: stretch;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .legal-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero,
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-card,
  .service-card,
  .legal-content {
    padding: 24px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }

  .contact-box {
    padding: 28px;
  }
}


.brand-logo-link {
  display: inline-flex;
  align-items: center;
}

.header-logo {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(4, 17, 31, 0.18);
}

.logo-card {
  padding: 18px;
  overflow: hidden;
  background: #050a10;
}

.logo-card::before {
  display: none;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.logo-card-copy {
  margin: 18px 10px 8px;
  color: #d8e8f6;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 620px) {
  .header-logo {
    width: 54px;
    height: 54px;
  }
}


.document-link {
  margin: 18px 0 0;
}

.document-link a {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.document-link a:hover {
  text-decoration: underline;
}
