:root {
  --color-bg: #F7F8F3;
  --color-surface: #FFFFFF;
  --color-soft: #EEF3EA;
  --color-green: #173D32;
  --color-green-2: #235445;
  --color-text: #1F2522;
  --color-muted: #66716B;
  --color-line: #DDE5DC;
  --color-accent: #C46F5C;
  --shadow-soft: 0 20px 70px rgba(23, 61, 50, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(196, 111, 92, .38);
  outline-offset: 4px;
}
:target { scroll-margin-top: 96px; }
body { overflow-x: hidden; }
p, h1, h2, h3 { margin: 0; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--color-green);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section { padding: 104px 0; }
.section:nth-of-type(even) { background: var(--color-surface); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 243, .86);
  border-bottom: 1px solid rgba(221, 229, 220, .85);
  backdrop-filter: blur(18px);
}
.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand__logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: block;
}
.brand__text { display: grid; gap: 1px; min-width: 0; }
.brand__name {
  color: var(--color-green);
  font-weight: 760;
  letter-spacing: -.02em;
  font-size: 18px;
  line-height: 1.15;
}
.brand__note {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.3;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-muted);
  font-size: 15px;
}
.site-nav a { transition: color .2s ease, border-color .2s ease, background .2s ease; }
.site-nav a:hover { color: var(--color-green); }
.site-nav a[aria-current="page"] { color: var(--color-green); font-weight: 740; }
.nav-cta {
  color: var(--color-green) !important;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-weight: 650;
}
.nav-cta:hover { border-color: rgba(23,61,50,.32); background: var(--color-soft); }
.menu-toggle { display: none; }

.hero { padding: 92px 0 112px; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(300px, .58fr);
  gap: 72px;
  align-items: center;
}
.hero__content { max-width: 760px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .65;
}
h1, h2, h3 { color: var(--color-green); letter-spacing: -.03em; }
h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.1vw, 64px);
  line-height: 1.04;
  font-weight: 780;
}
h2 {
  font-size: clamp(32px, 3.25vw, 46px);
  line-height: 1.12;
  font-weight: 760;
}
h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 740;
}
.lead {
  max-width: 660px;
  margin-top: 26px;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.45;
  color: #3A433F;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--color-green); color: #fff; }
.btn--primary:hover { background: var(--color-green-2); }
.btn--secondary { background: var(--color-surface); color: var(--color-green); border-color: var(--color-line); }
.btn--secondary:hover { border-color: rgba(23,61,50,.32); background: var(--color-soft); }
.hero__line {
  max-width: 560px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 15px;
}
.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}
.hero-visual__shape {
  position: absolute;
  width: min(100%, 430px);
  height: 430px;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  border-radius: 36% 64% 42% 58% / 46% 43% 57% 54%;
  background: radial-gradient(circle at 55% 32%, #FFFFFF 0 24%, #EEF3EA 25% 70%, #E2EBDD 71% 100%);
  box-shadow: 0 28px 90px rgba(23, 61, 50, 0.10);
  z-index: -2;
}
.hero-visual__shape::after { display: none; }
.hero-visual__photo {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(23, 61, 50, .12));
}
.hero-visual__caption { display: none; }

.split-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: start;
}
.section-head { max-width: 720px; }
.section-head > p:not(.eyebrow) { margin-top: 20px; color: var(--color-muted); font-size: 18px; line-height: 1.6; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--sticky { position: sticky; top: 120px; }
.problem-list { display: grid; gap: 18px; }
.problem-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 32px 34px 34px;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}
.problem-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: var(--radius-pill);
  background: rgba(196, 111, 92, .12);
  color: var(--color-accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .05em;
}
.problem-item h3 { max-width: 580px; }
.problem-item p {
  max-width: 590px;
  color: var(--color-muted);
  margin-top: 18px;
}

.flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 44px 0 34px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--color-soft);
  border: 1px solid var(--color-line);
}
.flow span {
  position: relative;
  flex: 1 1 0;
  padding: 16px 14px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-green);
  background: rgba(255,255,255,.72);
  border-radius: var(--radius-md);
  font-weight: 690;
  font-size: 15px;
}
.flow span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  z-index: 2;
}
.feature-grid { display: grid; gap: 18px; }
.feature-grid--three { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  min-height: 218px;
  padding: 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}
.feature-card p { margin-top: 14px; color: var(--color-muted); }

.directions { background: var(--color-bg) !important; }
.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}
.direction-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.direction-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: var(--color-soft);
}
.direction-card--stoma::after { background: #E7F0EA; }
.direction-card--salon::after { background: #F2EBE5; }
.direction-card--auto::after { background: #E9EEF0; }
.direction-card__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  color: var(--color-green);
  background: var(--color-soft);
  font-size: 13px;
  font-weight: 720;
}
.direction-card h3 { font-size: 27px; }
.direction-card p:not(.direction-card__tag) { color: var(--color-muted); margin-top: 14px; }
.arrow-link {
  margin-top: 34px;
  color: var(--color-green);
  font-weight: 760;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.arrow-link::after { content: "→"; transition: transform .2s ease; }
.arrow-link:hover::after { transform: translateX(3px); }

.two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 74px;
  align-items: start;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  counter-reset: steps;
}
.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}
.steps span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  background: var(--color-soft);
  font-size: 13px;
  font-weight: 780;
}
.steps p { margin-top: 8px; color: var(--color-muted); }

.principles {
  background: var(--color-green) !important;
  color: rgba(255,255,255,.78);
  padding: 92px 0;
}
.principles h2, .principles .eyebrow { color: #fff; }
.principles .eyebrow::before { background: var(--color-accent); }
.principles .section-head { max-width: 480px; }
.principles .section-head h2 {
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.08;
}
.principles__grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 82px;
  align-items: center;
}
.principles-list {
  display: grid;
  gap: 0;
  padding: 8px 30px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background: rgba(255,255,255,.055);
}
.principles-list p {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 16px;
  padding: 23px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.02em;
  font-weight: 680;
}
.principles-list p:last-child { border-bottom: 0; }
.principles-list p::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--color-accent);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(260px, 370px) 1fr;
  gap: 74px;
  align-items: center;
}
.about__photo {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.about__photo::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: min(100%, 330px);
  height: 330px;
  transform: translateX(-50%);
  border-radius: 58% 42% 48% 52% / 47% 57% 43% 53%;
  background: radial-gradient(circle at 52% 35%, rgba(255,255,255,.96) 0 24%, rgba(238,243,234,.94) 25% 68%, rgba(226,235,221,.72) 69% 100%);
  z-index: 0;
}
.about__photo img {
  position: relative;
  z-index: 1;
  width: min(100%, 315px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(23, 61, 50, .12));
}
.about__content > p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.55;
  color: #3A433F;
  max-width: 720px;
}
.about__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.about__facts span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 680;
}

.request {
  background: var(--color-soft) !important;
}
.request__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 74px;
  align-items: start;
}
.request-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.request-form label { display: grid; gap: 8px; color: var(--color-green); font-weight: 700; font-size: 15px; }
.request-form input, .request-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  color: var(--color-text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.request-form input { height: 54px; }
.request-form textarea { resize: vertical; min-height: 122px; }
.request-form input:focus, .request-form textarea:focus {
  border-color: rgba(23,61,50,.42);
  box-shadow: 0 0 0 4px rgba(23,61,50,.08);
}
.request-form .btn { width: 100%; margin-top: 4px; }
.form-note { color: var(--color-muted); font-size: 13px; line-height: 1.45; }
.form-note a { color: var(--color-green); text-decoration: underline; text-underline-offset: 3px; }

.site-footer {
  padding: 44px 0;
  background: var(--color-green);
  color: rgba(255,255,255,.72);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer__brand { color: #fff; font-weight: 760; font-size: 20px; margin-bottom: 6px; }
.footer__nav, .footer__contact { display: grid; gap: 8px; font-size: 15px; }
.footer__nav a, .footer__contact a { color: #fff; }
.footer__nav a:hover, .footer__contact a:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 1040px) {
  .container { width: min(var(--container), calc(100% - 48px)); }
  .hero__grid, .split-section, .two-column, .principles__grid, .about__grid, .request__grid { gap: 46px; }
  .direction-grid, .feature-grid--three { grid-template-columns: 1fr; }
  .direction-card { min-height: 300px; }
  .feature-card { min-height: auto; }
  .flow { align-items: stretch; flex-direction: column; }
  .flow span:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -19px;
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .hero { padding: 58px 0 76px; }
  .header__inner { min-height: 68px; }
  .brand__logo { width: 36px; height: 36px; }
  .brand__note { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-pill);
    background: var(--color-surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--color-green);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 69px 0 auto 0;
    display: none;
    padding: 18px 24px 28px;
    background: rgba(247,248,243,.98);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 30px 80px rgba(23,61,50,.11);
  }
  .site-nav.is-open { display: grid; gap: 6px; }
  .site-nav a { padding: 14px 0; color: var(--color-green); font-size: 18px; }
  .nav-cta { margin-top: 8px; text-align: center; padding: 14px 18px !important; }

  .hero__grid, .split-section, .two-column, .principles__grid, .about__grid, .request__grid, .footer__grid {
    grid-template-columns: 1fr;
  }
  .section-head--sticky { position: static; }
  .hero-visual {
    max-width: 430px;
    min-height: 470px;
    margin-inline: auto;
  }
  .hero-visual__shape {
    width: min(100%, 360px);
    height: 360px;
    bottom: 42px;
  }
  .hero-visual__photo { width: min(100%, 330px); }
  .problem-item { padding: 24px; }
  .principles { padding: 72px 0; }
  .principles__grid { gap: 32px; }
  .principles .section-head h2 { font-size: 36px; }
  .principles-list { grid-template-columns: 1fr; padding: 4px 22px; border-radius: 24px; }
  .principles-list p { min-height: 0; font-size: 20px; padding: 20px 0; grid-template-columns: 22px 1fr; }
  .about__photo { max-width: 360px; min-height: 500px; }
  .about__photo::before { width: min(100%, 310px); height: 310px; bottom: 36px; }
  .about__photo img { width: min(100%, 300px); height: auto; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 38px); }
  h1 { font-size: clamp(34px, 10.2vw, 38px); }
  h2 { font-size: clamp(28px, 8.4vw, 31px); }
  h3 { font-size: 21px; }
  .lead { font-size: 18px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; min-height: 50px; padding: 0 18px; }
  .direction-card, .feature-card, .request-form { padding: 24px; border-radius: 24px; }
  .steps li { grid-template-columns: 1fr; padding: 22px; }
  .principles { padding: 62px 0; }
  .principles .section-head h2 { font-size: 32px; }
  .principles-list { padding: 2px 18px; }
  .principles-list p { font-size: 19px; line-height: 1.32; }
  .about__content > p:not(.eyebrow) { font-size: 18px; }
}


/* Service pages */
.service-hero {
  padding: 86px 0 104px;
  background: linear-gradient(180deg, rgba(238,243,234,.52), rgba(247,248,243,1));
}
.service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .72fr);
  gap: 72px;
  align-items: center;
}
.service-hero__content { max-width: 780px; }
.service-demo {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 32px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.service-demo__top {
  display: flex;
  gap: 7px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-soft);
}
.service-demo__top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(23, 61, 50, .28);
}
.service-demo__body {
  display: grid;
  gap: 14px;
  padding: 28px;
}
.bubble {
  width: fit-content;
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.45;
}
.bubble--user {
  margin-left: auto;
  background: var(--color-green);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.bubble--assistant {
  background: var(--color-soft);
  color: var(--color-green);
  border-bottom-left-radius: 6px;
}
.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.demo-actions span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line);
  color: var(--color-green);
  background: #fff;
  font-weight: 720;
  font-size: 13px;
}

.compare-section { background: var(--color-bg) !important; }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 42px;
}
.compare-card {
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--color-line);
}
.compare-card--muted { background: var(--color-surface); }
.compare-card--strong {
  background: var(--color-green);
  border-color: var(--color-green);
  color: rgba(255,255,255,.78);
}
.compare-card--strong h3 { color: #fff; }
.compare-card h3 { font-size: 30px; }
.compare-card ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.compare-card li {
  position: relative;
  padding-left: 24px;
  color: inherit;
}
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.feature-grid--five {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
}
.feature-card.mini-card {
  min-height: 250px;
  padding: 24px;
}
.feature-card.mini-card h3 { font-size: 21px; }
.feature-card.mini-card p { font-size: 15px; line-height: 1.55; }

.safety-section {
  background: var(--color-green) !important;
  color: rgba(255,255,255,.76);
}
.safety-section h2, .safety-section .eyebrow { color: #fff; }
.safety-section .section-head > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.safety__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: start;
}
.safety-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.safety-list p {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
}

.scope { background: var(--color-bg) !important; }
.scope__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: 26px;
  align-items: stretch;
}
.scope-card, .price-card {
  border: 1px solid var(--color-line);
  border-radius: 32px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.scope-card--main { padding: 40px; }
.formula {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.formula span {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-green);
  font-weight: 700;
}
.formula span:last-child { border-bottom: 0; }
.formula span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .6em;
  border-radius: 50%;
  background: var(--color-accent);
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--color-green);
  color: rgba(255,255,255,.76);
}
.price-card span {
  color: rgba(255,255,255,.68);
  font-size: 14px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.price-card strong {
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(42px, 4.3vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
}
.price-card p { margin-top: 18px; }
.price-card .btn { margin-top: auto; width: 100%; background: #fff; color: var(--color-green); }
.price-card .btn:hover { background: var(--color-soft); }

.example__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 74px;
  align-items: start;
}
.scenario {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
}
.scenario-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: var(--color-bg);
}
.scenario-row--answer { background: var(--color-soft); }
.scenario-row span {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.scenario-row p {
  color: var(--color-green);
  font-weight: 680;
}

.start-materials { background: var(--color-surface) !important; }
.materials-list {
  display: grid;
  gap: 12px;
}
.materials-list p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  color: var(--color-green);
  font-weight: 680;
}
.materials-list p::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .62em;
  border-radius: 50%;
  background: var(--color-accent);
}

@media (max-width: 1040px) {
  .service-hero__grid, .safety__grid, .scope__grid, .example__grid { grid-template-columns: 1fr; gap: 46px; }
  .feature-grid--five { grid-template-columns: repeat(2, 1fr); }
  .price-card .btn { margin-top: 28px; }
}

@media (max-width: 860px) {
  .service-hero { padding: 58px 0 76px; }
  .service-demo { max-width: 520px; }
  .compare-grid, .safety-list { grid-template-columns: 1fr; }
  .compare-card, .scope-card--main, .price-card, .scenario { padding: 24px; border-radius: 24px; }
  .feature-grid--five { grid-template-columns: 1fr; }
  .feature-card.mini-card { min-height: auto; }
  .scenario-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 560px) {
  .service-demo__body { padding: 20px; }
  .bubble { max-width: 94%; }
  .safety-list p { min-height: auto; }
  .formula span { grid-template-columns: 20px 1fr; }
  .materials-list p { grid-template-columns: 20px 1fr; }
}


/* Salon page additions */
.service-hero--salon {
  background: linear-gradient(180deg, rgba(242, 235, 229, .48), rgba(247,248,243,1));
}
.salon-route {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.route-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: var(--color-bg);
  border: 1px solid rgba(221,229,220,.76);
}
.route-step strong {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(196,111,92,.13);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .05em;
}
.route-step h3 { font-size: 20px; }
.route-step p { margin-top: 6px; color: var(--color-muted); font-size: 15px; line-height: 1.55; }
.salon-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.salon-chip-grid span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 720;
}
.light-panel {
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.light-panel p + p { margin-top: 14px; }
.light-panel p { color: var(--color-muted); }
@media (max-width: 860px) {
  .salon-route, .light-panel { padding: 24px; border-radius: 24px; }
}
@media (max-width: 560px) {
  .route-step { grid-template-columns: 1fr; gap: 10px; }
}

/* Autoservice page additions */
.service-hero--auto {
  background: linear-gradient(180deg, rgba(233, 238, 240, .58), rgba(247,248,243,1));
}
.launch-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--color-line);
  background: var(--color-green);
  color: rgba(255,255,255,.74);
  box-shadow: var(--shadow-soft);
}
.launch-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.launch-card__label {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.launch-card__service {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 780;
}
.launch-card__steps {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.launch-card__steps span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  color: #fff;
  font-weight: 740;
}
.launch-card__steps span:last-child { border-bottom: 0; }
.launch-card__steps span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .62em;
  border-radius: 50%;
  background: var(--color-accent);
}
.launch-card p { margin-top: 24px; max-width: 420px; }
.auto-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 42px;
}
.auto-flow div {
  min-height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}
.auto-flow strong {
  color: var(--color-accent);
  font-size: 13px;
  letter-spacing: .06em;
}
.auto-flow span {
  color: var(--color-green);
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -.02em;
  font-weight: 740;
}
.auto-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.auto-service-list span,
.auto-result-list span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  color: var(--color-green);
  font-weight: 700;
  line-height: 1.35;
}
.auto-service-list span::before,
.auto-result-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .62em;
  border-radius: 50%;
  background: var(--color-accent);
}
.auto-result-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.auto-result-list span {
  background: var(--color-bg);
  font-size: 15px;
}
.fit-section { background: var(--color-surface) !important; }
@media (max-width: 1040px) {
  .auto-flow { grid-template-columns: repeat(2, 1fr); }
  .auto-flow div { min-height: 150px; }
}
@media (max-width: 860px) {
  .launch-card { padding: 28px; border-radius: 26px; }
  .auto-service-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .auto-flow { grid-template-columns: 1fr; }
  .auto-flow div { min-height: 128px; padding: 22px; }
  .auto-service-list span,
  .auto-result-list span { grid-template-columns: 18px 1fr; }
}

/* Contacts and privacy pages */
.contact-hero {
  padding: 86px 0 104px;
  background: linear-gradient(180deg, rgba(238,243,234,.56), rgba(247,248,243,1));
}
.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 74px;
  align-items: center;
}
.contact-card {
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: 32px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.contact-card__label {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-card__main {
  display: inline-flex;
  margin-top: 18px;
  color: var(--color-green);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 780;
}
.contact-card > p:not(.contact-card__label) {
  margin-top: 20px;
  color: var(--color-muted);
}
.contact-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.contact-card__meta span {
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 700;
}
.contact-ways { background: var(--color-bg) !important; }
.contact-mini-grid { margin-top: 42px; }

.legal-hero {
  padding: 76px 0 64px;
  background: linear-gradient(180deg, rgba(238,243,234,.54), rgba(247,248,243,1));
}
.legal-container { max-width: 860px; }
.legal-date {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 15px;
}
.legal-section {
  padding-top: 36px;
  background: var(--color-surface) !important;
}
.legal-content {
  padding-bottom: 34px;
}
.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(24px, 2vw, 30px);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin-top: 14px;
  color: #3A433F;
}
.legal-content a {
  color: var(--color-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 860px) {
  .contact-hero { padding: 58px 0 76px; }
  .contact-hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .contact-card { padding: 26px; border-radius: 26px; }
  .legal-hero { padding: 58px 0 48px; }
  .legal-section { padding-top: 28px; }
}
@media (max-width: 560px) {
  .contact-card__main { font-size: 22px; overflow-wrap: break-word; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 32px); }
  .hero-visual { min-height: 420px; }
  .hero-visual__shape { width: min(100%, 320px); height: 320px; }
  .hero-visual__photo { width: min(100%, 300px); }
  .about__photo { min-height: 440px; }
  .about__photo::before { width: min(100%, 280px); height: 280px; }
  .about__photo img { width: min(100%, 270px); }
  .service-demo__body { padding: 18px; }
  .bubble { font-size: 14px; }
}

/* Production/mobile polish */
html { text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body { min-width: 320px; }
h1, h2, h3, .lead, .brand__name, .contact-card__main { overflow-wrap: break-word; }
.site-nav a, .btn, .menu-toggle { -webkit-tap-highlight-color: rgba(23,61,50,.08); }
@media (max-width: 860px) {
  .site-nav {
    max-height: calc(100vh - 69px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-nav a { border-bottom: 1px solid rgba(221,229,220,.62); }
  .site-nav a:last-child { border-bottom: 0; }
  .brand { max-width: calc(100vw - 96px); }
  .brand__name { font-size: 17px; }
}
@media (max-width: 560px) {
  .service-hero__content, .hero__content, .section-head { min-width: 0; }
  .feature-card p, .direction-card p, .problem-item p, .compare-card p, .light-panel p { hyphens: auto; }
  .footer__grid { gap: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Step 1 redesign: homepage + shared visual layer ===== */
:root {
  --color-bg-deep: #122F28;
  --color-ink-soft: #37423D;
  --color-warm: #F2E9DF;
  --shadow-card: 0 24px 80px rgba(23, 61, 50, .10);
  --shadow-tight: 0 16px 42px rgba(23, 61, 50, .09);
}

.site-header {
  background: rgba(247, 248, 243, .91);
  box-shadow: 0 10px 34px rgba(23, 61, 50, .045);
}
.header__inner { min-height: 78px; }
.brand {
  padding: 7px 10px 7px 7px;
  border-radius: 18px;
  transition: background .2s ease, transform .2s ease;
}
.brand:hover { background: rgba(238, 243, 234, .82); transform: translateY(-1px); }
.brand__logo {
  padding: 6px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23,61,50,.07);
}
.site-nav { gap: 18px; }
.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta)[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { box-shadow: 0 10px 30px rgba(23,61,50,.055); }

.hero--system {
  position: relative;
  overflow: hidden;
  padding: 94px 0 118px;
  background:
    radial-gradient(circle at 80% 8%, rgba(196,111,92,.16), transparent 28%),
    radial-gradient(circle at 5% 0%, rgba(35,84,69,.10), transparent 30%),
    linear-gradient(180deg, #F7F8F3 0%, #F3F6EF 100%);
}
.hero--system::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,61,50,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,61,50,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 72%);
  pointer-events: none;
}
.hero__grid--system {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .82fr);
  gap: 70px;
}
.hero__grid--system h1 { max-width: 860px; }
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(23,61,50,.12);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.64);
  color: var(--color-green);
  font-weight: 680;
  font-size: 13px;
  box-shadow: 0 8px 26px rgba(23,61,50,.045);
}

.hero-system {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(221,229,220,.92);
  border-radius: 36px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.hero-system::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -92px;
  top: -92px;
  border-radius: 50%;
  background: rgba(196,111,92,.12);
}
.hero-system__topline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.hero-system__topline span,
.mini-label {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-system__topline strong {
  max-width: 360px;
  color: var(--color-green);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.hero-system__route {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.route-node {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: rgba(247,248,243,.76);
}
.route-node:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -13px;
  width: 2px;
  height: 13px;
  background: var(--color-line);
}
.route-node span {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 12px;
  font-weight: 840;
}
.route-node strong { color: var(--color-green); line-height: 1.2; }
.route-node small { color: var(--color-muted); line-height: 1.35; }
.route-node--active { background: #fff; box-shadow: 0 12px 32px rgba(23,61,50,.05); }
.route-node--warning {
  border-color: rgba(196,111,92,.38);
  background: rgba(196,111,92,.075);
}
.route-node--warning span { background: rgba(196,111,92,.14); color: var(--color-accent); }
.hero-system__insight {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 115px;
  gap: 16px;
  align-items: end;
  margin-top: 18px;
  padding: 18px 18px 0;
  border-radius: 24px;
  background: var(--color-green);
  color: rgba(255,255,255,.78);
  overflow: hidden;
}
.hero-system__insight p {
  margin-top: 6px;
  max-width: 260px;
  color: #fff;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -.02em;
  font-weight: 720;
}
.hero-system__insight img {
  width: 115px;
  align-self: end;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.18));
}

.split-section--diagnostic { grid-template-columns: .72fr 1.28fr; }
.diagnostic {
  background: var(--color-surface) !important;
}
.diagnostic-board {
  padding: 20px;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-bg);
  box-shadow: var(--shadow-tight);
}
.diagnostic-board__path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
}
.diagnostic-board__path span {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 18px;
  background: var(--color-soft);
  color: var(--color-green);
  text-align: center;
  font-weight: 760;
  font-size: 14px;
}
.diagnostic-board__path span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  z-index: 2;
}
.diagnostic-board__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.diagnostic-board__grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: #fff;
}
.diagnostic-board__grid article > span,
.system-map__item > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(196,111,92,.12);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.diagnostic-board__grid p { margin-top: 12px; color: var(--color-muted); }
.diagnostic-board__accent {
  background: var(--color-green) !important;
  color: rgba(255,255,255,.78);
  border-color: var(--color-green) !important;
}
.diagnostic-board__accent h3 { color: #fff; }
.diagnostic-board__accent p { color: rgba(255,255,255,.75); }

.system-section--editorial { background: var(--color-bg) !important; }
.system-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
}
.system-map__item {
  position: relative;
  min-height: 306px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background: var(--color-surface);
  overflow: hidden;
}
.system-map__item::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--color-soft);
}
.system-map__item h3 { font-size: 24px; }
.system-map__item p { position: relative; z-index: 1; margin-top: 14px; color: var(--color-muted); }
.system-map__item--main {
  background: var(--color-green);
  color: rgba(255,255,255,.78);
  border-color: var(--color-green);
  box-shadow: var(--shadow-card);
}
.system-map__item--main h3 { color: #fff; }
.system-map__item--main p { color: rgba(255,255,255,.76); }
.system-map__item--main::after { background: rgba(255,255,255,.08); }

.directions--strong { background: var(--color-surface) !important; }
.direction-grid--distinct .direction-card {
  min-height: 500px;
  padding: 30px;
  box-shadow: 0 18px 52px rgba(23,61,50,.065);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.direction-grid--distinct .direction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 76px rgba(23,61,50,.10);
  border-color: rgba(23,61,50,.18);
}
.direction-grid--distinct .direction-card h3 { font-size: 28px; }
.direction-card__mini-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 28px 0 8px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(238,243,234,.72);
}
.direction-card__mini-flow span {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 9px 11px;
  border-radius: 15px;
  background: #fff;
  color: var(--color-green);
  font-weight: 720;
  font-size: 13px;
}
.direction-card--stoma .direction-card__mini-flow { background: #E7F0EA; }
.direction-card--salon .direction-card__mini-flow { background: #F4ECE6; }
.direction-card--auto .direction-card__mini-flow { background: #E9EEF0; }

.start-section--timeline { background: var(--color-bg) !important; }
.steps--system { position: relative; }
.steps--system::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--color-line);
}
.steps--system li {
  position: relative;
  box-shadow: 0 12px 36px rgba(23,61,50,.045);
}
.steps--system span { position: relative; z-index: 1; background: #fff; border: 1px solid var(--color-line); }

.principles--quote { position: relative; overflow: hidden; }
.principles--quote::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(196,111,92,.12);
}
.about--editorial { background: var(--color-surface) !important; }
.about-quote {
  margin: 28px 0 0;
  padding: 28px 30px;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 24px 24px 0;
  background: var(--color-bg);
  color: var(--color-green);
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -.02em;
  font-weight: 660;
}
.request--final { background: linear-gradient(180deg, var(--color-soft), #F7F8F3) !important; }
.request-note-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
}
.request-note-card strong { color: var(--color-green); font-size: 18px; }
.request-note-card span { color: var(--color-muted); }

@media (max-width: 1120px) {
  .hero__grid--system { grid-template-columns: 1fr; }
  .hero-system { max-width: 680px; }
  .system-map { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1040px) {
  .split-section--diagnostic { grid-template-columns: 1fr; }
  .diagnostic-board__path { grid-template-columns: 1fr; }
  .diagnostic-board__path span:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -13px;
    transform: translateX(-50%) rotate(90deg);
  }
  .diagnostic-board__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-nav {
    inset: 69px 16px auto 16px;
    border: 1px solid var(--color-line);
    border-radius: 0 0 28px 28px;
    background: rgba(255,255,255,.98);
  }
  .site-nav.is-open { gap: 2px; }
  .site-nav a { padding: 13px 14px; border-radius: 14px; }
  .site-nav a:hover { background: var(--color-soft); }
  .hero--system { padding: 58px 0 78px; }
  .hero-system { padding: 18px; border-radius: 30px; }
  .hero-system__insight { grid-template-columns: 1fr 92px; }
  .hero-system__insight img { width: 92px; }
  .route-node { grid-template-columns: 38px 1fr; padding: 14px; }
  .system-map { grid-template-columns: 1fr; }
  .system-map__item { min-height: auto; }
  .direction-grid--distinct .direction-card { min-height: auto; }
  .steps--system::before { display: none; }
  .about-quote { font-size: 19px; padding: 22px 24px; }
}

@media (max-width: 560px) {
  .hero__proof { flex-direction: column; align-items: flex-start; }
  .hero__proof span { width: fit-content; }
  .hero-system__topline strong { font-size: 21px; }
  .hero-system__insight {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .hero-system__insight img { display: none; }
  .diagnostic-board { padding: 14px; border-radius: 28px; }
  .diagnostic-board__grid article { min-height: auto; padding: 22px; }
  .system-map__item { padding: 24px; border-radius: 24px; }
  .direction-grid--distinct .direction-card { padding: 24px; }
  .direction-card__mini-flow { margin-top: 22px; }
  .request-note-card { padding: 20px; }
}

/* Step 9.1: calmer hero correction */
.hero--clean {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background:
    radial-gradient(circle at 85% 18%, rgba(196,111,92,.10), transparent 28%),
    linear-gradient(180deg, rgba(247,248,243,.96), rgba(247,248,243,1));
}
.hero--clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,61,50,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,61,50,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.88), transparent 82%);
  pointer-events: none;
}
.hero__grid--clean {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .74fr);
  gap: 58px;
}
.hero--clean .hero__content { max-width: 720px; }
.hero--clean h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.hero--clean .lead {
  max-width: 650px;
  margin-top: 24px;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.48;
}
.hero__proof--clean {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero__proof--clean span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.72);
  color: var(--color-green);
  font-size: 13px;
  font-weight: 690;
}
.hero-visual--clean {
  min-height: 536px;
  align-items: flex-end;
  padding-bottom: 22px;
}
.hero-visual--clean .hero-visual__shape {
  width: min(100%, 410px);
  height: 410px;
  bottom: 54px;
  border-radius: 38% 62% 46% 54% / 47% 43% 57% 53%;
  background: radial-gradient(circle at 50% 30%, #fff 0 22%, #EEF3EA 23% 68%, #E2EBDD 69% 100%);
  box-shadow: 0 32px 86px rgba(23,61,50,.12);
}
.hero-visual--clean .hero-visual__photo {
  width: min(100%, 382px);
  filter: drop-shadow(0 24px 34px rgba(23,61,50,.14));
}
.hero-card {
  position: absolute;
  z-index: 2;
  max-width: 250px;
  padding: 17px 18px;
  border: 1px solid rgba(221,229,220,.95);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(23,61,50,.10);
  backdrop-filter: blur(12px);
}
.hero-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-card strong {
  display: block;
  color: var(--color-green);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.hero-card--top {
  top: 82px;
  left: 10px;
}
.hero-card--bottom {
  right: 2px;
  bottom: 28px;
  max-width: 220px;
}
.hero-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-green);
  font-size: 14px;
  font-weight: 680;
}
.hero-card li {
  position: relative;
  padding-left: 16px;
}
.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
}

