:root {
  --navy: #0c1c40;
  --accent: #1f6fe0;
  --accent-2: #52a7ff;
  --accent-deep: #0f56bd;
  --sky: #bcd6f5;
  --ice: #f3f7fd;
  --ice-2: #e6eef9;
  --ink: #132340;
  --ink-2: #5a6a86;
  --line: #e3ebf5;
  --line-2: #cbd8ea;
  --shadow-sm: 0 2px 8px rgba(16, 44, 100, 0.06), 0 8px 24px -12px rgba(16, 44, 100, 0.14);
  --shadow-md: 0 6px 18px rgba(16, 44, 100, 0.08), 0 24px 48px -24px rgba(16, 44, 100, 0.28);
  --blur: blur(18px) saturate(160%);
  --max: 1280px;
  --pad: clamp(20px, 4vw, 48px);
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Schibsted Grotesk", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 620px at 12% -8%, rgba(82, 167, 255, 0.16), transparent 58%),
    radial-gradient(820px 520px at 96% 4%, rgba(31, 111, 224, 0.12), transparent 58%),
    linear-gradient(180deg, #f7fafe 0%, #ffffff 42%, #f5f9fe 100%);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }

.utility {
  background: var(--navy);
  color: #c5d0e5;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.utility .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-block: 10px;
}
.utility-left { display: flex; gap: 22px; align-items: center; justify-self: start; flex-wrap: wrap; }
.utility-right { justify-self: end; }
.utility a:hover { color: #fff; }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 30px -18px rgba(16, 44, 100, 0.30);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding-block: 18px;
}
.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo img { height: 56px; width: auto; max-width: none; }
.foot-brand .logo img { height: 64px; opacity: 1; }
nav.primary { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
nav.primary .nav-item { position: relative; display: flex; align-items: center; }
nav.primary a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
nav.primary a:hover { background: rgba(31, 111, 224, 0.09); color: var(--accent); }
nav.primary .nav-link { display: inline-flex; align-items: center; gap: 8px; }
nav.primary .has-dropdown > .nav-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .65;
}
nav.primary .submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 90;
  min-width: 310px;
  padding: 8px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}
nav.primary .submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
nav.primary .has-dropdown:hover .submenu,
nav.primary .has-dropdown:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
nav.primary .submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}
nav.primary .submenu a:hover {
  background: rgba(31, 111, 224, 0.09);
  color: var(--accent);
}
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  justify-self: end;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  display: block;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .15s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 48%, var(--accent-deep) 100%);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 8px 20px -8px rgba(31, 111, 224, 0.55);
}
.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.legal-hero {
  padding-block: clamp(58px, 9vw, 104px) clamp(34px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-2);
}
.legal-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0;
}
.legal-hero p {
  color: var(--ink-2);
  max-width: 68ch;
  margin: 20px 0 0;
  font-size: 18px;
}
.legal-content {
  padding-block: clamp(48px, 7vw, 84px);
}
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.legal-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: clamp(26px, 5vw, 52px);
  box-shadow: var(--shadow-md);
}
.legal-card h2 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 34px 0 12px;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 {
  color: var(--navy);
  margin: 24px 0 8px;
  font-size: 18px;
}
.legal-card p,
.legal-card li {
  color: var(--ink-2);
}
.legal-card a {
  color: var(--accent-deep);
  font-weight: 700;
}
.legal-button {
  appearance: none;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font: 800 14px/1 var(--font);
  box-shadow: var(--shadow-sm);
}
.legal-button:hover { background: var(--accent-deep); }
.cookie-declaration {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cookie-declaration * {
  box-sizing: border-box;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.cookie-declaration table {
  width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed;
}
.cookie-declaration th,
.cookie-declaration td {
  white-space: normal !important;
  word-break: break-word;
}
.legal-card ul,
.legal-card ol {
  margin: 12px 0 0;
  padding-left: 22px;
}
.legal-card li + li { margin-top: 8px; }
.legal-note {
  border-left: 3px solid var(--accent);
  background: var(--ice);
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--ink);
}
.legal-side {
  position: sticky;
  top: 120px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.legal-side h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
}
.legal-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.legal-side a {
  color: var(--ink-2);
  font-size: 14px;
}
.legal-side a:hover { color: var(--accent); }

.btn-line {
  border: 1px solid var(--line-2);
  color: var(--navy);
  background: rgba(255,255,255,0.68);
}
.btn-line:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: white;
}

