.service-detail-page {
  --sd-red: #f20d16;
  --sd-red-dark: #bd070d;
  --sd-ink: #121419;
  --sd-muted: #636b77;
  --sd-line: #e6e9ed;
  --sd-soft: #f4f6f8;
  background:
    radial-gradient(circle at 4% 8%, rgba(242,13,22,.07), transparent 24%),
    radial-gradient(circle at 95% 32%, rgba(39,82,196,.06), transparent 22%),
    #edf0f3;
}

.service-detail-page .page-shell { overflow: hidden; }
.service-detail-page main { background: #fff; }

.sd-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(500px,1.08fr);
  min-height: 690px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--sd-line);
}

.sd-hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(30px,4.8vw,78px) 64px;
}

.sd-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
  color: #808895;
  font-size: 11px;
}

.sd-breadcrumbs a { color: inherit; text-decoration: none; }
.sd-breadcrumbs a:hover { color: var(--sd-red); }

.sd-kicker {
  color: var(--sd-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sd-hero h1,
.sd-section-head h2,
.sd-tech-copy h2,
.sd-booking-copy h2 {
  margin: 0;
  color: var(--sd-ink);
  font-family: "Arial Narrow","Roboto Condensed",Arial,sans-serif;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .94;
  text-transform: uppercase;
}

.sd-hero h1 {
  max-width: 100%;
  margin-top: 18px;
  font-size: clamp(46px,4vw,76px);
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.sd-hero h1 em,
.sd-section-head h2 em,
.sd-tech-copy h2 em {
  color: var(--sd-red);
  font-style: normal;
}

.sd-hero-lead {
  max-width: 690px;
  margin: 27px 0 0;
  color: #59616d;
  font-size: clamp(17px,1.2vw,21px);
  line-height: 1.62;
}

.sd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.sd-actions .button { min-height: 54px; }

.sd-facts {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--sd-line);
}

.sd-facts span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 15px 17px 0;
  background: #fff;
}

.sd-facts strong { font-size: 17px; }
.sd-facts small { color: #7b8390; font-size: 10px; line-height: 1.35; }

.sd-hero-visual {
  position: relative;
  min-width: 0;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
  background: #151920;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(0,0,0,.18);
}

.sd-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.82) 0,rgba(255,255,255,.28) 42px,rgba(255,255,255,.06) 86px,transparent 132px),
    radial-gradient(ellipse at 72% 12%,rgba(255,255,255,.2),transparent 34%),
    linear-gradient(90deg,transparent 68%,rgba(7,10,15,.14) 100%);
  pointer-events: none;
}

.sd-hero-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(ellipse at 62% 48%,transparent 34%,rgba(5,8,13,.08) 78%,rgba(5,8,13,.2) 100%),
    linear-gradient(0deg,rgba(7,10,15,.52) 0,rgba(7,10,15,.12) 24%,transparent 48%);
  pointer-events: none;
}

.sd-hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center;
  filter: brightness(.96) contrast(1.08) saturate(.94);
  transform: scale(1.012);
  transition: transform 1.35s cubic-bezier(.16,1,.3,1),filter .75s ease;
  animation: sd-hero-in 1.15s cubic-bezier(.16,1,.3,1) backwards;
}

.sd-hero-visual:hover .sd-hero-image {
  filter: brightness(.99) contrast(1.09) saturate(1);
  transform: scale(1.028);
}

.sd-hero-badge {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: 47px 1fr;
  align-items: center;
  gap: 13px;
  width: min(360px,calc(100% - 60px));
  padding: 16px 18px;
  color: #fff;
  background: rgba(20,24,31,.88);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}

.sd-hero-badge > span {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  color: #fff;
  background: var(--sd-red);
  border-radius: 50%;
  font-size: 21px;
}

.sd-hero-badge strong { display: block; font-size: 15px; }
.sd-hero-badge small { display: block; margin-top: 4px; color: rgba(255,255,255,.58); font-size: 10px; }

@keyframes sd-hero-in {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1.012); }
}

.sd-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  overflow-x: auto;
  padding: 0 clamp(20px,4vw,64px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--sd-line);
  backdrop-filter: blur(15px);
  scrollbar-width: none;
}

.sd-nav::-webkit-scrollbar { display: none; }
.sd-nav a {
  flex: 0 0 auto;
  padding: 17px 0 15px;
  color: #555e6a;
  border-bottom: 2px solid transparent;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease,border-color .2s ease;
}
.sd-nav a:hover { color: var(--sd-red); border-color: var(--sd-red); }

.sd-section {
  padding: clamp(78px,8vw,122px) clamp(30px,4.5vw,74px);
  background: #fff;
}