@media (max-width: 1120px) {
  .hero__grid--clean { grid-template-columns: 1fr; gap: 42px; }
  .hero-visual--clean { max-width: 560px; margin-inline: auto; }
}
@media (max-width: 860px) {
  .hero--clean { padding: 58px 0 74px; }
  .hero--clean h1 { font-size: clamp(38px, 10vw, 52px); }
  .hero-visual--clean { min-height: 430px; }
  .hero-card--top { top: 26px; left: 0; }
  .hero-card--bottom { right: 0; bottom: 14px; }
  .hero-visual--clean .hero-visual__photo { width: min(100%, 320px); }
  .hero-visual--clean .hero-visual__shape { width: min(100%, 340px); height: 340px; bottom: 34px; }
}
@media (max-width: 560px) {
  .hero__proof--clean { flex-direction: column; align-items: flex-start; }
  .hero-visual--clean { min-height: 360px; padding-bottom: 0; }
  .hero-card {
    position: relative;
    inset: auto;
    max-width: none;
    margin: 12px 0 0;
  }
  .hero-card--bottom { display: none; }
  .hero-visual--clean .hero-visual__photo { width: min(100%, 280px); margin-inline: auto; }
  .hero-visual--clean .hero-visual__shape { width: min(100%, 280px); height: 280px; bottom: 36px; }
}

/* Step 9.2: remove overdesigned overlay, clarify positioning */
.hero--clean h1 {
  max-width: 690px;
  font-size: clamp(42px, 4.0vw, 58px);
  line-height: 1.06;
}
.hero-card--top { display: none !important; }
.hero-card--bottom {
  right: 18px;
  bottom: 32px;
  max-width: 300px;
}
.hero-card--bottom strong { font-size: 15px; line-height: 1.35; }
.hero-visual--clean .hero-visual__photo { transform: translateX(-8px); }
@media (max-width: 860px) {
  .hero--clean h1 { font-size: clamp(36px, 9vw, 48px); }
  .hero-card--bottom { right: 0; bottom: 4px; max-width: 260px; }
}
@media (max-width: 560px) {
  .hero-card--bottom { display: none !important; }
}

/* Stoma product page redesign step 10 */
.stoma-product-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background:
    radial-gradient(circle at 82% 10%, rgba(196,111,92,.10), transparent 34%),
    linear-gradient(180deg, rgba(238,243,234,.68), rgba(247,248,243,1));
}
.stoma-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .48;
  background-image: linear-gradient(rgba(23,61,50,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(23,61,50,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0 64%, transparent 100%);
}
.stoma-product-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
  gap: 74px;
  align-items: center;
}
.stoma-product-hero__content { max-width: 780px; }
.stoma-product-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.6vw, 64px);
}
.stoma-hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(221,229,220,.9);
  border-radius: 34px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.stoma-hero-panel::after {
  content: "";
  position: absolute;
  right: -74px;
  top: -84px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(196,111,92,.11);
}
.stoma-hero-panel__top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.stoma-hero-panel__top span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.stoma-hero-panel__top strong {
  max-width: 330px;
  color: var(--color-green);
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -.03em;
}
.stoma-dialog-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background: var(--color-surface);
}
.stoma-flow-compact {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.stoma-flow-compact span {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 18px;
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 730;
}
.stoma-flow-compact span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  opacity: .72;
}

.stoma-diagnostic { background: var(--color-surface) !important; }
.stoma-diagnostic__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 76px;
  align-items: start;
}
.stoma-question-stack {
  display: grid;
  gap: 14px;
}
.stoma-question-stack article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
}
.stoma-question-stack span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: rgba(196,111,92,.13);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .05em;
}
.stoma-question-stack h3 { font-size: 24px; }
.stoma-question-stack p { margin-top: 8px; color: var(--color-muted); }

.stoma-map-section { background: var(--color-bg) !important; }
.stoma-system-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: rgba(255,255,255,.54);
  box-shadow: var(--shadow-soft);
}
.stoma-system-map article {
  position: relative;
  min-height: 262px;
  padding: 24px 22px;
  border-radius: 24px;
  background: var(--color-surface);
  border: 1px solid rgba(221,229,220,.86);
}
.stoma-system-map article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 34px;
  z-index: 3;
  color: var(--color-accent);
  font-weight: 850;
}
.stoma-system-map span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .05em;
}
.stoma-system-map h3 { font-size: 20px; }
.stoma-system-map p { margin-top: 12px; color: var(--color-muted); font-size: 15px; line-height: 1.52; }

.stoma-boundaries {
  background: var(--color-green) !important;
  color: rgba(255,255,255,.78);
}
.stoma-boundaries h2, .stoma-boundaries .eyebrow { color: #fff; }
.stoma-boundaries .section-head > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.stoma-boundaries__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}
.boundary-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.boundary-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
}
.boundary-card h3 { color: #fff; font-size: 28px; margin-bottom: 18px; }
.boundary-card p {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 690;
  line-height: 1.35;
}
.boundary-card p::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--color-accent);
}
.boundary-card--yes {
  background: rgba(255,255,255,.11);
}

.stoma-stage { background: var(--color-bg) !important; }
.stoma-stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 24px;
  align-items: stretch;
}
.stoma-stage-card, .stoma-price-card {
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.stoma-stage-card { padding: 42px; }
.stoma-stage-card > p:not(.eyebrow) { margin-top: 18px; color: var(--color-muted); max-width: 780px; }
.stage-formula {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--color-line);
}
.stage-formula span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-green);
  font-weight: 710;
}
.stage-formula span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: .58em;
  border-radius: 999px;
  background: var(--color-accent);
}
.stoma-price-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--color-green);
  color: rgba(255,255,255,.76);
}
.stoma-price-card > span {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.stoma-price-card strong {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(42px, 4.3vw, 60px);
  line-height: 1;
  letter-spacing: -.04em;
}
.stoma-price-card p { margin-top: 20px; }
.stoma-price-card .btn { width: 100%; margin-top: auto; background: #fff; color: var(--color-green); }

.stoma-demo-section { background: var(--color-surface) !important; }
.stoma-demo-section__grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 76px;
  align-items: start;
}
.stoma-chat-mockup {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}
.stoma-chat-mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-soft);
}
.stoma-chat-mockup__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(23,61,50,.26);
}
.stoma-chat-mockup__bar strong {
  margin-left: 10px;
  color: var(--color-green);
  font-size: 14px;
}
.stoma-chat-mockup__body {
  display: grid;
  gap: 13px;
  padding: 26px;
}
.admin-note {
  display: grid;
  gap: 5px;
  margin-top: 4px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(196,111,92,.28);
  background: rgba(196,111,92,.10);
}
.admin-note strong { color: var(--color-green); }
.admin-note span { color: var(--color-muted); font-size: 15px; line-height: 1.45; }

.stoma-materials { background: var(--color-bg) !important; }
.stoma-materials__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 74px;
  align-items: start;
}
.materials-list--stoma p { background: var(--color-surface); }
.request--stoma { background: var(--color-soft) !important; }

@media (max-width: 1120px) {
  .stoma-system-map { grid-template-columns: 1fr; }
  .stoma-system-map article { min-height: auto; }
  .stoma-system-map article:not(:last-child)::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -17px;
    transform: translateX(-50%) rotate(90deg);
  }
}
@media (max-width: 1040px) {
  .stoma-product-hero__grid,
  .stoma-diagnostic__grid,
  .stoma-boundaries__grid,
  .stoma-stage__grid,
  .stoma-demo-section__grid,
  .stoma-materials__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .stoma-hero-panel { max-width: 600px; }
  .stoma-price-card .btn { margin-top: 30px; }
}
@media (max-width: 860px) {
  .stoma-product-hero { padding: 58px 0 76px; }
  .stoma-product-hero h1 { font-size: clamp(34px, 8.7vw, 46px); }
  .stoma-question-stack article { grid-template-columns: 1fr; gap: 14px; padding: 24px; border-radius: 24px; }
  .boundary-compare { grid-template-columns: 1fr; }
  .stoma-stage-card,
  .stoma-price-card,
  .stoma-chat-mockup__body,
  .boundary-card,
  .stoma-hero-panel { padding: 24px; border-radius: 26px; }
  .stoma-chat-mockup { border-radius: 26px; }
  .stoma-dialog-card { padding: 18px; }
}
@media (max-width: 560px) {
  .stoma-product-hero__grid { gap: 34px; }
  .stoma-hero-panel__top strong { font-size: 21px; }
  .stoma-flow-compact span { font-size: 13px; }
  .stoma-system-map { padding: 10px; border-radius: 26px; }
  .stoma-system-map article { padding: 20px; border-radius: 20px; }
  .stage-formula span { grid-template-columns: 20px 1fr; }
  .stoma-chat-mockup__body { padding: 18px; }
  .stoma-chat-mockup .bubble { max-width: 96%; }
  .admin-note { padding: 16px; }
}

/* Salon page — step 11 redesign */
.salon-hero-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(196,111,92,.16), transparent 34%),
    linear-gradient(180deg, rgba(242,235,229,.66), rgba(247,248,243,1));
}
.salon-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,61,50,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,61,50,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.86), transparent 86%);
  pointer-events: none;
}
.salon-hero-v2 > .container { position: relative; z-index: 1; }
.salon-hero-v2__grid {
  grid-template-columns: minmax(0, .96fr) minmax(380px, .74fr);
}
.salon-hero-v2 h1 {
  max-width: 880px;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: .98;
  letter-spacing: -.064em;
}
.salon-hero-v2 .lead { max-width: 720px; }

.salon-workbench {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(196,111,92,.23);
  border-radius: 36px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 80px rgba(74,45,36,.10);
  backdrop-filter: blur(10px);
}
.salon-workbench::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -52px;
  width: 170px;
  height: 170px;
  border-radius: 55px;
  background: rgba(196,111,92,.12);
  transform: rotate(15deg);
  pointer-events: none;
}
.salon-workbench__top,
.salon-result-card,
.salon-question-card,
.salon-price-board {
  position: relative;
  z-index: 1;
}
.salon-workbench__top {
  display: grid;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(221,229,220,.86);
}
.salon-workbench__top span,
.salon-question-card small,
.salon-price-board span,
.salon-result-card span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.salon-workbench__top strong {
  max-width: 360px;
  color: var(--color-green);
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.salon-question-card {
  padding: 22px;
  border-radius: 26px;
  background: var(--color-green);
  color: rgba(255,255,255,.72);
}
.salon-question-card p {
  margin-top: 9px;
  color: #fff;
  font-size: 21px;
  font-weight: 780;
  line-height: 1.22;
  letter-spacing: -.02em;
}
.salon-filter-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.salon-filter-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(221,229,220,.96);
  background: #fff;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 760;
}
.salon-price-board {
  display: grid;
  gap: 10px;
}
.salon-price-board div {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(221,229,220,.86);
  background: var(--color-bg);
}
.salon-price-board strong {
  display: block;
  margin-top: 5px;
  color: var(--color-green);
  font-size: 17px;
  line-height: 1.28;
}
.salon-result-card {
  display: grid;
  gap: 7px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(196,111,92,.10);
  border: 1px solid rgba(196,111,92,.24);
}
.salon-result-card p { color: var(--color-green); font-weight: 710; line-height: 1.38; }

.salon-world { background: var(--color-surface) !important; }
.salon-world__grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 74px;
  align-items: center;
}
.salon-world__compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.salon-world__compare article {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}
.salon-world__compare article span {
  display: block;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.salon-world__compare article p {
  padding: 14px 0;
  border-top: 1px solid rgba(221,229,220,.86);
  color: var(--color-green);
  font-size: 20px;
  font-weight: 780;
  line-height: 1.22;
}
.salon-world__client {
  background: var(--color-green) !important;
  border-color: var(--color-green) !important;
}
.salon-world__client p { color: #fff !important; border-top-color: rgba(255,255,255,.14) !important; }

.salon-stuck { background: var(--color-bg) !important; }
.salon-stuck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.salon-stuck-grid article {
  min-height: 245px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: 0 16px 50px rgba(23,61,50,.045);
}
.salon-stuck-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(196,111,92,.12);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
}
.salon-stuck-grid h3 { font-size: 22px; line-height: 1.12; letter-spacing: -.025em; }
.salon-stuck-grid p { margin-top: 13px; color: var(--color-muted); font-size: 15px; line-height: 1.55; }

.salon-route-section { background: var(--color-surface) !important; }
.salon-route-section__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.salon-route-lane {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: 34px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}
.salon-route-lane article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
  background: var(--color-surface);
  border: 1px solid rgba(221,229,220,.76);
}
.salon-route-lane article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 24px;
  right: -14px;
  z-index: 2;
  color: var(--color-accent);
  font-weight: 900;
}
.salon-route-lane strong {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .07em;
}
.salon-route-lane h3 { font-size: 22px; }
.salon-route-lane p { margin-top: 12px; color: var(--color-muted); font-size: 15px; line-height: 1.5; }

.salon-stage {
  background:
    linear-gradient(180deg, rgba(242,235,229,.34), rgba(247,248,243,1)) !important;
}
.salon-stage__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,390px);
  gap: 24px;
  align-items: stretch;
}
.salon-stage-card,
.salon-zone-card {
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.salon-stage-card { padding: 42px; }
.salon-stage-card h2 { max-width: 850px; }
.salon-stage-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--color-line);
}
.salon-stage-list p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-green);
  font-weight: 710;
}
.salon-stage-list p::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: .58em;
  border-radius: 999px;
  background: var(--color-accent);
}
.salon-zone-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--color-green);
  color: rgba(255,255,255,.76);
}
.salon-zone-card h3 { color: #fff; font-size: 28px; }
.salon-zone-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.salon-zone-card span {
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}
.salon-zone-card p { margin-top: auto; padding-top: 30px; }

.salon-example-v2 { background: var(--color-surface) !important; }
.salon-example-v2__grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 76px;
  align-items: start;
}
.salon-chat-demo {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}
.salon-chat-demo__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-line);
  background: rgba(242,235,229,.66);
}
.salon-chat-demo__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(23,61,50,.26);
}
.salon-chat-demo__bar strong {
  margin-left: 10px;
  color: var(--color-green);
  font-size: 14px;
}
.salon-chat-demo__body {
  display: grid;
  gap: 13px;
  padding: 26px;
}
.salon-admin-card {
  display: grid;
  gap: 5px;
  margin-top: 4px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(196,111,92,.28);
  background: rgba(196,111,92,.10);
}
.salon-admin-card strong { color: var(--color-green); }
.salon-admin-card span { color: var(--color-muted); font-size: 15px; line-height: 1.45; }

.salon-benefit { background: var(--color-bg) !important; }
.salon-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.salon-benefit-grid article {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}
.salon-benefit-grid h3 { font-size: 25px; }
.salon-benefit-grid p { margin-top: 12px; color: var(--color-muted); }
.start-materials--salon { background: var(--color-surface) !important; }
.request--salon { background: var(--color-soft) !important; }

@media (max-width: 1120px) {
  .salon-route-lane { grid-template-columns: 1fr; }
  .salon-route-lane article { min-height: auto; }
  .salon-route-lane article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -17px;
    transform: translateX(-50%) rotate(90deg);
  }
}
@media (max-width: 1040px) {
  .salon-hero-v2__grid,
  .salon-world__grid,
  .salon-route-section__grid,
  .salon-stage__grid,
  .salon-example-v2__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .salon-workbench { max-width: 620px; }
  .salon-stuck-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .salon-hero-v2 { padding: 58px 0 76px; }
  .salon-hero-v2 h1 { font-size: clamp(34px, 8.7vw, 46px); }
  .salon-world__compare,
  .salon-stuck-grid,
  .salon-benefit-grid { grid-template-columns: 1fr; }
  .salon-workbench,
  .salon-world__compare article,
  .salon-stuck-grid article,
  .salon-route-lane,
  .salon-stage-card,
  .salon-zone-card,
  .salon-chat-demo__body,
  .salon-benefit-grid article { padding: 24px; border-radius: 26px; }
  .salon-chat-demo { border-radius: 26px; }
  .salon-stuck-grid article { min-height: auto; }
}
@media (max-width: 560px) {
  .salon-workbench__top strong { font-size: 22px; }
  .salon-question-card p { font-size: 18px; }
  .salon-filter-row span { font-size: 12px; }
  .salon-world__compare article p { font-size: 18px; }
  .salon-stage-list p { grid-template-columns: 20px 1fr; }
  .salon-chat-demo__body { padding: 18px; }
  .salon-chat-demo .bubble { max-width: 96%; }
}

/* Autoservice page v2 */
.auto-hero-v2 {
  padding: 92px 0 108px;
  background:
    radial-gradient(circle at 86% 12%, rgba(196,111,92,.13), transparent 28%),
    linear-gradient(180deg, rgba(233,238,240,.62), rgba(247,248,243,1));
}
.auto-hero-v2__grid {
  display: grid;
  grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr);
  gap: 78px;
  align-items: center;
}
.auto-hero-v2 h1 {
  max-width: 850px;
  font-size: clamp(48px, 6.1vw, 84px);
  line-height: .96;
  letter-spacing: -.065em;
}
.auto-hero-v2 .lead { max-width: 760px; }
.auto-visual {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 38px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.auto-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(23,61,50,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,61,50,.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.auto-visual > * { position: relative; z-index: 1; }
.auto-visual__top {
  padding: 26px;
  border-radius: 28px;
  background: var(--color-green);
  color: rgba(255,255,255,.72);
}
.auto-visual__top span {
  display: block;
  color: rgba(255,255,255,.60);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.auto-visual__top strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(25px,2.8vw,38px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.auto-visual__route {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.auto-visual__route div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(221,229,220,.72);
  background: rgba(255,255,255,.86);
}
.auto-visual__route span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: rgba(196,111,92,.13);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 880;
}
.auto-visual__route strong { color: var(--color-green); font-size: 19px; }
.auto-visual__route p { color: var(--color-muted); font-size: 14px; line-height: 1.42; }
.auto-visual__note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--color-soft);
  color: var(--color-green);
  font-weight: 720;
  line-height: 1.42;
}
.auto-diagnostic { background: var(--color-surface) !important; }
.auto-diagnostic__grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 74px;
  align-items: start;
}
.auto-breakpoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.auto-breakpoints article {
  min-height: 248px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}
