:root {
  color-scheme: light;
}

.service-body {
  background: var(--surface);
  color: var(--ink);
}

.service-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(145, 210, 255, 0.14);
  background: rgba(3, 17, 31, 0.84);
  backdrop-filter: blur(18px);
}

.service-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 3.5rem);
}

.service-topbar .brand {
  color: var(--text);
}

.service-topbar .brand-mark {
  background: rgba(5, 18, 34, 0.55);
  border-color: rgba(165, 220, 255, 0.28);
}

.service-topbar .brand-copy strong {
  color: var(--text);
}

.service-topbar .brand-copy small {
  color: var(--soft);
}

.service-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.service-topbar-actions .button {
  min-width: 0;
  padding: 0.9rem 1.2rem;
  font-size: 0.78rem;
}

.service-topbar-actions .button-secondary {
  color: var(--text);
  border-color: rgba(165, 220, 255, 0.26);
}

.service-page {
  color: var(--ink);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 2rem;
  align-items: stretch;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 3.5rem clamp(1.25rem, 4vw, 3.5rem) 4rem;
}

.service-breadcrumb {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-breadcrumb a {
  color: var(--accent-deep);
}

.service-hero h1 {
  color: var(--ink);
  text-shadow: none;
  line-height: 1.02;
}

.service-lead {
  max-width: 58ch;
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.88;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.service-actions .button-secondary {
  color: #ffffff;
}

.service-badges {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-badges li {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(46, 143, 255, 0.16);
  border-radius: 999px;
  background: rgba(46, 143, 255, 0.06);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--surface-elevated);
  box-shadow: var(--surface-shadow);
  min-height: 430px;
}

.service-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-stock-showcase {
  padding-top: 0.5rem;
}

.service-stock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-stock-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--surface-elevated);
  box-shadow: var(--surface-shadow);
}

.service-stock-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-stock-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.service-section {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) 4.5rem;
}

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

.service-card-panel,
.service-panel,
.service-faq-item,
.service-related-card {
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: var(--surface-elevated);
  box-shadow: var(--surface-shadow);
}

.service-card-panel,
.service-panel,
.service-faq-item {
  padding: 2rem;
}

.service-card-panel h3,
.service-panel h3,
.service-faq-item h3,
.service-related-card h3 {
  margin: 0 0 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--ink);
}

.service-card-panel p,
.service-panel p,
.service-faq-item p,
.service-related-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.service-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.service-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
}

.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-related-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.7rem;
  height: 100%;
}

.service-related-card .button {
  min-width: 0;
  margin-top: auto;
  padding-inline: 1.2rem;
  color: #ffffff;
}

.service-cta-band {
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto 4.5rem;
  padding: 2.5rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(134, 214, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #07203c 0%, #14467b 100%);
  color: var(--text);
  box-shadow: 0 32px 80px rgba(3, 17, 31, 0.2);
}

.service-cta-band h2 {
  margin: 0;
  max-width: 18ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.service-cta-band p {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--soft);
  line-height: 1.85;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.service-cta-band .button-primary,
.service-cta-band .button-secondary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent), #f7fcff);
  border-color: transparent;
}

.service-page .site-footer {
  margin-top: 0;
}

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

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

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

  .service-faq-grid,
  .service-related-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding-top: 2.6rem;
  }

  .service-hero-media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .service-topbar-inner,
  .service-topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-topbar-actions {
    width: 100%;
  }

  .service-topbar-actions .button,
  .service-actions .button,
  .service-cta-actions .button {
    width: 100%;
  }

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

  .service-stock-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-band {
    width: min(1280px, calc(100% - 1.25rem));
    padding: 2rem 1.4rem;
  }
}