.service-detail-hero {
  min-height: min(760px, calc(100vh - 96px));
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 18, 42, 0.84) 0%, rgba(7, 18, 42, 0.62) 44%, rgba(7, 18, 42, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 18, 42, 0.06) 0%, rgba(7, 18, 42, 0.72) 100%),
    var(--hero-image) var(--hero-position, center center) / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.service-detail-hero .wrap {
  width: 100%;
  padding-block: clamp(88px, 13vw, 150px) clamp(48px, 8vw, 92px);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.breadcrumb a:hover { color: white; }
.service-hero-copy { max-width: 820px; }
.service-detail-hero .eyebrow {
  color: #dceaff;
  letter-spacing: 0.04em;
}
.service-detail-hero .eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 8px rgba(82, 167, 255, 0.14);
}
.service-detail-hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: white;
  margin: 0;
  max-width: 12ch;
}
.lead {
  color: rgba(255,255,255,0.86);
  max-width: 68ch;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 20px);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-actions .btn-line {
  color: white;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
}
.hero-actions .btn-line:hover {
  background: rgba(255,255,255,0.22);
  color: white;
  border-color: white;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
}
main section { padding-block: clamp(64px, 8vw, 112px); }
.answer-band {
  padding-block: 28px;
  background: white;
  border-bottom: 1px solid var(--line);
}
.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, .45fr));
  gap: 18px;
  align-items: stretch;
}
.answer-main { padding: 10px 0; }
.answer-main h2 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.answer-main p {
  color: var(--ink-2);
  max-width: 76ch;
  margin: 0;
}
.fact {
  border-left: 1px solid var(--line);
  padding: 10px 0 10px 18px;
}
.fact strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 3px;
}
.fact span {
  color: var(--ink-2);
  font-size: 14px;
  display: block;
}
.section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--navy);
  max-width: 15ch;
}
.section-kicker {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.copy-block h2 {
  font-family: var(--display);
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.copy-block p {
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 70ch;
}
.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e3f4ec;
  color: #2e7d5b;
  font-weight: 900;
  font-size: 12px;
}
.image-pair {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 16px;
  align-items: end;
}
.image-tile {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: white;
}
.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.image-tile.small img { aspect-ratio: 1 / 1.25; }
.caption {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 13px;
}
.soft-section {
  background: var(--ice);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method-grid,
.audience-grid,
.place-grid {
  display: grid;
  gap: 18px;
}
.method-grid { grid-template-columns: repeat(3, 1fr); }
.audience-grid { grid-template-columns: repeat(4, 1fr); }
.place-grid { grid-template-columns: repeat(4, 1fr); }
.method-card,
.audience-card,
.place-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.method-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.method-card div,
.audience-card,
.place-card {
  padding: 22px;
}
.method-card h3,
.audience-card h3,
.place-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.method-card p,
.audience-card p,
.place-card p {
  color: var(--ink-2);
  margin: 0;
  font-size: 15px;
}
.place-card strong {
  display: block;
  color: var(--accent-deep);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.step:last-child { border-right: 0; }
.step span {
  display: block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  margin-bottom: 18px;
}
.step h3 {
  color: var(--navy);
  font-size: 21px;
  margin: 0 0 10px;
  line-height: 1.16;
}
.step p {
  color: var(--ink-2);
  margin: 0;
  font-size: 15px;
}
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}
.proof-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proof-list li {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.proof-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.proof-list span {
  display: block;
  color: var(--ink-2);
  font-size: 15px;
}
.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-weight: 800;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ice-2);
  color: var(--accent);
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p {
  color: var(--ink-2);
  margin: 0;
  padding: 0 22px 22px;
}
.service-cta {
  padding-block: clamp(64px, 8vw, 104px);
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-deep) 45%, var(--navy) 100%);
  color: white;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.service-cta h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: white;
  max-width: 14ch;
}
.service-cta p {
  color: #e2ecff;
  margin: 0;
  max-width: 68ch;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.service-cta .btn-primary {
  background: white;
  color: var(--accent-deep);
}
.service-cta .btn-line {
  color: white;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.10);
}
.service-cta .btn-line:hover {
  color: white;
  border-color: white;
  background: rgba(255,255,255,0.18);
}

footer.site {
  background: var(--navy);
  color: #c5d0e5;
  padding-block: 80px 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a:hover { color: white; }
.foot-col p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #c5d0e5; }
.foot-brand p { margin-top: 14px; max-width: 32ch; }
.foot-bottom {
  border-top: 1px solid rgba(164, 188, 224, 0.18);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #a4bce0;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom a:hover { color: white; }
.foot-bottom .legal { display: flex; gap: 24px; flex-wrap: wrap; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #25458a;
  display: grid;
  place-items: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.socials a:hover { background: var(--sky); color: var(--navy); border-color: var(--sky); }

@media (max-width: 1100px) {
  .nav { gap: 16px; position: relative; }
  .menu-toggle { display: inline-flex; }
  nav.primary {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: var(--pad);
    right: var(--pad);
    z-index: 80;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
  }
  nav.primary a {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 14px;
    border-radius: 10px;
  }
  nav.primary .nav-item {
    width: 100%;
    display: grid;
  }
  nav.primary .submenu {
    position: static;
    min-width: 0;
    margin: -2px 0 6px 14px;
    padding: 0 0 0 12px;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  nav.primary .submenu::before { display: none; }
  nav.primary .submenu a {
    padding: 10px 12px;
    border-radius: 10px;
    white-space: normal;
    font-size: 14px;
  }
  .nav-toggle:checked ~ nav.primary { display: grid; }
  .logo img { height: 48px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-side { position: static; }
  .answer-grid,
  .two-col,
  .proof-layout,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .method-grid,
  .audience-grid,
  .place-grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cta-actions { justify-content: flex-start; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .utility-left span:first-child { display: none; }
  .utility-left .hide-sm { display: none; }
  .nav { grid-template-columns: auto 1fr auto; gap: 12px; padding-block: 14px; }
  .logo img { height: 40px; }
  .nav-cta { justify-self: end; gap: 8px; }
  .nav-cta .btn { padding: 10px 15px; font-size: 13px; }
  .nav-cta .btn-ghost { display: none; }
  .service-detail-hero { min-height: auto; }
  .service-detail-hero .wrap { padding-block: 74px 48px; }
  .service-detail-hero h1 { max-width: 10ch; }
  .method-grid,
  .audience-grid,
  .place-grid,
  .process,
  .image-pair {
    grid-template-columns: 1fr;
  }
  .step,
  .step:nth-child(2),
  .step:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child { border-bottom: 0; }
  .fact { border-left: 0; border-top: 1px solid var(--line); padding: 14px 0 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .legal-card { border-radius: 14px; }
}
@media (max-width: 400px) {
  .logo img { height: 34px; }
  .menu-toggle { width: 38px; height: 38px; }
  .nav-cta .btn-primary { padding: 9px 13px; }
  .nav-cta .btn-primary .arr { display: none; }
}