.auto-breakpoints span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 15px;
  background: rgba(196,111,92,.12);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 860;
}
.auto-breakpoints h3 { font-size: 25px; line-height: 1.1; letter-spacing: -.025em; }
.auto-breakpoints p { margin-top: 12px; color: var(--color-muted); font-size: 15px; line-height: 1.55; }
.auto-lens {
  background:
    linear-gradient(180deg, rgba(247,248,243,1), rgba(238,243,234,.72)) !important;
}
.auto-lens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.auto-lens-grid article {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.auto-lens-grid strong { display: block; color: var(--color-green); font-size: 25px; letter-spacing: -.03em; }
.auto-lens-grid p { margin-top: 12px; color: var(--color-muted); line-height: 1.52; }
.auto-path-section { background: var(--color-surface) !important; }
.auto-path-section__grid {
  display: grid;
  grid-template-columns: .63fr 1.37fr;
  gap: 64px;
  align-items: start;
}
.auto-path-lane {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 12px;
  border-radius: 34px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}
.auto-path-lane article {
  position: relative;
  min-height: 248px;
  padding: 22px;
  border-radius: 24px;
  background: var(--color-surface);
  border: 1px solid rgba(221,229,220,.72);
}
.auto-path-lane article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 23px;
  right: -13px;
  z-index: 2;
  color: var(--color-accent);
  font-weight: 900;
}
.auto-path-lane span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: .06em;
}
.auto-path-lane h3 { font-size: 21px; }
.auto-path-lane p { margin-top: 12px; color: var(--color-muted); font-size: 14px; line-height: 1.45; }
.auto-compare-v2 { background: var(--color-bg) !important; }
.auto-services-v2 { background: var(--color-surface) !important; }
.auto-services-v2__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
  align-items: start;
}
.auto-service-list--v2 span { min-height: 64px; }
.auto-scenario-v2 {
  background:
    linear-gradient(180deg, rgba(238,243,234,.72), rgba(247,248,243,1)) !important;
}
.auto-scenario-v2__grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 74px;
  align-items: start;
}
.auto-scenario-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.auto-scenario-card__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-line);
  background: rgba(233,238,240,.72);
}
.auto-scenario-card__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(23,61,50,.25);
}
.auto-scenario-card__bar strong { margin-left: 10px; color: var(--color-green); font-size: 14px; }
.auto-scenario-card__body { display: grid; gap: 12px; padding: 28px; }
.auto-scenario-card__body div {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}
.auto-scenario-card__body span {
  display: block;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.auto-scenario-card__body p { margin-top: 8px; color: var(--color-green); font-weight: 710; line-height: 1.45; }
.auto-scenario-card__result {
  background: var(--color-green) !important;
  color: rgba(255,255,255,.78);
}
.auto-scenario-card__result strong { color: #fff; font-size: 22px; }
.auto-scenario-card__result p { color: rgba(255,255,255,.78); }
.auto-stage-v2 { background: var(--color-surface) !important; }
.auto-stage-v2__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,400px);
  gap: 24px;
  align-items: stretch;
}
.auto-stage-card,
.auto-result-card {
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}
.auto-stage-card { padding: 42px; }
.auto-stage-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--color-line);
}
.auto-stage-list p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-green);
  font-weight: 710;
}
.auto-stage-list p::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: .58em;
  border-radius: 999px;
  background: var(--color-accent);
}
.auto-result-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--color-green);
  color: rgba(255,255,255,.75);
}
.auto-result-card h3 { color: #fff; font-size: 28px; }
.auto-result-card p { margin-top: 14px; }
.auto-result-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  padding-top: 28px;
}
.auto-result-card span {
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}
.auto-fit-v2 { background: var(--color-bg) !important; }
.auto-materials-v2 { background: var(--color-surface) !important; }
.auto-request-v2 { background: var(--color-soft) !important; }
@media (max-width: 1180px) {
  .auto-path-lane { grid-template-columns: 1fr; }
  .auto-path-lane article { min-height: auto; }
  .auto-path-lane article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -17px;
    transform: translateX(-50%) rotate(90deg);
  }
}
@media (max-width: 1040px) {
  .auto-hero-v2__grid,
  .auto-diagnostic__grid,
  .auto-path-section__grid,
  .auto-services-v2__grid,
  .auto-scenario-v2__grid,
  .auto-stage-v2__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .auto-visual { max-width: 640px; }
  .auto-lens-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .auto-hero-v2 { padding: 58px 0 76px; }
  .auto-hero-v2 h1 { font-size: clamp(34px, 8.7vw, 46px); }
  .auto-breakpoints,
  .auto-lens-grid { grid-template-columns: 1fr; }
  .auto-visual,
  .auto-visual__top,
  .auto-breakpoints article,
  .auto-lens-grid article,
  .auto-path-lane,
  .auto-scenario-card__body,
  .auto-stage-card,
  .auto-result-card { padding: 24px; border-radius: 26px; }
  .auto-scenario-card { border-radius: 26px; }
  .auto-breakpoints article { min-height: auto; }
}
@media (max-width: 560px) {
  .auto-visual__top strong { font-size: 24px; }
  .auto-visual__route div { grid-template-columns: 38px 1fr; padding: 16px; }
  .auto-visual__route span { width: 32px; height: 32px; }
  .auto-stage-list p { grid-template-columns: 20px 1fr; }
  .auto-scenario-card__body { padding: 18px; }
}

/* Step 13 — contacts page polish */
.contact-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 86px 0 106px;
  background:
    radial-gradient(circle at 80% 16%, rgba(196,111,92,.12), transparent 34%),
    linear-gradient(180deg, rgba(238,243,234,.60), rgba(247,248,243,1));
}
.contact-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,61,50,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,61,50,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 78%);
  pointer-events: none;
}
.contact-hero-v2__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 470px);
  gap: 76px;
  align-items: center;
}
.contact-hero-v2 h1 { max-width: 820px; }
.contact-hero-v2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.contact-hero-v2__chips span {
  padding: 10px 14px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.62);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 740;
}
.contact-visual-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--color-line);
  border-radius: 36px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}
.contact-visual-card::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -72px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(196,111,92,.13);
}
.contact-visual-card__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 122px;
  gap: 20px;
  align-items: end;
}
.contact-visual-card__label {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-visual-card__email {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-green);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 820;
  overflow-wrap: break-word;
}
.contact-visual-card__photo {
  position: relative;
  height: 150px;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--color-soft), rgba(255,255,255,.72));
  overflow: hidden;
}
.contact-visual-card__photo img {
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 116px;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(23,61,50,.15));
}
.contact-visual-card__note {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: 26px;
  background: var(--color-bg);
}
.contact-visual-card__note strong {
  display: block;
  color: var(--color-green);
  font-size: 19px;
}
.contact-visual-card__note p { margin-top: 10px; color: var(--color-muted); }
.contact-visual-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.contact-visual-card__meta span {
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 760;
}
.contact-brief-v2 { background: var(--color-surface) !important; }
.contact-brief-v2__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 74px;
  align-items: start;
}
.contact-brief-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-brief-list article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: var(--color-bg);
}
.contact-brief-list span,
.contact-process-lane span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 15px;
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 13px;
  font-weight: 860;
}
.contact-brief-list h3 { font-size: 22px; }
.contact-brief-list p { margin-top: 12px; color: var(--color-muted); font-size: 15px; line-height: 1.5; }
.contact-process-v2 {
  background:
    linear-gradient(180deg, rgba(238,243,234,.76), rgba(247,248,243,1)) !important;
}
.contact-process-lane {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}
.contact-process-lane article {
  position: relative;
  min-height: 252px;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background: var(--color-surface);
  box-shadow: 0 18px 38px rgba(23,61,50,.05);
}
.contact-process-lane article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: -13px;
  z-index: 2;
  color: var(--color-accent);
  font-weight: 900;
}
.contact-process-lane h3 { font-size: 23px; }
.contact-process-lane p { margin-top: 12px; color: var(--color-muted); font-size: 15px; line-height: 1.52; }
.contact-message-v2 { background: var(--color-soft) !important; }
.contact-message-v2__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, 1.05fr);
  gap: 42px;
  align-items: stretch;
}
.contact-template-card {
  padding: 40px;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-green);
  color: rgba(255,255,255,.76);
  box-shadow: var(--shadow-soft);
}
.contact-template-card h2 { color: #fff; }
.contact-template-card .eyebrow { color: rgba(255,255,255,.70); }
.contact-template-card__body {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-template-card__body p {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
}
.contact-form-v2 { height: 100%; }
@media (max-width: 1040px) {
  .contact-hero-v2__grid,
  .contact-brief-v2__grid,
  .contact-message-v2__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .contact-visual-card { max-width: 660px; }
}
@media (max-width: 860px) {
  .contact-hero-v2 { padding: 58px 0 76px; }
  .contact-brief-list,
  .contact-process-lane { grid-template-columns: 1fr; }
  .contact-brief-list article,
  .contact-process-lane article { min-height: auto; padding: 24px; border-radius: 26px; }
  .contact-process-lane article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -17px;
    transform: translateX(-50%) rotate(90deg);
  }
  .contact-template-card { padding: 28px; border-radius: 28px; }
}
@media (max-width: 560px) {
  .contact-visual-card { padding: 24px; border-radius: 28px; }
  .contact-visual-card__top { grid-template-columns: 1fr; }
  .contact-visual-card__photo { display: none; }
  .contact-visual-card__note { padding: 20px; border-radius: 22px; }
  .contact-hero-v2__chips span { width: 100%; justify-content: center; }
}
.contact-visual-card__email {
  font-size: clamp(18px, 1.55vw, 23px);
  letter-spacing: -.018em;
}
.contact-visual-card__photo img {
  width: 74px;
  bottom: 0;
}
.contact-visual-card__top { display: block; }
.contact-visual-card__photo { display: none; }
.contact-visual-card__email { font-size: clamp(20px, 1.75vw, 26px); }


/* Step 14: final mobile polish */
h1, h2, h3 { overflow-wrap: normal; word-break: normal; }
.legal-hero h1 { font-size: clamp(32px, 7.6vw, 54px); line-height: 1.08; }
@media (max-width: 560px) {
  .legal-hero h1 { font-size: clamp(30px, 7.4vw, 34px); }
  .legal-content h2 { font-size: 24px; line-height: 1.18; }
  .legal-content p { font-size: 15px; line-height: 1.58; }
  .service-hero__grid,
  .stoma-product-hero__grid,
  .contact-hero__grid,
  .hero__grid--clean {
    gap: 34px;
  }
  .service-demo,
  .stoma-hero-panel,
  .salon-route,
  .launch-card,
  .contact-card,
  .price-card,
  .scope-card,
  .scenario,
  .request-form {
    box-shadow: 0 16px 46px rgba(23,61,50,.075);
  }
  .site-footer { padding: 38px 0; }
  .footer__brand { font-size: 18px; }
  .footer__nav, .footer__contact { font-size: 14px; }
}

@media (max-width: 860px) {
  .menu-toggle { position: relative; }
  .menu-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -9px;
  }
  .menu-toggle span:first-child { transform: translateY(-4px); }
  .menu-toggle span:last-child { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(0) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(0) rotate(-45deg); }
}
@media (max-width: 860px) {
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::before {
    content: "×";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -54%);
    color: var(--color-green);
    font-size: 28px;
    line-height: 1;
    font-weight: 360;
  }
}
@media (max-width: 860px) {
  .menu-toggle[aria-expanded="true"]::before {
    content: "✕";
    transform: translate(-50%, -50%);
    font-size: 17px;
    font-weight: 760;
    letter-spacing: 0;
  }
}
@media (max-width: 860px) {
  .menu-toggle[aria-expanded="true"]::before,
  .menu-toggle[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-green);
  }
  .menu-toggle[aria-expanded="true"]::before { transform: translate(-50%, -50%) rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(-45deg); }
}


/* ===== Step 15 — desktop hero correction for inner service pages ===== */
@media (min-width: 1041px) {
  .salon-hero-v2,
  .auto-hero-v2 {
    padding: 76px 0 92px;
  }

  .salon-hero-v2__grid,
  .auto-hero-v2__grid {
    grid-template-columns: minmax(0, .92fr) minmax(420px, .82fr);
    gap: 64px;
    align-items: center;
  }

  .salon-hero-v2 h1,
  .auto-hero-v2 h1 {
    max-width: 760px;
    font-size: clamp(52px, 4.45vw, 66px);
    line-height: 1.02;
    letter-spacing: -.055em;
  }

  .salon-hero-v2 .lead,
  .auto-hero-v2 .lead {
    max-width: 690px;
    font-size: 22px;
    line-height: 1.48;
  }

  .salon-workbench {
    max-width: 520px;
    margin-left: auto;
    padding: 22px;
    gap: 13px;
    border-radius: 32px;
  }

  .salon-workbench__top {
    padding-bottom: 12px;
  }

  .salon-workbench__top strong {
    max-width: 340px;
    font-size: 24px;
    line-height: 1.12;
  }

  .salon-question-card {
    padding: 18px 20px;
    border-radius: 22px;
  }

  .salon-question-card p {
    font-size: 18px;
    line-height: 1.24;
  }

  .salon-price-board div,
  .salon-result-card {
    padding: 16px 18px;
    border-radius: 20px;
  }

  .salon-result-card p {
    font-size: 15px;
    line-height: 1.38;
  }

  .auto-visual {
    max-width: 560px;
    margin-left: auto;
    padding: 24px;
    border-radius: 34px;
  }

  .auto-visual__top {
    padding: 22px 24px;
    border-radius: 24px;
  }

  .auto-visual__top strong {
    max-width: 430px;
    font-size: clamp(28px, 2.25vw, 34px);
    line-height: 1.06;
  }

  .auto-visual__route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
  }

  .auto-visual__route div {
    grid-template-columns: 34px 1fr;
    gap: 5px 11px;
    padding: 15px;
    border-radius: 20px;
  }

  .auto-visual__route span {
    width: 30px;
    height: 30px;
    border-radius: 11px;
    font-size: 11px;
  }

  .auto-visual__route strong {
    font-size: 17px;
  }

  .auto-visual__route p {
    font-size: 13px;
    line-height: 1.35;
  }

  .auto-visual__note {
    margin-top: 14px;
    padding: 15px 18px;
    border-radius: 19px;
    font-size: 15px;
  }
}

@media (min-width: 1041px) and (max-width: 1280px) {
  .salon-hero-v2 h1,
  .auto-hero-v2 h1 {
    font-size: clamp(46px, 4.2vw, 58px);
  }

  .salon-hero-v2__grid,
  .auto-hero-v2__grid {
    gap: 46px;
  }
}

/* Step 16: stoma product page — full product narrative */
.stoma-product-hero--clear h1 { max-width: 780px; }
.stoma-hero-explain {
  max-width: 690px;
  margin-top: 18px;
  color: #3A433F;
  font-size: 19px;
  line-height: 1.55;
}
.stoma-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.stoma-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--color-line);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 720;
}
.stoma-site-screen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 4px;
}
.stoma-site-screen span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--color-bg);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 760;
}
.admin-note--hero { margin-top: 16px; position: relative; z-index: 1; }

.stoma-why { background: var(--color-surface) !important; }
.stoma-why__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 74px;
  align-items: start;
}
.stoma-split-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}
.stoma-split-card article {
  padding: 28px;
  border-radius: 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
}
.stoma-split-card h3 { font-size: 26px; margin-bottom: 18px; }
.stoma-split-card p {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-green);
  font-weight: 690;
}
.stoma-split-card p::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .6em;
  border-radius: 999px;
  background: var(--color-accent);
}

.stoma-system-map--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stoma-system-map--six article { min-height: 246px; }
.stoma-system-map--six article:nth-child(3)::after { display: none; }

.stoma-benefits { background: var(--color-bg) !important; }
.stoma-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.stoma-benefit-grid article,
.stoma-detail-grid article {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: var(--color-surface);
  box-shadow: 0 16px 48px rgba(23,61,50,.055);
}
.stoma-benefit-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(196,111,92,.12);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .05em;
}
.stoma-benefit-grid h3,
.stoma-detail-grid h3 { font-size: 22px; }
.stoma-benefit-grid p,
.stoma-detail-grid p { margin-top: 12px; color: var(--color-muted); font-size: 15px; line-height: 1.55; }

.stoma-details { background: var(--color-surface) !important; }
.stoma-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.stoma-detail-grid article { background: var(--color-bg); box-shadow: none; }

.stoma-exclusions { background: var(--color-bg) !important; }
.stoma-exclusions__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}
.stoma-in-out {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stoma-in-out article {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}
.stoma-in-out article:last-child { background: var(--color-soft); }
.stoma-in-out h3 { font-size: 28px; margin-bottom: 18px; }
.stoma-in-out p {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(221,229,220,.88);
  color: var(--color-green);
  font-weight: 690;
  line-height: 1.35;
}
.stoma-in-out p::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--color-accent);
}

.stoma-ladder { background: var(--color-surface) !important; }
.stoma-ladder__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}
.stoma-ladder-steps {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
}
.stoma-ladder-steps article {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}
.stoma-ladder-steps article:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--color-accent);
  font-weight: 900;
}
.stoma-ladder-steps span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .05em;
}
.stoma-ladder-steps p { margin-top: 10px; color: var(--color-muted); }

.stoma-demo-cases { background: var(--color-bg) !important; }
.stoma-demo-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 38px auto 0;
}
.stoma-demo-chip-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  color: var(--color-green);
  font-weight: 710;
  box-shadow: 0 10px 28px rgba(23,61,50,.045);
}
.stoma-final-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  max-width: 560px;
}
.stoma-final-list p {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--color-green);
  font-weight: 690;
}
.stoma-final-list p::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .62em;
  border-radius: 999px;
  background: var(--color-accent);
}

@media (max-width: 1120px) {
  .stoma-system-map--six { grid-template-columns: 1fr; }
  .stoma-system-map--six article:nth-child(3)::after { display: block; }
}
@media (max-width: 1040px) {
  .stoma-why__grid,
  .stoma-exclusions__grid,
  .stoma-ladder__grid { grid-template-columns: 1fr; gap: 46px; }
  .stoma-benefit-grid,
  .stoma-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .stoma-split-card,
  .stoma-in-out { grid-template-columns: 1fr; }
  .stoma-benefit-grid,
  .stoma-detail-grid { grid-template-columns: 1fr; }
  .stoma-split-card,
  .stoma-ladder-steps { padding: 12px; border-radius: 28px; }
  .stoma-split-card article,
  .stoma-in-out article,
  .stoma-ladder-steps article,
  .stoma-benefit-grid article,
  .stoma-detail-grid article { padding: 24px; border-radius: 24px; }
  .stoma-site-screen { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stoma-hero-explain { font-size: 17px; }
  .stoma-hero-points { display: grid; }
  .stoma-hero-points span { width: 100%; justify-content: center; text-align: center; }
  .stoma-demo-chip-grid { justify-content: stretch; }
  .stoma-demo-chip-grid span { width: 100%; justify-content: center; text-align: center; }
}

/* Step 17: stoma hero cleanup — clear hierarchy, no visual overload */
.stoma-product-hero--focused {
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 86% 10%, rgba(196,111,92,.075), transparent 30%),
    linear-gradient(180deg, rgba(238,243,234,.62), rgba(247,248,243,1));
}
.stoma-product-hero--focused::before {
  opacity: .28;
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0 52%, transparent 95%);
}
.stoma-product-hero--focused .stoma-product-hero__grid {
  grid-template-columns: minmax(0, .95fr) minmax(340px, .55fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}
.stoma-product-hero--focused .stoma-product-hero__content {
  max-width: 710px;
}
.stoma-product-hero--focused h1 {
  max-width: 710px;
  font-size: clamp(44px, 4.05vw, 60px);
  line-height: .98;
  letter-spacing: -.065em;
}
.stoma-product-hero--focused .lead {
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.42;
  color: #394541;
}
.stoma-product-hero--focused .hero__actions {
  margin-top: 32px;
}
.stoma-product-hero--focused .hero__line {
  max-width: 610px;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-muted);
}
.stoma-hero-panel--focused {
  width: min(100%, 480px);
  justify-self: end;
  padding: 20px;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 64px rgba(23,61,50,.10);
}
.stoma-hero-panel--focused::after {
  right: -88px;
  top: -96px;
  width: 176px;
  height: 176px;
  opacity: .65;
}
.stoma-hero-panel--focused .stoma-hero-panel__top {
  margin-bottom: 16px;
}
.stoma-hero-panel--focused .stoma-hero-panel__top strong {
  max-width: 360px;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.14;
}
.stoma-dialog-card--focused {
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
}
.stoma-dialog-card--focused .bubble {
  max-width: 88%;
  font-size: 14px;
  line-height: 1.45;
}
.stoma-dialog-card--focused .bubble--assistant {
  max-width: 92%;
}
.stoma-context-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(196,111,92,.22);
  border-radius: 18px;
  background: rgba(196,111,92,.07);
  color: var(--color-green);
  font-size: 13px;
  line-height: 1.35;
}
.stoma-context-line strong {
  font-weight: 800;
}
.stoma-context-line span {
  color: #5C6762;
  font-weight: 650;
}
.stoma-hero-rail {
  padding: 0 0 46px;
  background: var(--color-bg);
}
.stoma-hero-rail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.stoma-hero-rail article {
  padding: 22px 22px 20px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 40px rgba(23,61,50,.055);
}
.stoma-hero-rail article span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .08em;
}
.stoma-hero-rail article strong {
  display: block;
  color: var(--color-green);
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -.025em;
}
.stoma-hero-rail article p {
  margin-top: 9px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 1040px) {
  .stoma-product-hero--focused .stoma-product-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .stoma-hero-panel--focused {
    justify-self: start;
    max-width: 620px;
  }
  .stoma-hero-rail__grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
@media (max-width: 860px) {
  .stoma-product-hero--focused {
    padding: 54px 0 48px;
  }
  .stoma-product-hero--focused h1 {
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.02;
  }
  .stoma-product-hero--focused .lead {
    margin-top: 20px;
    font-size: 18px;
  }
  .stoma-product-hero--focused .hero__actions {
    margin-top: 26px;
  }
  .stoma-hero-rail {
    padding-bottom: 36px;
  }
}
@media (max-width: 560px) {
  .stoma-hero-panel--focused {
    padding: 16px;
    border-radius: 24px;
  }
  .stoma-hero-panel--focused .stoma-hero-panel__top strong {
    font-size: 20px;
  }
  .stoma-dialog-card--focused {
    padding: 15px;
    border-radius: 20px;
  }
  .stoma-dialog-card--focused .bubble {
    max-width: 98%;
  }
  .stoma-context-line {
    display: grid;
    gap: 4px;
  }
  .stoma-hero-rail article {
    padding: 20px;
  }
}

/* Step 18: /stoma-after-click/ — diagnostic page aligned with step17 stoma design */
.afterclick-hero .stoma-product-hero__grid {
  grid-template-columns: minmax(0, .94fr) minmax(340px, .56fr);
}
.afterclick-hero__content h1 {
  max-width: 760px;
}
.afterclick-hero__note {
  max-width: 630px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.58;
}
.afterclick-hero-panel { width: min(100%, 460px); }
.afterclick-path-card {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: var(--color-surface);
  display: grid;
  gap: 14px;
}
.afterclick-path-card__top {
  color: var(--color-green);
  font-size: 15px;
  font-weight: 800;
}
.afterclick-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.afterclick-tabs span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-soft);
  color: #6C756F;
  font-size: 12px;
  font-weight: 760;
}
.afterclick-path-status {
  display: grid;
  gap: 7px;
  margin-top: 3px;
}
.afterclick-path-status span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(196,111,92,.075);
  color: var(--color-green);
  font-size: 13px;
  font-weight: 720;
}
.afterclick-mini-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.afterclick-mini-flow span {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(238,243,234,.78);
  color: var(--color-green);
  font-size: 13px;
  font-weight: 740;
}
.afterclick-mini-flow span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: .72;
}
.afterclick-two-col,
.afterclick-split__grid,
.afterclick-funnel__grid,
.afterclick-solution__grid,
.afterclick-demo__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 7vw, 84px);
  align-items: start;
}
.afterclick-analytics-card {
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}
.afterclick-analytics-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-muted);
}
.afterclick-analytics-row strong {
  color: var(--color-green);
  font-weight: 820;
}
.afterclick-analytics-row--muted strong { color: var(--color-accent); }
.afterclick-analytics-card p {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}
.afterclick-card-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}
.afterclick-card-grid--six { grid-template-columns: repeat(3, 1fr); }
.afterclick-card-grid--five { grid-template-columns: repeat(5, 1fr); }
.afterclick-card-grid article {
  padding: 24px;
  min-height: 210px;
  border: 1px solid var(--color-line);
  border-radius: 26px;
  background: var(--color-surface);
  box-shadow: 0 12px 36px rgba(23,61,50,.045);
}
.afterclick-card-grid article span {
  display: inline-flex;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.afterclick-card-grid article h3 {
  margin-top: 14px;
  color: var(--color-green);
  font-size: 21px;
  letter-spacing: -.03em;
}
.afterclick-card-grid article p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}
.afterclick-perspective {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.afterclick-perspective article {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}
.afterclick-perspective article:nth-child(2) {
  background: var(--color-soft);
}
.afterclick-perspective h3 {
  margin-bottom: 18px;
  color: var(--color-green);
}
.afterclick-perspective p {
  padding: 10px 0;
  border-bottom: 1px solid rgba(23,61,50,.08);
  color: var(--color-muted);
  font-size: 16px;
}
.afterclick-message-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}
.afterclick-message-grid span {
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 20px 20px 20px 7px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  color: var(--color-green);
  font-weight: 720;
  box-shadow: 0 10px 32px rgba(23,61,50,.045);
}
.afterclick-funnel-card {
  display: grid;
  gap: 12px;
  padding: 30px;
  border-radius: 30px;
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 20px 70px rgba(23,61,50,.16);
}
.afterclick-funnel-card div {
  position: relative;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  font-weight: 760;
}
.afterclick-funnel-card div:not(:last-of-type)::after {
  content: "↓";
  position: absolute;
  right: 20px;
  bottom: -18px;
  color: rgba(255,255,255,.62);
  font-weight: 900;
}
.afterclick-funnel-card p {
  margin-top: 10px;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.5;
}
.afterclick-solution-flow {
  display: grid;
  gap: 14px;
}
.afterclick-solution-flow article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 6px 18px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: var(--color-surface);
}
.afterclick-solution-flow article span {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-size: 13px;
  font-weight: 820;
}
.afterclick-solution-flow strong {
  color: var(--color-green);
  font-size: 18px;
  line-height: 1.25;
}
.afterclick-solution-flow p {
  color: var(--color-muted);
  font-size: 15px;
}
.afterclick-boundary-list article p {
  font-size: 15px;
}
.afterclick-dialog-card {
  padding: 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}
.afterclick-dialog-card .bubble { max-width: 92%; }
.afterclick-to-stoma { background: var(--color-bg) !important; }
.afterclick-to-stoma__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid var(--color-line);
  border-radius: 34px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}
