:root {
  --blue: #347cc5;
  --blue-dark: #1a4f8a;
  --navy: #0f2f52;
  --navy-2: #183f68;
  --amber: #ffad18;
  --amber-dark: #e99100;
  --text: #243449;
  --muted: #5f6f82;
  --line: #dce7f1;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-blue: #edf5fc;
  --success: #19734a;
  --shadow: 0 16px 40px rgba(15, 47, 82, 0.1);
  --shadow-strong: 0 15px 0 rgba(15, 47, 82, 0.12), 0 24px 50px rgba(15, 47, 82, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.topbar {
  color: #d8e8f6;
  background: #0a2540;
  font-size: 0.88rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 18px;
}

.topbar p:last-child {
  text-align: right;
}

.topbar strong {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: 0 8px 26px rgba(5, 25, 45, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: var(--amber);
  border-radius: 14px 4px 14px 4px;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.16);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-name {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: #bcd3e7;
  font-size: 0.76rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 9px;
  color: #eaf3fb;
  border-radius: 8px;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-phone {
  flex: 0 0 auto;
  padding: 10px 15px;
  color: var(--navy);
  background: var(--amber);
  border-radius: 12px;
  box-shadow: 0 5px 0 var(--amber-dark);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--navy);
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--amber-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 5% 12%, rgba(52, 124, 197, 0.16), transparent 34%),
    linear-gradient(135deg, #f9fcff 0%, #edf5fc 100%);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(255, 173, 24, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 4px;
  background: var(--amber);
  border-radius: 999px;
  content: "";
}

.hero-lead {
  max-width: 720px;
  margin-top: 22px;
  color: #40536a;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.remote-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin-top: 22px;
  padding: 15px 18px;
  color: var(--navy);
  background: #fff;
  border: 1px solid #cfe1f1;
  border-left: 5px solid var(--amber);
  border-radius: var(--radius-sm);
  box-shadow: 0 9px 24px rgba(15, 47, 82, 0.08);
  font-size: 0.96rem;
  font-weight: 700;
}

.remote-note::before {
  color: var(--success);
  content: "●";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 25px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #438dd4 0%, var(--blue-dark) 100%);
  box-shadow: 0 7px 0 #103e70, 0 15px 28px rgba(26, 79, 138, 0.24);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(3px);
  box-shadow: 0 4px 0 #103e70, 0 10px 20px rgba(26, 79, 138, 0.2);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: #b7cee3;
  box-shadow: 0 6px 0 #ceddea, 0 13px 24px rgba(15, 47, 82, 0.1);
}

.btn-secondary:hover {
  color: var(--blue-dark);
  transform: translateY(3px);
  box-shadow: 0 3px 0 #ceddea, 0 8px 18px rgba(15, 47, 82, 0.08);
}

.hero-media {
  position: relative;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(52, 124, 197, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.hero-media::before {
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: -1;
  width: 88px;
  height: 88px;
  background: var(--amber);
  border-radius: 22px;
  content: "";
}

.hero-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 15px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 20px 0;
  color: #fff;
  background: var(--navy);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-list li::before {
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  color: var(--navy);
  background: var(--amber);
  border-radius: 50%;
  content: "✓";
  font-weight: 900;
}

.section {
  padding: clamp(62px, 8vw, 104px) 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-blue {
  background: linear-gradient(135deg, var(--surface-blue), #f8fbfe);
}

.section-head {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 64px;
  background: linear-gradient(var(--blue), var(--blue-dark));
  border-radius: var(--radius) 0 10px 0;
  content: "";
}

.card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 20px;
  padding-inline: 10px;
  color: var(--navy);
  background: #fff3d7;
  border: 1px solid #ffd77f;
  border-radius: 13px;
  font-size: 0.82rem;
  font-weight: 900;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 80px);
}

.split-copy > p {
  margin-top: 18px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.callout {
  padding: 30px;
  color: var(--text);
  background: #fff;
  border: 1px solid #cfe1f1;
  border-left: 6px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.callout h3 + p,
.callout p + p {
  margin-top: 12px;
}

.steps {
  counter-reset: steps;
}

.step {
  counter-increment: steps;
}

.step::after {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #d9e8f5;
  content: "0" counter(steps);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: var(--navy);
  font-size: 0.9rem;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) {
  background: #f8fbfe;
}

td strong {
  color: var(--navy);
}

.price {
  white-space: nowrap;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.fine-print {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.related-card {
  display: flex;
  flex-direction: column;
}

.related-card .card-link {
  margin-top: auto;
  padding-top: 18px;
}

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

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 47, 82, 0.06);
}

.faq summary {
  padding: 19px 52px 19px 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact-section {
  padding: clamp(62px, 8vw, 96px) 0;
  color: #e7f1f9;
  background:
    radial-gradient(circle at 85% 20%, rgba(52, 124, 197, 0.35), transparent 32%),
    var(--navy);
}

.contact-section h2,
.contact-section h3 {
  color: #fff;
}

.contact-section .section-intro {
  color: #c1d5e6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 42px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-link {
  display: block;
  min-height: 100%;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  text-decoration: none;
}

.contact-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.contact-link small {
  display: block;
  margin-bottom: 5px;
  color: #b7cfe2;
  font-size: 0.78rem;
}

.contact-link strong {
  word-break: break-word;
}

.footer {
  padding: 25px 0;
  color: #9eb7ca;
  background: #081d31;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer a {
  color: #dbe9f4;
}

.legal-note {
  margin-top: 22px;
  padding: 18px 20px;
  color: #455a70;
  background: #f4f7fa;
  border-radius: 12px;
  font-size: 0.88rem;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0 16px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .site-nav a {
    white-space: nowrap;
  }

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

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

  .hero-media {
    max-width: 650px;
  }

  .trust-list,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .trust-list {
    gap: 12px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

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

  .topbar-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
  }

  .topbar p:last-child {
    text-align: left;
  }

  .header-phone {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

  .grid-2,
  .grid-4,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .card,
  .callout {
    padding: 23px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
