body.service-page {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #33485c;
  background: #f4f8fc;
}

.service-page * {
  box-sizing: border-box;
}

.service-page a {
  color: #0056b3;
  text-decoration: none;
}
.service-page .btn-secondary {
  color: #fff;
  text-decoration: none;
}
.service-page .btn-secondary:hover {
  color: #fff;
  text-decoration: none;
}

.service-page a:hover {
  color: #0056b3;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #fff;
  color: #0e2f4f;
}

.topbar .page-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 242px;
  object-fit: contain;
}

.top-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.top-links a {
  color: #0056b3;
  font-size: 14px;
}

.service-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #d8e6f3;
  border-radius: 14px;
  background: #f7fbff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.service-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f4c81;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(300px, calc(100vw - 48px));
  height: 100vh;
  padding: 88px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0e2f4f;
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transition: right 0.3s ease;
}

.service-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-mobile-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.service-mobile-overlay {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(5, 22, 38, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.service-menu-open {
  overflow: hidden;
}

body.service-menu-open .service-mobile-nav {
  right: 0;
}

body.service-menu-open .service-mobile-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.service-menu-open .service-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.service-menu-open .service-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.service-menu-open .service-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(99, 179, 237, 0.28), transparent 32%),
    linear-gradient(135deg, #083358 0%, #0f4c81 52%, #1673a7 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(2px);
}

.hero .page-shell {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.92);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.12;
}

.hero-copy p {
  margin: 0 0 20px;
  font-size: 1.03rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: #fff;
  color: #0f4c81;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.hero-panel h2 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
}

.hero-panel p {
  margin: 0 0 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.content-section {
  padding: 54px 0;
}

.content-section.alt {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: #163b5b;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.section-heading p {
  margin: 0;
  line-height: 1.8;
}

.content-section p {
  margin: 0 0 16px;
  line-height: 1.85;
}

.content-section ul,
.content-section ol {
  margin: 0 0 16px;
  padding-left: 20px;
  line-height: 1.85;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

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

.info-card,
.pricing-card,
.faq-card,
.cta-card {
  background: #fff;
  border: 1px solid #dbe8f5;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 28px rgba(16, 54, 88, 0.07);
}

.info-card h3,
.pricing-card h3,
.faq-card h3,
.cta-card h3 {
  margin: 0 0 12px;
  color: #163b5b;
  font-size: 1.15rem;
  font-family: "Montserrat", sans-serif;
}

.pricing-card strong {
  display: inline-block;
  margin-bottom: 12px;
  color: #0f5f9b;
  font-size: 0.98rem;
}

.process-steps {
  counter-reset: process-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px 20px;
  border: 1px solid #dbe8f5;
  box-shadow: 0 14px 28px rgba(16, 54, 88, 0.07);
}

.process-step::before {
  counter-increment: process-step;
  content: "0" counter(process-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #dff1ff;
  color: #0f5f9b;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.quote-band {
  background: linear-gradient(135deg, #0f4c81 0%, #0e2f4f 100%);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.quote-band h2,
.quote-band h3 {
  color: #fff;
}

.quote-band p,
.quote-band li {
  color: rgba(255, 255, 255, 0.92);
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.cta-card .btn-primary,
.cta-card .btn-secondary {
  width: 100%;
}

.cta-stack {
  display: grid;
  gap: 12px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.related-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #c8d9ea;
  background: #fff;
  color: #0f4c81;
  font-size: 14px;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-card p:last-child,
.info-card p:last-child,
.pricing-card p:last-child,
.process-step p:last-child {
  margin-bottom: 0;
}

.service-footer {
  background: #0e2f4f;
  color: rgba(255, 255, 255, 0.85);
  padding: 24px 0 32px;
}

.service-footer .page-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.service-footer a {
  color: #fff;
}

@media (max-width: 991px) {
  .topbar .page-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-links {
    width: 100%;
  }

  .hero-grid,
  .quote-grid,
  .two-col,
  .card-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero .page-shell {
    padding-top: 56px;
    padding-bottom: 52px;
  }
}

@media (max-width: 767px) {
  .page-shell {
    width: min(1120px, calc(100% - 24px));
  }

  .topbar .page-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
  }

  .brand img {
    width: clamp(168px, 52vw, 220px);
  }

  .top-links {
    display: none;
  }

  .service-menu-toggle {
    display: inline-flex;
  }

  .breadcrumbs {
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-actions,
  .cta-stack {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .page-shell {
    padding: 46px 0 42px;
  }

  .hero::after {
    width: 240px;
    height: 240px;
    inset: auto -70px -90px auto;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy p,
  .hero-panel p,
  .content-section p,
  .content-section ul,
  .content-section ol {
    line-height: 1.75;
  }

  .hero-panel,
  .info-card,
  .pricing-card,
  .faq-card,
  .cta-card,
  .process-step {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .hero-badges li,
  .related-links a {
    font-size: 13px;
  }

  .service-footer .page-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-section {
    padding: 42px 0;
  }
}

@media (max-width: 480px) {
  .service-mobile-nav {
    width: min(280px, calc(100vw - 28px));
    padding: 84px 16px 20px;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges li {
    width: 100%;
    text-align: center;
  }
}