.afterclick-to-stoma__card h2 {
  max-width: 720px;
}
.afterclick-to-stoma__card p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.58;
}
.afterclick-to-stoma__actions {
  display: grid;
  gap: 12px;
  min-width: 270px;
}
@media (max-width: 1180px) {
  .afterclick-card-grid--five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1040px) {
  .afterclick-hero .stoma-product-hero__grid,
  .afterclick-two-col,
  .afterclick-split__grid,
  .afterclick-funnel__grid,
  .afterclick-solution__grid,
  .afterclick-demo__grid {
    grid-template-columns: 1fr;
  }
  .afterclick-hero-panel { justify-self: start; max-width: 620px; }
  .afterclick-card-grid--six,
  .afterclick-card-grid--five { grid-template-columns: repeat(2, 1fr); }
  .afterclick-to-stoma__card { grid-template-columns: 1fr; }
  .afterclick-to-stoma__actions { min-width: 0; display: flex; flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .afterclick-hero__note { font-size: 16px; }
  .afterclick-tabs { grid-template-columns: repeat(2, 1fr); }
  .afterclick-card-grid--six,
  .afterclick-card-grid--five,
  .afterclick-perspective { grid-template-columns: 1fr; }
  .afterclick-card-grid article { min-height: auto; padding: 22px; }
  .afterclick-message-grid { justify-content: stretch; }
  .afterclick-message-grid span { width: 100%; max-width: none; }
  .afterclick-analytics-card,
  .afterclick-funnel-card,
  .afterclick-dialog-card { padding: 22px; border-radius: 24px; }
  .afterclick-solution-flow article { grid-template-columns: 1fr; }
  .afterclick-solution-flow article span { grid-row: auto; }
  .afterclick-to-stoma__actions { display: grid; }
}

/* Step 19 — full-site UX/UI audit polish, 2026 editorial system */
:root {
  --color-bg: #F6F7F1;
  --color-surface: #FFFFFF;
  --color-soft: #EDF3EA;
  --color-line: #DCE5DC;
  --color-text: #1E2824;
  --color-muted: #65726C;
  --shadow-soft: 0 24px 72px rgba(23,61,50,.075);
  --shadow-card: 0 28px 90px rgba(23,61,50,.095);
  --container: 1200px;
}

html { background: var(--color-bg); }
body {
  background:
    radial-gradient(circle at 86% 3%, rgba(196,111,92,.055), transparent 28vw),
    radial-gradient(circle at 5% 12%, rgba(35,84,69,.045), transparent 26vw),
    var(--color-bg);
}

::selection { background: rgba(196,111,92,.22); color: var(--color-green); }

.container { width: min(var(--container), calc(100% - 80px)); }
.section { padding: clamp(76px, 7.2vw, 118px) 0; }
.section-head { max-width: 780px; }
.section-head--center { max-width: 900px; }
.section-head > p:not(.eyebrow) {
  max-width: 690px;
  color: #617069;
}
.section-head--center > p:not(.eyebrow) { margin-inline: auto; }

h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
h1 { font-size: clamp(42px, 4.65vw, 66px); line-height: 1; letter-spacing: -.058em; }
h2 { font-size: clamp(34px, 3.35vw, 50px); line-height: 1.08; letter-spacing: -.048em; }
h3 { letter-spacing: -.034em; }
.lead { color: #3A4742; }

.site-header {
  background: rgba(246,247,241,.82);
  border-bottom-color: rgba(221,229,220,.72);
  box-shadow: 0 12px 34px rgba(23,61,50,.04);
}
.header__inner { min-height: 74px; }
.brand__logo { box-shadow: 0 12px 30px rgba(23,61,50,.075); }
.site-nav { gap: 20px; }
.site-nav > a:not(.nav-cta) { font-size: 15px; }
.nav-cta {
  padding-inline: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 34px rgba(23,61,50,.06);
}

.btn {
  min-height: 54px;
  padding: 0 25px;
  box-shadow: 0 14px 34px rgba(23,61,50,.055);
}
.btn--secondary { background: rgba(255,255,255,.82); }
.btn:hover { transform: translateY(-2px); }

.eyebrow {
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: .11em;
}

/* Hero rhythm: one main idea, one visual scene */
.hero,
.hero--clean,
.hero--system,
.stoma-product-hero,
.salon-hero-v2,
.auto-hero-v2,
.contact-hero-v2 {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(78px, 7.8vw, 118px);
}

.hero--clean,
.stoma-product-hero,
.salon-hero-v2,
.auto-hero-v2,
.contact-hero-v2 {
  background:
    radial-gradient(circle at 82% 10%, rgba(196,111,92,.105), transparent 30%),
    radial-gradient(circle at 0% 0%, rgba(35,84,69,.06), transparent 30%),
    linear-gradient(180deg, rgba(238,243,234,.64), rgba(246,247,241,1)) !important;
}

.hero--clean::before,
.stoma-product-hero::before,
.salon-hero-v2::before,
.auto-hero-v2::before,
.contact-hero-v2::before {
  opacity: .30 !important;
  background-size: 64px 64px !important;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.76), transparent 76%) !important;
}

.hero__content,
.stoma-product-hero__content,
.service-hero__content { max-width: 720px; }
.hero--clean h1,
.stoma-product-hero--focused h1,
.salon-hero-v2 h1,
.auto-hero-v2 h1,
.contact-hero-v2 h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.55vw, 62px);
  line-height: 1.01;
  letter-spacing: -.06em;
}
.hero--clean .lead,
.stoma-product-hero--focused .lead,
.salon-hero-v2 .lead,
.auto-hero-v2 .lead,
.contact-hero-v2 .lead {
  max-width: 640px;
  margin-top: 24px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.48;
}
.hero__line {
  max-width: 620px;
  margin-top: 18px;
  color: #68756F;
}
.hero__proof,
.hero__proof--clean,
.contact-hero-v2__chips {
  gap: 8px;
}
.hero__proof span,
.hero__proof--clean span,
.contact-hero-v2__chips span {
  border-color: rgba(23,61,50,.10);
  background: rgba(255,255,255,.70);
  box-shadow: none;
}

/* Premium cards and panels */
.direction-card,
.feature-card,
.problem-item,
.compare-card,
.light-panel,
.diagnostic-board,
.hero-system,
.salon-workbench,
.auto-visual,
.contact-visual-card,
.stoma-hero-panel,
.stoma-chat-mockup,
.salon-chat-demo,
.auto-scenario-card,
.service-demo,
.afterclick-analytics-card,
.afterclick-funnel-card,
.afterclick-dialog-card,
.afterclick-to-stoma__card {
  border-color: rgba(23,61,50,.10);
  box-shadow: 0 22px 72px rgba(23,61,50,.065);
}

.direction-card,
.feature-card,
.problem-item,
.compare-card,
.light-panel,
.stoma-question-stack article,
.afterclick-card-grid article,
.salon-stuck-grid article,
.auto-lens-grid article,
.contact-brief-list article {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
@media (hover:hover) and (pointer:fine) {
  .direction-card:hover,
  .feature-card:hover,
  .problem-item:hover,
  .compare-card:hover,
  .light-panel:hover,
  .stoma-question-stack article:hover,
  .afterclick-card-grid article:hover,
  .salon-stuck-grid article:hover,
  .auto-lens-grid article:hover,
  .contact-brief-list article:hover {
    transform: translateY(-4px);
    border-color: rgba(23,61,50,.18);
    box-shadow: 0 28px 86px rgba(23,61,50,.085);
  }
}

/* Homepage polish */
.hero__grid--clean {
  grid-template-columns: minmax(0, .98fr) minmax(360px, .68fr);
  gap: clamp(48px, 6vw, 86px);
}
.hero-visual--clean { min-height: 520px; }
.hero-visual--clean .hero-visual__shape {
  background: linear-gradient(145deg, rgba(238,243,234,.96), rgba(255,255,255,.62));
  border: 1px solid rgba(23,61,50,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 30px 80px rgba(23,61,50,.09);
}
.hero-card--bottom {
  border-color: rgba(23,61,50,.10);
  background: rgba(255,255,255,.84);
}
.diagnostic-board,
.system-map,
.steps--system li,
.request-form {
  border-color: rgba(23,61,50,.10);
}
.direction-grid--distinct { gap: 20px; }
.direction-card { border-radius: 32px; }
.direction-card::after { opacity: .62; }

/* Stoma and after-click: make them feel like one product family */
.stoma-product-hero--focused .stoma-product-hero__grid,
.afterclick-hero .stoma-product-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: clamp(50px, 6vw, 88px);
}
.stoma-product-hero--focused .stoma-product-hero__content,
.afterclick-hero__content { max-width: 720px; }
.stoma-product-hero--focused .lead,
.afterclick-hero .lead { max-width: 620px; }
.afterclick-hero__note {
  max-width: 600px;
  margin-top: 16px;
  color: #4F5C56;
  font-size: 17px;
  line-height: 1.58;
}
.stoma-hero-panel--focused,
.afterclick-hero-panel {
  width: min(100%, 500px);
  border-radius: 32px;
  padding: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 28px 84px rgba(23,61,50,.09);
}
.stoma-hero-panel--focused .stoma-hero-panel__top strong,
.afterclick-hero-panel .stoma-hero-panel__top strong {
  max-width: 390px;
  font-size: clamp(21px, 2vw, 26px);
}
.stoma-site-screen,
.afterclick-tabs {
  border-color: rgba(23,61,50,.08) !important;
}
.stoma-hero-rail {
  padding-bottom: 58px;
  background: transparent;
}
.stoma-hero-rail__grid {
  gap: 16px;
}
.stoma-hero-rail article {
  border-color: rgba(23,61,50,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 50px rgba(23,61,50,.055);
}

.stoma-diagnostic__grid,
.stoma-why__grid,
.stoma-demo-section__grid,
.stoma-materials__grid,
.afterclick-two-col,
.afterclick-split__grid,
.afterclick-funnel__grid,
.afterclick-solution__grid,
.afterclick-demo__grid,
.salon-world__grid,
.salon-route-section__grid,
.salon-example-v2__grid,
.auto-diagnostic__grid,
.auto-path-section__grid,
.auto-services-v2__grid,
.auto-scenario-v2__grid,
.contact-brief-v2__grid {
  gap: clamp(48px, 6vw, 82px);
}

.stoma-system-map,
.salon-route-lane,
.auto-path-lane {
  border-color: rgba(23,61,50,.10);
  background: rgba(255,255,255,.56);
  box-shadow: 0 18px 64px rgba(23,61,50,.055);
}
.stoma-system-map article,
.salon-route-lane article,
.auto-path-lane article {
  min-height: 230px;
  border-color: rgba(23,61,50,.08);
}
.stoma-system-map article:not(:last-child)::after,
.salon-route-lane article:not(:last-child)::after,
.auto-path-lane article:not(:last-child)::after {
  opacity: .62;
}

.stoma-boundaries {
  background:
    radial-gradient(circle at 78% 10%, rgba(196,111,92,.18), transparent 32%),
    linear-gradient(180deg, #173D32, #123229) !important;
}
.boundary-card { background: rgba(255,255,255,.075); }
.boundary-card--yes { background: rgba(255,255,255,.12); }

.afterclick-card-grid,
.salon-stuck-grid,
.auto-lens-grid,
.salon-benefit-grid,
.contact-brief-list { gap: 18px; }
.afterclick-card-grid article,
.salon-stuck-grid article,
.auto-lens-grid article,
.salon-benefit-grid article,
.contact-brief-list article {
  border-color: rgba(23,61,50,.10);
}
.afterclick-message-grid span {
  border-color: rgba(23,61,50,.10);
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 34px rgba(23,61,50,.045);
}
.afterclick-funnel-card div {
  border-color: rgba(23,61,50,.08);
}

/* Service inner pages polish */
.salon-workbench,
.auto-visual,
.contact-visual-card {
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
}
.salon-workbench__top strong,
.auto-visual__top strong,
.contact-visual-card__email {
  text-wrap: balance;
}
.salon-question-card,
.auto-result-card,
.stoma-price-card,
.salon-zone-card {
  background: linear-gradient(180deg, #174033, #123329);
}
.salon-world__compare article,
.salon-route-lane article,
.auto-path-lane article,
.auto-scenario-card__body div,
.contact-brief-list article {
  background: rgba(255,255,255,.82);
}

/* Request and footer */
.request,
.request--final,
.request--stoma,
.request--salon,
.auto-request-v2 {
  background:
    radial-gradient(circle at 88% 10%, rgba(196,111,92,.09), transparent 30%),
    linear-gradient(180deg, rgba(238,243,234,.86), #F6F7F1) !important;
}
.request-form {
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 22px 72px rgba(23,61,50,.07);
}
.request-form input,
.request-form textarea {
  background: rgba(255,255,255,.92);
  border-color: rgba(23,61,50,.12);
}
.site-footer {
  background: linear-gradient(180deg, #173D32, #102C25);
}

/* Better local browser rendering */
a[href^="mailto:"], a[href^="tel:"] { overflow-wrap: break-word; }

@media (max-width: 1180px) {
  .container { width: min(var(--container), calc(100% - 56px)); }
}

@media (max-width: 1040px) {
  .stoma-product-hero--focused .stoma-product-hero__grid,
  .afterclick-hero .stoma-product-hero__grid,
  .hero__grid--clean,
  .salon-hero-v2__grid,
  .auto-hero-v2__grid,
  .contact-hero-v2__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .stoma-hero-panel--focused,
  .afterclick-hero-panel,
  .salon-workbench,
  .auto-visual,
  .contact-visual-card {
    justify-self: start;
    max-width: 640px;
  }
  .stoma-system-map,
  .salon-route-lane,
  .auto-path-lane {
    grid-template-columns: 1fr !important;
  }
  .stoma-system-map article,
  .salon-route-lane article,
  .auto-path-lane article { min-height: auto; }
}

@media (max-width: 860px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .hero,
  .hero--clean,
  .hero--system,
  .stoma-product-hero,
  .salon-hero-v2,
  .auto-hero-v2,
  .contact-hero-v2 {
    padding-top: 54px;
    padding-bottom: 66px;
  }
  h1 { font-size: clamp(34px, 8.8vw, 46px); line-height: 1.03; letter-spacing: -.052em; }
  h2 { font-size: clamp(28px, 7.4vw, 38px); line-height: 1.12; }
  .lead,
  .stoma-product-hero--focused .lead,
  .afterclick-hero .lead,
  .salon-hero-v2 .lead,
  .auto-hero-v2 .lead,
  .contact-hero-v2 .lead { font-size: 18px; line-height: 1.5; }
  .header__inner { min-height: 68px; }
  .site-nav {
    inset: 76px 16px auto 16px;
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(23,61,50,.14);
  }
  .stoma-hero-rail { padding-bottom: 42px; }
  .stoma-hero-rail__grid { margin-top: 0; }
  .afterclick-card-grid--six,
  .afterclick-card-grid--five,
  .salon-stuck-grid,
  .auto-lens-grid,
  .salon-benefit-grid,
  .contact-brief-list {
    grid-template-columns: 1fr !important;
  }
  .direction-card,
  .feature-card,
  .stoma-hero-panel--focused,
  .afterclick-hero-panel,
  .stoma-stage-card,
  .stoma-price-card,
  .stoma-chat-mockup__body,
  .boundary-card,
  .afterclick-card-grid article,
  .afterclick-analytics-card,
  .afterclick-funnel-card,
  .afterclick-dialog-card,
  .afterclick-to-stoma__card,
  .salon-workbench,
  .auto-visual,
  .contact-visual-card,
  .request-form {
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .section { padding: 58px 0; }
  .hero,
  .hero--clean,
  .hero--system,
  .stoma-product-hero,
  .salon-hero-v2,
  .auto-hero-v2,
  .contact-hero-v2 {
    padding-top: 44px;
    padding-bottom: 56px;
  }
  h1,
  .hero--clean h1,
  .stoma-product-hero--focused h1,
  .afterclick-hero__content h1,
  .salon-hero-v2 h1,
  .auto-hero-v2 h1,
  .contact-hero-v2 h1 {
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1.04;
    letter-spacing: -.048em;
  }
  h2 { font-size: clamp(27px, 7.8vw, 34px); }
  .btn { min-height: 52px; }
  .hero__actions { gap: 10px; }
  .hero__proof span,
  .hero__proof--clean span,
  .contact-hero-v2__chips span {
    font-size: 13px;
  }
  .stoma-hero-panel--focused,
  .afterclick-hero-panel,
  .salon-workbench,
  .auto-visual,
  .contact-visual-card,
  .request-form {
    padding: 18px;
    border-radius: 24px;
  }
  .stoma-dialog-card--focused,
  .afterclick-path-card,
  .service-demo__body,
  .stoma-chat-mockup__body,
  .salon-chat-demo__body,
  .auto-scenario-card__body {
    padding: 16px;
  }
  .bubble { font-size: 14px; max-width: 96%; }
  .demo-actions span { flex: 1 1 100%; }
  .site-footer { padding: 36px 0; }
}


/* Step 20 — stronger diagnostic dramaturgy for /stoma-after-click/ */
.afterclick-hero-panel--scene {
  overflow: hidden;
  position: relative;
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(196,111,92,.16), transparent 30%),
    rgba(255,255,255,.88);
}
.afterclick-hero-panel--scene::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(23,61,50,.06);
  pointer-events: none;
}
.afterclick-ad-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: 22px;
  background: rgba(238,243,234,.78);
}
.afterclick-ad-card span {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.afterclick-ad-card strong {
  color: var(--color-green);
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -.02em;
}
.afterclick-path-card--scene {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 18px 54px rgba(23,61,50,.06);
}
.afterclick-site-question {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(238,243,234,.72), rgba(255,255,255,.72));
  border: 1px dashed rgba(23,61,50,.16);
}
.afterclick-site-question .bubble { max-width: 100%; }
.afterclick-site-question p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}
.afterclick-path-status--diagnostic {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.afterclick-path-status--diagnostic span {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px;
  background: rgba(196,111,92,.085);
  color: var(--color-muted);
}
.afterclick-path-status--diagnostic b {
  color: var(--color-green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.afterclick-hero-loss {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: var(--color-green);
  color: rgba(255,255,255,.74);
}
.afterclick-hero-loss strong { color: #fff; font-size: 16px; }
.afterclick-hero-loss span { font-size: 13px; line-height: 1.42; }
.afterclick-rail--compact {
  padding: 28px 0 52px;
}
.afterclick-diagnostic-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.afterclick-diagnostic-strip article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 40px rgba(23,61,50,.045);
}
.afterclick-diagnostic-strip article span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(196,111,92,.12);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
}
.afterclick-diagnostic-strip article strong {
  color: var(--color-green);
  font-size: 17px;
  line-height: 1.24;
}
.afterclick-diagnostic-strip article p {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}
.afterclick-analytics-card--expanded {
  display: grid;
  gap: 0;
}
.afterclick-analytics-label {
  margin-bottom: 10px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.afterclick-invisible-funnel {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(238,243,234,.76);
  border: 1px solid rgba(23,61,50,.08);
}
.afterclick-invisible-funnel div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.80);
}
.afterclick-invisible-funnel div span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-green);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}
.afterclick-invisible-funnel div strong {
  color: var(--color-green);
  font-size: 14px;
  line-height: 1.25;
}
.afterclick-analytics-card--expanded > p strong { color: var(--color-green); }
.afterclick-stuck-insight {
  display: grid;
  gap: 8px;
  margin: 22px auto 0;
  max-width: 760px;
  padding: 22px 26px;
  border-radius: 26px;
  background: var(--color-green);
  text-align: center;
  box-shadow: 0 18px 58px rgba(23,61,50,.12);
}
.afterclick-stuck-insight span {
  color: rgba(255,255,255,.68);
  font-size: 14px;
  font-weight: 720;
}
.afterclick-stuck-insight strong {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -.035em;
}
.afterclick-message-grid--voices span {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
}
.afterclick-message-grid--voices em {
  color: var(--color-accent);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.afterclick-solution-ui {
  display: grid;
  gap: 14px;
}
.afterclick-solution-ui__screen {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 64px rgba(23,61,50,.06);
}
.afterclick-solution-ui__screen .bubble { max-width: 94%; }
.afterclick-solution-ui__handoff {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: var(--color-green);
  color: rgba(255,255,255,.72);
}
.afterclick-solution-ui__handoff span {
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.afterclick-solution-ui__handoff strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.32;
  letter-spacing: -.02em;
}
.afterclick-solution-ui__caption {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(23,61,50,.10);
  background: rgba(238,243,234,.76);
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}
.afterclick-boundary-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.afterclick-boundary-list--clear article {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.09);
}
.afterclick-boundary-list--clear article:nth-child(2) {
  background: rgba(255,255,255,.14);
}
.afterclick-boundary-list--clear h3 {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 19px;
  line-height: 1;
}
.afterclick-boundary-list--clear article p {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 11px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-weight: 680;
  line-height: 1.35;
}
.afterclick-boundary-list--clear article p::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--color-accent);
}
.afterclick-boundary-list--clear article:nth-child(2) p::before {
  background: #DDEAD9;
}
.afterclick-safety-example {
  display: grid;
  grid-template-columns: .8fr .8fr 1.3fr;
  gap: 14px;
  margin-top: 28px;
}
.afterclick-safety-example div {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.afterclick-safety-example span {
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.afterclick-safety-example strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.42;
}
.afterclick-dialog-mockup {
  box-shadow: 0 24px 80px rgba(23,61,50,.09);
}
.afterclick-dialog-mockup .stoma-chat-mockup__body {
  gap: 12px;
}
.afterclick-admin-note {
  margin-top: 8px;
  border-color: rgba(23,61,50,.10);
  background: rgba(238,243,234,.86);
}
.afterclick-admin-note strong { font-size: 16px; }
.afterclick-admin-note span { color: var(--color-muted); }

/* Step 20 — small product-page differentiation */
.stoma-product-hero--focused:not(.afterclick-hero) .stoma-hero-panel--focused {
  background:
    radial-gradient(circle at 8% 8%, rgba(196,111,92,.13), transparent 28%),
    rgba(255,255,255,.88);
}

@media (max-width: 1040px) {
  .afterclick-diagnostic-strip,
  .afterclick-safety-example {
    grid-template-columns: 1fr;
  }
  .afterclick-boundary-list { grid-template-columns: 1fr; }
  .afterclick-path-status--diagnostic { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .afterclick-rail--compact { padding: 20px 0 38px; }
  .afterclick-diagnostic-strip article {
    grid-template-columns: 36px 1fr;
    padding: 16px;
    border-radius: 22px;
  }
  .afterclick-diagnostic-strip article span {
    width: 36px;
    height: 36px;
    border-radius: 14px;
  }
  .afterclick-hero-panel--scene { gap: 12px; }
  .afterclick-ad-card,
  .afterclick-hero-loss,
  .afterclick-solution-ui__screen,
  .afterclick-solution-ui__handoff,
  .afterclick-solution-ui__caption,
  .afterclick-boundary-list--clear article,
  .afterclick-safety-example div {
    border-radius: 20px;
  }
  .afterclick-invisible-funnel { padding: 10px; }
  .afterclick-stuck-insight {
    padding: 20px;
    border-radius: 22px;
    text-align: left;
  }
  .afterclick-message-grid--voices span { padding: 14px 16px; }
  .afterclick-safety__grid { gap: 30px; }
}
@media (max-width: 560px) {
  .afterclick-tabs { grid-template-columns: repeat(2, 1fr); }
  .afterclick-path-status--diagnostic span { min-height: auto; }
  .afterclick-solution-ui__screen { padding: 16px; }
  .afterclick-boundary-list--clear article { padding: 20px; }
  .afterclick-safety-example { margin-top: 20px; }
}

/* Step 21 — hero fit correction for /stoma-after-click/
   Problem from real desktop screenshot: diagnostic scene was too tall and the loss-card fell below the first viewport. */
@media (min-width: 1041px) {
  .afterclick-hero.stoma-product-hero {
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    padding-top: clamp(38px, 4.2vw, 58px) !important;
    padding-bottom: clamp(34px, 3.8vw, 54px) !important;
  }
  .afterclick-hero .stoma-product-hero__grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 460px);
    gap: clamp(44px, 5vw, 72px);
  }
  .afterclick-hero__content h1 {
    max-width: 720px;
    font-size: clamp(48px, 4.05vw, 58px) !important;
    line-height: .99 !important;
    letter-spacing: -.062em;
  }
  .afterclick-hero .lead {
    max-width: 610px;
    margin-top: 20px;
    font-size: clamp(18px, 1.35vw, 20px);
    line-height: 1.46;
  }
  .afterclick-hero__note {
    max-width: 590px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }
  .afterclick-hero .hero__actions {
    margin-top: 26px;
  }
  .afterclick-hero .hero__line {
    margin-top: 16px;
    max-width: 590px;
    font-size: 15px;
    line-height: 1.45;
  }
  .afterclick-hero-panel--scene {
    width: min(100%, 460px);
    gap: 10px;
    padding: 16px;
    border-radius: 28px;
  }
  .afterclick-hero-panel--scene::before {
    inset: 12px;
    border-radius: 24px;
  }
  .afterclick-hero-panel .stoma-hero-panel__top {
    margin-bottom: 2px;
  }
  .afterclick-hero-panel .stoma-hero-panel__top span {
    margin-bottom: 8px;
    font-size: 11px;
  }
  .afterclick-hero-panel .stoma-hero-panel__top strong {
    max-width: 360px;
    font-size: clamp(20px, 1.65vw, 24px);
    line-height: 1.18;
  }
  .afterclick-ad-card {
    gap: 6px;
    padding: 12px 14px;
    border-radius: 18px;
  }
  .afterclick-ad-card strong {
    font-size: 15px;
    line-height: 1.22;
  }
  .afterclick-path-card {
    padding: 14px;
    gap: 10px;
    border-radius: 20px;
  }
  .afterclick-path-card__top {
    font-size: 14px;
  }
  .afterclick-tabs {
    gap: 6px;
  }
  .afterclick-tabs span {
    min-height: 30px;
    font-size: 11px;
  }
  .afterclick-site-question {
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }
  .afterclick-site-question .bubble {
    padding: 12px 16px;
    font-size: 14px;
  }
  .afterclick-site-question p {
    font-size: 12px;
    line-height: 1.35;
  }
  .afterclick-path-status--diagnostic {
    gap: 7px;
  }
  .afterclick-path-status--diagnostic span {
    min-height: 48px;
    padding: 8px 9px;
    font-size: 12px;
  }
  .afterclick-path-status--diagnostic b {
    font-size: 11px;
  }
  .afterclick-hero-loss {
    gap: 4px;
    padding: 12px 14px;
    border-radius: 18px;
  }
  .afterclick-hero-loss strong {
    font-size: 15px;
  }
  .afterclick-hero-loss span {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (min-width: 1041px) and (max-height: 850px) {
  .afterclick-hero.stoma-product-hero {
    min-height: auto;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .afterclick-hero__content h1 {
    font-size: clamp(46px, 3.85vw, 54px) !important;
  }
  .afterclick-hero .lead {
    margin-top: 18px;
  }
  .afterclick-hero__note {
    margin-top: 12px;
  }
  .afterclick-hero .hero__actions {
    margin-top: 22px;
  }
  .afterclick-hero-panel--scene {
    width: min(100%, 440px);
    padding: 14px;
  }
}

/* Step 22 — /stoma-after-click/ hero composition reset.
   Goal: not just squeeze the old tall mockup, but replace it with a cleaner diagnostic scene
   that fits one desktop screen and does not feel like a vertical stack of nested cards. */
.afterclick-hero-panel--compact-map {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(196,111,92,.15), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
}
.afterclick-hero-panel--compact-map::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(23,61,50,.06);
  pointer-events: none;
}
.afterclick-compact-head,
.afterclick-mini-site,
.afterclick-journey,
.afterclick-outcome {
  position: relative;
  z-index: 1;
}
.afterclick-compact-head {
  display: grid;
  gap: 10px;
}
.afterclick-compact-head span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.afterclick-compact-head strong {
  max-width: 380px;
  color: var(--color-green);
  font-size: clamp(25px, 2.05vw, 32px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.afterclick-mini-site {
  padding: 18px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.48);
}
.afterclick-mini-site__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}
.afterclick-mini-site__nav span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  background: var(--color-soft);
  color: #65736D;
  font-size: 11px;
  font-weight: 790;
}
.afterclick-mini-site__question {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(23,61,50,.18);
  background: linear-gradient(180deg, rgba(238,243,234,.72), rgba(255,255,255,.76));
}
.afterclick-mini-site__question span {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.35;
}
.afterclick-mini-site__question strong {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 18px;
  background: var(--color-green);
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}
.afterclick-journey {
  display: grid;
  gap: 9px;
}
.afterclick-journey div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(23,61,50,.08);
  border-radius: 18px;
  background: rgba(238,243,234,.64);
}
.afterclick-journey span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(196,111,92,.12);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 850;
}
.afterclick-journey strong {
  color: var(--color-green);
  font-size: 14px;
  line-height: 1.25;
}
.afterclick-outcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.afterclick-outcome div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(196,111,92,.09);
}
.afterclick-outcome div:first-child {
  background: var(--color-green);
}
.afterclick-outcome span {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.afterclick-outcome div:first-child span,
.afterclick-outcome div:first-child strong {
  color: #fff;
}
.afterclick-outcome strong {
  color: var(--color-green);
  font-size: 14px;
  line-height: 1.25;
}

@media (min-width: 1041px) {
  .afterclick-hero.stoma-product-hero {
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    padding-top: clamp(34px, 3.7vw, 54px) !important;
    padding-bottom: clamp(34px, 3.7vw, 54px) !important;
  }
  .afterclick-hero .stoma-product-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 440px);
    gap: clamp(46px, 5.8vw, 86px);
    align-items: center;
  }
  .afterclick-hero__content h1 {
    max-width: 680px;
    font-size: clamp(46px, 3.82vw, 56px) !important;
    line-height: 1 !important;
    letter-spacing: -.064em;
  }
  .afterclick-hero .lead {
    max-width: 595px;
    margin-top: 19px;
    font-size: clamp(18px, 1.25vw, 20px);
    line-height: 1.48;
  }
  .afterclick-hero__note {
    max-width: 585px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.48;
  }
  .afterclick-hero .hero__actions {
    margin-top: 24px;
  }
  .afterclick-hero .hero__line {
    max-width: 580px;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.43;
  }
  .afterclick-hero-panel--compact-map {
    width: min(100%, 440px);
    padding: 22px;
    border-radius: 30px;
  }
}

