:root {
  --navy: #062653;
  --navy-deep: #031d45;
  --navy-soft: #123e6a;
  --teal: #08a9a8;
  --teal-soft: #d9f7f5;
  --ink: #082557;
  --muted: #65758c;
  --bg: #f3f9fc;
  --line: #d7e6ee;
  --shadow: 0 20px 56px rgba(6, 38, 83, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.45;
}

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

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

button {
  font: inherit;
}

.service-topbar {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  min-height: 32px;
  padding: 7px 8%;
  background: var(--navy-deep);
  color: #d4edf4;
  font-size: 14px;
  font-weight: 700;
}

.service-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 82px;
  padding: 0 8%;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.service-brand img {
  width: 88px;
  height: 66px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.nav a:hover,
.nav a:focus-visible,
.nav .active {
  color: var(--teal);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.nav-dropdown-toggle {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  min-width: 270px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  max-height: min(420px, calc(100vh - 120px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(6, 38, 83, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.has-dropdown::after {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 29;
  width: 270px;
  height: 14px;
  content: "";
  transform: translateX(-50%);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: #e9fbfb;
  color: var(--teal);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown .sub-active {
  background: #e9fbfb;
  color: var(--teal);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(6, 38, 83, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 26px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

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

.service-btn:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(8, 169, 168, 0.35);
  outline-offset: 3px;
}

.service-btn-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 169, 168, 0.24);
}

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

.service-btn-light {
  background: #ffffff;
  color: var(--navy);
}

.service-btn-outline {
  border-color: rgba(255, 255, 255, 0.76);
  color: #ffffff;
}

.billing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  gap: 56px;
  align-items: center;
  padding: 58px 8% 54px;
  background: #eaf7fb;
  overflow: hidden;
}

.service-pill {
  display: inline-flex;
  margin: 0;
  border: 1px solid #aee9e7;
  border-radius: 999px;
  padding: 9px 17px;
  background: var(--teal-soft);
  color: #078683;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 790px;
  margin: 30px 0 18px;
  color: var(--navy);
  font-size: clamp(52px, 6.2vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-lead {
  max-width: 820px;
  margin: 0;
  color: #52657e;
  font-size: 22px;
  line-height: 1.48;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.performance-shell {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.performance-card {
  border-radius: 24px;
  padding: 30px;
  background: var(--navy-deep);
  color: #ffffff;
}

.performance-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.performance-top h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 700;
  line-height: 1.1;
}

.performance-top span {
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 800;
  white-space: nowrap;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.performance-grid article {
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 14px 16px;
  background: #173f67;
}

.performance-grid span {
  display: block;
  color: #b7d5e7;
  font-size: 16px;
  font-weight: 700;
}

.performance-grid strong {
  display: block;
  margin-top: 2px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.ready-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  border-radius: 999px;
  padding: 10px 16px;
  background: #ffffff;
  color: var(--navy);
}

.ready-row span {
  border-radius: 999px;
  padding: 4px 14px;
  background: var(--teal-soft);
  color: #078683;
  font-size: 13px;
  font-weight: 900;
}

.billing-section,
.process-mini,
.faq-section {
  padding: 66px 8%;
}

.section-heading h2 {
  max-width: 1120px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
}

.section-heading p {
  max-width: 900px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 22px;
}

.faq-section {
  padding-top: 16px;
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(6, 38, 83, 0.05);
}

.faq-grid summary {
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 32px;
  margin-top: 30px;
}

.support-grid article {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px 24px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(6, 38, 83, 0.04);
}

.support-grid img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  padding: 13px;
  background: #ddf9f8;
  object-fit: contain;
}

.support-grid h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.clarity-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding: 22px 8% 76px;
}

.clarity-card {
  min-height: 380px;
  border-radius: 26px;
  padding: 36px 32px;
  background: var(--navy-deep);
  color: #ffffff;
}

.clarity-card > p:first-child {
  margin: 0 0 24px;
  color: #87efed;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clarity-card h2 {
  max-width: 360px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
}

.clarity-card p {
  margin: 0 0 26px;
  color: #d4e9f5;
  font-size: 18px;
  line-height: 1.55;
}

.clarity-list {
  display: grid;
  gap: 14px;
}

.clarity-list article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 12px 18px;
  background: #ffffff;
}

.clarity-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-soft);
}

.clarity-list span::before {
  color: var(--teal);
  font-weight: 900;
  content: "\2713";
}

.clarity-list strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.14;
}

.clarity-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.process-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #ffffff;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

.process-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
}

.process-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.billing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 20px 8% 76px;
  border-radius: 28px;
  padding: 38px;
  background: var(--teal);
  color: #ffffff;
}

.billing-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
}

.billing-cta p {
  margin: 10px 0 0;
  color: #e6ffff;
  font-size: 20px;
}

.billing-cta .cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.service-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr 1.1fr;
  gap: 48px;
  padding: 42px 8% 58px;
  background: var(--navy-deep);
  color: #ffffff;
}

.footer-logo img {
  width: 92px;
  height: 74px;
  object-fit: contain;
}

.footer-logo p {
  margin: 8px 0 0;
  color: var(--teal);
  font-size: 16px;
}

.service-footer h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
}

.service-footer a,
.service-footer p {
  display: block;
  margin: 4px 0;
  color: #b9ccdd;
  font-size: 15px;
}

@media (max-width: 1050px) {
  .service-topbar,
  .header-action {
    display: none;
  }

  .service-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 24px;
  }

  .service-brand img {
    width: 78px;
    height: 58px;
  }

  .menu-toggle {
    display: inline-flex;
    padding: 11px 15px;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
  }

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

  .nav a {
    min-height: 44px;
    border-top: 1px solid var(--line);
    padding-top: 13px;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 44px;
    height: 44px;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .nav-dropdown {
    position: static;
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    max-height: none;
    border: 0;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    overflow-y: visible;
    overscroll-behavior: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-dropdown::after {
    display: none;
  }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    display: none;
  }

  .has-dropdown.is-open .nav-dropdown {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    display: block;
    min-height: 40px;
    border-top: 1px solid var(--line);
    border-radius: 0;
    padding: 12px 0 0 18px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .billing-hero,
  .clarity-section,
  .billing-cta,
  .service-footer {
    grid-template-columns: 1fr;
  }

  .performance-shell {
    max-width: 620px;
  }

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

  .billing-cta .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .billing-hero,
  .billing-section,
  .clarity-section,
  .process-mini,
  .faq-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-lead,
  .section-heading p,
  .billing-cta p {
    font-size: 17px;
  }

  .performance-shell,
  .performance-card {
    padding: 18px;
  }

  .performance-top,
  .ready-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .performance-grid,
  .support-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .billing-cta {
    margin-right: 24px;
    margin-left: 24px;
    padding: 28px;
  }

  .hero-actions,
  .cta-actions,
  .service-btn {
    width: 100%;
  }
}