.sd-section-head {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(300px,.65fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 43px;
}

.sd-section-head > * {
  min-width: 0;
}

.sd-tech > *,
.sd-price-layout > *,
.sd-booking > * {
  min-width: 0;
}

.sd-section-head h2,
.sd-tech-copy h2,
.sd-booking-copy h2 {
  max-width: 100%;
  margin-top: 12px;
  font-size: clamp(40px,4.2vw,68px);
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}
.sd-section-head > p,
.sd-tech-copy > p,
.sd-booking-copy > p { margin: 0; color: var(--sd-muted); line-height: 1.65; }

.sd-work-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

.sd-work-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: #14171c;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(18,20,25,.14);
  text-decoration: none;
  isolation: isolate;
  transition: transform .42s cubic-bezier(.16,1,.3,1),box-shadow .42s ease;
}

.sd-work-card:hover,
.sd-work-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(18,20,25,.22);
}

.sd-work-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) brightness(.68);
  transition: transform .8s cubic-bezier(.16,1,.3,1),filter .5s ease;
}

.sd-work-card:hover img,
.sd-work-card:focus-visible img { transform: scale(1.045); filter: saturate(.95) brightness(.52); }
.sd-work-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg,rgba(9,11,16,.05) 18%,rgba(9,11,16,.92) 100%);
}

.sd-work-card > div {
  align-self: flex-end;
  width: 100%;
  padding: 27px;
}

.sd-work-number {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(18,22,29,.72);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.sd-work-card small { color: #ff777d; font-weight: 800; text-transform: uppercase; }
.sd-work-card h3 { margin: 9px 0 0; font-size: 24px; line-height: 1.08; }
.sd-work-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(9px);
  transition: max-height .45s ease,margin .35s ease,opacity .35s ease,transform .35s ease;
}
.sd-work-card:hover p,
.sd-work-card:focus-visible p {
  max-height: 90px;
  margin-top: 11px;
  opacity: 1;
  transform: none;
}
.sd-work-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.sd-work-card footer strong { color: #ff5058; }
.sd-work-card footer span {
  padding: 8px 11px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
}

.sd-tech {
  display: grid;
  grid-template-columns: minmax(300px,.7fr) minmax(0,1.3fr);
  gap: clamp(36px,5vw,78px);
  padding: clamp(82px,8vw,126px) clamp(30px,4.5vw,74px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%,rgba(242,13,22,.15),transparent 25%),
    linear-gradient(135deg,#15171c,#0c1119);
}

.sd-tech-copy h2 { color: #fff; }
.sd-tech-copy > p { margin-top: 22px; color: rgba(255,255,255,.58); }
.sd-tech-tabs { display: grid; gap: 8px; margin-top: 31px; }
.sd-tech-tabs button {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 57px;
  padding: 0 17px;
  color: rgba(255,255,255,.54);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: color .3s ease,background .3s ease,border-color .3s ease,transform .3s ease;
}
.sd-tech-tabs button span { color: #ff656c; font-size: 10px; font-weight: 900; }
.sd-tech-tabs button:hover,
.sd-tech-tabs button:focus-visible { color: #fff; transform: translateX(4px); }
.sd-tech-tabs button.is-active {
  color: #fff;
  background: linear-gradient(90deg,rgba(242,13,22,.24),rgba(255,255,255,.04));
  border-color: rgba(242,13,22,.4);
}

.sd-tech-visual { position: relative; align-self: center; min-width: 0; }
.sd-tech-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  box-shadow: 0 34px 80px rgba(0,0,0,.36);
}
.sd-tech-image img { width: 100%; height: 100%; object-fit: cover; transition: filter .5s ease,transform 1s cubic-bezier(.16,1,.3,1); }
.sd-tech-image.is-changing img { filter: brightness(.72) saturate(.72); transform: scale(1.018); }
.sd-tech-marker {
  position: absolute;
  left: var(--marker-x,50%);
  top: var(--marker-y,50%);
  width: 120px;
  aspect-ratio: 1;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(242,13,22,.76);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(242,13,22,.2),0 0 0 16px rgba(242,13,22,.05),0 0 48px rgba(242,13,22,.24);
  transition: left .95s cubic-bezier(.16,1,.3,1),top .95s cubic-bezier(.16,1,.3,1),width .95s cubic-bezier(.16,1,.3,1);
}
.sd-tech-marker::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 13px;
  height: 13px;
  transform: translate(-50%,-50%);
  background: var(--sd-red);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(242,13,22,.22);
}

.sd-tech-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(430px,calc(100% - 36px));
  padding: 19px 21px;
  color: #fff;
  background: rgba(21,25,32,.9);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  transition: opacity .3s ease,transform .3s ease;
}
.sd-tech-panel.is-changing { opacity: .35; transform: translateY(7px); }
.sd-tech-panel > span { color: #ff7279; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.sd-tech-panel h3 { margin: 8px 0 0; font-size: 22px; }
.sd-tech-panel p { margin: 7px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.55; }

.sd-symptoms { background: var(--sd-soft); }
.sd-symptom-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 13px; }
.sd-symptom-grid article {
  min-height: 185px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--sd-line);
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(18,20,25,.04);
  transition: transform .35s cubic-bezier(.16,1,.3,1),border-color .35s ease;
}
.sd-symptom-grid article:hover { transform: translateY(-5px); border-color: rgba(242,13,22,.28); }
.sd-symptom-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--sd-red);
  background: #fff4f4;
  border-radius: 50%;
  font-weight: 900;
}
.sd-symptom-grid h3 { margin: 23px 0 0; font-size: 17px; }
.sd-symptom-grid p { margin: 8px 0 0; color: var(--sd-muted); font-size: 12px; line-height: 1.5; }