@media (min-width: 1041px) and (max-height: 850px) {
  .afterclick-hero.stoma-product-hero {
    min-height: calc(100vh - 74px);
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .afterclick-hero__content h1 {
    font-size: clamp(44px, 3.55vw, 52px) !important;
  }
  .afterclick-hero .lead {
    margin-top: 16px;
  }
  .afterclick-hero .hero__actions {
    margin-top: 20px;
  }
  .afterclick-hero-panel--compact-map {
    width: min(100%, 420px);
    gap: 12px;
    padding: 18px;
  }
  .afterclick-compact-head {
    gap: 8px;
  }
  .afterclick-compact-head strong {
    font-size: clamp(22px, 1.9vw, 27px);
  }
  .afterclick-mini-site {
    padding: 14px;
    border-radius: 20px;
  }
  .afterclick-mini-site__question {
    margin-top: 11px;
    padding: 14px;
  }
  .afterclick-mini-site__question strong {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
  .afterclick-journey div {
    padding: 10px 12px;
    border-radius: 16px;
  }
  .afterclick-outcome div {
    padding: 12px;
    border-radius: 18px;
  }
}

@media (max-width: 1040px) {
  .afterclick-mini-site__question {
    grid-template-columns: 1fr;
  }
  .afterclick-mini-site__question strong {
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .afterclick-hero-panel--compact-map {
    gap: 12px;
  }
  .afterclick-compact-head strong {
    font-size: 25px;
  }
  .afterclick-mini-site__nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .afterclick-outcome {
    grid-template-columns: 1fr;
  }
}

/* Step 23 — clean /stoma-after-click/ hero mockup.
   Fix: remove excessive nested outlines/dashed lines and avoid text sitting next to line-heavy UI. */
.afterclick-hero-panel--compact-map::before {
  display: none;
}
.afterclick-hero-panel--compact-map {
  box-shadow: 0 24px 54px rgba(23,61,50,.10);
}
.afterclick-mini-site {
  border: 0 !important;
  background: rgba(238,243,234,.58) !important;
  box-shadow: none !important;
}
.afterclick-mini-site__nav span {
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 0 0 1px rgba(23,61,50,.04);
}
.afterclick-mini-site__question {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  align-items: start !important;
  margin-top: 12px !important;
  padding: 16px !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 14px 30px rgba(23,61,50,.08) !important;
}
.afterclick-mini-site__question strong {
  display: block !important;
  width: fit-content;
  min-height: auto !important;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  white-space: normal !important;
}
.afterclick-mini-site__question span {
  max-width: 310px;
  color: #65736D !important;
  font-size: 14px !important;
  line-height: 1.38 !important;
}

@media (min-width: 1041px) and (max-height: 850px) {
  .afterclick-mini-site__question {
    padding: 14px !important;
    gap: 8px !important;
  }
  .afterclick-mini-site__question strong {
    padding: 10px 14px !important;
    font-size: 15px !important;
  }
  .afterclick-mini-site__question span {
    font-size: 13px !important;
  }
}

/* step24: clearer stop-signals for negative states on /stoma-after-click/ */
:root {
  --color-stop: #D46A54;
  --color-stop-deep: #B84F3D;
  --color-stop-ink: #5E241D;
  --color-stop-soft: rgba(212,106,84,.12);
  --color-stop-soft-2: rgba(212,106,84,.18);
}

.afterclick-journey div.afterclick-journey__stop,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__risk,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__fail {
  position: relative;
  overflow: hidden;
  border-color: rgba(212,106,84,.38);
  background: linear-gradient(135deg, rgba(212,106,84,.14), rgba(255,255,255,.86));
  box-shadow: inset 4px 0 0 var(--color-stop);
}
.afterclick-journey div.afterclick-journey__stop::after,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__risk::after,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__fail::after {
  content: "";
  position: absolute;
  inset: auto 12px 10px 54px;
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--color-stop) 0 14px, transparent 14px 24px);
  opacity: .78;
}
.afterclick-journey div.afterclick-journey__stop span,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__risk span,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__fail span {
  background: var(--color-stop);
  color: #fff;
}
.afterclick-journey div.afterclick-journey__stop strong,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__risk strong,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__fail strong {
  color: var(--color-stop-ink);
}
.afterclick-journey em,
.afterclick-invisible-funnel em,
.afterclick-funnel-card div span,
.afterclick-safety-example em {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-style: normal;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.afterclick-journey em,
.afterclick-invisible-funnel em {
  color: var(--color-stop-deep);
  background: rgba(212,106,84,.13);
}
.afterclick-journey div.afterclick-journey__stop,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__risk,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__fail {
  grid-template-columns: 32px 1fr;
}
.afterclick-journey div.afterclick-journey__stop {
  grid-template-columns: 40px 1fr;
}
.afterclick-journey div.afterclick-journey__stop strong,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__risk strong,
.afterclick-invisible-funnel div.afterclick-invisible-funnel__fail strong {
  display: block;
}

.afterclick-funnel-card div.afterclick-funnel-card__risk,
.afterclick-funnel-card div.afterclick-funnel-card__fail {
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(212,106,84,.44), rgba(255,255,255,.10));
  box-shadow: inset 5px 0 0 var(--color-stop);
}
.afterclick-funnel-card div.afterclick-funnel-card__fail {
  background: linear-gradient(135deg, rgba(212,106,84,.62), rgba(255,255,255,.10));
}
.afterclick-funnel-card div.afterclick-funnel-card__risk strong,
.afterclick-funnel-card div.afterclick-funnel-card__fail strong {
  display: block;
  color: #fff;
}
.afterclick-funnel-card div.afterclick-funnel-card__risk span,
.afterclick-funnel-card div.afterclick-funnel-card__fail span {
  color: #FFE9E3;
  background: rgba(255,255,255,.12);
}
.afterclick-funnel-card div.afterclick-funnel-card__risk::before,
.afterclick-funnel-card div.afterclick-funnel-card__fail::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #FF745B 0 16px, transparent 16px 28px);
  opacity: .86;
}
.afterclick-funnel-card div.afterclick-funnel-card__risk,
.afterclick-funnel-card div.afterclick-funnel-card__fail {
  padding-bottom: 30px;
}

.afterclick-boundary-list--clear article.afterclick-boundary-list__danger {
  border-color: rgba(212,106,84,.40);
  background: linear-gradient(180deg, rgba(212,106,84,.18), rgba(255,255,255,.07));
  box-shadow: inset 5px 0 0 var(--color-stop);
}
.afterclick-boundary-list--clear article.afterclick-boundary-list__safe {
  border-color: rgba(221,234,217,.22);
  background: linear-gradient(180deg, rgba(221,234,217,.16), rgba(255,255,255,.10));
  box-shadow: inset 5px 0 0 rgba(221,234,217,.74);
}
.afterclick-boundary-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255,255,255,.60);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.afterclick-boundary-list--clear article.afterclick-boundary-list__danger h3 {
  background: rgba(212,106,84,.28);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(212,106,84,.28) inset;
}
.afterclick-boundary-list--clear article.afterclick-boundary-list__safe h3 {
  background: rgba(221,234,217,.18);
}
.afterclick-boundary-list--clear article.afterclick-boundary-list__danger p {
  border-top-color: rgba(255,255,255,.16);
  color: rgba(255,245,241,.94);
}
.afterclick-boundary-list--clear article.afterclick-boundary-list__danger p::before {
  width: 10px;
  height: 10px;
  margin-top: .46em;
  background: var(--color-stop);
  box-shadow: 0 0 0 4px rgba(212,106,84,.16);
}
.afterclick-boundary-list--clear article.afterclick-boundary-list__safe p::before {
  width: 9px;
  height: 9px;
  background: #E1EEDC;
  box-shadow: 0 0 0 4px rgba(221,234,217,.11);
}

.afterclick-safety-example div.afterclick-safety-example__wrong {
  position: relative;
  overflow: hidden;
  border-color: rgba(212,106,84,.42);
  background: linear-gradient(135deg, rgba(212,106,84,.22), rgba(255,255,255,.08));
  box-shadow: inset 5px 0 0 var(--color-stop);
}
.afterclick-safety-example div.afterclick-safety-example__wrong::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 14px;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #FF745B 0 16px, transparent 16px 28px);
  opacity: .86;
}
.afterclick-safety-example__wrong span {
  color: #FFD9D0;
}
.afterclick-safety-example__wrong strong {
  color: #fff;
}
.afterclick-safety-example__wrong em {
  margin-top: 2px;
  margin-bottom: 10px;
  color: #FFE5DD;
  background: rgba(212,106,84,.30);
}
.afterclick-safety-example div.afterclick-safety-example__right {
  border-color: rgba(221,234,217,.20);
  background: rgba(221,234,217,.13);
  box-shadow: inset 5px 0 0 rgba(221,234,217,.72);
}
.afterclick-safety-example div.afterclick-safety-example__question {
  background: rgba(255,255,255,.08);
}

@media (max-width: 760px) {
  .afterclick-journey div.afterclick-journey__stop::after,
  .afterclick-invisible-funnel div.afterclick-invisible-funnel__risk::after,
  .afterclick-invisible-funnel div.afterclick-invisible-funnel__fail::after {
    left: 52px;
    bottom: 8px;
  }
  .afterclick-funnel-card div.afterclick-funnel-card__risk,
  .afterclick-funnel-card div.afterclick-funnel-card__fail {
    padding-bottom: 28px;
  }
  .afterclick-boundary-label { margin-bottom: 10px; }
}

/* Step 25 — align /stoma product page with /stoma-after-click diagnostic visual system */
.stoma-solution-hero.stoma-product-hero {
  background:
    radial-gradient(circle at 82% 8%, rgba(196,111,92,.105), transparent 30%),
    radial-gradient(circle at 0% 0%, rgba(35,84,69,.06), transparent 30%),
    linear-gradient(180deg, rgba(238,243,234,.64), rgba(246,247,241,1)) !important;
}
.stoma-solution-hero .stoma-product-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 480px);
  align-items: center;
  gap: clamp(48px, 6vw, 86px);
}
.stoma-solution-panel {
  width: min(100%, 480px);
  justify-self: end;
  padding: 22px;
}
.stoma-solution-panel .afterclick-compact-head strong {
  max-width: 420px;
}
.stoma-solution-screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(238,243,234,.58);
}
.stoma-solution-message {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 30px rgba(23,61,50,.07);
}
.stoma-solution-message > span {
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.stoma-solution-message strong {
  color: var(--color-green);
  font-size: 17px;
  line-height: 1.28;
  letter-spacing: -.02em;
}
.stoma-solution-message--question {
  max-width: 84%;
  border-radius: 22px 22px 22px 8px;
}
.stoma-solution-message--answer {
  margin-left: auto;
  max-width: 92%;
  border-radius: 22px 22px 8px 22px;
  background: rgba(23,61,50,.97);
  color: #fff;
}
.stoma-solution-message--answer > span { color: rgba(255,255,255,.58); }
.stoma-solution-message--answer strong { color: #fff; }
.stoma-solution-message--answer .demo-actions { margin-top: 2px; }
.stoma-solution-message--answer .demo-actions span {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.16);
}
.stoma-solution-journey div {
  background: rgba(255,255,255,.78);
}
.stoma-solution-journey div span {
  background: var(--color-green);
  color: #fff;
}
.stoma-solution-outcome div:last-child {
  background: var(--color-green);
  color: rgba(255,255,255,.68);
}
.stoma-solution-outcome div:last-child strong { color: #fff; }

.stoma-hero-rail--product {
  background: linear-gradient(180deg, rgba(246,247,241,1), rgba(255,255,255,.25));
}
.stoma-product-strip article {
  background: rgba(255,255,255,.88);
}
.stoma-product-strip article span {
  background: rgba(196,111,92,.12);
  color: var(--color-accent);
}

.stoma-why--aligned .stoma-split-card,
.stoma-exclusions--aligned .stoma-in-out {
  border: 1px solid rgba(23,61,50,.08);
  border-radius: 34px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-soft);
}
.stoma-why--aligned .stoma-split-card article,
.stoma-exclusions--aligned .stoma-in-out article {
  border-radius: 26px;
  box-shadow: none;
}
.stoma-why--aligned .stoma-split-card article:nth-child(2) {
  background: rgba(238,243,234,.72);
}

.stoma-map-section--product .stoma-system-map--six {
  padding: 12px;
  border: 1px solid rgba(23,61,50,.08);
  border-radius: 34px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}
.stoma-map-section--product .stoma-system-map--six article {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(23,61,50,.06);
  box-shadow: none;
}
.stoma-map-section--product .stoma-system-map--six article:nth-child(4) {
  background: linear-gradient(180deg, rgba(212,106,84,.10), rgba(255,255,255,.84));
  box-shadow: inset 4px 0 0 rgba(212,106,84,.72);
}
.stoma-map-section--product .stoma-system-map--six article:nth-child(4) span {
  background: var(--color-stop-soft);
  color: var(--color-stop-deep);
}
.stoma-map-section--product .stoma-system-map--six article:nth-child(5),
.stoma-map-section--product .stoma-system-map--six article:nth-child(6) {
  background: linear-gradient(180deg, rgba(238,243,234,.66), rgba(255,255,255,.84));
}

.stoma-demo-section--product .stoma-chat-mockup--product {
  box-shadow: 0 24px 80px rgba(23,61,50,.09);
}
.stoma-demo-section--product .stoma-chat-mockup__body {
  gap: 12px;
}
.stoma-demo-section--product .admin-note {
  border-color: rgba(23,61,50,.10);
  background: rgba(238,243,234,.86);
}
.stoma-demo-section--product .admin-note strong { font-size: 16px; }
.stoma-demo-section--product .admin-note span { color: var(--color-muted); }

.stoma-product-safety .afterclick-boundary-list--clear article {
  min-height: 100%;
}
.stoma-product-safety .afterclick-safety-example {
  margin-top: 28px;
}

.stoma-benefits--aligned .stoma-benefit-grid article,
.stoma-details .stoma-detail-grid article {
  border: 1px solid rgba(23,61,50,.08);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 36px rgba(23,61,50,.045);
}
.stoma-benefits--aligned .stoma-benefit-grid span {
  background: rgba(196,111,92,.12);
}

.stoma-stage--aligned .stoma-stage-card,
.stoma-stage--aligned .stoma-price-card {
  border: 1px solid rgba(23,61,50,.08);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}
.stoma-stage--aligned .stage-formula span {
  border-color: rgba(23,61,50,.08);
  background: rgba(238,243,234,.72);
}
.stoma-stage--aligned .stoma-price-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(196,111,92,.16), transparent 34%),
    var(--color-green);
  color: rgba(255,255,255,.74);
}
.stoma-stage--aligned .stoma-price-card > span { color: rgba(255,255,255,.62); }
.stoma-stage--aligned .stoma-price-card strong { color: #fff; }
.stoma-stage--aligned .stoma-price-card p { color: rgba(255,255,255,.72); }
.stoma-stage--aligned .stoma-price-card .btn {
  background: #fff;
  color: var(--color-green);
}

.stoma-exclusions--aligned .stoma-in-out article:last-child {
  position: relative;
  overflow: hidden;
  border-color: rgba(212,106,84,.30);
  background: linear-gradient(180deg, rgba(212,106,84,.10), rgba(255,255,255,.80));
  box-shadow: inset 5px 0 0 var(--color-stop);
}
.stoma-exclusions--aligned .stoma-in-out article:last-child h3 {
  color: var(--color-stop-ink);
}
.stoma-exclusions--aligned .stoma-in-out article:last-child p::before {
  background: var(--color-stop);
  box-shadow: 0 0 0 4px rgba(212,106,84,.11);
}

.stoma-demo-cases--aligned .stoma-demo-chip-grid span {
  background: rgba(255,255,255,.88);
  border-color: rgba(23,61,50,.08);
  box-shadow: 0 10px 32px rgba(23,61,50,.04);
}
.stoma-demo-cases--aligned .stoma-demo-chip-grid span:nth-child(6) {
  background: var(--color-stop-soft);
  color: var(--color-stop-ink);
  border-color: rgba(212,106,84,.24);
}
.request--stoma-aligned .request__grid {
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1041px) {
  .stoma-solution-hero.stoma-product-hero {
    padding-top: clamp(42px, 4.5vw, 66px) !important;
    padding-bottom: clamp(54px, 5.4vw, 78px) !important;
  }
  .stoma-solution-hero h1 {
    font-size: clamp(46px, 4.05vw, 60px) !important;
    line-height: .99 !important;
  }
  .stoma-solution-hero .lead {
    max-width: 630px;
    margin-top: 20px;
    font-size: clamp(18px, 1.35vw, 21px);
    line-height: 1.46;
  }
  .stoma-solution-hero .hero__actions {
    margin-top: 26px;
  }
}

@media (max-width: 1040px) {
  .stoma-solution-hero .stoma-product-hero__grid {
    grid-template-columns: 1fr;
  }
  .stoma-solution-panel {
    justify-self: start;
    max-width: 620px;
  }
  .stoma-product-safety .afterclick-safety__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .stoma-solution-panel {
    padding: 18px;
    border-radius: 26px;
  }
  .stoma-solution-screen,
  .stoma-solution-message {
    border-radius: 20px;
  }
  .stoma-solution-message--question,
  .stoma-solution-message--answer {
    max-width: 100%;
  }
  .stoma-product-strip article {
    grid-template-columns: 36px 1fr;
    padding: 16px;
    border-radius: 22px;
  }
  .stoma-product-strip article span {
    width: 36px;
    height: 36px;
    border-radius: 14px;
  }
}

/* Step 25.1 — keep /stoma hero scene compact enough for first desktop screen */
.stoma-solution-panel {
  gap: 12px;
  padding: 18px;
}
.stoma-solution-screen {
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
}
.stoma-solution-message {
  gap: 6px;
  padding: 13px 14px;
  border-radius: 19px;
}
.stoma-solution-message strong {
  font-size: 15px;
  line-height: 1.24;
}
.stoma-solution-message--answer .demo-actions span {
  min-height: 32px;
  padding: 0 12px;
  font-size: 12px;
}
.stoma-solution-journey {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.stoma-solution-journey div {
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 10px;
  border-radius: 17px;
  min-height: 82px;
  align-content: start;
}
.stoma-solution-journey div span {
  width: 30px;
  height: 30px;
}
.stoma-solution-journey div strong {
  font-size: 12px;
  line-height: 1.2;
}
.stoma-solution-outcome {
  gap: 8px;
}
.stoma-solution-outcome div {
  padding: 12px;
  border-radius: 18px;
}
.stoma-solution-outcome strong {
  font-size: 14px;
  line-height: 1.18;
}
@media (min-width: 1041px) {
  .stoma-solution-panel .afterclick-compact-head {
    gap: 8px;
  }
  .stoma-solution-panel .afterclick-compact-head strong {
    font-size: clamp(23px, 1.9vw, 29px);
  }
}
@media (max-width: 560px) {
  .stoma-solution-journey {
    grid-template-columns: 1fr;
  }
  .stoma-solution-journey div {
    grid-template-columns: 32px 1fr;
    min-height: auto;
  }
}

/* Step 26 — /stoma + /stoma-after-click composition cleanup */
.stoma-why--clean .stoma-why__grid {
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: center;
}
.stoma-why--clean .stoma-why-copy h2 {
  max-width: 660px;
  font-size: clamp(38px, 4.1vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.stoma-why--clean .stoma-why-copy > p {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.58;
}
.stoma-why-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  max-width: 520px;
}
.stoma-why-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(23,61,50,.08);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 780;
  box-shadow: 0 10px 26px rgba(23,61,50,.04);
}
.stoma-why-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-accent);
}
.stoma-split-card--clean {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  overflow: hidden;
}
.stoma-split-card--clean::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--color-green);
  box-shadow: 0 12px 34px rgba(23,61,50,.18);
  z-index: 2;
}
.stoma-split-card--clean::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  z-index: 3;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}
.stoma-split-card--clean article {
  min-height: 420px;
  padding: clamp(24px, 2.2vw, 34px);
  background: rgba(255,255,255,.88);
}
.stoma-split-card--clean .stoma-split-card__patient {
  background: linear-gradient(180deg, rgba(238,243,234,.82), rgba(255,255,255,.72));
  box-shadow: inset 5px 0 0 rgba(196,111,92,.58);
}
.split-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.stoma-split-card--clean h3 {
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.stoma-split-card--clean p {
  padding: 13px 0;
  font-size: 17px;
}
.stoma-split-card__insight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(23,61,50,.92);
  color: rgba(255,255,255,.76);
}
.stoma-split-card__insight span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(212,106,84,.26);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.stoma-split-card__insight strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.stoma-stage--clean .stoma-stage__grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(22px, 2.7vw, 34px);
  align-items: stretch;
}
.stoma-stage--clean .stoma-stage-card {
  padding: clamp(28px, 3.2vw, 46px);
}
.stoma-stage-card__intro {
  display: grid;
  gap: 0;
  max-width: 760px;
}
.stoma-stage-card__intro h2 {
  max-width: 680px;
  text-wrap: balance;
}
.stoma-stage-card__intro p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 660px;
  color: var(--color-muted);
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.58;
}
.stage-components {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.stage-components article {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(23,61,50,.08);
  background: rgba(238,243,234,.72);
  box-shadow: 0 12px 30px rgba(23,61,50,.035);
}
.stage-components article span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(196,111,92,.14);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
}
.stage-components article h3 {
  font-size: 19px;
  line-height: 1.2;
  margin: 4px 0 0;
}
.stage-components article p {
  color: var(--color-muted);
  font-size: 14.5px;
  line-height: 1.48;
}
.stage-components__wide {
  grid-column: 1 / -1;
  min-height: auto !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 16px;
  background: rgba(255,255,255,.84) !important;
}
.stage-components__wide p {
  grid-column: 2;
  max-width: 680px;
}
.stoma-price-card--clean {
  min-height: auto;
  padding: clamp(26px, 2.7vw, 36px);
  justify-content: space-between;
}
.stoma-price-card--clean strong {
  font-size: clamp(54px, 5.4vw, 76px);
  line-height: .92;
  margin-top: 20px;
}
.stoma-price-card--clean p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.55;
}
.stoma-price-card--clean .btn {
  margin-top: auto;
}
.stoma-details .section-head--center h2 {
  max-width: 760px;
}

