@import url("./header.css");
@import url("./footer.css");
@import url("./cookie-banner.css");

:root {
  --container: 1200px;
  --service-container: 1120px;
  --ink: #0f172a;
  --muted: #475569;
  --line: #dbe3ed;
  --panel: #ffffff;
  --bg: #f3f5f8;
  --brand: #0b5f84;
  --accent: #f97316;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  background: var(--bg);
  color: var(--ink);
  padding-top: var(--header-h, 72px);
}

a {
  color: inherit;
}

.header {
  --header-bg: rgba(3, 18, 26, 0.72);
  --header-border: rgba(255, 255, 255, 0.16);
  --header-link-bg: rgba(255, 255, 255, 0.14);
  --header-link-bg-hover: rgba(255, 255, 255, 0.22);
}

.header.header--scrolled {
  --header-bg: rgba(3, 18, 26, 0.98);
}

.serviceDetail {
  padding: 54px 0 72px;
}

.serviceDetail__container {
  max-width: var(--service-container);
  margin: 0 auto;
  padding: 0 24px;
}

.serviceDetail__hero {
  margin-bottom: 22px;
}

.serviceDetail__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.serviceDetail__title {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.serviceDetail__lead {
  margin: 0 0 10px;
  max-width: 82ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.servicePanel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.servicePanel__title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.servicePanel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.servicePanel__list li {
  position: relative;
  padding-left: 14px;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
}

.servicePanel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #f97316;
}

.serviceProcess,
.serviceFaq {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin-top: 14px;
}

.serviceProcess__title,
.serviceFaq__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}

.serviceProcess__list {
  margin: 0;
  padding-left: 20px;
  color: #334155;
  display: grid;
  gap: 8px;
}

.serviceProcess__list li {
  font-size: 14px;
  line-height: 1.45;
}

.serviceDetail__disclaimer {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.serviceFaq__list {
  display: grid;
  gap: 8px;
}

.serviceFaq details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fcfdff;
  padding: 10px 12px;
}

.serviceFaq summary {
  cursor: pointer;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
}

.serviceFaq p {
  margin: 8px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.serviceDetail__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.serviceDetail__back,
.serviceDetail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.serviceDetail__back {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #ffffff;
}

.serviceDetail__cta {
  border: 1px solid var(--brand);
  color: #ffffff;
  background: var(--brand);
}

@media (max-width: 880px) {
  .serviceDetail__container {
    padding: 0 18px;
  }

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

@media (max-width: 640px) {
  .serviceDetail {
    padding: 38px 0 50px;
  }

  .serviceDetail__container {
    padding: 0 12px;
  }

  .servicePanel,
  .serviceProcess,
  .serviceFaq {
    padding: 14px;
  }
}