.sd-price-layout { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(310px,.65fr); gap: 18px; }
.sd-price-list { overflow: hidden; border: 1px solid var(--sd-line); border-radius: 16px; }
.sd-price-list article {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto 38px;
  align-items: center;
  gap: 22px;
  min-height: 83px;
  padding: 15px 18px 15px 22px;
  border-bottom: 1px solid var(--sd-line);
}
.sd-price-list article:last-child { border-bottom: 0; }
.sd-price-list span { display: flex; flex-direction: column; gap: 4px; }
.sd-price-list b { font-size: 14px; }
.sd-price-list small { color: var(--sd-muted); font-size: 10px; }
.sd-price-list strong { color: var(--sd-red); font-size: 14px; white-space: nowrap; }
.sd-price-list a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--sd-red);
  background: #fff3f3;
  border-radius: 50%;
  text-decoration: none;
}
.sd-price-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 30px;
  color: #fff;
  background: linear-gradient(145deg,#20242b,#11151c);
  border-radius: 17px;
}
.sd-price-note > span { color: #ff7077; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.sd-price-note h3 { margin: 18px 0 0; font-size: 27px; line-height: 1.1; }
.sd-price-note p { margin: 13px 0 24px; color: rgba(255,255,255,.58); line-height: 1.6; }
.sd-price-note .button { align-self: flex-start; }

.sd-process { padding: clamp(78px,8vw,122px) clamp(30px,4.5vw,74px); background: #f7f8fa; }
.sd-process-track { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.sd-process-track::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg,transparent,#d5d9df 10% 90%,transparent);
}
.sd-process-track article { position: relative; z-index: 1; min-height: 235px; padding: 23px; background: #fff; border: 1px solid var(--sd-line); border-radius: 15px; }
.sd-process-track article > span { color: var(--sd-red); font-size: 10px; font-weight: 900; }
.sd-process-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-top: 17px; color: var(--sd-red); background: #fff4f4; border-radius: 50%; font-size: 20px; }
.sd-process-track h3 { margin: 23px 0 0; font-size: 17px; }
.sd-process-track p { margin: 8px 0 0; color: var(--sd-muted); font-size: 12px; line-height: 1.55; }

.sd-trust { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; padding: 0 clamp(30px,4.5vw,74px) clamp(78px,8vw,122px); background: #fff; }
.sd-trust article { padding: 30px; background: #f5f6f8; }
.sd-trust strong { display: block; color: var(--sd-red); font-size: 32px; }
.sd-trust h3 { margin: 18px 0 0; font-size: 16px; }
.sd-trust p { margin: 8px 0 0; color: var(--sd-muted); font-size: 11px; line-height: 1.55; }

.sd-faq { background: #fff; }
.sd-faq-list { max-width: 1050px; margin: 0 auto; border-top: 1px solid var(--sd-line); }
.sd-faq-list article { border-bottom: 1px solid var(--sd-line); }
.sd-faq-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 72px;
  padding: 0;
  color: var(--sd-ink);
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
}
.sd-faq-list button b { color: var(--sd-red); font-size: 20px; }
.sd-faq-list article > div { padding: 0 50px 22px 0; color: var(--sd-muted); font-size: 13px; line-height: 1.65; }

.sd-booking {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(420px,1.2fr);
  gap: clamp(45px,6vw,90px);
  padding: clamp(82px,8vw,126px) clamp(30px,5vw,82px);
  color: #fff;
  background:
    radial-gradient(circle at 8% 20%,rgba(242,13,22,.19),transparent 27%),
    linear-gradient(135deg,#191c22,#0c1017);
}
.sd-booking-copy h2 { color: #fff; }
.sd-booking-copy > p { margin-top: 23px; color: rgba(255,255,255,.6); }
.sd-booking-benefits { display: grid; gap: 13px; margin-top: 30px; }
.sd-booking-benefits span { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); font-size: 12px; }
.sd-booking-benefits b { display: grid; place-items: center; width: 32px; height: 32px; color: #fff; background: rgba(242,13,22,.8); border-radius: 50%; font-size: 9px; }
.sd-booking-copy > a { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; color: #fff; text-decoration: none; }
.sd-booking-copy > a small { color: rgba(255,255,255,.5); }
.sd-booking-copy > a strong { font-size: 25px; }

.sd-booking-form { padding: clamp(27px,3vw,42px); color: var(--sd-ink); background: #fff; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.sd-booking-form-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.sd-booking-form-head strong { font-size: 21px; }
.sd-booking-form-head small { color: var(--sd-muted); font-size: 10px; }
.sd-booking-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.sd-booking-grid label { display: flex; flex-direction: column; gap: 7px; }
.sd-booking-grid label > span { color: #4f5762; font-size: 10px; font-weight: 800; }
.sd-booking-grid input,
.sd-booking-grid textarea {
  width: 100%;
  color: var(--sd-ink);
  background: #f7f8f9;
  border: 1px solid #e3e6ea;
  border-radius: 11px;
  outline: none;
  transition: border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.sd-booking-grid input { height: 50px; padding: 0 14px; }
.sd-booking-grid textarea { min-height: 110px; padding: 13px 14px; resize: vertical; }
.sd-booking-grid input:focus,
.sd-booking-grid textarea:focus { background: #fff; border-color: rgba(242,13,22,.55); box-shadow: 0 0 0 3px rgba(242,13,22,.08); }
.sd-booking-wide { grid-column: 1/-1; }
.sd-booking-form .form-consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 17px; color: #707884; font-size: 10px; line-height: 1.45; }
.sd-booking-form .form-consent input { margin-top: 1px; accent-color: var(--sd-red); }
.sd-booking-form .form-consent a { color: inherit; }
.sd-booking-submit {
  width: 100%;
  min-height: 55px;
  margin-top: 20px;
  color: #fff;
  background: var(--sd-red);
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(242,13,22,.22);
}
.sd-booking-submit:hover { background: var(--sd-red-dark); }

[data-sd-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease,transform .7s cubic-bezier(.16,1,.3,1);
}
[data-sd-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .sd-hero { grid-template-columns: 1fr; }
  .sd-hero-visual { min-height: 590px; }
  .sd-hero-visual::before {
    background:
      linear-gradient(180deg,rgba(255,255,255,.9) 0,rgba(255,255,255,.18) 54px,transparent 118px),
      radial-gradient(ellipse at 72% 12%,rgba(255,255,255,.18),transparent 36%),
      linear-gradient(90deg,transparent 70%,rgba(7,10,15,.12));
  }
  .sd-section-head { grid-template-columns: 1fr; gap: 20px; }
  .sd-tech,.sd-booking { grid-template-columns: 1fr; }
  .sd-work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .sd-work-card:first-child { grid-column: 1/-1; }
  .sd-symptom-grid,.sd-trust { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .sd-price-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .sd-hero-copy,.sd-section,.sd-tech,.sd-process,.sd-booking { padding-right: 20px; padding-left: 20px; }
  .sd-hero-copy { padding-top: 38px; padding-bottom: 44px; }
  .sd-hero h1 { font-size: clamp(42px,12vw,54px); }
  .sd-facts { grid-template-columns: 1fr; gap: 0; background: transparent; }
  .sd-facts span { padding: 12px 0; border-bottom: 1px solid var(--sd-line); }
  .sd-hero-visual,.sd-hero-image { min-height: 430px; }
  .sd-hero-badge { right: 18px; bottom: 18px; width: calc(100% - 36px); }
  .sd-nav { justify-content: flex-start; gap: 22px; }
  .sd-section-head h2,.sd-tech-copy h2,.sd-booking-copy h2 { font-size: clamp(36px,12vw,51px); }
  .sd-work-grid,.sd-symptom-grid,.sd-process-track,.sd-trust,.sd-booking-grid { grid-template-columns: 1fr; }
  .sd-work-card:first-child { grid-column: auto; }
  .sd-work-card { min-height: 390px; }
  .sd-work-card p { max-height: 90px; margin-top: 11px; opacity: 1; transform: none; }
  .sd-process-track::before { display: none; }
  .sd-tech-image { aspect-ratio: 4/3; }
  .sd-tech-panel { position: relative; right: auto; bottom: auto; width: calc(100% - 20px); margin: 10px; }
  .sd-tech-marker { width: 94px; }
  .sd-price-list article { grid-template-columns: minmax(0,1fr) 34px; gap: 12px; }
  .sd-price-list article > strong { grid-column: 1; grid-row: 2; }
  .sd-price-list article > a { grid-column: 2; grid-row: 1/3; }
  .sd-booking-wide { grid-column: auto; }
  .sd-booking-form-head { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; }
  .sd-hero-image,[data-sd-reveal] { animation: none; opacity: 1; transform: none; transition: none; }
  .sd-tech-marker,.sd-tech-image img { transition: none; }
}