.afterclick-to-stoma--clean .afterclick-to-stoma__card {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .86fr);
  grid-template-areas:
    "copy mini"
    "actions mini";
  gap: 24px 34px;
  align-items: center;
  padding: clamp(28px, 3.2vw, 46px);
}
.afterclick-to-stoma__copy { grid-area: copy; }
.afterclick-to-stoma--clean .afterclick-to-stoma__actions { grid-area: actions; }
.afterclick-to-stoma__mini {
  grid-area: mini;
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(23,61,50,.08);
  background: rgba(238,243,234,.72);
}
.afterclick-to-stoma__mini article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(23,61,50,.06);
}
.afterclick-to-stoma__mini span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--color-green);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}
.afterclick-to-stoma__mini strong {
  color: var(--color-green);
  font-size: 16px;
}

.site-footer--clean {
  padding: 34px 0 30px;
  background: linear-gradient(180deg, #173D32, #102C25);
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer--clean .footer__grid {
  grid-template-columns: minmax(240px, 1.1fr) minmax(180px, .7fr) minmax(260px, .9fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
}
.footer__brand-block p:not(.footer__brand) {
  max-width: 280px;
  color: rgba(255,255,255,.64);
  font-size: 16px;
  line-height: 1.45;
}
.site-footer--clean .footer__brand {
  margin-bottom: 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}
.site-footer--clean .footer__nav,
.site-footer--clean .footer__contact {
  gap: 9px;
  font-size: 15px;
}
.site-footer--clean .footer__nav > span,
.site-footer--clean .footer__contact > span:first-child {
  margin-bottom: 2px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-footer--clean .footer__nav a,
.site-footer--clean .footer__contact a {
  color: rgba(255,255,255,.92);
}
.site-footer--clean .footer__contact span:not(:first-child) {
  color: rgba(255,255,255,.58);
}

@media (max-width: 1040px) {
  .stoma-why--clean .stoma-why__grid,
  .stoma-stage--clean .stoma-stage__grid,
  .afterclick-to-stoma--clean .afterclick-to-stoma__card {
    grid-template-columns: 1fr;
  }
  .afterclick-to-stoma--clean .afterclick-to-stoma__card {
    grid-template-areas:
      "copy"
      "mini"
      "actions";
  }
  .stoma-split-card--clean article { min-height: auto; }
  .site-footer--clean .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand-block { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .stoma-why--clean .stoma-why-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .stoma-why-points span {
    width: 100%;
    border-radius: 18px;
  }
  .stoma-split-card--clean {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .stoma-split-card--clean::before,
  .stoma-split-card--clean::after {
    display: none;
  }
  .stoma-split-card__insight {
    grid-template-columns: 1fr;
  }
  .stage-components {
    grid-template-columns: 1fr;
  }
  .stage-components__wide {
    grid-template-columns: 1fr;
  }
  .stage-components__wide p {
    grid-column: auto;
  }
  .afterclick-to-stoma--clean .afterclick-to-stoma__card {
    padding: 22px;
    border-radius: 28px;
  }
  .afterclick-to-stoma__mini article {
    grid-template-columns: 36px 1fr;
  }
  .site-footer--clean {
    padding: 30px 0 28px;
  }
  .site-footer--clean .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}


/* Step 27 — /stoma composition polish */
.stoma-why--clean .stoma-why__grid {
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 4.4vw, 64px);
  align-items: start;
}
.stoma-why--clean .stoma-why-copy h2 {
  max-width: 520px;
  font-size: clamp(34px, 3.35vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.stoma-why--clean .stoma-why-copy > p {
  max-width: 500px;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.55;
}
.stoma-why-points {
  max-width: 460px;
}
.stoma-split-card--clean article {
  min-height: 380px;
}
.stoma-split-card--clean h3 {
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.08;
}
.stoma-split-card--clean p {
  padding: 12px 0;
  font-size: 16px;
}
.stoma-stage--clean .stoma-stage__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 336px);
  gap: clamp(20px, 2.4vw, 30px);
  align-items: start;
}
.stoma-stage-card__intro h2 {
  max-width: 620px;
  font-size: clamp(40px, 3.65vw, 58px);
  line-height: 1.02;
}
.stoma-stage-card__intro p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.55;
}
.stage-components {
  margin-top: 26px;
  gap: 12px;
}
.stage-components article {
  min-height: 144px;
}
.stage-components article p {
  font-size: 14px;
  line-height: 1.5;
}
.stoma-price-card--clean {
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 30px 28px;
  min-height: auto;
  border-radius: 34px;
}
.stoma-price-card--clean > span {
  margin: 0;
}
.stoma-price-card--clean strong {
  font-size: clamp(56px, 4.7vw, 70px);
  line-height: .9;
  margin-top: 2px;
}
.stoma-price-card--clean p {
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.52;
}
.stoma-price-points {
  display: grid;
  gap: 8px;
  margin: 2px 0 2px;
  padding: 0;
  list-style: none;
}
.stoma-price-points li {
  position: relative;
  padding-left: 16px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.42;
}
.stoma-price-points li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
}
.stoma-price-card--clean .btn {
  margin-top: 8px;
}
.site-footer--clean {
  padding: 28px 0 26px;
}
.site-footer--clean .footer__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(170px, .72fr) minmax(220px, .86fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}
.site-footer--clean .footer__brand {
  margin-bottom: 6px;
}
.footer__brand-block p:not(.footer__brand) {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.46;
}
.site-footer--clean .footer__nav,
.site-footer--clean .footer__contact {
  gap: 7px;
  font-size: 15px;
}
.site-footer--clean .footer__nav a,
.site-footer--clean .footer__contact a,
.site-footer--clean .footer__contact span:not(:first-child) {
  line-height: 1.38;
}
.request--stoma-aligned {
  padding-bottom: clamp(54px, 5vw, 76px);
}
@media (max-width: 1040px) {
  .stoma-why--clean .stoma-why__grid,
  .stoma-stage--clean .stoma-stage__grid {
    grid-template-columns: 1fr;
  }
  .stoma-price-card--clean {
    max-width: 420px;
  }
  .site-footer--clean .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .stoma-why--clean .stoma-why-copy h2,
  .stoma-stage-card__intro h2 {
    font-size: clamp(34px, 9.2vw, 44px);
  }
  .stoma-price-card--clean {
    max-width: none;
    padding: 24px 22px;
  }
  .site-footer--clean {
    padding: 24px 0 24px;
  }
  .site-footer--clean .footer__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* Step 28 — sync /stoma mechanism block with /stoma-after-click */
.stoma-why--synced {
  background: var(--color-surface) !important;
}
.stoma-why--synced .stoma-why-synced__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 7vw, 84px);
  align-items: start;
}
.stoma-why--synced .section-head h2 {
  max-width: 640px;
  font-size: clamp(44px, 4.4vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.stoma-why--synced .section-head p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.62;
}
.stoma-why--synced .stoma-perspective {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stoma-why--synced .stoma-perspective article {
  min-height: auto;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  box-shadow: none;
}
.stoma-why--synced .stoma-perspective article:nth-child(2) {
  background: var(--color-soft);
}
.stoma-why--synced .stoma-perspective h3 {
  margin-bottom: 18px;
  color: var(--color-green);
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.stoma-why--synced .stoma-perspective p {
  padding: 10px 0;
  border-bottom: 1px solid rgba(23,61,50,.08);
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 1040px) {
  .stoma-why--synced .stoma-why-synced__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .stoma-why--synced .section-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .stoma-why--synced .stoma-perspective {
    grid-template-columns: 1fr;
  }
  .stoma-why--synced .stoma-perspective article {
    padding: 24px;
    border-radius: 24px;
  }
}


/* Step 29 — unified component system across pages
   Purpose: remove page-by-page drift caused by earlier local overrides. */

/* Shared section rhythm */
.section {
  padding-top: clamp(76px, 7.2vw, 112px);
  padding-bottom: clamp(76px, 7.2vw, 112px);
}
.section-head h2 {
  font-size: clamp(40px, 4.15vw, 66px);
  line-height: 1.035;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.section-head p:not(.eyebrow) {
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.58;
  color: var(--color-muted);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 860;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* One identical mechanism block for /stoma and /stoma-after-click */
.mechanism-block {
  background: var(--color-surface) !important;
}
.mechanism-block .afterclick-split__grid,
.mechanism-block .stoma-why-synced__grid {
  display: grid !important;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(42px, 7vw, 84px) !important;
  align-items: center !important;
}
.mechanism-block .section-head h2 {
  max-width: 640px !important;
  font-size: clamp(48px, 4.25vw, 68px) !important;
  line-height: 1.025 !important;
  letter-spacing: -0.058em !important;
}
.mechanism-block .section-head p:not(.eyebrow) {
  max-width: 610px !important;
  margin-top: 24px !important;
  font-size: clamp(17px, 1.22vw, 20px) !important;
  line-height: 1.62 !important;
}
.mechanism-block .afterclick-perspective,
.mechanism-block .stoma-perspective {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}
.mechanism-block .afterclick-perspective article,
.mechanism-block .stoma-perspective article {
  min-height: 360px !important;
  padding: clamp(26px, 2.2vw, 34px) !important;
  border-radius: 30px !important;
  border: 1px solid var(--color-line) !important;
  background: var(--color-surface) !important;
  box-shadow: none !important;
}
.mechanism-block .afterclick-perspective article:nth-child(2),
.mechanism-block .stoma-perspective article:nth-child(2) {
  background: var(--color-soft) !important;
}
.mechanism-block .afterclick-perspective h3,
.mechanism-block .stoma-perspective h3 {
  margin: 0 0 22px !important;
  color: var(--color-green) !important;
  font-size: clamp(28px, 2vw, 34px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}
.mechanism-block .afterclick-perspective p,
.mechanism-block .stoma-perspective p {
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(23,61,50,.08) !important;
  color: var(--color-muted) !important;
  font-size: 17px !important;
  line-height: 1.42 !important;
  font-weight: 520 !important;
}

/* Cards: same physical language across product and diagnostic pages */
.afterclick-card-grid article,
.stoma-benefit-grid article,
.stage-components article,
.stoma-detail-grid article,
.stoma-demo-chip-grid span,
.afterclick-message-grid span {
  border-color: var(--color-line);
  box-shadow: 0 12px 36px rgba(23,61,50,.045);
}
.afterclick-card-grid article h3,
.stoma-benefit-grid article h3,
.stage-components article h3,
.stoma-detail-grid article h3 {
  color: var(--color-green);
  letter-spacing: -0.035em;
}

/* Price card: compact, not a tower */
.stoma-stage--clean .stoma-stage__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 336px) !important;
  align-items: start !important;
}
.stoma-price-card--clean {
  align-self: start !important;
  min-height: auto !important;
  padding: 30px 28px !important;
  gap: 14px !important;
}
.stoma-price-card--clean strong {
  font-size: clamp(56px, 4.7vw, 70px) !important;
  line-height: .9 !important;
  margin-top: 2px !important;
}
.stoma-price-card--clean p {
  margin-top: 2px !important;
  font-size: 16px !important;
  line-height: 1.52 !important;
}
.stoma-price-card--clean .btn {
  margin-top: 8px !important;
}

/* Footer: one compact footer system */
.site-footer--clean {
  padding: 28px 0 26px !important;
  background: linear-gradient(180deg, #173D32, #102C25) !important;
}
.site-footer--clean .footer__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(170px, .72fr) minmax(220px, .86fr) !important;
  gap: clamp(22px, 4vw, 56px) !important;
  align-items: start !important;
}
.site-footer--clean .footer__brand {
  margin-bottom: 6px !important;
  font-size: 19px !important;
  line-height: 1.2 !important;
}
.footer__brand-block p:not(.footer__brand) {
  max-width: 320px !important;
  font-size: 15px !important;
  line-height: 1.46 !important;
}
.site-footer--clean .footer__nav,
.site-footer--clean .footer__contact {
  gap: 7px !important;
  font-size: 15px !important;
}
.site-footer--clean .footer__nav a,
.site-footer--clean .footer__contact a,
.site-footer--clean .footer__contact span:not(:first-child) {
  line-height: 1.38 !important;
}

@media (max-width: 1040px) {
  .mechanism-block .afterclick-split__grid,
  .mechanism-block .stoma-why-synced__grid,
  .stoma-stage--clean .stoma-stage__grid {
    grid-template-columns: 1fr !important;
  }
  .site-footer--clean .footer__grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 760px) {
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .mechanism-block .section-head h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }
  .mechanism-block .afterclick-perspective,
  .mechanism-block .stoma-perspective {
    grid-template-columns: 1fr !important;
  }
  .mechanism-block .afterclick-perspective article,
  .mechanism-block .stoma-perspective article {
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }
  .site-footer--clean .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* Step 30 — UX/UI audit implementation
   Goal: make step29 feel like one mature B2B interface, not a set of related landing pages. */

:root {
  --ui-section-y: clamp(72px, 6.5vw, 104px);
  --ui-section-y-tight: clamp(54px, 5vw, 78px);
  --ui-gap-xl: clamp(40px, 6vw, 78px);
  --ui-gap-lg: clamp(26px, 4vw, 48px);
  --ui-card-radius: 28px;
  --ui-panel-radius: 36px;
  --ui-card-shadow: 0 14px 42px rgba(23, 61, 50, .055);
  --ui-panel-shadow: 0 26px 80px rgba(23, 61, 50, .09);
  --ui-warning: #B96A56;
  --ui-warning-soft: #F6E9E3;
}

.site-page {
  background: var(--color-bg);
}

.site-page .section {
  padding-top: var(--ui-section-y) !important;
  padding-bottom: var(--ui-section-y) !important;
}

.site-page .section + .section {
  border-top: 1px solid rgba(23, 61, 50, .045);
}

.site-page .section-head {
  max-width: 820px;
}

.site-page .section-head--center {
  margin-inline: auto;
  text-align: center;
}

.site-page .section-head--center p:not(.eyebrow),
.site-page .section-head--center h2 {
  margin-inline: auto;
}

.site-page :is(.section-head h2, .mechanism-block .section-head h2) {
  max-width: 760px !important;
  font-size: clamp(34px, 3.45vw, 54px) !important;
  line-height: 1.07 !important;
  letter-spacing: -0.048em !important;
  text-wrap: balance;
}

.site-page .section-head p:not(.eyebrow),
.site-page .mechanism-block .section-head p:not(.eyebrow) {
  max-width: 640px !important;
  font-size: clamp(16px, 1.16vw, 19px) !important;
  line-height: 1.62 !important;
}

.site-page .eyebrow {
  margin-bottom: 16px !important;
  letter-spacing: .14em !important;
  font-size: 12px !important;
  font-weight: 840 !important;
}

.site-page :is(.hero, .stoma-product-hero, .service-hero, .auto-hero-v2, .contact-hero-v2, .legal-hero) {
  padding-top: clamp(76px, 6.2vw, 104px) !important;
  padding-bottom: clamp(70px, 6.8vw, 108px) !important;
}

.site-page :is(.hero__grid--clean, .stoma-product-hero__grid, .service-hero__grid, .salon-hero-v2__grid, .auto-hero-v2__grid, .contact-hero-v2__grid) {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .76fr) !important;
  gap: var(--ui-gap-xl) !important;
  align-items: center !important;
}

.site-page :is(.hero__content, .stoma-product-hero__content, .service-hero__content, .salon-hero-v2__content, .auto-hero-v2__content, .contact-hero-v2 .section-head) {
  max-width: 760px !important;
}

.site-page :is(.hero h1, .stoma-product-hero h1, .service-hero h1, .auto-hero-v2 h1, .contact-hero-v2 h1, .legal-hero h1) {
  max-width: 820px !important;
  font-size: clamp(42px, 4.9vw, 68px) !important;
  line-height: 1.035 !important;
  letter-spacing: -0.058em !important;
  text-wrap: balance;
}

.site-page :is(.lead, .stoma-product-hero .lead, .service-hero .lead, .auto-hero-v2 .lead, .contact-hero-v2 .lead, .legal-hero .lead) {
  max-width: 680px !important;
  margin-top: 24px !important;
  font-size: clamp(18px, 1.55vw, 22px) !important;
  line-height: 1.48 !important;
  color: #34423C !important;
}

.site-page .hero__actions {
  margin-top: 30px !important;
  gap: 12px !important;
}

.site-page .hero__line {
  max-width: 620px !important;
  margin-top: 22px !important;
  color: var(--color-muted) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.site-page .btn {
  min-height: 50px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-weight: 760 !important;
}

.site-page :is(.hero-visual--clean, .stoma-hero-panel, .salon-workbench, .auto-visual, .contact-visual-card) {
  border-radius: var(--ui-panel-radius) !important;
  border: 1px solid rgba(23, 61, 50, .1) !important;
  box-shadow: var(--ui-panel-shadow) !important;
  overflow: hidden;
}

.site-page :is(.hero-visual--clean, .stoma-hero-panel, .salon-workbench, .auto-visual) {
  min-height: clamp(420px, 40vw, 560px) !important;
}

.site-page :is(.diagnostic-board, .system-map, .directions__grid, .start-timeline, .principles__grid, .about-card, .request-card, .afterclick-analysis, .afterclick-card-grid, .afterclick-perspective, .afterclick-message-grid, .afterclick-funnel-card, .afterclick-direction-grid, .afterclick-solution-flow, .stoma-boundary-grid, .afterclick-demo-card, .afterclick-to-stoma-card, .stoma-map, .stoma-demo-card, .stoma-benefit-grid, .stoma-stage-card, .stage-components, .stoma-detail-grid, .stoma-exclusion-grid, .stoma-ladder__grid, .stoma-materials__grid, .stoma-demo-chip-grid, .salon-world__compare, .salon-stuck__grid, .salon-route-card, .salon-stage-card, .salon-example-card, .salon-benefit-grid, .start-materials__grid, .auto-breakpoints, .auto-lens-board, .auto-path-card, .auto-service-grid, .auto-scenario-card, .auto-stage-card, .auto-fit-grid, .contact-brief-list, .contact-process-v2__grid, .contact-message-card) {
  gap: clamp(14px, 2vw, 22px) !important;
}

.site-page :is(.diagnostic-board__grid article, .system-map__item, .direction-card, .principles article, .afterclick-card-grid article, .afterclick-perspective article, .afterclick-message-grid span, .afterclick-funnel-card, .afterclick-direction-grid article, .afterclick-solution-flow, .stoma-boundary-grid article, .afterclick-to-stoma-card, .stoma-map__steps article, .stoma-benefit-grid article, .stage-components article, .stoma-detail-grid article, .stoma-exclusion-grid article, .stoma-ladder__grid article, .stoma-materials__grid article, .stoma-demo-chip-grid span, .salon-world__compare article, .salon-stuck__grid article, .salon-route-card, .salon-stage-card, .salon-benefit-grid article, .start-materials__grid article, .auto-breakpoints article, .auto-lens-board article, .auto-service-grid article, .auto-fit-grid article, .contact-brief-list article, .contact-process-v2__grid article) {
  border-radius: var(--ui-card-radius) !important;
  border: 1px solid rgba(23, 61, 50, .095) !important;
  box-shadow: var(--ui-card-shadow) !important;
}

.site-page :is(.diagnostic-board__grid article h3, .system-map__item h3, .direction-card h3, .afterclick-card-grid article h3, .afterclick-direction-grid article h3, .stoma-benefit-grid article h3, .stage-components article h3, .stoma-detail-grid article h3, .salon-stuck__grid article h3, .auto-breakpoints article h3, .auto-service-grid article h3, .contact-brief-list article h3) {
  font-size: clamp(20px, 1.55vw, 25px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.036em !important;
}

.site-page :is(.diagnostic-board__grid article p, .system-map__item p, .direction-card p, .afterclick-card-grid article p, .afterclick-direction-grid article p, .stoma-benefit-grid article p, .stage-components article p, .stoma-detail-grid article p, .salon-stuck__grid article p, .auto-breakpoints article p, .auto-service-grid article p, .contact-brief-list article p) {
  font-size: 16px !important;
  line-height: 1.56 !important;
}

/* Diagnostic page: quieter drama, clearer stop markers. */
.page-stoma-after-click .afterclick-rail,
.page-stoma .stoma-hero-rail {
  padding-top: 0 !important;
  padding-bottom: clamp(42px, 4.6vw, 68px) !important;
  border-top: 0 !important;
}

.page-stoma-after-click .afterclick-hidden,
.page-stoma-after-click .afterclick-funnel,
.page-stoma-after-click .afterclick-solution,
.page-stoma-after-click .afterclick-to-stoma {
  background: var(--color-surface) !important;
}

.page-stoma-after-click :is(.afterclick-analysis__status, .afterclick-funnel__status, .afterclick-hero-panel .status, .path-lost) {
  color: var(--ui-warning) !important;
  background: var(--ui-warning-soft) !important;
  border-color: rgba(185, 106, 86, .28) !important;
}

.page-stoma-after-click .afterclick-message-grid span {
  background: var(--color-surface) !important;
  font-size: clamp(16px, 1.12vw, 18px) !important;
  line-height: 1.42 !important;
}

.page-stoma-after-click .afterclick-demo,
.page-stoma .stoma-demo-section {
  background: linear-gradient(180deg, var(--color-soft), #F7F8F3) !important;
}

.page-stoma-after-click .afterclick-demo-card,
.page-stoma .stoma-demo-card {
  max-width: 980px !important;
  margin-inline: auto !important;
  border-radius: 36px !important;
}

.page-stoma-after-click .afterclick-to-stoma-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .54fr) !important;
  gap: clamp(24px, 4vw, 52px) !important;
  align-items: center !important;
}

/* Product page: make /stoma feel less like a repeated diagnostic page. */
.page-stoma .stoma-why {
  padding-top: var(--ui-section-y-tight) !important;
  padding-bottom: var(--ui-section-y-tight) !important;
}

.page-stoma .stoma-map-section--product,
.page-stoma .stoma-stage--clean,
.page-stoma .stoma-exclusions--aligned,
.page-stoma .stoma-materials {
  background: var(--color-surface) !important;
}

.page-stoma .stoma-stage--clean .stoma-stage__grid {
  gap: clamp(24px, 4vw, 52px) !important;
}

.page-stoma .stoma-price-card--clean strong {
  letter-spacing: -0.065em !important;
}

.page-stoma .stoma-details {
  padding-top: var(--ui-section-y-tight) !important;
  padding-bottom: var(--ui-section-y-tight) !important;
}

.page-stoma .stoma-details .section-head {
  max-width: 720px !important;
}

/* Home page: root positioning should visually prove system thinking. */
.page-home .diagnostic-board {
  border-radius: 38px !important;
  box-shadow: var(--ui-panel-shadow) !important;
}

.page-home .diagnostic-board__path span:last-child,
.page-home .diagnostic-board__accent {
  border-color: rgba(185, 106, 86, .22) !important;
  background: linear-gradient(180deg, #fff, var(--ui-warning-soft)) !important;
}

.page-home .hero__proof--clean span {
  border-radius: 999px !important;
  border: 1px solid rgba(23, 61, 50, .12) !important;
  background: rgba(255,255,255,.76) !important;
}

/* Secondary pages: salon/autoservice/contacts use the same product-interface discipline. */
.page-salon :is(.salon-world, .salon-route-section, .salon-benefit),
.page-autoservice :is(.auto-diagnostic, .auto-path-section, .auto-stage-v2),
.page-contacts :is(.contact-brief-v2, .contact-message-v2) {
  background: var(--color-surface) !important;
}

.page-salon :is(.salon-workbench__top, .salon-result-card),
.page-autoservice :is(.auto-visual__top, .auto-visual__note),
.page-contacts .contact-visual-card__note {
  border-radius: 24px !important;
}

/* Footer: all pages now use one compact footer system. */
.site-page .site-footer--clean {
  padding: 30px 0 28px !important;
  background: linear-gradient(180deg, #173D32, #102C25) !important;
  color: rgba(255, 255, 255, .78) !important;
}

.site-page .site-footer--clean .footer__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(170px, .72fr) minmax(220px, .88fr) !important;
  gap: clamp(22px, 4vw, 54px) !important;
  align-items: start !important;
}

.site-page .site-footer--clean .footer__brand {
  color: #fff !important;
  margin-bottom: 6px !important;
  font-size: 19px !important;
  line-height: 1.18 !important;
  font-weight: 780 !important;
}

.site-page .site-footer--clean .footer__brand-block p:not(.footer__brand) {
  max-width: 340px !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 15px !important;
  line-height: 1.48 !important;
}

.site-page .site-footer--clean :is(.footer__nav, .footer__contact) {
  display: grid !important;
  gap: 7px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 15px !important;
}

.site-page .site-footer--clean :is(.footer__nav span, .footer__contact span:first-child) {
  color: rgba(255,255,255,.42) !important;
  margin-bottom: 4px !important;
  font-size: 11px !important;
  font-weight: 840 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

.site-page .site-footer--clean :is(.footer__nav a, .footer__contact a, .footer__contact span:not(:first-child)) {
  line-height: 1.38 !important;
}

.site-page .site-footer--clean :is(.footer__nav a:hover, .footer__contact a:hover) {
  color: #fff !important;
}

/* Safer long text behavior. */
.site-page :is(h1, h2, h3, p, a, span, strong, li) {
  overflow-wrap: break-word;
}

@media (max-width: 1100px) {
  .site-page :is(.hero__grid--clean, .stoma-product-hero__grid, .service-hero__grid, .salon-hero-v2__grid, .auto-hero-v2__grid, .contact-hero-v2__grid),
  .page-stoma-after-click .afterclick-to-stoma-card {
    grid-template-columns: 1fr !important;
  }
  .site-page :is(.hero-visual--clean, .stoma-hero-panel, .salon-workbench, .auto-visual, .contact-visual-card) {
    width: min(100%, 720px) !important;
    margin-inline: auto !important;
  }
  .site-page .section-head--sticky {
    position: static !important;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 36px)) !important;
  }
  .site-page .section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .site-page :is(.hero, .stoma-product-hero, .service-hero, .auto-hero-v2, .contact-hero-v2, .legal-hero) {
    padding-top: 48px !important;
    padding-bottom: 58px !important;
  }
  .site-page :is(.hero h1, .stoma-product-hero h1, .service-hero h1, .auto-hero-v2 h1, .contact-hero-v2 h1, .legal-hero h1) {
    font-size: clamp(34px, 10.6vw, 48px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.052em !important;
  }
  .site-page :is(.section-head h2, .mechanism-block .section-head h2) {
    font-size: clamp(30px, 8.8vw, 40px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.045em !important;
  }
  .site-page :is(.lead, .stoma-product-hero .lead, .service-hero .lead, .auto-hero-v2 .lead, .contact-hero-v2 .lead, .legal-hero .lead) {
    margin-top: 18px !important;
    font-size: 17px !important;
    line-height: 1.52 !important;
  }
  .site-page .hero__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }
  .site-page .btn {
    width: 100% !important;
    min-height: 50px !important;
    padding-inline: 18px !important;
    text-align: center !important;
  }
  .site-page :is(.hero-visual--clean, .stoma-hero-panel, .salon-workbench, .auto-visual, .contact-visual-card) {
    min-height: auto !important;
    border-radius: 28px !important;
  }
  .site-page :is(.hero__grid--clean, .stoma-product-hero__grid, .service-hero__grid, .salon-hero-v2__grid, .auto-hero-v2__grid, .contact-hero-v2__grid) {
    gap: 32px !important;
  }
  .site-page :is(.diagnostic-board__grid, .directions__grid, .principles__grid, .afterclick-card-grid, .afterclick-perspective, .afterclick-direction-grid, .stoma-benefit-grid, .stage-components, .stoma-detail-grid, .stoma-exclusion-grid, .stoma-ladder__grid, .stoma-materials__grid, .salon-world__compare, .salon-stuck__grid, .salon-benefit-grid, .start-materials__grid, .auto-breakpoints, .auto-service-grid, .auto-fit-grid, .contact-brief-list, .contact-process-v2__grid) {
    grid-template-columns: 1fr !important;
  }
  .site-page :is(.diagnostic-board__grid article, .system-map__item, .direction-card, .principles article, .afterclick-card-grid article, .afterclick-perspective article, .afterclick-message-grid span, .afterclick-funnel-card, .afterclick-direction-grid article, .afterclick-solution-flow, .stoma-boundary-grid article, .afterclick-to-stoma-card, .stoma-map__steps article, .stoma-benefit-grid article, .stage-components article, .stoma-detail-grid article, .stoma-exclusion-grid article, .stoma-ladder__grid article, .stoma-materials__grid article, .stoma-demo-chip-grid span, .salon-world__compare article, .salon-stuck__grid article, .salon-route-card, .salon-stage-card, .salon-benefit-grid article, .start-materials__grid article, .auto-breakpoints article, .auto-lens-board article, .auto-service-grid article, .auto-fit-grid article, .contact-brief-list article, .contact-process-v2__grid article) {
    border-radius: 22px !important;
    box-shadow: 0 10px 28px rgba(23,61,50,.045) !important;
  }
  .site-page .site-footer--clean .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .site-page .site-footer--clean {
    padding: 28px 0 26px !important;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(var(--container), calc(100% - 28px)) !important;
  }
  .site-page .eyebrow {
    font-size: 11px !important;
    letter-spacing: .12em !important;
  }
  .site-page :is(.hero h1, .stoma-product-hero h1, .service-hero h1, .auto-hero-v2 h1, .contact-hero-v2 h1, .legal-hero h1) {
    font-size: clamp(32px, 10.5vw, 42px) !important;
  }
  .site-page :is(.section-head h2, .mechanism-block .section-head h2) {
    font-size: clamp(28px, 8.7vw, 36px) !important;
  }
}

/* Step 30 — legal and utility pages are part of the same site, not an afterthought. */
.page-privacy .legal-container {
  max-width: 900px !important;
}

.page-privacy .legal-content {
  padding: clamp(28px, 4.5vw, 52px) !important;
  border: 1px solid rgba(23, 61, 50, .095) !important;
  border-radius: 32px !important;
  background: var(--color-surface) !important;
  box-shadow: var(--ui-card-shadow) !important;
}

.page-privacy .legal-content h2 {
  margin-top: 34px !important;
  margin-bottom: 12px !important;
  font-size: clamp(24px, 2vw, 32px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.035em !important;
}

.page-privacy .legal-content h2:first-child {
  margin-top: 0 !important;
}

.page-privacy .legal-content p {
  color: var(--color-muted) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.page-contacts .contact-message-card,
.page-contacts .contact-visual-card,
.page-home .request-card,
.page-salon .request-card,
.page-autoservice .request-card,
.page-stoma .request-card,
.page-stoma-after-click .request-card {
  border-radius: 34px !important;
  border: 1px solid rgba(23,61,50,.095) !important;
  box-shadow: var(--ui-panel-shadow) !important;
}

/* Step 31 — visual QA fixes after real browser review.
   Fixes:
   1) Remove the framed/halo portrait treatment on the homepage.
   2) Calm down final request sections: smaller title, cleaner card, better balance. */

/* Homepage portrait: no frame, no halo/blob behind the cutout. */
.page-home .hero-visual--clean {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
  min-height: clamp(460px, 38vw, 560px) !important;
  padding-bottom: 0 !important;
}

.page-home .hero-visual--clean .hero-visual__shape {
  display: none !important;
}

.page-home .hero-visual--clean .hero-visual__photo {
  width: min(100%, 430px) !important;
  transform: none !important;
  filter: drop-shadow(0 28px 38px rgba(23,61,50,.13)) !important;
}

.page-home .hero-card--bottom {
  right: clamp(0px, 2vw, 28px) !important;
  bottom: 22px !important;
  max-width: 310px !important;
}

.page-home .about__photo::before {
  display: none !important;
}

.page-home .about__photo {
  min-height: 520px !important;
}

.page-home .about__photo img {
  width: min(100%, 340px) !important;
  filter: drop-shadow(0 26px 36px rgba(23,61,50,.13)) !important;
}

/* Final request sections: title should not scream like hero. */
.site-page .request .request__grid {
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.02fr) !important;
  align-items: center !important;
  gap: clamp(42px, 5vw, 76px) !important;
}

.site-page .request .section-head h2 {
  max-width: 650px !important;
  font-size: clamp(34px, 3.25vw, 50px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.05em !important;
}

.site-page .request .section-head > p:not(.eyebrow) {
  max-width: 600px !important;
  font-size: clamp(17px, 1.12vw, 20px) !important;
  line-height: 1.58 !important;
}

.site-page .request-form {
  padding: clamp(28px, 3.2vw, 44px) !important;
  border-radius: 34px !important;
  box-shadow: 0 22px 60px rgba(23,61,50,.075) !important;
}

.page-stoma .request--stoma-aligned .request__grid {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.page-stoma .stoma-final-list {
  margin-top: 30px !important;
}

@media (max-width: 1040px) {
  .site-page .request .request__grid {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }
  .site-page .request .section-head h2 {
    max-width: 760px !important;
  }
  .page-home .hero-visual--clean {
    min-height: 440px !important;
    max-width: 560px !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 680px) {
  .page-home .hero-visual--clean {
    min-height: 350px !important;
  }
  .page-home .hero-visual--clean .hero-visual__photo {
    width: min(100%, 300px) !important;
  }
  .page-home .hero-card--bottom {
    display: none !important;
  }
  .page-home .about__photo {
    min-height: 380px !important;
  }
  .page-home .about__photo img {
    width: min(100%, 280px) !important;
  }
  .site-page .request .section-head h2 {
    font-size: clamp(30px, 8.5vw, 42px) !important;
  }
  .site-page .request-form {
    padding: 24px !important;
    border-radius: 28px !important;
  }
}

/* Step 32 — composition cleanup after visual QA screenshots.
   Goal: remove oversized “everything is a hero” feeling, fix washed-out cards,
   calm section rhythm and make product blocks look designed instead of swollen. */

/* Global type scale: strong, but no longer screaming in every section. */
.site-page :is(.hero h1, .stoma-product-hero h1, .service-hero h1, .auto-hero-v2 h1, .contact-hero-v2 h1, .legal-hero h1) {
  max-width: 760px !important;
  font-size: clamp(38px, 4.25vw, 58px) !important;
  line-height: 1.055 !important;
  letter-spacing: -0.052em !important;
}

.site-page :is(.section-head h2, .mechanism-block .section-head h2) {
  max-width: 690px !important;
  font-size: clamp(31px, 3vw, 46px) !important;
  line-height: 1.09 !important;
  letter-spacing: -0.044em !important;
}

.site-page .section {
  padding-top: clamp(66px, 6vw, 94px) !important;
  padding-bottom: clamp(66px, 6vw, 94px) !important;
}

/* Homepage diagnostic block: wider text column, smaller board, readable risk card. */
.page-home .split-section--diagnostic {
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr) !important;
  gap: clamp(38px, 5vw, 68px) !important;
  align-items: center !important;
}

.page-home .split-section--diagnostic .section-head h2 {
  max-width: 560px !important;
  font-size: clamp(34px, 3.25vw, 50px) !important;
  line-height: 1.08 !important;
}

.page-home .split-section--diagnostic .section-head p:not(.eyebrow) {
  max-width: 560px !important;
}

.page-home .diagnostic-board {
  padding: 16px !important;
  border-radius: 34px !important;
  overflow: visible !important;
}

.page-home .diagnostic-board__path {
  margin-bottom: 12px !important;
  padding: 8px !important;
}

.page-home .diagnostic-board__path span {
  min-height: 38px !important;
  padding: 8px 10px !important;
  font-size: 12.5px !important;
}

.page-home .diagnostic-board__grid {
  gap: 12px !important;
}

.page-home .diagnostic-board__grid article {
  min-height: 168px !important;
  padding: 20px !important;
}

.page-home .diagnostic-board__grid article > span {
  margin-bottom: 14px !important;
}

.page-home .diagnostic-board__grid article h3 {
  font-size: clamp(21px, 1.55vw, 27px) !important;
  line-height: 1.12 !important;
}

.page-home .diagnostic-board__grid article p {
  font-size: 15.5px !important;
  line-height: 1.5 !important;
}

/* The last diagnostic card was pale with white text — unreadable and cheap. */
.page-home .diagnostic-board__accent {
  background: linear-gradient(180deg, #fffaf7, var(--ui-warning-soft)) !important;
  border-color: rgba(185, 106, 86, .24) !important;
  color: var(--color-green) !important;
}

.page-home .diagnostic-board__accent h3 {
  color: var(--color-green) !important;
}

.page-home .diagnostic-board__accent p {
  color: var(--color-muted) !important;
}

/* /stoma hero: keep impact, remove billboard scale. */
.page-stoma .stoma-product-hero {
  padding-top: clamp(64px, 5.5vw, 88px) !important;
  padding-bottom: clamp(62px, 5.8vw, 92px) !important;
}

.page-stoma .stoma-product-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .70fr) !important;
  gap: clamp(42px, 5vw, 66px) !important;
}

.page-stoma .stoma-product-hero h1 {
  max-width: 710px !important;
  font-size: clamp(40px, 4.1vw, 58px) !important;
  line-height: 1.06 !important;
}

.page-stoma .stoma-product-hero .lead {
  max-width: 650px !important;
  font-size: clamp(17px, 1.28vw, 20px) !important;
}

.page-stoma .stoma-hero-panel {
  max-width: 460px !important;
  justify-self: end !important;
  padding: 22px !important;
  border-radius: 30px !important;
}

/* Product example block: no giant title + giant chat fighting for dominance. */
.page-stoma .stoma-demo-section__grid {
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr) !important;
  gap: clamp(38px, 5vw, 62px) !important;
  align-items: center !important;
}

.page-stoma .stoma-demo-section .section-head h2 {
  max-width: 540px !important;
  font-size: clamp(34px, 3.1vw, 48px) !important;
  line-height: 1.09 !important;
}

.page-stoma .stoma-demo-section .section-head p:not(.eyebrow) {
  max-width: 520px !important;
}

.page-stoma .stoma-chat-mockup--product {
  max-width: 760px !important;
  justify-self: end !important;
  border-radius: 30px !important;
}

.page-stoma .stoma-chat-mockup__bar {
  padding: 14px 20px !important;
}

.page-stoma .stoma-chat-mockup__body {
  padding: 22px !important;
}

.page-stoma .message {
  max-width: 78% !important;
  padding: 16px 18px !important;
  font-size: 15.5px !important;
  line-height: 1.45 !important;
}

/* First-stage/pricing block: compact product card, not a heavy construction. */
.page-stoma .stoma-stage--clean .stoma-stage__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px) !important;
  gap: clamp(22px, 2.4vw, 30px) !important;
  align-items: start !important;
}

.page-stoma .stoma-stage-card {
  padding: clamp(26px, 2.5vw, 34px) !important;
  border-radius: 32px !important;
}

.page-stoma .stoma-stage-card__intro h2 {
  max-width: 560px !important;
  font-size: clamp(34px, 3.05vw, 46px) !important;
  line-height: 1.08 !important;
}

.page-stoma .stage-components {
  margin-top: 24px !important;
  gap: 12px !important;
}

.page-stoma .stage-components article {
  min-height: 128px !important;
  padding: 18px !important;
  border-radius: 22px !important;
}

.page-stoma .stage-components article h3 {
  font-size: 18px !important;
  line-height: 1.18 !important;
}

.page-stoma .stage-components article p {
  font-size: 13.8px !important;
  line-height: 1.48 !important;
}

.page-stoma .stage-components__wide {
  min-height: auto !important;
}

.page-stoma .stoma-price-card--clean {
  width: 100% !important;
  max-width: 320px !important;
  padding: 26px 24px !important;
  border-radius: 30px !important;
  gap: 12px !important;
}

.page-stoma .stoma-price-card--clean strong {
  font-size: clamp(48px, 4vw, 62px) !important;
  line-height: .92 !important;
  letter-spacing: -0.055em !important;
}

.page-stoma .stoma-price-card--clean p {
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.page-stoma .stoma-price-points {
  gap: 7px !important;
}

.page-stoma .stoma-price-points li {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

/* Footer: visually lighter and less like a heavy basement. */
.site-page .site-footer--clean {
  padding: 24px 0 22px !important;
}

.site-page .site-footer--clean .footer__grid {
  gap: clamp(18px, 3vw, 42px) !important;
}

.site-page .site-footer--clean .footer__brand {
  font-size: 18px !important;
}

.site-page .site-footer--clean :is(.footer__nav, .footer__contact) {
  gap: 6px !important;
  font-size: 14.5px !important;
}

@media (max-width: 1120px) {
  .page-home .split-section--diagnostic,
  .page-stoma .stoma-demo-section__grid,
  .page-stoma .stoma-stage--clean .stoma-stage__grid {
    grid-template-columns: 1fr !important;
  }
  .page-home .split-section--diagnostic .section-head h2,
  .page-stoma .stoma-demo-section .section-head h2,
  .page-stoma .stoma-stage-card__intro h2 {
    max-width: 720px !important;
  }
  .page-stoma .stoma-hero-panel,
  .page-stoma .stoma-chat-mockup--product,
  .page-stoma .stoma-price-card--clean {
    justify-self: start !important;
    max-width: none !important;
  }
}

@media (max-width: 760px) {
  .site-page :is(.hero h1, .stoma-product-hero h1, .service-hero h1, .auto-hero-v2 h1, .contact-hero-v2 h1, .legal-hero h1) {
    font-size: clamp(32px, 10vw, 42px) !important;
    line-height: 1.07 !important;
  }
  .site-page :is(.section-head h2, .mechanism-block .section-head h2),
  .page-stoma .stoma-stage-card__intro h2,
  .page-stoma .stoma-demo-section .section-head h2,
  .page-home .split-section--diagnostic .section-head h2 {
    font-size: clamp(28px, 8.4vw, 36px) !important;
    line-height: 1.1 !important;
  }
  .page-home .diagnostic-board__path {
    grid-template-columns: 1fr !important;
  }
  .page-home .diagnostic-board__path span:not(:last-child)::after {
    display: none !important;
  }
  .page-home .diagnostic-board__grid,
  .page-stoma .stage-components {
    grid-template-columns: 1fr !important;
  }
  .page-stoma .message {
    max-width: 100% !important;
  }
}

/* Step 33 — semantic block unification after page QA.
   Same-meaning blocks now share the same visual contract instead of page-local exceptions. */

:root {
  --semantic-section-y: clamp(64px, 5.8vw, 92px);
  --semantic-section-y-tight: clamp(50px, 4.6vw, 72px);
  --semantic-grid-gap: clamp(34px, 5vw, 68px);
  --semantic-card-radius: 24px;
  --semantic-panel-radius: 32px;
  --semantic-card-border: 1px solid rgba(23,61,50,.095);
  --semantic-card-shadow: 0 12px 34px rgba(23,61,50,.045);
  --semantic-panel-shadow: 0 20px 58px rgba(23,61,50,.075);
}

.site-page .section {
  padding-top: var(--semantic-section-y) !important;
  padding-bottom: var(--semantic-section-y) !important;
}

.site-page .section-head h2,
.site-page .mechanism-block .section-head h2,
.site-page .ui-compare-block .section-head h2,
.site-page .ui-demo-block .section-head h2,
.site-page .ui-stage-block .section-head h2,
.site-page .ui-request-block .section-head h2 {
  max-width: 640px !important;
  font-size: clamp(31px, 2.9vw, 45px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.043em !important;
}

.site-page .section-head p:not(.eyebrow),
.site-page .ui-compare-block .section-head p:not(.eyebrow),
.site-page .ui-demo-block .section-head p:not(.eyebrow),
.site-page .ui-stage-block .section-head p:not(.eyebrow),
.site-page .ui-request-block .section-head p:not(.eyebrow) {
  max-width: 600px !important;
  font-size: clamp(16px, 1.08vw, 18px) !important;
  line-height: 1.6 !important;
}

/* One hero contract for all top screens. Page-specific visual content may differ, but proportions must not. */
.site-page .ui-hero {
  padding-top: clamp(62px, 5.2vw, 84px) !important;
  padding-bottom: clamp(60px, 5.4vw, 88px) !important;
}
.site-page .ui-hero :is(.hero__grid--clean, .stoma-product-hero__grid, .service-hero__grid, .salon-hero-v2__grid, .auto-hero-v2__grid, .contact-hero-v2__grid) {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr) !important;
  gap: var(--semantic-grid-gap) !important;
  align-items: center !important;
}
.site-page .ui-hero :is(.hero__content, .stoma-product-hero__content, .service-hero__content, .salon-hero-v2__content, .auto-hero-v2__content, .section-head) {
  max-width: 720px !important;
}
.site-page .ui-hero :is(h1, .hero h1, .stoma-product-hero h1, .service-hero h1, .auto-hero-v2 h1, .contact-hero-v2 h1, .legal-hero h1) {
  max-width: 720px !important;
  font-size: clamp(38px, 4.05vw, 56px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.052em !important;
}
.site-page .ui-hero :is(.lead, .stoma-product-hero .lead, .service-hero .lead, .auto-hero-v2 .lead, .contact-hero-v2 .lead) {
  max-width: 620px !important;
  margin-top: 22px !important;
  font-size: clamp(17px, 1.24vw, 20px) !important;
  line-height: 1.52 !important;
}
.site-page .ui-hero :is(.hero-visual--clean, .stoma-hero-panel, .salon-workbench, .auto-visual, .contact-visual-card) {
  max-width: 520px !important;
  justify-self: end !important;
  border-radius: var(--semantic-panel-radius) !important;
  box-shadow: var(--semantic-panel-shadow) !important;
}
.page-home .ui-hero .hero-visual--clean {
  box-shadow: none !important;
  max-width: 560px !important;
}

/* Same mechanism/compare block on /stoma and /stoma-after-click. */
.page-stoma .ui-compare-block,
.page-stoma-after-click .ui-compare-block {
  background: var(--color-surface) !important;
}
.page-stoma .ui-compare-block :is(.stoma-why-synced__grid, .afterclick-split__grid),
.page-stoma-after-click .ui-compare-block :is(.stoma-why-synced__grid, .afterclick-split__grid) {
  display: grid !important;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr) !important;
  gap: var(--semantic-grid-gap) !important;
  align-items: center !important;
}
.page-stoma .ui-compare-block :is(.stoma-perspective, .afterclick-perspective),
.page-stoma-after-click .ui-compare-block :is(.stoma-perspective, .afterclick-perspective) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
.page-stoma .ui-compare-block :is(.stoma-perspective article, .afterclick-perspective article),
.page-stoma-after-click .ui-compare-block :is(.stoma-perspective article, .afterclick-perspective article) {
  min-height: 300px !important;
  padding: 26px !important;
  border-radius: var(--semantic-card-radius) !important;
  border: var(--semantic-card-border) !important;
  background: var(--color-surface) !important;
  box-shadow: var(--semantic-card-shadow) !important;
}
.page-stoma .ui-compare-block :is(.stoma-perspective article:nth-child(2), .afterclick-perspective article:nth-child(2)),
.page-stoma-after-click .ui-compare-block :is(.stoma-perspective article:nth-child(2), .afterclick-perspective article:nth-child(2)) {
  background: var(--color-soft) !important;
}
.page-stoma .ui-compare-block :is(.stoma-perspective h3, .afterclick-perspective h3),
.page-stoma-after-click .ui-compare-block :is(.stoma-perspective h3, .afterclick-perspective h3) {
  margin-bottom: 16px !important;
  font-size: clamp(22px, 1.65vw, 28px) !important;
  line-height: 1.12 !important;
}
.page-stoma .ui-compare-block :is(.stoma-perspective p, .afterclick-perspective p),
.page-stoma-after-click .ui-compare-block :is(.stoma-perspective p, .afterclick-perspective p) {
  padding: 9px 0 !important;
  font-size: 15.5px !important;
  line-height: 1.42 !important;
}

/* Same demo/chat block on /stoma and /stoma-after-click. */
.page-stoma .ui-demo-block,
.page-stoma-after-click .ui-demo-block {
  background: linear-gradient(180deg, var(--color-soft), #F7F8F3) !important;
}
.page-stoma .ui-demo-block :is(.stoma-demo-section__grid, .afterclick-demo__grid),
.page-stoma-after-click .ui-demo-block :is(.stoma-demo-section__grid, .afterclick-demo__grid) {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr) !important;
  gap: var(--semantic-grid-gap) !important;
  align-items: center !important;
}
.page-stoma .ui-demo-block .stoma-chat-mockup,
.page-stoma-after-click .ui-demo-block .stoma-chat-mockup {
  width: 100% !important;
  max-width: 760px !important;
  justify-self: end !important;
  border-radius: 30px !important;
  border: var(--semantic-card-border) !important;
  box-shadow: var(--semantic-panel-shadow) !important;
  overflow: hidden !important;
}
.page-stoma .ui-demo-block .stoma-chat-mockup__bar,
.page-stoma-after-click .ui-demo-block .stoma-chat-mockup__bar {
  min-height: 58px !important;
  padding: 14px 20px !important;
}
.page-stoma .ui-demo-block .stoma-chat-mockup__body,
.page-stoma-after-click .ui-demo-block .stoma-chat-mockup__body {
  padding: 22px !important;
}
.page-stoma .ui-demo-block :is(.bubble, .message),
.page-stoma-after-click .ui-demo-block :is(.bubble, .message) {
  max-width: 78% !important;
  padding: 15px 17px !important;
  border-radius: 18px !important;
  font-size: 15.5px !important;
  line-height: 1.45 !important;
}
.page-stoma .ui-demo-block .demo-actions,
.page-stoma-after-click .ui-demo-block .demo-actions {
  gap: 8px !important;
  margin: 10px 0 12px !important;
}
.page-stoma .ui-demo-block .admin-note,
.page-stoma-after-click .ui-demo-block .admin-note {
  margin-top: 12px !important;
  padding: 16px 18px !important;
  border-radius: 18px !important;
  border: var(--semantic-card-border) !important;
  background: rgba(255,255,255,.78) !important;
}

/* Same numbered/card language wherever we explain a process or first stage. */
.site-page .ui-card-grid,
.site-page .stage-components,
.site-page .afterclick-to-stoma__mini,
.site-page .diagnostic-board__grid,
.site-page .salon-stuck__grid,
.site-page .auto-breakpoints {
  gap: 12px !important;
}
.site-page :is(.ui-card-grid > article, .stage-components > article, .afterclick-to-stoma__mini > article, .diagnostic-board__grid > article, .salon-stuck__grid > article, .auto-breakpoints > article) {
  min-height: 128px !important;
  padding: 18px !important;
  border-radius: 22px !important;
  border: var(--semantic-card-border) !important;
  background: rgba(255,255,255,.82) !important;
  box-shadow: var(--semantic-card-shadow) !important;
}
.site-page :is(.ui-card-grid > article h3, .stage-components > article h3, .diagnostic-board__grid > article h3, .salon-stuck__grid > article h3, .auto-breakpoints > article h3) {
  font-size: clamp(18px, 1.38vw, 23px) !important;
  line-height: 1.16 !important;
}
.site-page :is(.ui-card-grid > article p, .stage-components > article p, .diagnostic-board__grid > article p, .salon-stuck__grid > article p, .auto-breakpoints > article p) {
  font-size: 14.5px !important;
  line-height: 1.48 !important;
}
.site-page :is(.stage-components > article span, .diagnostic-board__grid > article > span, .afterclick-to-stoma__mini span) {
  width: 34px !important;
  height: 34px !important;
  border-radius: 13px !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

/* Product/stage offer block: stable ratio, no page-specific tower. */
.page-stoma .ui-stage-block .stoma-stage__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px) !important;
  gap: clamp(22px, 2.6vw, 32px) !important;
  align-items: start !important;
}
.page-stoma .ui-stage-block .stoma-stage-card,
.page-stoma-after-click .ui-stage-block .afterclick-to-stoma__card {
  border-radius: var(--semantic-panel-radius) !important;
  border: var(--semantic-card-border) !important;
  box-shadow: var(--semantic-card-shadow) !important;
}
.page-stoma .ui-stage-block .stoma-stage-card {
  padding: clamp(26px, 2.5vw, 34px) !important;
}
.page-stoma .ui-stage-block .stoma-price-card--clean {
  max-width: 320px !important;
  padding: 26px 24px !important;
  border-radius: 30px !important;
}
.page-stoma .ui-stage-block .stoma-price-card--clean strong {
  font-size: clamp(48px, 4vw, 62px) !important;
}
.page-stoma-after-click .ui-stage-block .afterclick-to-stoma__card {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr) !important;
  padding: clamp(26px, 2.8vw, 38px) !important;
}

/* One final request block across all pages. */
.site-page .ui-request-block .request__grid {
  display: grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1fr) !important;
  gap: var(--semantic-grid-gap) !important;
  align-items: center !important;
}
.site-page .ui-request-block .request-card,
.site-page .ui-request-block .request-form {
  border-radius: var(--semantic-panel-radius) !important;
  border: var(--semantic-card-border) !important;
  box-shadow: var(--semantic-panel-shadow) !important;
}
.site-page .ui-request-block .request-form {
  padding: clamp(28px, 3vw, 40px) !important;
}

/* One footer, actually one footer. */
.site-page .ui-footer {
  padding: 16px 0 14px !important;
  background: linear-gradient(180deg, #173D32, #102C25) !important;
  border-radius: 0 !important;
}
.site-page .ui-footer .footer__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(170px, .72fr) minmax(220px, .86fr) !important;
  gap: clamp(14px, 2.2vw, 30px) !important;
  align-items: start !important;
}
.site-page .ui-footer :is(.footer__brand, .footer__nav, .footer__contact) {
  margin: 0 !important;
}
.site-page .ui-footer .footer__brand {
  margin-bottom: 4px !important;
  font-size: 17px !important;
  line-height: 1.16 !important;
}
.site-page .ui-footer .footer__brand-block p:not(.footer__brand) {
  margin-top: 6px !important;
  line-height: 1.36 !important;
}
.site-page .ui-footer :is(.footer__nav, .footer__contact) {
  display: grid !important;
  gap: 4px !important;
  font-size: 13.5px !important;
  line-height: 1.34 !important;
}

@media (max-width: 1120px) {
  .site-page .ui-hero :is(.hero__grid--clean, .stoma-product-hero__grid, .service-hero__grid, .salon-hero-v2__grid, .auto-hero-v2__grid, .contact-hero-v2__grid),
  .page-stoma .ui-compare-block :is(.stoma-why-synced__grid, .afterclick-split__grid),
  .page-stoma-after-click .ui-compare-block :is(.stoma-why-synced__grid, .afterclick-split__grid),
  .page-stoma .ui-demo-block :is(.stoma-demo-section__grid, .afterclick-demo__grid),
  .page-stoma-after-click .ui-demo-block :is(.stoma-demo-section__grid, .afterclick-demo__grid),
  .page-stoma .ui-stage-block .stoma-stage__grid,
  .page-stoma-after-click .ui-stage-block .afterclick-to-stoma__card,
  .site-page .ui-request-block .request__grid {
    grid-template-columns: 1fr !important;
  }
  .site-page .ui-hero :is(.hero-visual--clean, .stoma-hero-panel, .salon-workbench, .auto-visual, .contact-visual-card),
  .page-stoma .ui-demo-block .stoma-chat-mockup,
  .page-stoma-after-click .ui-demo-block .stoma-chat-mockup,
  .page-stoma .ui-stage-block .stoma-price-card--clean {
    justify-self: start !important;
    max-width: min(100%, 760px) !important;
  }
  .site-page .ui-footer .footer__grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 760px) {
  .site-page .section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
  .site-page .ui-hero :is(h1, .hero h1, .stoma-product-hero h1, .service-hero h1, .auto-hero-v2 h1, .contact-hero-v2 h1, .legal-hero h1) {
    font-size: clamp(32px, 9.6vw, 42px) !important;
    line-height: 1.08 !important;
  }
  .site-page .section-head h2,
  .site-page .ui-compare-block .section-head h2,
  .site-page .ui-demo-block .section-head h2,
  .site-page .ui-stage-block .section-head h2,
  .site-page .ui-request-block .section-head h2 {
    font-size: clamp(28px, 8.2vw, 36px) !important;
    line-height: 1.12 !important;
  }
  .page-stoma .ui-compare-block :is(.stoma-perspective, .afterclick-perspective),
  .page-stoma-after-click .ui-compare-block :is(.stoma-perspective, .afterclick-perspective),
  .site-page .ui-card-grid,
  .site-page .stage-components,
  .site-page .diagnostic-board__grid,
  .site-page .salon-stuck__grid,
  .site-page .auto-breakpoints {
    grid-template-columns: 1fr !important;
  }
  .page-stoma .ui-demo-block :is(.bubble, .message),
  .page-stoma-after-click .ui-demo-block :is(.bubble, .message) {
    max-width: 100% !important;
  }
  .site-page .ui-request-block .request-form {
    padding: 24px !important;
  }
  .site-page .ui-footer .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}


/* STEP 35 — footer nav links in 2 columns */
.site-page .ui-footer .footer__nav {
  grid-template-columns: repeat(2, minmax(0, max-content)) !important;
  column-gap: 28px !important;
  row-gap: 4px !important;
  align-content: start !important;
}

.site-page .ui-footer .footer__nav > span {
  grid-column: 1 / -1 !important;
}

.site-page .ui-footer .footer__nav a {
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  .site-page .ui-footer .footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 18px !important;
  }
}

@media (max-width: 420px) {
  .site-page .ui-footer .footer__nav {
    grid-template-columns: 1fr !important;
  }
}

/* STEP 36 — exact footer link grouping by columns
   Column 1: Главная / Контакты / Политика
   Column 2: Стоматологии / Салоны / Автосервисы */
.site-page .ui-footer .footer__nav {
  grid-template-columns: max-content max-content !important;
  column-gap: clamp(26px, 3vw, 44px) !important;
  row-gap: 4px !important;
}
.site-page .ui-footer .footer__nav > span {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
}
.site-page .ui-footer .footer__nav a:nth-of-type(1) { grid-column: 1 !important; grid-row: 2 !important; }
.site-page .ui-footer .footer__nav a:nth-of-type(2) { grid-column: 2 !important; grid-row: 2 !important; }
.site-page .ui-footer .footer__nav a:nth-of-type(3) { grid-column: 2 !important; grid-row: 3 !important; }
.site-page .ui-footer .footer__nav a:nth-of-type(4) { grid-column: 2 !important; grid-row: 4 !important; }
.site-page .ui-footer .footer__nav a:nth-of-type(5) { grid-column: 1 !important; grid-row: 3 !important; }
.site-page .ui-footer .footer__nav a:nth-of-type(6) { grid-column: 1 !important; grid-row: 4 !important; }

@media (max-width: 420px) {
  .site-page .ui-footer .footer__nav {
    grid-template-columns: 1fr !important;
  }
  .site-page .ui-footer .footer__nav > span,
  .site-page .ui-footer .footer__nav a {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}


/* STEP 37 — sticky price card in first-stage block */
@media (min-width: 1121px) {
  .page-stoma .ui-stage-block .stoma-stage__grid {
    align-items: start !important;
  }

  .page-stoma .ui-stage-block .stoma-price-card--clean {
    position: sticky !important;
    top: 104px !important;
    align-self: start !important;
    max-height: calc(100vh - 128px) !important;
  }
}

@media (max-width: 1120px) {
  .page-stoma .ui-stage-block .stoma-price-card--clean {
    position: static !important;
    max-height: none !important;
  }
}

/* STEP 38 — STOMA CALL qualified booking page */
[hidden] { display: none !important; }

.page-stoma-call .stoma-call-hero {
  padding: 88px 0 96px !important;
  background:
    radial-gradient(circle at 78% 20%, rgba(196,111,92,.12), transparent 34%),
    linear-gradient(180deg, var(--color-bg), #FFFFFF 100%) !important;
}

.page-stoma-call .stoma-call-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .62fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.page-stoma-call .stoma-call-hero__content h1 {
  max-width: 850px !important;
}

.page-stoma-call .stoma-call-panel {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid rgba(23,61,50,.12);
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 76px rgba(23,61,50,.10);
}

.page-stoma-call .stoma-call-panel__head {
  display: grid;
  gap: 7px;
  padding: 18px;
  border-radius: 22px;
  background: var(--color-green);
  color: rgba(255,255,255,.78);
}

.page-stoma-call .stoma-call-panel__head span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.page-stoma-call .stoma-call-panel__head strong {
  color: #fff;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.page-stoma-call .stoma-call-flow-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  padding: 18px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: 22px;
  background: rgba(247,248,243,.86);
}

.page-stoma-call .stoma-call-flow-card--active {
  background: #fff;
  box-shadow: 0 18px 40px rgba(23,61,50,.07);
}

.page-stoma-call .stoma-call-flow-card > span {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--color-soft);
  color: var(--color-green);
  font-size: 12px;
  font-weight: 850;
}

.page-stoma-call .stoma-call-flow-card strong {
  color: var(--color-green);
  font-size: 17px;
  line-height: 1.18;
}

.page-stoma-call .stoma-call-flow-card p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.page-stoma-call .stoma-call-process,
.page-stoma-call .stoma-call-details {
  background: var(--color-surface) !important;
}

.page-stoma-call .stoma-call-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.page-stoma-call .stoma-call-fit__grid,
.page-stoma-call .stoma-call-details__grid,
.page-stoma-call .stoma-call-form-layout,
.page-stoma-call .stoma-call-schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.page-stoma-call .stoma-call-fit-cards {
  display: grid;
  gap: 14px;
}

.page-stoma-call .stoma-call-fit-cards article,
.page-stoma-call .stoma-call-note-card,
.page-stoma-call .stoma-call-direct-card,
.page-stoma-call .stoma-call-status {
  border: 1px solid rgba(23,61,50,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 54px rgba(23,61,50,.065);
}

.page-stoma-call .stoma-call-fit-cards article {
  padding: 24px;
}

.page-stoma-call .stoma-call-fit-cards article h3 {
  margin-bottom: 16px;
}

.page-stoma-call .stoma-call-fit-cards article p {
  padding: 11px 0;
  border-top: 1px solid rgba(23,61,50,.09);
  color: #3A433F;
}

.page-stoma-call .stoma-call-note-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px;
}

.page-stoma-call .stoma-call-note-card strong {
  color: var(--color-green);
}

.page-stoma-call .stoma-call-note-card span {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.page-stoma-call .stoma-call-form-section {
  background: var(--color-soft) !important;
}

.page-stoma-call .stoma-call-form {
  gap: 18px;
}

.page-stoma-call .stoma-call-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-stoma-call .stoma-call-form select,
.page-stoma-call .stoma-call-form input,
.page-stoma-call .stoma-call-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  color: var(--color-text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.page-stoma-call .stoma-call-form select,
.page-stoma-call .stoma-call-form input {
  min-height: 54px;
}

.page-stoma-call .stoma-call-form select:focus,
.page-stoma-call .stoma-call-form input:focus,
.page-stoma-call .stoma-call-form textarea:focus {
  border-color: rgba(23,61,50,.42);
  box-shadow: 0 0 0 4px rgba(23,61,50,.08);
  background: #fff;
}

.page-stoma-call .stoma-call-fieldset {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 4px 0 0;
  border: 0;
}

.page-stoma-call .stoma-call-fieldset legend {
  color: var(--color-green);
  font-weight: 750;
  font-size: 15px;
  margin-bottom: 10px;
}

.page-stoma-call .stoma-call-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-stoma-call .stoma-call-choice {
  position: relative;
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  padding: 14px;
  border: 1px solid rgba(23,61,50,.10);
  border-radius: 18px;
  background: rgba(247,248,243,.78);
  color: var(--color-text) !important;
  font-size: 14px !important;
  line-height: 1.35;
  cursor: pointer;
}

.page-stoma-call .stoma-call-choice input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--color-green);
}

.page-stoma-call .stoma-call-status {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #fff;
}

.page-stoma-call .stoma-call-status h3 {
  font-size: 22px;
}

.page-stoma-call .stoma-call-status p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.page-stoma-call .stoma-call-status--success {
  border-color: rgba(23,61,50,.20);
}

.page-stoma-call .stoma-call-status--warning {
  border-color: rgba(196,111,92,.35);
}

.page-stoma-call .stoma-call-status--error {
  border-color: rgba(160,40,40,.32);
}

.page-stoma-call .stoma-call-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.page-stoma-call .stoma-call-schedule-layout {
  grid-template-columns: 1fr;
}

.page-stoma-call .stoma-call-schedule-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
}

.page-stoma-call .stoma-call-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.page-stoma-call .stoma-call-slot {
  display: grid;
  gap: 8px;
  min-height: 142px;
  text-align: left;
  padding: 20px;
  border: 1px solid rgba(23,61,50,.12);
  border-radius: 24px;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 20px 48px rgba(23,61,50,.06);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.page-stoma-call .stoma-call-slot:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(23,61,50,.28);
  box-shadow: 0 24px 58px rgba(23,61,50,.10);
}

.page-stoma-call .stoma-call-slot:disabled {
  opacity: .62;
  cursor: progress;
}

.page-stoma-call .stoma-call-slot span {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.page-stoma-call .stoma-call-slot strong {
  color: var(--color-green);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.05;
}

.page-stoma-call .stoma-call-slot small {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.4;
}

.page-stoma-call .stoma-call-direct-card {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 3vw, 38px);
}

.page-stoma-call .stoma-call-direct-card p {
  color: var(--color-muted);
}

.page-stoma-call .stoma-call-direct-card .btn {
  width: fit-content;
}

.page-stoma-call .stoma-call-materials p {
  background: rgba(255,255,255,.82) !important;
}

@media (max-width: 1120px) {
  .page-stoma-call .stoma-call-hero__grid,
  .page-stoma-call .stoma-call-fit__grid,
  .page-stoma-call .stoma-call-details__grid,
  .page-stoma-call .stoma-call-form-layout {
    grid-template-columns: 1fr !important;
  }
  .page-stoma-call .stoma-call-panel {
    max-width: 760px;
  }
  .page-stoma-call .stoma-call-steps,
  .page-stoma-call .stoma-call-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-stoma-call .stoma-call-hero {
    padding: 58px 0 62px !important;
  }
  .page-stoma-call .stoma-call-form__grid,
  .page-stoma-call .stoma-call-choice-grid,
  .page-stoma-call .stoma-call-steps,
  .page-stoma-call .stoma-call-slots,
  .page-stoma-call .stoma-call-schedule-head {
    grid-template-columns: 1fr !important;
  }
  .page-stoma-call .stoma-call-panel,
  .page-stoma-call .stoma-call-form {
    border-radius: 28px;
  }
  .page-stoma-call .stoma-call-flow-card {
    grid-template-columns: 36px 1fr;
    padding: 15px;
  }
  .page-stoma-call .stoma-call-flow-card > span {
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }
  .page-stoma-call .stoma-call-schedule-head .btn {
    width: 100%;
  }
  .page-stoma-call .stoma-call-direct-card .btn {
    width: 100%;
  }
}

/* STEP 40 — embedded qualified call block for /stoma-after-click/ */
.anchor-offset {
  position: relative;
  display: block;
  top: -96px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.afterclick-call {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(196,111,92,.14), transparent 34%),
    linear-gradient(180deg, rgba(242,235,229,.78), rgba(247,248,243,1)) !important;
}

.afterclick-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,61,50,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,61,50,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 90%);
  pointer-events: none;
}

.afterclick-call > .container {
  position: relative;
  z-index: 1;
}

.afterclick-call__grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, .92fr);
  gap: 56px;
  align-items: start;
}

