:root {
  --font-ui: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --navy: #071b33;
  --navy-2: #0b2b52;
  --navy-3: #123b6f;
  --blue: #1e64d7;
  --blue-2: #4aa3ff;
  --green: #3ddc97;
  --ink: #132033;
  --muted: #43586f;
  --line: #dce7f3;
  --soft: #f4f8fc;
  --soft-2: #eaf2fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 27, 51, 0.16);
  --shadow-sm: 0 14px 34px rgba(7, 27, 51, 0.1);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(74, 163, 255, 0.12), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(61, 220, 151, 0.09), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 52%, #f7fafe 100%);
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar a {
  color: #ffffff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 231, 243, 0.85);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
}

.brand img {
  width: 54px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(7, 27, 51, 0.14);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: inherit;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #30445f;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.site-nav a:hover,
.mini-links a:hover,
.footer-links a:hover {
  transform: translateY(-1px);
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--navy-3));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(30, 100, 215, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1557c4, var(--navy-2));
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-sm);
}

.btn-urgent {
  background: #fff0f0;
  color: #9d1c1c;
  border-color: #ffd0d0;
}

.section {
  padding: 76px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head > div {
  max-width: 720px;
}

.section-kicker {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(31px, 4.2vw, 48px);
  color: var(--navy);
}

h3 {
  font-size: 1.42rem;
  color: var(--navy);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.pulse,
.check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(61, 220, 151, 0.14);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(61, 220, 151, 0.18);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.home-hero {
  position: relative;
  background:
    radial-gradient(circle at 76% 18%, rgba(74, 163, 255, 0.28), transparent 31%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 58%, var(--navy-3) 100%);
  color: #ffffff;
  padding: 86px 0 64px;
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% 44%;
  height: 360px;
  background: radial-gradient(circle, rgba(61, 220, 151, 0.18), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin-top: 22px;
  font-size: clamp(40px, 6.4vw, 68px);
  max-width: 880px;
}

.hero-copy .lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.3vw, 22px);
  margin-top: 22px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  max-width: 790px;
}

.hero-points li,
.mini-links li,
.detail-list li,
.service-card li,
.route-card li,
.plan-card li,
.info-card li,
.product-card li,
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-points li {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.hero-aside {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 24px;
  backdrop-filter: blur(18px);
}

.status-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  color: var(--ink);
}

.status-card p {
  margin-top: 10px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: var(--soft);
}

.metric b {
  display: block;
  color: var(--navy);
  font-family: inherit;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.metric span {
  color: #37516d;
  font-size: 0.94rem;
}

.mini-links,
.detail-list,
.service-card ul,
.route-card ul,
.plan-card ul,
.info-card ul,
.product-card ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.mini-links li,
.detail-list li,
.service-card li,
.route-card li,
.plan-card li,
.info-card li,
.product-card li,
.contact-list li {
  color: #37516d;
}

.mini-links a {
  color: var(--navy);
  font-weight: 700;
}

.cards-3,
.plans-grid,
.shortcut-grid,
.steps-grid,
.industry-grid,
.product-grid,
.resource-grid,
.portal-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.cards-2,
.routes,
.split-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.cards-2,
.split-grid,
.contact-grid {
  grid-template-columns: 1.06fr 0.94fr;
}

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

.page-hero {
  padding: 62px 0 28px;
}

.hero-panel,
.service-card,
.route-card,
.shortcut-card,
.step-card,
.plan-card,
.industry-card,
.info-card,
.portal-card,
.product-card,
.form-card,
.contact-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.hero-panel,
.service-card,
.route-card,
.shortcut-card,
.step-card,
.plan-card,
.industry-card,
.info-card,
.portal-card,
.product-card,
.form-card,
.contact-panel {
  padding: 24px;
}

.hero-panel.dark {
  background:
    radial-gradient(circle at 78% 12%, rgba(74, 163, 255, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 58%, var(--navy-3) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.hero-panel.dark h1,
.hero-panel.dark h2,
.hero-panel.dark h3,
.hero-panel.dark p,
.hero-panel.dark .page-badge,
.hero-panel.dark .detail-list li {
  color: inherit;
}

.hero-panel.dark p,
.hero-panel.dark .detail-list li {
  color: rgba(255, 255, 255, 0.84);
}

.page-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.hero-panel h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  margin-top: 14px;
}

.hero-panel p {
  max-width: 780px;
  margin-top: 14px;
}

.hero-actions,
.route-actions,
.card-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #d9ecff, #8ec7ff);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;
}

.service-card p,
.route-card p,
.shortcut-card p,
.step-card p,
.plan-card p,
.industry-card p,
.info-card p,
.portal-card p,
.product-card p,
.form-card p {
  margin-top: 8px;
}

.support-band {
  background: rgba(234, 242, 251, 0.75);
}

.partner-band {
  background: linear-gradient(180deg, rgba(235, 244, 252, 0.94), rgba(248, 251, 255, 0.98));
}

.partner-layout {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 20px;
  align-items: start;
}

.partner-panel p {
  margin-top: 12px;
}

.partner-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.partner-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 22px;
}

.partner-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.partner-card p {
  margin: 0;
  color: #5a7591;
}

.route-card.dark {
  background:
    radial-gradient(circle at top right, rgba(74, 163, 255, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.route-card.dark h3,
.route-card.dark p,
.route-card.dark li {
  color: #ffffff;
}

.route-card.dark p,
.route-card.dark li {
  color: rgba(255, 255, 255, 0.84);
}

.shortcut-card {
  background: rgba(255, 255, 255, 0.88);
}

.shortcut-card h3 {
  font-size: 1.1rem;
}

.step-card {
  position: relative;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(30, 100, 215, 0.1);
  color: var(--blue);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
}

.plan-card {
  position: relative;
}

.plan-card.featured {
  transform: translateY(-8px);
  background:
    radial-gradient(circle at top right, rgba(74, 163, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  box-shadow: var(--shadow);
}

.plan-card .badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.price {
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 10px;
}

.price b {
  color: var(--navy);
  font-size: 1.22rem;
}

.contact-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(74, 163, 255, 0.16), transparent 28%),
    linear-gradient(180deg, var(--navy) 0%, #0d2445 100%);
}

.contact-section .section-kicker {
  color: #7db5ff;
}

.contact-section .contact-panel h2 {
  color: var(--navy);
  text-shadow: none;
}

.contact-section .contact-panel,
.contact-section .form-card {
  background: rgba(255, 255, 255, 0.98);
}

.contact-section .contact-panel {
  position: sticky;
  top: 106px;
  align-self: start;
}

.contact-section .contact-panel p {
  margin-top: 12px;
  color: #5a7591;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.contact-method b {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.method-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(30, 100, 215, 0.1);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.forms {
  display: grid;
  gap: 18px;
}

.form-card h3 {
  font-size: 1.5rem;
}

.form-card p {
  margin: 10px 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  color: #263b54;
  font-size: 15px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccdae9;
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  padding: 14px 15px;
  font-size: 16px;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

input::placeholder,
textarea::placeholder {
  color: #8394a7;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(30, 100, 215, 0.18);
  outline-offset: 2px;
  border-color: #8db6ef;
}

textarea {
  min-height: 144px;
  resize: vertical;
}

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

.note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.success-note {
  display: none;
  color: #157347;
  font-size: 14px;
  font-weight: 700;
}

.error-note {
  display: none;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
}

.success-note.active {
  display: inline;
}

.error-note.active {
  display: inline;
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 44px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 26px;
}

.footer h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: #ffffff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero-grid,
  .cards-2,
  .split-grid,
  .contact-grid,
  .routes,
  .cards-3,
  .plans-grid,
  .product-grid,
  .resource-grid,
  .shortcut-grid,
  .industry-grid,
  .portal-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section .contact-panel {
    position: static;
  }
}

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

  .nav-shell {
    min-height: 70px;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    width: 100%;
    display: block;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 0 6px;
  }

  .site-nav li {
    min-width: 0;
  }

  .site-nav a {
    background: var(--soft);
    width: 100%;
    justify-content: center;
  }

  .nav-actions {
    display: none;
  }

  .home-hero {
    padding: 58px 0 46px;
  }

  .hero-grid,
  .cards-2,
  .split-grid,
  .partner-layout,
  .contact-grid,
  .routes {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .plans-grid,
  .product-grid,
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shortcut-grid,
  .industry-grid,
  .portal-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  .topbar .container {
    display: grid;
    gap: 4px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .hero-points,
  .status-grid,
  .cards-3,
  .plans-grid,
  .product-grid,
  .resource-grid,
  .partner-grid,
  .shortcut-grid,
  .industry-grid,
  .portal-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1,
  .hero-panel h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-ctas,
  .hero-actions,
  .route-actions,
  .card-actions,
  .form-actions {
    flex-direction: column;
  }

  .hero-ctas .btn,
  .hero-actions .btn,
  .route-actions .btn,
  .card-actions .btn,
  .form-actions .btn,
  .nav-actions .btn {
    width: 100%;
  }

  .hero-panel,
  .service-card,
  .route-card,
  .shortcut-card,
  .step-card,
  .plan-card,
  .industry-card,
  .info-card,
  .portal-card,
  .product-card,
  .form-card,
  .contact-panel,
  .hero-aside {
    padding: 20px;
  }

  .copyright {
    display: grid;
  }
}