.afterclick-call__copy {
  position: sticky;
  top: 104px;
  max-width: 620px;
}

.afterclick-call__points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.afterclick-call__points p {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(221,229,220,.9);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  color: var(--color-green);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.28;
}

.afterclick-call__points p::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(196,111,92,.12);
}

.afterclick-call-widget {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(23,61,50,.12);
  border-radius: 34px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 28px 90px rgba(28,52,43,.12);
  backdrop-filter: blur(10px);
}

.afterclick-call-widget__top {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(221,229,220,.9);
}

.afterclick-call-widget__top span,
.afterclick-call-schedule__head span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.afterclick-call-widget__top strong,
.afterclick-call-schedule__head strong {
  color: var(--color-green);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.afterclick-call-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.afterclick-call-progress span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(221,229,220,.96);
  border-radius: 999px;
  background: var(--color-bg);
  color: rgba(23,61,50,.62);
  font-size: 13px;
  font-weight: 780;
  text-align: center;
}

.afterclick-call-progress span.is-active {
  border-color: rgba(196,111,92,.36);
  background: rgba(196,111,92,.12);
  color: var(--color-green);
}

.afterclick-call-progress span.is-done {
  border-color: rgba(23,61,50,.16);
  background: rgba(23,61,50,.08);
  color: var(--color-green);
}

.afterclick-call-form,
.afterclick-call-schedule {
  display: grid;
  gap: 16px;
}

.afterclick-call-form__row {
  display: grid;
  gap: 14px;
}

.afterclick-call-form__row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.afterclick-call-form label {
  display: grid;
  gap: 8px;
  color: var(--color-green);
  font-weight: 780;
  font-size: 14px;
}

.afterclick-call-form input,
.afterclick-call-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(221,229,220,.96);
  border-radius: 16px;
  background: var(--color-bg);
  color: var(--color-green);
  padding: 0 16px;
  font: inherit;
  font-weight: 650;
  outline: none;
}

.afterclick-call-form input:focus,
.afterclick-call-form select:focus {
  border-color: rgba(196,111,92,.72);
  box-shadow: 0 0 0 4px rgba(196,111,92,.12);
}

.afterclick-call-fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.afterclick-call-fieldset legend {
  margin-bottom: 4px;
  color: var(--color-green);
  font-size: 14px;
  font-weight: 780;
}

.afterclick-call-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.afterclick-call-choices label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 56px;
  padding: 13px 14px;
  border: 1px solid rgba(221,229,220,.96);
  border-radius: 16px;
  background: var(--color-bg);
  cursor: pointer;
}

.afterclick-call-choices input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--color-accent);
}

.afterclick-call-choices span {
  color: var(--color-green);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 720;
}

.afterclick-call-form .btn,
.afterclick-call-schedule__head .btn {
  width: 100%;
}

.afterclick-call-status {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(221,229,220,.96);
  border-radius: 22px;
  background: var(--color-bg);
}

.afterclick-call-status h3 {
  margin: 0;
  color: var(--color-green);
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.afterclick-call-status p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.afterclick-call-status strong {
  color: var(--color-green);
}

.afterclick-call-status--success {
  border-color: rgba(23,61,50,.18);
  background: rgba(23,61,50,.055);
}

.afterclick-call-status--warning {
  border-color: rgba(196,111,92,.28);
  background: rgba(196,111,92,.09);
}

.afterclick-call-status--error {
  border-color: rgba(165,61,54,.28);
  background: rgba(165,61,54,.08);
}

.afterclick-call-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.afterclick-call-status__actions .btn {
  min-width: 180px;
  flex: 1 1 180px;
}

.afterclick-call-schedule__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.afterclick-call-schedule__head > div {
  display: grid;
  gap: 7px;
}

.afterclick-call-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.afterclick-call-slot {
  appearance: none;
  display: grid;
  gap: 6px;
  min-height: 122px;
  padding: 18px;
  border: 1px solid rgba(221,229,220,.96);
  border-radius: 20px;
  background: #fff;
  color: var(--color-green);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.afterclick-call-slot:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(196,111,92,.42);
  box-shadow: 0 16px 38px rgba(28,52,43,.10);
}

.afterclick-call-slot:disabled {
  cursor: wait;
  opacity: .62;
}

.afterclick-call-slot span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.afterclick-call-slot strong {
  color: var(--color-green);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.afterclick-call-slot small {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 680;
}

@media (max-width: 980px) {
  .afterclick-call__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .afterclick-call__copy {
    position: static;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .afterclick-call-widget {
    padding: 18px;
    border-radius: 26px;
  }
  .afterclick-call-progress,
  .afterclick-call-form__row--two,
  .afterclick-call-choices,
  .afterclick-call-slots,
  .afterclick-call-schedule__head {
    grid-template-columns: 1fr;
  }
  .afterclick-call-progress {
    gap: 6px;
  }
  .afterclick-call-progress span {
    justify-content: flex-start;
    min-height: 38px;
    padding-inline: 14px;
  }
  .afterclick-call-status__actions .btn,
  .afterclick-call-schedule__head .btn {
    width: 100%;
    min-width: 0;
  }
}


/* STEP 41 — embedded call block visual state polish */
.afterclick-call-widget__top {
  gap: 10px;
}

.afterclick-call-widget__top strong {
  max-width: 760px;
}

.afterclick-call-progress {
  gap: 10px;
  margin-top: -2px;
}

.afterclick-call-progress span {
  min-height: 36px;
  padding: 7px 10px;
  font-size: 12px;
  letter-spacing: .01em;
}

.afterclick-call-schedule__head {
  padding-top: 2px;
}

.afterclick-call-schedule__head strong {
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.04;
}

.afterclick-call-widget.is-awaiting-confirmation .afterclick-call-slots,
.afterclick-call-widget.is-booking-confirmed .afterclick-call-schedule__head,
.afterclick-call-widget.is-booking-confirmed .afterclick-call-slots,
.afterclick-call-widget.is-booking-confirmed [data-embedded-schedule-note] {
  display: none !important;
}

.afterclick-call-widget.is-booking-confirmed .afterclick-call-status {
  margin-top: 4px;
}

.afterclick-call-status--final {
  position: relative;
  padding: 26px 26px 26px 82px;
  border-color: rgba(23,61,50,.18);
  background: linear-gradient(135deg, rgba(23,61,50,.075), rgba(255,255,255,.82));
}

.afterclick-call-status--final::before {
  content: "✓";
  position: absolute;
  left: 26px;
  top: 28px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-green);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.afterclick-call-status--final h3 {
  font-size: clamp(25px, 2.2vw, 34px);
  letter-spacing: -.045em;
}

.afterclick-call-status--final p {
  max-width: 680px;
  font-size: 16px;
}

.afterclick-call-status--final strong {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 18px;
}


@media (max-width: 640px) {
  .afterclick-call-progress span {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 11px;
  }
  .afterclick-call-status--final {
    padding: 72px 18px 20px;
  }
  .afterclick-call-status--final::before {
    left: 18px;
    top: 20px;
  }
}


/* STEP 42 — call block final confirmed state selector fix */
[data-embedded-call-widget].is-awaiting-confirmation .afterclick-call-slots,
[data-embedded-call-widget].is-booking-confirmed .afterclick-call-schedule__head,
[data-embedded-call-widget].is-booking-confirmed .afterclick-call-slots,
[data-embedded-call-widget].is-booking-confirmed [data-embedded-schedule-note] {
  display: none !important;
}

[data-embedded-call-widget].is-booking-confirmed .afterclick-call-schedule {
  gap: 0;
}

[data-embedded-call-widget].is-booking-confirmed .afterclick-call-status {
  margin-top: 0;
}
