:root {
  --teal: #1f9ed6;
  --teal-dark: #0e5d86;
  --blue-navy: #0d4366;
  --blue-deep: #117bb4;
  --blue-med: #25a2dc;
  --blue-bright: #60c8f3;
  --blue-light: #def5ff;
  --blue-mist: #f6fbff;
  --ink: #1d2428;
  --muted: #66747b;
  --line: #e4ebee;
  --paper: #ffffff;
  --soft: #f4f8f9;
  --gold: #e0b15b;
  --primary: #1f9ed6;
  --primary-dark: #117bb4;
  --accent: #69d5f7;
  --border: #c7eaf7;
  --shadow: 0 14px 36px rgba(20, 129, 184, .1);
  --shadow-strong: 0 26px 64px rgba(12, 93, 137, .18);
  --content-width: 1140px;
  --section-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--blue-mist);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

main {
  position: relative;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 20;
  background: #fff;
  padding: 8px 12px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 185px 1fr 185px;
  align-items: center;
  min-height: 92px;
  padding: 7px clamp(18px, 3vw, 46px);
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 105px;
  height: 105px;
  object-fit: contain;
}

.main-nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: block;
  padding: 20px 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.main-nav a:hover {
  color: #d5f3ff;
}

.main-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 285px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-top: 2px solid var(--teal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.main-nav ul ul ul {
  top: -8px;
  left: 100%;
}

.main-nav li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav ul ul a {
  padding: 9px 17px;
  color: #1f2529;
  font-size: 13px;
  line-height: 1.35;
  white-space: normal;
  text-shadow: none;
}

.main-nav ul ul a:hover {
  color: var(--teal);
}

.main-nav ul ul li:hover > a {
  background: #f5f9fb;
}

.hero {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  min-height: 100vh;
  padding: clamp(138px, 13vw, 170px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 90px);
  background:
    linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
    url("images/praxis-arzt/Hautarzt-hanau-MKK.jpeg") center / cover;
}

.hero-copy {
  grid-column: 1;
  max-width: 390px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #d5f3ff;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 500;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
}

.button,
.send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.button:hover,
.send:hover {
  background: var(--teal-dark);
}

.appointment-section {
  position: relative;
  padding: 60px 20px 50px;
  background: #fff;
}

.appointment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 247, 0.52);
  pointer-events: none;
}

.appointment-wrap {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.appointment-wrap h3 {
  margin-bottom: 25px;
  text-align: center;
  color: #111;
  font-size: clamp(30px, 4vw, 47px);
  line-height: 1;
  font-weight: 600;
}

.appointment {
  background: transparent;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.screen-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.appointment label:not(.accept) {
  display: contents;
}

label:not(.screen-only) {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  color: #37464d;
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  height: 34px;
  border: 1px solid #d5d5d5;
  padding: 6px 12px;
  background: #fff;
  color: var(--ink);
  font: 13px Arial, Helvetica, sans-serif;
}

input::placeholder {
  color: #777;
}

.accept {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.accept input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.send {
  width: 100%;
  min-height: 40px;
  background: #0e7a9a;
  font-size: 14px;
}

.section {
  position: relative;
  z-index: 1;
  max-width: var(--section-width);
  margin: 0 auto;
  padding: clamp(12px, 1.8vw, 22px) 20px;
  background: var(--blue-mist);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: var(--blue-mist);
}

.zama-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(12px, 1.8vw, 22px) 0;
  background: var(--blue-mist);
}

main > :not(.zama-hero) .zama-shell {
  width: min(var(--content-width), calc(100% - 40px));
}

.zama-kicker--soft {
  border-color: rgba(27, 111, 168, .18);
  background: rgba(44, 143, 211, .08);
  color: var(--blue-deep);
}

.zama-kicker--light {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.94);
}

.zama-editorial-section {
  --editorial-image-y: 0px;
  --editorial-copy-y: 0px;
  padding: clamp(34px, 5vw, 74px) 0;
  background: var(--blue-mist);
}

.intro-source {
  padding-top: 18px;
}

.zama-intro {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.zama-intro > .zama-panel {
  order: 2;
}

.zama-intro > .zama-panel-grid {
  order: 1;
}

.zama-panel {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.zama-panel h2 {
  max-width: 13ch;
  margin: 0 0 16px;
  color: var(--blue-navy);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

.zama-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  text-align: justify;
}

.zama-panel p:last-child {
  margin-bottom: 0;
}

.zama-panel-grid {
  display: grid;
  gap: 14px;
}

.zama-panel-quote {
  background: linear-gradient(135deg, #082f55 0%, #0b4f83 55%, #1b6fa8 100%);
  color: #fff;
  padding: clamp(26px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.zama-panel-quote strong {
  display: block;
  margin-bottom: 16px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.zama-panel-quote p {
  margin: 0;
  color: rgba(255,255,255,.96);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  letter-spacing: 0;
}

.zama-editorial {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 46px);
  align-items: center;
}

.zama-editorial-heading {
  width: min(980px, 100%);
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}

.zama-editorial-heading .zama-kicker {
  margin-right: auto;
  margin-left: auto;
}

.zama-editorial-heading h2 {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  color: var(--blue-navy);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.zama-editorial-heading h2::after {
  content: "";
  display: block;
  width: min(180px, 36%);
  height: 1px;
  margin: 18px auto 0;
  background: rgba(13, 67, 102, .32);
  box-shadow:
    -46px 0 0 rgba(216, 170, 78, .28),
    46px 0 0 rgba(96, 200, 243, .22);
}

.zama-editorial > .zama-visual,
.zama-editorial--reverse > .zama-visual {
  order: 1;
  flex: 1 1 520px;
  min-width: 0;
}

.zama-editorial > .zama-editorial-copy,
.zama-editorial--reverse > .zama-editorial-copy {
  order: 2;
  flex: 1 1 520px;
  min-width: 0;
}

.zama-editorial--reverse > .zama-editorial-copy {
  order: 1;
}

.zama-editorial--reverse > .zama-visual {
  order: 2;
}

.zama-visual {
  position: relative;
  min-height: clamp(420px, 45vw, 620px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-strong);
  transform: translate3d(0, var(--editorial-image-y), 0);
  will-change: transform;
}

.zama-visual--praxis {
  background:
    linear-gradient(rgba(8,47,85,.08), rgba(8,47,85,.12)),
    url("images/praxis-arzt/hautarzt-praxis-hanau.jpg") center/cover no-repeat;
}

.zama-visual--laser {
  background:
    linear-gradient(rgba(8,47,85,.08), rgba(8,47,85,.16)),
    url("images/praxis-arzt/laserzentrum-krampfadern-laser-behandlung-e1692425561709.png") center/cover no-repeat;
}

.zama-visual-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.zama-visual-pill {
  padding: 14px 16px;
  background: rgba(255,255,255,.9);
  color: var(--blue-navy);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}

.home-blue-summary {
  display: flex;
  align-items: flex-end;
  padding: clamp(22px, 3vw, 34px);
}

.home-blue-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 67, 102, .1) 0%, rgba(13, 67, 102, .62) 100%),
    linear-gradient(135deg, rgba(31, 158, 214, .28), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-blue-summary-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(22px, 2.8vw, 34px);
  background: rgba(246, 251, 255, .94);
  border: 1px solid rgba(188, 234, 251, .86);
  box-shadow: 0 26px 70px rgba(7, 38, 63, .22);
}

.home-blue-summary-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  color: #0d4366;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(188, 234, 251, .72);
  border: 1px solid rgba(57, 169, 220, .34);
}

.home-blue-summary h3 {
  margin: 0 0 18px;
  color: #0d4366;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.08;
}

.home-blue-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-blue-summary-grid div {
  min-height: 100px;
  padding: 15px 14px;
  background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
  border: 1px solid rgba(57, 169, 220, .22);
  box-shadow: 0 12px 28px rgba(13, 67, 102, .08);
}

.home-blue-summary-grid strong {
  display: block;
  color: #0d4366;
  font-size: 15px;
  line-height: 1.15;
}

.home-blue-summary-grid span {
  display: block;
  margin-top: 8px;
  color: #405a68;
  font-size: 13px;
  line-height: 1.38;
}

.zama-editorial-copy {
  transform: translate3d(0, var(--editorial-copy-y), 0);
  will-change: transform;
}

.zama-editorial-copy h2 {
  max-width: 16ch;
  margin: 0 0 16px;
  color: var(--blue-navy);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.zama-editorial-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
}

.zama-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.zama-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 16px;
}

.zama-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 11px;
  height: 11px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.zama-editorial-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.zama-editorial-action .button {
  margin-left: auto;
  white-space: nowrap;
}

.editorial-blue {
  background: var(--blue-mist);
  color: var(--ink);
}

.editorial-blue .zama-editorial-copy h2,
.editorial-blue .zama-editorial-copy p,
.editorial-blue .zama-list li {
  color: var(--blue-navy);
}

.editorial-blue .zama-editorial-copy p,
.editorial-blue .zama-list li {
  color: #405a68;
}

.zama-list--light li::before {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
}

.services-band {
  position: relative;
  z-index: 3;
  overflow: hidden;
  --services-depth-y: 0px;
  margin-top: 0;
  padding-top: 0;
  background: var(--blue-mist);
  box-shadow: 0 -30px 80px rgba(8, 47, 85, .12);
}

.services-band > * {
  position: relative;
  z-index: 1;
}

.intro {
  padding-top: 14px;
  padding-bottom: 15px;
}

.mirror-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  text-align: left;
}

.mirror-intro-main,
.mirror-intro-side {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(201, 224, 238, .95);
  box-shadow: 0 18px 44px rgba(8, 47, 85, .1);
}

.mirror-intro-main {
  padding: clamp(24px, 4vw, 46px);
}

.mirror-intro-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 38px);
  border-left: 6px solid var(--blue-bright);
}

.mirror-intro h2 {
  max-width: 13ch;
  margin-bottom: 14px;
  color: var(--blue-navy);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

.mirror-intro-side strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-navy);
  font-size: 24px;
  line-height: 1.15;
}

.mirror-intro p {
  text-align: justify;
}

.intro p:last-child {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
}

.mirror-intro p,
.mirror-intro p:last-child {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  color: #405a68;
}

.mirror-section {
  --mirror-image-y: 0px;
  --mirror-copy-y: 0px;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 4.2vw, 58px) 0;
  overflow: hidden;
  background: var(--blue-mist);
}

.mirror-section--blue {
  background: linear-gradient(135deg, #082f55 0%, #0b4f83 56%, #1b6fa8 100%);
  color: #fff;
}

.mirror-layout {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 4.8vw, 64px);
  align-items: center;
}

.mirror-layout--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
}

.mirror-visual,
.mirror-copy {
  min-width: 0;
}

.mirror-visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 42vw, 560px);
  border: 8px solid #fff;
  box-shadow: 0 24px 55px rgba(8, 47, 85, .16);
  transform: translate3d(0, var(--mirror-image-y), 0);
  will-change: transform;
}

.mirror-section--blue .mirror-visual {
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 30px 76px rgba(0, 18, 36, .28);
}

.mirror-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mirror-visual-badges {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mirror-visual-badges span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  color: var(--blue-navy);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 28px rgba(8, 47, 85, .12);
}

.mirror-copy {
  transform: translate3d(0, var(--mirror-copy-y), 0);
  will-change: transform;
}

.mirror-copy h2 {
  max-width: 16ch;
  margin: 0 0 16px;
  color: var(--blue-navy);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.mirror-copy p {
  max-width: 68ch;
  margin: 0 0 18px;
  color: #405a68;
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
}

.mirror-copy--light h2,
.mirror-copy--light p {
  color: #fff;
}

.mirror-copy--light p {
  color: rgba(255,255,255,.86);
}

.mirror-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mirror-list li {
  position: relative;
  padding-left: 28px;
  color: #405a68;
  font-size: 16px;
}

.mirror-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 11px;
  height: 11px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
}

.mirror-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.mirror-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.mirror-focus-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  box-shadow: 0 18px 42px rgba(0, 18, 36, .15);
}

.mirror-focus-grid strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}

.mirror-focus-grid p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.6;
}

.service-grid,
.procedure-grid,
.reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}


.featured-treatment-grid {
  margin-top: clamp(34px, 4.5vw, 64px);
}

.featured-treatment-grid .wide-title {
  grid-column: 1 / -1;
}

.service-grid article,
.procedure-grid article,
.reviews article {
  background: #fff;
  border: 6px solid #fff;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(8, 47, 85, .16);
}

.service-grid img,
.procedure-grid img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.service-card-link {
  display: flex;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  flex-direction: column;
}

.home-core-themes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
  margin: clamp(12px, 2vw, 22px) auto clamp(28px, 4vw, 46px);
}

.home-core-theme-card {
  display: grid;
  grid-template-columns: minmax(170px, .78fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 250px;
  overflow: hidden;
  color: #0d4366;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(225, 246, 255, .96), rgba(255, 255, 255, .98)),
    #eef9ff;
  border: 1px solid rgba(57, 169, 220, .34);
  box-shadow: 0 26px 70px rgba(13, 67, 102, .16);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-core-theme-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 158, 214, .62);
  box-shadow: 0 36px 90px rgba(13, 67, 102, .22);
}

.home-core-theme-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.home-core-theme-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 38px);
}

.home-core-theme-card span {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 12px;
  color: #0d4366;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(188, 234, 251, .74);
  border: 1px solid rgba(57, 169, 220, .36);
}

.home-core-theme-card h2 {
  margin: 0;
  color: #0d4366;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
}

.home-core-theme-card p {
  margin: 16px 0 0;
  color: #25556f;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.home-spectrum-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto clamp(22px, 3vw, 36px);
}

.home-spectrum-flow span {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  color: #0d4366;
  font-size: clamp(13px, .95vw, 15px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  background: rgba(213, 242, 253, .82);
  border: 1px solid rgba(57, 169, 220, .34);
  box-shadow: 0 14px 36px rgba(13, 67, 102, .08);
}

.home-spectrum-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-top: 2px solid #0d4366;
  border-right: 2px solid #0d4366;
  transform: translateY(-50%) rotate(45deg);
  background: transparent;
}

.service-grid span {
  display: block;
  padding: 12px 16px 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.service-grid h3,
.procedure-grid h3 {
  margin: 7px 0 0;
  padding: 0 16px 16px;
  font-size: 19px;
  line-height: 1.25;
}

.about {
  position: relative;
  z-index: 0;
}

.about.section {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-parallax {
  --about-title-y: 0px;
  --about-image-y: 0px;
  --about-text-y: 0px;
  overflow: hidden;
  padding: 0;
  background: var(--blue-mist);
}

.about-pin {
  position: relative;
  padding: clamp(17px, 2vw, 28px) 0 clamp(17px, 2vw, 28px);
  background: transparent;
}

.about-title {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(10px, 1.5vw, 15px);
  transform: translate3d(0, var(--about-title-y), 0);
  will-change: transform;
}

.about-title h2 {
  margin: 0;
  color: var(--blue-navy);
  text-align: center;
  font-size: clamp(48px, 8vw, 118px);
  line-height: .92;
  font-weight: 800;
  text-shadow: 0 18px 42px rgba(8, 47, 85, .12);
}

.about-body {
  display: grid;
  grid-template-columns: minmax(264px, 384px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.about-text {
  padding: 0;
  background: transparent;
  transform: translate3d(0, var(--about-text-y), 0);
  will-change: transform;
}

.about-text p {
  max-width: 720px;
  margin-bottom: 26px;
  color: #18384f;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.65;
  text-align: justify;
}

.about-text p:last-of-type {
  margin-bottom: 20px;
}

.about-text .button {
  display: flex;
  width: max-content;
  margin-left: auto;
}

.about-action {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.portrait {
  width: 100%;
  max-width: 384px;
  height: auto;
  object-fit: contain;
  box-shadow: 18px 22px 0 rgba(44, 143, 211, .18);
  transform: translate3d(0, var(--about-image-y), 0);
  will-change: transform;
}

.procedure-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.feature-band {
  --feature-image-y: 0px;
  --feature-text-y: 0px;
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(24px, 4vw, 52px) 20px;
  background: var(--blue-mist);
  color: #fff;
}

.feature-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(1180px, 100%);
  min-height: 330px;
  margin: 0 auto;
}

.feature-band img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  max-height: none;
  object-fit: cover;
  opacity: .48;
  transform: translate3d(0, var(--feature-image-y), 0) scale(1.06);
  will-change: transform;
}

.feature-band-inner > div {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: 28px;
  background: rgba(8, 47, 85, .78);
  backdrop-filter: blur(8px);
  transform: translate3d(0, var(--feature-text-y), 0);
  will-change: transform;
}

.reviews {
  background: var(--blue-mist);
}

.feature-band h4 {
  margin-bottom: 3px;
  font-size: 22px;
}

.feature-band p {
  color: rgba(255,255,255,.82);
}

.zama-parallax-cta {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 34px 24px;
  margin: 0;
  box-shadow: var(--shadow-strong);
  background: #0a525d;
  color: #fff;
}

.zama-parallax-cta-media {
  position: absolute;
  inset: -6%;
  background-image: url("images/allgemein/hautreinigung-hanau3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0,0,0) scale(1.22);
  will-change: transform;
}

.zama-parallax-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,82,93,.68) 0%, rgba(10,82,93,.34) 42%, rgba(10,82,93,.08) 100%);
}

.zama-parallax-cta-content {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  color: #fff;
}

.zama-parallax-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  margin-bottom: 14px;
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.96);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.zama-parallax-cta-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.zama-parallax-cta-content p {
  max-width: 60ch;
  margin: 16px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  line-height: 1.75;
}

.zama-parallax-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  justify-content: center;
  transform: translateX(44px);
}

.zama-parallax-line {
  width: 220px;
  height: 3px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.42) 52%, var(--primary) 78%, var(--accent) 100%);
}

.wide-title {
  grid-column: 1 / -1;
  margin-bottom: 0;
  text-align: center;
}

.reviews {
  grid-template-columns: 1.05fr repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.rating,
.reviews article {
  padding: 18px;
}

body.parallax-ready .intro,
body.parallax-ready .service-grid article,
body.parallax-ready .procedure-grid article,
body.parallax-ready .zama-editorial-section,
body.parallax-ready .mission-cta-section,
body.parallax-ready .reviews > * {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .75s ease, transform .75s ease;
}

body.parallax-ready .service-grid article:nth-child(3n + 1),
body.parallax-ready .procedure-grid article:nth-child(3n + 1) {
  transition-delay: .04s;
}

body.parallax-ready .service-grid article:nth-child(3n + 2),
body.parallax-ready .procedure-grid article:nth-child(3n + 2) {
  transition-delay: .1s;
}

body.parallax-ready .service-grid article:nth-child(3n),
body.parallax-ready .procedure-grid article:nth-child(3n) {
  transition-delay: .16s;
}

body.parallax-ready .intro.is-visible,
body.parallax-ready .service-grid article.is-visible,
body.parallax-ready .procedure-grid article.is-visible,
body.parallax-ready .zama-editorial-section.is-visible,
body.parallax-ready .mission-cta-section.is-visible,
body.parallax-ready .reviews > .is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.rating {
  background: var(--teal);
  color: #fff;
}

.rating strong {
  display: block;
  font-size: 24px;
}

.rating span {
  color: var(--gold);
  font-size: 23px;
}

.reviews h3 {
  font-size: 18px;
}

.reviews p {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  margin-top: 11px;
  background:
    linear-gradient(135deg, rgba(4, 27, 56, 0.96) 0%, rgba(8, 47, 85, 0.94) 48%, rgba(11, 79, 131, 0.92) 100%),
    url("images/footer-blog/Footer.png") center / cover;
  color: #d8eaf6;
}

.footer-hero {
  max-width: 930px;
  margin: 0 auto;
  padding: 44px 20px 26px;
  text-align: center;
}

.footer-hero h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  text-shadow: 0 12px 30px rgba(4, 27, 56, .32);
}

.footer-hero p {
  margin: 0 auto 26px;
  max-width: 850px;
  color: #cfe4f2;
  font-size: 16px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(124, 196, 242, .38);
  background: rgba(124, 196, 242, .12);
  color: #fff;
  font-weight: 700;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.05fr 1.2fr 1.45fr;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 42px;
}

.footer-columns h4 {
  margin-bottom: 12px;
  color: #b9ddf4;
  font-size: 18px;
  font-weight: 600;
}

.footer-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-columns li,
.footer-columns a {
  color: #d8eaf6;
  font-size: 14px;
  line-height: 1.55;
}

.footer-columns li {
  margin-bottom: 6px;
}

.footer-columns a:hover {
  color: #7cc4f2;
}

.contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 7px;
}

.contact-list span {
  color: #7cc4f2;
}

.contact-list .footer-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, .12);
}

.contact-list .footer-whatsapp-icon::before {
  content: "☎";
  color: #fff;
  font-size: 10px;
  line-height: 1;
  transform: rotate(-12deg);
}

.footer-post {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.footer-post img {
  width: 58px;
  height: 52px;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.9);
  box-shadow: 0 12px 24px rgba(4, 27, 56, .28);
}

.footer-post a {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.footer-post span {
  color: #a8d5f4;
  font-size: 12px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  border-top: 1px solid rgba(124, 196, 242, 0.22);
  color: #d8eaf6;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 120px 1fr;
    background: rgba(5, 38, 51, 0.15);
  }

  .main-nav > ul {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .main-nav a {
    padding: 7px 8px;
    font-size: 12px;
  }

  .hero,
  .about,
  .feature-band-inner {
    grid-template-columns: 1fr;
  }

  .mirror-intro,
  .mirror-layout,
  .mirror-layout--reverse {
    grid-template-columns: 1fr;
  }

  .mirror-layout--reverse .mirror-visual {
    order: -1;
  }

  .mirror-focus-grid {
    grid-template-columns: 1fr;
  }

  .zama-intro,
  .zama-editorial,
  .zama-editorial--reverse {
    display: grid;
    grid-template-columns: 1fr;
  }

  .zama-editorial--reverse > .zama-visual {
    order: 1;
  }

  .zama-editorial--reverse > .zama-editorial-copy {
    order: 2;
  }

  .feature-band-inner > div {
    grid-column: 1;
  }

  .about-body {
    grid-template-columns: 1fr;
  }

  .about-pin {
    min-height: auto;
  }

  .portrait {
    max-width: 300px;
    height: auto;
    transform: none;
  }

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

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

  .rating {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    display: block;
    min-height: 0;
    padding: 12px 18px;
    background: rgba(5, 38, 51, 0.35);
  }

  .brand img {
    width: 70px;
    height: 70px;
  }

  .main-nav > ul {
    display: block;
    margin-top: 12px;
  }

  .main-nav ul ul {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    border-top: 1px solid var(--line);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 260px;
  }

  .form-grid,
  .service-grid,
  .procedure-grid,
  .reviews,
  .footer-columns,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .service-grid img,
  .procedure-grid img {
    height: 220px;
  }

  .footer-hero h2 {
    font-size: 34px;
  }

  .mirror-section {
    padding: 26px 0;
  }

  .mirror-visual {
    min-height: 300px;
  }

  .mirror-visual-badges {
    grid-template-columns: 1fr;
  }

  .mirror-copy h2,
  .mirror-intro h2 {
    max-width: none;
  }

  .zama-editorial-section {
    padding: 28px 0;
  }

  .zama-visual {
    min-height: 330px;
  }

  .zama-visual-badge {
    grid-template-columns: 1fr;
  }

  .zama-panel h2,
  .zama-editorial-copy h2 {
    max-width: none;
  }
}

/* ZAMA structure used for the normal Dermatologie Hanau menu, hero slider and booking form */
.zama-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.zama-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, padding .25s ease;
}

.zama-nav.is-scrolled,
.zama-nav.is-mobile-open {
  background: rgba(5, 38, 76, .9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(8, 47, 85, .18);
  padding: 12px 0;
}

.zama-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.zama-nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.zama-nav-brand-mark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,.9);
}

.zama-nav-toggle {
  display: none;
}

.zama-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.zama-nav-link,
.zama-nav-trigger,
.zama-nav-cta {
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.zama-nav-link:hover,
.zama-nav-trigger:hover {
  color: #fff;
}

.zama-nav-item {
  position: relative;
}

.zama-nav-item summary {
  list-style: none;
}

.zama-nav-item summary::-webkit-details-marker {
  display: none;
}

.zama-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.zama-nav-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.zama-nav-cta {
  padding: 13px 18px;
  border: 1px solid rgba(168, 213, 244, .75);
  background: linear-gradient(135deg, #1b6fa8, #0b4f83);
  box-shadow: 0 10px 26px rgba(5, 38, 76, .25);
}

.zama-nav-mega {
  position: fixed;
  left: 0;
  right: 0;
  top: 108px;
  z-index: 1001;
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}

.zama-nav-mega::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - 1320px) / 2));
  right: max(20px, calc((100vw - 1320px) / 2));
  top: -28px;
  height: 46px;
  pointer-events: auto;
}

.zama-nav.is-scrolled .zama-nav-mega {
  top: 92px;
}

.zama-nav-item--mega[open] > .zama-nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.zama-nav-mega-shell {
  position: relative;
  z-index: 1002;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,248,252,.98));
  border: 1px solid rgba(27, 111, 168, .34);
  box-shadow: 0 30px 80px rgba(8, 47, 85, .2);
  pointer-events: auto;
}

.zama-nav-mega-head {
  display: grid;
  grid-template-columns: minmax(170px, .3fr) 1fr;
  gap: 24px;
  margin-bottom: 18px;
  color: var(--blue-navy);
}

.zama-nav-mega-head strong {
  font-size: 24px;
  line-height: 1.05;
}

.zama-nav-mega-head span {
  color: #557287;
}

.zama-nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.zama-nav-mega-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zama-nav-mega-card {
  display: block;
  min-height: 124px;
  padding: 18px;
  border: 1px solid #cfe2f0;
  background: linear-gradient(180deg, #f7fbfe, #e7f2fa);
  color: #18384f;
  transition: transform .18s ease, border-color .18s ease;
}

.zama-nav-mega-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue-bright);
  background: linear-gradient(180deg, #ffffff, #d9ebf7);
}

.zama-nav-mega-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 15px;
  line-height: 1.2;
}

.zama-nav-mega-card span {
  color: #557287;
  font-size: 13px;
  line-height: 1.45;
}

.zama-hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--blue-navy);
  color: #fff;
}

.zama-hero-slider,
.zama-hero-slide {
  position: absolute;
  inset: 0;
}

.zama-hero-slide {
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  background-size: cover;
  background-position: center;
  transform: none;
  will-change: opacity;
}

.zama-hero-slide.is-active {
  opacity: 1;
}

.zama-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 27, 56, .92) 0%, rgba(8, 62, 112, .76) 34%, rgba(25, 103, 165, .38) 64%, rgba(8, 47, 85, .22) 100%),
    linear-gradient(180deg, rgba(8, 47, 85, .24) 0%, rgba(4, 27, 56, .5) 100%);
}

.zama-hero-dots {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.zama-hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.28);
  cursor: pointer;
}

.zama-hero-dot.is-active {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
}

.zama-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28vh;
  background:
    linear-gradient(180deg, rgba(242,248,252,0) 0%, rgba(242,248,252,.82) 62%, #f2f8fc 100%);
  pointer-events: none;
}

main > :not(.zama-hero) {
  position: relative;
  z-index: 2;
  background: var(--blue-mist);
}

main > .zama-editorial-section.editorial-blue {
  background: var(--blue-mist);
}

main > .zama-editorial-section.editorial-blue .zama-editorial-copy h2,
main > .zama-editorial-section.editorial-blue .zama-editorial-copy p,
main > .zama-editorial-section.editorial-blue .zama-list li {
  color: var(--blue-navy);
}

main > .zama-editorial-section.editorial-blue .zama-editorial-copy p,
main > .zama-editorial-section.editorial-blue .zama-list li {
  color: #405a68;
}

.zama-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: end;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100svh;
  padding: 96px 0 86px;
}

.zama-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.95);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.zama-kicker--soft {
  border-color: rgba(27, 111, 168, .18);
  background: rgba(44, 143, 211, .08);
  color: var(--blue-deep);
}

.zama-kicker--light {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.94);
}

.zama-editorial-section:not(.editorial-blue) .zama-kicker {
  border-color: rgba(27, 111, 168, .2);
  background: rgba(44, 143, 211, .08);
  color: var(--blue-deep);
}

.zama-editorial-section:not(.editorial-blue) .zama-panel h2,
.zama-editorial-section:not(.editorial-blue) .zama-editorial-copy h2 {
  color: var(--blue-navy);
}

.zama-editorial-section:not(.editorial-blue) .zama-panel p,
.zama-editorial-section:not(.editorial-blue) .zama-editorial-copy p,
.zama-editorial-section:not(.editorial-blue) .zama-list li {
  color: #405a68;
}

.editorial-blue .zama-kicker {
  border-color: rgba(27, 111, 168, .2);
  background: rgba(44, 143, 211, .08);
  color: var(--blue-deep);
}

.zama-hero-copy h1 {
  margin: 0 0 16px;
  max-width: 14ch;
  color: #fff;
  font-size: clamp(78px, 10vw, 142px);
  line-height: .88;
  letter-spacing: -.04em;
  font-weight: 800;
  text-shadow: 0 16px 40px rgba(4, 27, 56, .42);
}

.zama-hero-copy {
  transform: none;
}

.zama-hero-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 22px;
  line-height: 1.5;
}

.zama-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
}

.zama-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid #7cc4f2;
  background: linear-gradient(135deg, #2c8fd3, #0b4f83);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(5, 38, 76, .24);
}

.zama-btn-secondary {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
}

.zama-hero-note {
  margin-top: 18px;
  max-width: 520px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.zama-hero-aside {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  transform: translate3d(0, 42px, 0);
}

.zama-hero-card {
  width: min(100%, 520px);
  padding: 28px;
  background: linear-gradient(135deg, #2c8fd3, #0b4f83 58%, #082f55);
  box-shadow: 0 30px 80px rgba(8, 47, 85, .24);
}

.zama-hero-card strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: .98;
  letter-spacing: -.02em;
  font-weight: 800;
  text-shadow: 0 12px 30px rgba(4, 27, 56, .28);
}

.zama-hero-card p {
  color: rgba(255,255,255,.84);
  font-size: 15px;
}

.zama-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.zama-hero-metric {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.24);
}

.zama-hero-metric span {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.zama-hero-metric small {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.45;
}

.zama-booking-section {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 0 24px;
  background: rgba(5, 25, 47, .7);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.zama-booking-section.is-open {
  display: flex;
}

.zama-booking-dialog {
  position: relative;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  background: linear-gradient(135deg, #1b6fa8 0%, #0b4f83 42%, #082f55 100%);
  box-shadow: 0 30px 80px rgba(8, 47, 85, .34);
}

.zama-booking-panel {
  padding: 26px;
}

.zama-booking-panel-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.zama-booking-panel-head h3 {
  margin: 0 0 8px;
  color: #b9ddf4;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
}

.zama-booking-simple-note {
  color: #eaf6fd;
  font-size: 16px;
  line-height: 1.45;
  background: rgba(124, 196, 242, .16);
  border-left: 4px solid #7cc4f2;
  padding: 10px 14px;
}

.zama-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 34px;
}

.zama-form-field {
  position: relative;
}

.zama-form-field label {
  display: none;
}

.zama-form-field input,
.zama-form-field select,
.zama-form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.58);
  background: transparent;
  padding: 5px 10px;
  color: #fff;
  font: inherit;
  outline: none;
  border-radius: 0;
}

.zama-form-field input::placeholder,
.zama-form-field textarea::placeholder {
  color: rgba(255,255,255,.82);
}

.zama-form-field select {
  color: rgba(255,255,255,.82);
}

.zama-form-inline-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(232,252,250,.98);
  font-size: 12px;
  pointer-events: none;
}

.zama-form-field--calendar input {
  padding-left: 128px;
}

.zama-form-field--calendar.zama-form-field--long input {
  padding-left: 154px;
}

.zama-form-hint {
  grid-column: 1 / -1;
  color: #d8ecf8;
  font-size: 16px;
}

.zama-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
}

.zama-checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  padding: 0;
  accent-color: var(--blue-bright);
  flex: 0 0 16px;
}

.zama-checkbox label {
  color: rgba(255,255,255,.95);
  font-size: 15px;
}

.zama-form-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.zama-form-submit {
  position: relative;
  padding-right: 52px;
}

.zama-form-submit::after {
  content: "\2192";
  position: absolute;
  right: 20px;
}

.zama-booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .zama-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
  }

  .zama-nav-toggle-lines,
  .zama-nav-toggle-lines::before,
  .zama-nav-toggle-lines::after,
  .zama-nav-toggle-lines span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .zama-nav-toggle-lines {
    position: relative;
    background: transparent;
  }

  .zama-nav-toggle-lines::before,
  .zama-nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .zama-nav-toggle-lines::before {
    top: -7px;
  }

  .zama-nav-toggle-lines::after {
    top: 7px;
  }

  .zama-nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    padding: 18px;
    background: rgba(8, 47, 85, .96);
    align-items: stretch;
    flex-direction: column;
  }

  .zama-nav.is-mobile-open .zama-nav-links {
    display: flex;
  }

  .zama-nav-mega {
    position: static;
    padding-top: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .zama-nav-mega-shell {
    width: 100%;
    padding: 16px;
  }

  .zama-nav-mega-head,
  .zama-nav-mega-grid,
  .zama-nav-mega-grid--wide,
  .zama-hero-inner,
  .zama-form-grid {
    grid-template-columns: 1fr;
  }

  .zama-hero-aside {
    display: none;
  }

  .zama-hero-copy h1 {
    font-size: 48px;
  }

  .about-parallax {
    min-height: auto;
  }

  .about-pin {
    position: relative;
  }

  .zama-parallax-cta {
    min-height: 54vh;
    padding: 20px;
  }

  .zama-parallax-cta-media {
    inset: -14%;
    transform: translate3d(0,0,0) scale(1.24);
  }

  .zama-parallax-cta-content h2,
  .zama-parallax-kicker {
    white-space: normal;
  }

  .zama-parallax-kicker {
    min-width: 0;
  }

  .zama-booking-section {
    padding: 12px 0 18px;
  }

  .zama-booking-dialog {
    width: min(100% - 24px, 680px);
  }
}

/* Bright sky-blue visual polish */
body {
  background:
    radial-gradient(circle at 12% 18%, rgba(105, 213, 247, .16), transparent 34%),
    linear-gradient(180deg, #fbfeff 0%, var(--blue-mist) 38%, #edf8ff 100%);
}

.section,
.zama-section,
main > :not(.zama-hero) {
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(246,251,255,.9)),
    var(--blue-mist);
}

.zama-editorial-section {
  background:
    linear-gradient(135deg, rgba(255,255,255,.92) 0%, rgba(230,247,255,.92) 100%);
}

.zama-panel,
.zama-editorial-copy {
  position: relative;
}

.zama-panel {
  border: 1px solid rgba(96, 200, 243, .42);
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(244,252,255,.94) 100%);
  box-shadow: 0 18px 46px rgba(31, 158, 214, .11);
}

.zama-panel::before,
.zama-editorial-copy::before {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--gold));
}

.zama-panel-quote {
  background: linear-gradient(135deg, #118bc4 0%, #35b9e9 58%, #8ee5ff 100%);
  box-shadow: 0 20px 54px rgba(31, 158, 214, .2);
}

.zama-panel-quote p {
  color: #fff;
  text-shadow: 0 10px 24px rgba(13, 67, 102, .18);
}

.zama-editorial-copy h2,
.zama-panel h2,
.wide-title,
.intro h2 {
  color: #0d4366;
}

.zama-editorial-copy p,
.zama-panel p,
.zama-list li {
  color: #466677;
}

.zama-kicker--soft,
.zama-editorial-section:not(.editorial-blue) .zama-kicker,
.editorial-blue .zama-kicker {
  border-color: rgba(31, 158, 214, .22);
  background: rgba(105, 213, 247, .14);
  color: #117bb4;
}

.zama-visual {
  border: 8px solid rgba(255,255,255,.92);
  box-shadow: 0 28px 72px rgba(18, 127, 184, .18);
}

.zama-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(105,213,247,.03) 0%, rgba(13,67,102,.16) 100%);
  pointer-events: none;
}

.zama-visual-badge {
  z-index: 1;
}

.zama-visual-pill {
  border: 1px solid rgba(96, 200, 243, .38);
  background: rgba(255,255,255,.94);
  color: #0d4366;
  box-shadow: 0 14px 34px rgba(13, 67, 102, .12);
}

.service-grid article,
.procedure-grid article,
.reviews article {
  border: 6px solid rgba(255,255,255,.94);
  background: linear-gradient(180deg, #fff 0%, #f4fbff 100%);
  box-shadow: 0 18px 46px rgba(31, 158, 214, .12);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-grid article:hover,
.procedure-grid article:hover,
.reviews article:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 213, 247, .62);
  box-shadow: 0 28px 70px rgba(31, 158, 214, .18);
}

.service-grid span {
  color: #168bc2;
}

.service-grid h3,
.procedure-grid h3,
.reviews h3 {
  color: #0d4366;
}

.button,
.send,
.zama-btn,
.zama-nav-cta {
  border-color: rgba(105, 213, 247, .78);
  background: linear-gradient(135deg, #69d5f7 0%, #25a2dc 48%, #117bb4 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 158, 214, .24);
}

.button:hover,
.send:hover,
.zama-btn:hover,
.zama-nav-cta:hover {
  background: linear-gradient(135deg, #8ee5ff 0%, #35b9e9 50%, #168bc2 100%);
}

.zama-nav.is-scrolled,
.zama-nav.is-mobile-open {
  background: rgba(13, 91, 138, .82);
  box-shadow: 0 14px 34px rgba(13, 67, 102, .16);
}

.zama-nav-mega-shell {
  border-color: rgba(96, 200, 243, .46);
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(235,249,255,.99));
  box-shadow: 0 28px 76px rgba(18, 127, 184, .16);
}

.zama-nav-mega-card {
  border-color: rgba(199, 234, 247, .95);
  background: linear-gradient(180deg, #ffffff 0%, #edf9ff 100%);
}

.zama-nav-mega-card:hover {
  border-color: rgba(105, 213, 247, .8);
  background: linear-gradient(180deg, #ffffff 0%, #dff5ff 100%);
}

.zama-hero-card {
  background: linear-gradient(135deg, rgba(105, 213, 247, .94) 0%, rgba(31, 158, 214, .94) 52%, rgba(17, 123, 180, .95) 100%);
  box-shadow: 0 34px 86px rgba(13, 67, 102, .26);
}

.zama-hero-slide::after {
  background:
    linear-gradient(90deg, rgba(6, 48, 79, .82) 0%, rgba(18, 119, 174, .58) 42%, rgba(96, 200, 243, .2) 72%, rgba(13, 67, 102, .18) 100%),
    linear-gradient(180deg, rgba(13, 67, 102, .12) 0%, rgba(13, 67, 102, .44) 100%);
}

.zama-parallax-cta {
  background: #168bc2;
}

.zama-parallax-cta-overlay {
  background: linear-gradient(90deg, rgba(13,67,102,.72) 0%, rgba(31,158,214,.36) 46%, rgba(105,213,247,.1) 100%);
}

.rating {
  background: linear-gradient(135deg, #25a2dc 0%, #117bb4 100%);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(5, 44, 73, .94) 0%, rgba(13, 91, 138, .91) 52%, rgba(31, 158, 214, .84) 100%),
    url("images/footer-blog/Footer.png") center / cover;
}

/* Solid color controls and plaques */
.button,
.send,
.zama-btn,
.zama-nav-cta {
  background: #0d4366;
  border-color: #0d4366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 67, 102, .24);
}

.button:hover,
.send:hover,
.zama-btn:hover,
.zama-nav-cta:hover {
  background: #117bb4;
  border-color: #117bb4;
}

.zama-btn-secondary {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.34);
}

.zama-panel-quote,
.rating,
.zama-parallax-cta {
  background: #0d4366;
  box-shadow: 0 22px 52px rgba(13, 67, 102, .24);
}

.zama-visual-pill,
.zama-kicker--soft,
.zama-editorial-section:not(.editorial-blue) .zama-kicker,
.editorial-blue .zama-kicker {
  background: #eefaff;
  border-color: rgba(13, 67, 102, .18);
  color: #0d4366;
}

.zama-hero-card {
  background: #0d4366;
  box-shadow: 0 34px 86px rgba(13, 67, 102, .28);
}

.zama-hero-metric {
  background: transparent;
}

.zama-hero {
  overflow: visible;
  z-index: 3;
}

.zama-hero-inner {
  z-index: 4;
}

.zama-hero-aside {
  position: absolute;
  right: 0;
  bottom: -84px;
  z-index: 8;
  width: min(520px, 42vw);
  align-items: start;
  transform: translate3d(-18px, 0, 0);
}

.zama-hero-card {
  width: min(100%, 520px);
}

.zama-visual-pill {
  border-color: #c7eaf7;
}

.zama-panel::before,
.zama-editorial-copy::before,
.zama-list li::before,
.zama-list--light li::before {
  background: #0d4366;
}

.zama-parallax-line {
  background: #0d4366;
}

/* Unified light page background after the hero */
body,
main,
main > :not(.zama-hero),
.section,
.section::before,
.zama-section,
.zama-editorial-section,
.intro-source,
.services-band,
.reviews,
.editorial-blue {
  background: #f6fbff;
}

.services-band {
  box-shadow: none;
}

.zama-editorial-section,
.section,
.zama-section {
  border-top: 0;
  border-bottom: 0;
}

main > .zama-editorial-section.editorial-blue {
  background: #f6fbff;
}

.mission-cta-section {
  background: #f6fbff;
}

.zama-parallax-cta,
.site-footer {
  background-color: #0d4366;
}

/* Section title polish */
.section > .eyebrow,
.section > h2,
.wide-title {
  text-align: center;
}

.section > .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.section > .eyebrow + h2,
.wide-title,
.zama-panel h2,
.zama-editorial-copy h2 {
  position: relative;
  padding-bottom: 14px;
}

.section > .eyebrow + h2::after,
.wide-title::after,
.zama-panel h2::after,
.zama-editorial-copy h2::after {
  content: "";
  display: block;
  width: min(168px, 38%);
  height: 1px;
  margin: 14px auto 0;
  background: rgba(13, 67, 102, .28);
  box-shadow:
    -42px 0 0 rgba(96, 200, 243, .18),
    42px 0 0 rgba(96, 200, 243, .18);
}

.zama-panel h2,
.zama-editorial-copy h2 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.zama-panel::before,
.zama-editorial-copy::before {
  display: none;
}

/* Keep the main menu and megamenu above every page layer */
.zama-nav {
  z-index: 2147483000;
}

.zama-nav-mega {
  z-index: 2147483001;
}

.zama-nav-mega-shell {
  z-index: 2147483002;
}

.zama-nav-links {
  z-index: 2147483001;
}

.zama-booking-section {
  z-index: 2147483003;
}

main > .zama-booking-section,
#terminanfrage-formular.zama-booking-section {
  position: fixed;
  inset: 0;
  z-index: 2147483003;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 0 24px;
  background: rgba(5, 25, 47, .7);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#terminanfrage-formular.is-open {
  display: flex;
  z-index: 2147483003;
}

/* Trust / reviews section: light ornamental break before footer */
.trust-section.section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 22px 0 0;
  padding: 34px 20px 42px;
  background: #f6fbff;
  color: var(--blue-navy);
  overflow: visible;
}

.trust-section.section::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0%, rgba(13, 67, 102, .18) 18%, rgba(216, 170, 78, .45) 50%, rgba(13, 67, 102, .18) 82%, transparent 100%) top center / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(13, 67, 102, .12) 18%, rgba(96, 200, 243, .3) 50%, rgba(13, 67, 102, .12) 82%, transparent 100%) bottom center / 100% 1px no-repeat,
    #f6fbff;
}

.trust-inner {
  position: relative;
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
}

.trust-heading {
  max-width: none;
  margin: 0 auto 16px;
  text-align: center;
}

/* Mobile menu scroll lock: the open menu scrolls, the page behind stays fixed. */
@media (max-width: 980px) {
  body.zama-nav-lock {
    width: 100%;
    overflow: hidden;
  }

  .zama-nav.is-mobile-open .zama-nav-inner {
    position: relative;
    z-index: 2147483003;
  }

  .zama-nav.is-mobile-open .zama-nav-links {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 88px;
    bottom: 0;
    width: auto;
    min-height: auto;
    height: auto;
    max-height: calc(100dvh - 88px);
    margin: 0;
    padding: 16px 20px 28px;
    background: rgba(8, 47, 85, .98);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .zama-nav.is-mobile-open .zama-nav-item {
    flex: 0 0 auto;
    width: 100%;
  }

  .zama-nav.is-mobile-open .zama-nav-mega,
  .zama-nav.is-mobile-open .zama-nav-mega-shell {
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .zama-nav.is-mobile-open .zama-nav-mega {
    padding-top: 10px;
  }

  .zama-nav.is-mobile-open .zama-nav-mega::before {
    display: none;
  }

  .zama-nav.is-mobile-open .zama-nav-mega-shell {
    padding: 14px;
    box-shadow: none;
  }

  .zama-nav.is-mobile-open .zama-nav-mega-grid,
  .zama-nav.is-mobile-open .zama-nav-mega-grid--wide {
    display: grid;
    grid-template-columns: 1fr;
  }

  .zama-nav.is-mobile-open .zama-nav-trigger {
    width: 100%;
    justify-content: space-between;
  }
}

.trust-heading .eyebrow {
  color: #117bb4;
}

.trust-heading h2 {
  margin: 0 auto;
  color: var(--blue-navy);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
}

.trust-grid {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  transform: none;
}

.trust-card {
  position: relative;
  min-height: 0;
  display: inline-grid;
  grid-template-columns: 28px auto auto;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(13, 67, 102, .16);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 24px rgba(13, 67, 102, .07);
}

.trust-card::before {
  content: "";
  position: static;
  grid-column: 1;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(216, 170, 78, .55);
  background:
    linear-gradient(135deg, rgba(216, 170, 78, .16), rgba(96, 200, 243, .12));
  transform: rotate(45deg);
  order: -1;
}

.trust-card span {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  width: max-content;
  margin: 0;
  padding: 6px 9px;
  background: #0d4366;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.trust-card a {
  display: inline-flex;
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  background: #0d4366;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.trust-card a:hover {
  background: #d8aa4e;
  color: #082f55;
}

@media (max-width: 780px) {
  .trust-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 18px;
    transform: none;
  }

  .trust-card {
    width: min(100%, 420px);
    grid-template-columns: 28px auto;
  }

  .trust-card a {
    grid-column: 1 / -1;
    grid-row: 2;
    width: max-content;
    margin: 2px auto 0;
  }
}

.section-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: -4px auto 22px;
}

.section-ornament span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border: 1px solid #0d4366;
  background: #0d4366;
  box-shadow: none;
  transform: rotate(45deg);
}


/* Visual lift: stronger hierarchy and more editorial rhythm */
body {
  background: #eef8ff;
}

.services-band {
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
}

.intro-source {
  padding-top: clamp(26px, 4vw, 46px);
}

.zama-intro {
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

.zama-intro > .zama-panel,
.zama-intro > .zama-panel-grid > .zama-panel,
.zama-editorial-copy {
  border: 1px solid rgba(96, 200, 243, .34);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,250,255,.96));
  box-shadow:
    0 24px 60px rgba(13, 67, 102, .12),
    inset 0 1px 0 rgba(255,255,255,.88);
}

.zama-intro > .zama-panel {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.zama-intro > .zama-panel::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 96px;
  height: 3px;
  background: #d8aa4e;
  opacity: .9;
}

.zama-panel h2 {
  max-width: 10ch;
  font-size: clamp(48px, 6.6vw, 88px);
}

.zama-panel p,
.zama-editorial-copy p,
.mirror-copy p {
  font-size: 18px;
  line-height: 1.78;
}

.zama-panel-quote {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, #082f55 0%, #0d4366 58%, #176f9f 100%);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 28px 68px rgba(13, 67, 102, .28);
}

.zama-panel-quote strong {
  color: rgba(255,255,255,.72);
}

.zama-panel-quote p {
  font-size: clamp(24px, 2.8vw, 34px);
}

.service-grid.section,
.procedure-grid {
  gap: clamp(16px, 2vw, 24px);
}

.service-grid article,
.procedure-grid article,
.reviews article {
  border: 8px solid #fff;
  background: #fff;
  box-shadow:
    0 22px 54px rgba(13, 67, 102, .13),
    0 1px 0 rgba(13, 67, 102, .04);
}

.service-grid article:hover,
.procedure-grid article:hover,
.reviews article:hover {
  transform: translateY(-7px);
  box-shadow:
    0 34px 86px rgba(13, 67, 102, .2),
    0 0 0 1px rgba(96, 200, 243, .38);
}

.service-grid img,
.procedure-grid img {
  height: 190px;
  transition: transform .42s ease;
}

.service-grid article:hover img,
.procedure-grid article:hover img {
  transform: scale(1.045);
}

.service-grid article:nth-of-type(1),
.service-grid article:nth-of-type(2) {
  grid-column: span 2;
}

.service-grid article:nth-of-type(1) img,
.service-grid article:nth-of-type(2) img {
  height: 245px;
}

.service-grid span {
  color: #117bb4;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-grid h3,
.procedure-grid h3 {
  padding-bottom: 20px;
  color: #0d4366;
  font-size: 21px;
}

.zama-editorial-section {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.zama-editorial {
  gap: clamp(30px, 5vw, 62px);
}

.zama-visual {
  border: 10px solid #fff;
  min-height: clamp(460px, 45vw, 660px);
  box-shadow:
    0 36px 86px rgba(13, 67, 102, .2),
    18px 18px 0 rgba(96, 200, 243, .14);
}

.zama-editorial--reverse .zama-visual {
  box-shadow:
    0 36px 86px rgba(13, 67, 102, .2),
    -18px 18px 0 rgba(96, 200, 243, .14);
}

.zama-editorial-copy {
  padding: clamp(26px, 4vw, 48px);
}

#praxis .zama-editorial,
#schwerpunkte .zama-editorial {
  align-items: stretch;
}

#praxis .zama-visual,
#praxis .zama-editorial-copy,
#schwerpunkte .zama-visual,
#schwerpunkte .zama-editorial-copy {
  min-height: 0;
}

#praxis .zama-visual,
#schwerpunkte .zama-visual {
  min-height: auto;
  aspect-ratio: auto;
  box-shadow: 0 30px 72px rgba(13, 67, 102, .18);
}

#praxis .zama-editorial-copy,
#schwerpunkte .zama-editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zama-editorial-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.zama-list {
  display: grid;
  gap: 11px;
}

.zama-list li {
  padding: 12px 14px 12px 34px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(96, 200, 243, .22);
}

.zama-list li::before {
  left: 14px;
  top: 21px;
  width: 8px;
  height: 8px;
  background: #d8aa4e;
}

.section > h2,
.wide-title {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  color: #0d4366;
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 1.05;
}

.eyebrow,
.zama-kicker,
.zama-parallax-kicker {
  letter-spacing: .11em;
}

.rating {
  border: 8px solid #fff;
  background:
    linear-gradient(145deg, #082f55 0%, #0d4366 70%, #176f9f 100%);
  box-shadow: 0 28px 68px rgba(13, 67, 102, .26);
}

@media (max-width: 980px) {
  .zama-intro > .zama-panel,
  .zama-intro > .zama-panel-grid {
    order: initial;
  }

  .service-grid article:nth-of-type(1),
  .service-grid article:nth-of-type(2) {
    grid-column: span 1;
  }

  .service-grid article:nth-of-type(1) img,
  .service-grid article:nth-of-type(2) img,
  .service-grid img,
  .procedure-grid img {
    height: 210px;
  }

.zama-visual,
  .zama-editorial--reverse .zama-visual {
    box-shadow: 0 26px 62px rgba(13, 67, 102, .18);
  }
}

/* Hero rebuilt from the reference layout, adapted to the Dermatologie blue palette */
.zama-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  overflow: hidden;
  background: #0d4366;
  color: #fff;
}

.zama-hero-slider {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.zama-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.08) translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.zama-hero-slide.is-active {
  opacity: 1;
}

.zama-hero-slide--one {
  animation: zamaHeroDriftOne 14s ease-in-out infinite alternate;
}

.zama-hero-slide--two {
  animation: zamaHeroDriftTwo 15s ease-in-out infinite alternate;
}

.zama-hero-slide--three {
  animation: zamaHeroDriftThree 16s ease-in-out infinite alternate;
}

@keyframes zamaHeroDriftOne {
  0% { transform: scale(1.08) translate3d(-2%, -1%, 0); }
  50% { transform: scale(1.14) translate3d(1.5%, 1%, 0); }
  100% { transform: scale(1.1) translate3d(3%, 0, 0); }
}

@keyframes zamaHeroDriftTwo {
  0% { transform: scale(1.09) translate3d(2.5%, -1%, 0); }
  50% { transform: scale(1.15) translate3d(-1%, 1.5%, 0); }
  100% { transform: scale(1.11) translate3d(-3%, 0, 0); }
}

@keyframes zamaHeroDriftThree {
  0% { transform: scale(1.08) translate3d(0, 1.5%, 0); }
  50% { transform: scale(1.14) translate3d(2.5%, -1%, 0); }
  100% { transform: scale(1.1) translate3d(-2.5%, 0, 0); }
}

.zama-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 27, 56, .86) 0%, rgba(13, 67, 102, .66) 32%, rgba(17, 123, 180, .28) 62%, rgba(13, 67, 102, .16) 100%),
    linear-gradient(180deg, rgba(4, 27, 56, .08) 0%, rgba(4, 27, 56, .34) 36%, rgba(4, 27, 56, .62) 72%, rgba(4, 27, 56, .88) 100%);
}

.zama-hero-dots {
  position: absolute;
  right: 36px;
  left: auto;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: none;
}

.zama-hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: all .2s ease;
}

.zama-hero-dot.is-active {
  background: #60c8f3;
  border-color: #60c8f3;
}

.zama-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: none;
  pointer-events: none;
}

.zama-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: end;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  padding: 110px 0 120px;
}

.zama-hero-copy h1 {
  margin: 0 0 22px;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(52px, 7vw, 86px);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 700;
  text-shadow: 0 16px 40px rgba(4, 27, 56, .38);
}

.zama-hero-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.75;
}

.skin-surveillance-page .zama-hero-copy,
.skin-surveillance-page .zama-hero-copy h1,
.skin-surveillance-page .zama-hero-copy p,
.skin-tumor-page .zama-hero-copy,
.skin-tumor-page .zama-hero-copy h1,
.skin-tumor-page .zama-hero-copy p {
  text-align: left;
}

.zama-hero-note {
  margin-top: 30px;
  max-width: 520px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.72);
  font-size: 14px;
  letter-spacing: .03em;
}

.zama-hero-aside {
  position: static;
  z-index: auto;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  width: auto;
  transform: none;
}

.zama-hero-card {
  width: min(100%, 470px);
  padding: 28px;
  border: 1px solid #117bb4;
  background: #117bb4;
  box-shadow: 0 30px 80px rgba(4, 27, 56, .2);
}

.zama-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 700;
}

.zama-hero-card p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 15px;
}

.zama-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.zama-hero-metric {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.24);
  background: transparent;
}

.zama-hero-metric span {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.zama-hero-metric small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.45;
}

.home-flash-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.home-flash-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(8, 44, 86, .2);
  background: #0b315f;
  color: #fff;
  box-shadow: 0 12px 26px rgba(8, 44, 86, .14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-flash-tags span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 9px;
  background: #8fd8ff;
  transform: rotate(45deg);
}

@media (max-width: 1320px) {
  .zama-hero-inner {
    grid-template-columns: 1fr;
  }

  .zama-hero-aside {
    justify-content: flex-start;
    margin-top: 34px;
  }
}

@media (max-width: 980px) {
  .zama-hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .zama-hero {
    min-height: auto;
  }

  .zama-hero-inner {
    min-height: auto;
    padding: 92px 0 82px;
  }

  .zama-hero-copy h1 {
    font-size: 46px;
  }

  .zama-hero-copy p {
    font-size: 17px;
  }

  .zama-hero-metrics {
    grid-template-columns: 1fr;
  }

  .zama-hero-dots {
    right: 20px;
    bottom: 20px;
  }
}

/* Article pages recovered support */
.article-page {
  background: var(--blue-mist);
}

.article-section {
  position: relative;
  z-index: 2;
  padding: clamp(42px, 6vw, 76px) 0;
  background: var(--blue-mist);
}

.article-section--soft {
  background: #eef8ff;
}

.article-layout,
.article-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
}

.article-two-column > div {
  min-height: 100%;
}

.article-copy,
.article-two-column > div,
.article-side-card,
.article-check-card,
.article-lab-card,
.article-feature-grid article {
  color: var(--ink);
}

.article-copy p,
.article-two-column p,
.article-side-card p,
.article-check-card li,
.article-lab-card p,
.article-feature-grid p,
.article-feature-grid li {
  text-align: justify;
  text-justify: inter-word;
}

.article-lead {
  margin: 0 0 20px;
  color: var(--blue-navy);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.38;
  font-weight: 700;
}

.article-copy h2,
.article-two-column h2,
.article-side-card h2,
.article-side-card-title,
.article-check-card h3,
.article-lab-card h3,
.article-feature-grid h3 {
  color: var(--blue-navy);
  text-align: center;
  line-height: 1.2;
}

.article-copy h2,
.article-two-column h2 {
  margin: 28px 0 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.article-layout > .article-copy h2,
.article-layout > :first-child:not(.article-side-card):not(.article-check-card):not(.article-lab-card) h2,
.article-two-column > :first-child:not(.article-side-card):not(.article-check-card):not(.article-lab-card) h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.article-layout > .article-copy h2::before,
.article-layout > :first-child:not(.article-side-card):not(.article-check-card):not(.article-lab-card) h2::before,
.article-two-column > :first-child:not(.article-side-card):not(.article-check-card):not(.article-lab-card) h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.article-layout > .article-copy .article-section-kicker,
.article-layout > :first-child:not(.article-side-card):not(.article-check-card):not(.article-lab-card) .article-section-kicker,
.article-two-column > :first-child:not(.article-side-card):not(.article-check-card):not(.article-lab-card) .article-section-kicker {
  justify-content: flex-start;
  margin-left: 0;
}

.article-side-card,
.article-check-card,
.article-lab-card,
.article-feature-grid article {
  border: 1px solid rgba(17, 123, 180, .18);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.article-side-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 30px);
  padding-bottom: clamp(86px, 7vw, 112px);
}

.article-side-card > .zama-btn {
  position: absolute;
  right: clamp(20px, 2.5vw, 30px);
  bottom: clamp(20px, 2.5vw, 30px);
  align-self: auto;
  margin-top: 0;
}

.article-check-card .zama-btn {
  display: flex;
  width: fit-content;
  margin-top: clamp(28px, 4vw, 52px);
  margin-left: auto;
}

.article-check-card .article-check-card-cta {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 12px;
}

.zama-btn-row .zama-btn[href*="terminanfrage"],
.zama-parallax-btn-row .zama-btn-booking {
  order: 2;
}

.zama-hero .zama-btn-row {
  justify-content: flex-start;
}

.zama-hero .zama-btn-row .zama-btn {
  order: 0;
}

.article-side-card-title {
  margin: 0 0 10px;
  color: var(--blue-navy);
  text-align: center;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.18;
}

.article-side-card-title--subtle {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.15;
  white-space: nowrap;
}

.article-side-card-image--compact {
  height: clamp(96px, 10vw, 128px) !important;
  margin: 0 0 12px;
}

.article-side-card h2 + .article-side-card-image--compact {
  margin-top: 0;
}

.rosazea-page .rosazea-diagnostic-card {
  align-self: start;
  padding-bottom: clamp(20px, 2.5vw, 30px);
}

.rosazea-page .rosazea-diagnostic-card > .zama-btn {
  position: static;
  align-self: flex-end;
  margin-top: auto;
}

.rosazea-page .rosazea-diagnostic-card .article-side-card-image--compact {
  height: clamp(142px, 16vw, 220px) !important;
  object-position: center top;
  margin-bottom: 16px;
}

.rosazea-page .rosazea-diagnostic-card .article-side-card-title {
  margin: 0 0 12px;
}

.article-side-card img,
.article-feature-grid img {
  display: block;
  width: 100%;
  height: clamp(180px, 22vw, 280px);
  object-fit: cover;
  margin-bottom: 18px;
}

.article-feature-grid .skin-quality-lightbox-link {
  display: block;
}


.article-feature-grid img.article-feature-image--contain {
  height: auto;
  max-height: 135px;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.article-credential {
  margin: 22px 0;
  padding: 18px;
  border-left: 4px solid var(--blue-navy);
  background: #f4fbff;
}

.article-credential strong {
  display: block;
  color: var(--blue-navy);
  margin-bottom: 8px;
}

.article-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.article-pill-grid span,
.article-pill-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 14px;
  color: var(--blue-navy);
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(17, 123, 180, .22);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(12, 93, 137, .08);
}

.article-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.article-feature-grid article {
  padding: 18px;
}

.rosacea-severity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rosacea-severity-grid article {
  min-height: 100%;
}

.haemangioma-location-grid,
.rosacea-symptom-grid,
.feuermale-location-grid,
.frax-application-grid,
.frax-comparison-grid,
.co2-application-grid,
.co2-comparison-grid,
.co2-goals-grid,
.scar-category-grid,
.scar-type-seo-grid,
.scar-method-seo-grid,
.scar-goals-seo-grid,
.scar-laser-seo-grid,
.venous-seo-grid,
.wound-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  align-items: stretch;
  margin-top: clamp(18px, 2.2vw, 26px);
}

.haemangioma-location-grid article,
.rosacea-symptom-grid article,
.feuermale-location-grid article,
.frax-application-grid article,
.frax-comparison-grid article,
.co2-application-grid article,
.co2-comparison-grid article,
.co2-goals-grid article,
.scar-category-grid article,
.scar-type-seo-grid article,
.scar-method-seo-grid article,
.scar-goals-seo-grid article,
.scar-laser-seo-grid article,
.venous-seo-grid article,
.wound-seo-grid article {
  padding: 14px 15px 12px;
  background: rgba(14, 132, 230, .07);
  border: 1px solid rgba(14, 132, 230, .2);
  box-shadow: 0 10px 24px rgba(13, 67, 102, .07);
}

.haemangioma-location-grid h3,
.rosacea-symptom-grid h3,
.feuermale-location-grid h3,
.frax-application-grid h3,
.frax-comparison-grid h3,
.co2-application-grid h3,
.co2-comparison-grid h3,
.scar-category-grid h3,
.scar-type-seo-grid h3,
.scar-laser-seo-grid h3,
.venous-seo-grid h3,
.wound-seo-grid h3 {
  margin: 0 0 10px;
  padding: 7px 9px;
  background: #0e84e6;
  color: #fff;
  text-align: center;
  font-size: clamp(.98rem, .9vw, 1.08rem);
  line-height: 1.15;
}

.haemangioma-location-grid ul,
.rosacea-symptom-grid ul,
.feuermale-location-grid ul,
.frax-application-grid ul,
.frax-comparison-grid ul,
.co2-application-grid ul,
.co2-comparison-grid ul,
.co2-goals-grid ul,
.scar-category-grid ul,
.scar-type-seo-grid ul,
.scar-method-seo-grid ul,
.scar-goals-seo-grid ul,
.scar-laser-seo-grid ul,
.venous-seo-grid ul,
.wound-seo-grid ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
}

.haemangioma-location-grid li,
.rosacea-symptom-grid li,
.feuermale-location-grid li,
.frax-application-grid li,
.frax-comparison-grid li,
.co2-application-grid li,
.co2-comparison-grid li,
.co2-goals-grid li,
.scar-category-grid li,
.scar-type-seo-grid li,
.scar-method-seo-grid li,
.scar-goals-seo-grid li,
.scar-laser-seo-grid li,
.venous-seo-grid li,
.wound-seo-grid li {
  margin: 0;
  font-size: .94rem;
  line-height: 1.28;
}

.frax-application-grid,
.frax-comparison-grid,
.co2-application-grid,
.co2-comparison-grid,
.co2-goals-grid,
.scar-method-seo-grid,
.scar-goals-seo-grid,
.scar-laser-seo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.venous-seo-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wound-seo-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.venous-seo-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wound-seo-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scar-category-grid,
.scar-type-seo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-feature-grid h3 {
  margin: 10px 0 12px;
  font-size: clamp(21px, 2vw, 28px);
}

.article-feature-grid ul,
.article-check-card ul,
.article-lab-card ul,
.article-copy ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.article-feature-grid li,
.article-check-card li,
.article-lab-card li,
.article-copy li {
  margin: 7px 0;
}

.article-feature-grid li::marker,
.article-check-card li::marker,
.article-lab-card li::marker,
.article-copy li::marker {
  color: var(--zama-navy, #123d5d);
}

.article-lab-card {
  max-width: 900px;
  margin: clamp(24px, 3vw, 36px) auto 0;
  padding: clamp(22px, 3vw, 34px);
}

.screening-abcde-layout {
  margin-top: clamp(28px, 4vw, 46px);
  align-items: stretch;
}

.screening-abcde-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.screening-abcde-image-card .screening-abcde-rule-image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
}

.article-check-card {
  padding: clamp(22px, 3vw, 34px);
}

.article-section-kicker {
  display: inline-flex;
  margin: 0 0 16px;
}

.zama-editorial-heading {
  max-width: 900px;
  margin: 0 auto clamp(24px, 3vw, 38px);
  text-align: center;
}

.zama-editorial-heading h2 {
  margin: 10px 0 0;
  color: var(--blue-navy);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
}

@media (max-width: 980px) {
  .article-layout,
  .article-two-column,
  .article-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .haemangioma-location-grid,
  .rosacea-symptom-grid,
  .feuermale-location-grid,
  .frax-application-grid,
  .frax-comparison-grid,
  .co2-application-grid,
  .co2-comparison-grid,
  .co2-goals-grid,
  .scar-category-grid,
  .scar-type-seo-grid,
  .scar-method-seo-grid,
  .scar-goals-seo-grid,
  .scar-laser-seo-grid,
  .venous-seo-grid,
  .venous-seo-grid--two,
  .venous-seo-grid--four,
  .wound-seo-grid,
  .wound-seo-grid--two,
  .wound-seo-grid--four {
    grid-template-columns: 1fr;
  }

  .article-pill-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rosacea-severity-grid {
    grid-template-columns: 1fr;
  }
}


.rosacea-therapy-section {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.rosacea-therapy-intro,
.rosacea-therapy-cards {
  width: 100%;
  border: 1px solid rgba(17, 123, 180, .18);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 38px);
}

.rosacea-therapy-intro h2,
.rosacea-therapy-cards h3 {
  margin: 0 0 18px;
  color: var(--blue-navy);
  text-align: center;
  line-height: 1.18;
}

.rosacea-therapy-intro p,
.rosacea-therapy-grid p {
  text-align: justify;
  text-justify: inter-word;
}

.rosacea-therapy-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.rosacea-therapy-grid article {
  min-height: 100%;
  border: 1px solid rgba(17, 123, 180, .18);
  background: #fff;
  box-shadow: 0 14px 30px rgba(12, 72, 112, .12);
  overflow: hidden;
}

.therapy-placeholder,
.therapy-card-image {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(27, 132, 191, .14), rgba(6, 62, 102, .22));
  border-bottom: 1px solid rgba(17, 123, 180, .16);
}

.rosacea-therapy-grid h4 {
  margin: 16px 16px 8px;
  color: var(--blue-navy);
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
}

.rosacea-therapy-grid p {
  margin: 0;
  padding: 0 16px 18px;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .rosacea-therapy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rosacea-therapy-grid {
    grid-template-columns: 1fr;
  }
}

.article-feature-grid img.xanthelasma-diagnosis-image {
  object-position: 74% center;
}

.article-feature-grid img.xanthelasma-laser-image {
  object-fit: cover;
  object-position: 30% center;
}

.article-layout--bodymap {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
}

.article-layout--bodymap .article-side-card img {
  height: clamp(240px, 27vw, 360px);
}

@media (max-width: 900px) {
  .article-layout--bodymap {
    grid-template-columns: 1fr;
  }
}

.article-layout--bodymap .article-side-card img.bodymap-system-image {
  height: auto;
  max-height: 360px;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.skin-tumor-page .article-layout--bodymap .article-side-card img.bodymap-system-image {
  height: clamp(230px, 25vw, 330px);
  max-height: none;
  object-fit: cover;
  object-position: center 38%;
}

.article-layout--bodymap .article-copy h2 {
  font-size: clamp(1.62rem, 2.05vw, 2.18rem);
  line-height: 1.1;
  max-width: none;
}

.skin-tumor-page .article-layout--bodymap .article-copy h2 {
  margin: 14px 0 9px;
}

.skin-tumor-page .article-layout--bodymap .article-copy p {
  margin: 0 0 12px;
}

.article-layout--bodymap .article-copy p {
  font-size: clamp(1.06rem, 1.2vw, 1.22rem);
  line-height: 1.82;
}

.article-layout--tumor-intro .article-copy .article-lead {
  font-size: clamp(1.22rem, 1.55vw, 1.48rem);
}

.article-layout--tumor-intro .article-copy p {
  font-size: clamp(1.06rem, 1.22vw, 1.2rem);
  line-height: 1.82;
}

.article-layout--tumor-intro .article-copy h2 {
  font-size: clamp(2.35rem, 3.15vw, 3.35rem);
}

.skin-tumor-page .tumor-early-detection-card {
  padding-bottom: clamp(58px, 4.5vw, 74px);
}

.skin-tumor-page .tumor-early-detection-card img {
  height: clamp(145px, 16vw, 205px);
  margin-bottom: 14px;
  object-fit: cover;
  object-position: center;
}

.skin-tumor-page .tumor-early-detection-card h2 {
  margin: 4px 0 10px;
}

.skin-tumor-page .tumor-early-detection-card p {
  margin-bottom: 12px;
  line-height: 1.58;
}

.skin-tumor-page .tumor-early-detection-card > .zama-btn {
  bottom: clamp(16px, 1.8vw, 22px);
}

.krampfadern-page .article-layout,
.krampfadern-page .article-two-column,
.krampfadern-page .article-feature-grid {
  align-items: stretch;
}

.krampfadern-page .article-copy,
.krampfadern-page .article-side-card,
.krampfadern-page .article-check-card,
.krampfadern-page .article-feature-grid article,
.krampfadern-page .article-two-column > div {
  height: 100%;
}

.krampfadern-page .article-feature-grid article {
  display: flex;
  flex-direction: column;
}

.krampfadern-page .article-feature-grid article ul {
  margin-top: auto;
}

.krampfadern-intro-layout .article-copy .article-lead {
  font-size: clamp(1.2rem, 1.45vw, 1.42rem);
}

.krampfadern-intro-layout .article-copy p,
.krampfadern-phlebectomy-layout .article-copy p,
.krampfadern-spectrum-layout .article-copy p {
  font-size: clamp(1.04rem, 1.14vw, 1.18rem);
  line-height: 1.78;
}

.krampfadern-intro-layout .article-copy h2,
.krampfadern-phlebectomy-layout .article-copy h2,
.krampfadern-spectrum-layout .article-copy h2 {
  font-size: clamp(2.05rem, 2.7vw, 2.8rem);
}

.krampfadern-diagnosis-layout .article-copy {
  padding: clamp(18px, 2.4vw, 26px);
}

.krampfadern-diagnosis-layout .article-copy h2 {
  margin-bottom: clamp(16px, 1.6vw, 20px);
  text-align: left;
}

.krampfadern-diagnosis-layout .article-section-kicker {
  justify-content: flex-start;
  text-align: left;
}

.krampfadern-diagnosis-layout .article-copy p {
  font-size: clamp(1.05rem, 1.18vw, 1.2rem);
  line-height: 1.78;
}

.krampfadern-diagnosis-layout .article-copy p + p {
  margin-top: clamp(14px, 1.6vw, 18px);
}

.krampfadern-diagnosis-layout .article-check-card {
  padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.4vw, 30px) clamp(12px, 1.4vw, 18px);
}

.krampfadern-diagnosis-layout .article-check-card img {
  display: block;
  width: 100%;
  height: clamp(165px, 17vw, 230px);
  object-fit: cover;
  object-position: center top;
  margin: 0 0 18px;
}

.krampfadern-diagnosis-layout .article-check-card ul {
  margin-bottom: 0;
}

.krampfadern-phlebectomy-layout .article-side-card,
.krampfadern-spectrum-layout .article-check-card {
  min-height: 100%;
}

.krampfadern-phlebectomy-layout .article-copy {
  padding: clamp(28px, 3.4vw, 42px);
}

.krampfadern-phlebectomy-layout .article-copy h2 {
  font-size: clamp(2.4rem, 3.25vw, 3.35rem);
  margin-bottom: 22px;
}

.krampfadern-phlebectomy-layout .article-copy p,
.krampfadern-phlebectomy-layout .article-copy li {
  font-size: clamp(1.1rem, 1.28vw, 1.26rem);
  line-height: 1.88;
}

.krampfadern-phlebectomy-layout .article-copy ul {
  margin-top: 22px;
}

.krampfadern-intro-layout .article-side-card {
  padding-bottom: clamp(64px, 5vw, 78px);
}

.krampfadern-intro-layout .article-side-card img {
  height: clamp(150px, 17vw, 210px);
  margin-bottom: 14px;
}

.krampfadern-intro-layout .article-side-card .article-credential {
  margin: 14px 0;
  padding: 14px 16px;
}

.krampfadern-intro-layout .article-side-card h2 {
  margin-bottom: 10px;
}


.besenreiser-page .article-layout,
.besenreiser-page .article-two-column,
.besenreiser-page .article-feature-grid {
  align-items: stretch;
}

.besenreiser-page .article-copy,
.besenreiser-page .article-side-card,
.besenreiser-page .article-check-card,
.besenreiser-page .article-feature-grid article,
.besenreiser-page .article-two-column > div {
  height: 100%;
}

.besenreiser-page .article-feature-grid article {
  display: flex;
  flex-direction: column;
}

.besenreiser-page .article-feature-grid article ul {
  margin-top: auto;
}

.besenreiser-intro-layout .article-copy .article-lead {
  font-size: clamp(1.18rem, 1.42vw, 1.38rem);
}

.besenreiser-intro-layout .article-copy p,
.besenreiser-combination-layout .article-copy p,
.besenreiser-spectrum-layout .article-copy p {
  font-size: clamp(1.03rem, 1.12vw, 1.16rem);
  line-height: 1.76;
}

.besenreiser-intro-layout .article-copy h2,
.besenreiser-combination-layout .article-copy h2,
.besenreiser-spectrum-layout .article-copy h2 {
  font-size: clamp(2rem, 2.55vw, 2.65rem);
}

.besenreiser-intro-layout .article-side-card {
  padding-bottom: clamp(64px, 5vw, 78px);
}

.besenreiser-intro-layout .article-side-card h2 {
  font-size: clamp(1.68rem, 2.1vw, 2.18rem);
}

.besenreiser-intro-layout .article-side-card img,
.besenreiser-combination-layout .article-side-card img {
  height: clamp(150px, 17vw, 210px);
  margin-bottom: 14px;
}

.besenreiser-intro-layout .article-side-card .article-credential {
  margin: 14px 0;
  padding: 14px 16px;
}

.besenreiser-diagnosis-layout > div:first-child {
  padding: clamp(24px, 3vw, 36px);
}

.besenreiser-diagnosis-layout > div:first-child p {
  font-size: clamp(1.04rem, 1.16vw, 1.18rem);
  line-height: 1.78;
}

.besenreiser-combination-layout .article-copy {
  padding: clamp(24px, 3vw, 36px);
}

.besenreiser-combination-layout .article-side-card {
  padding-bottom: clamp(64px, 5vw, 78px);
}

.besenreiser-spectrum-layout .article-check-card {
  min-height: 100%;
}

.besenreiser-combination-layout .article-copy,
.besenreiser-combination-layout .article-copy h2,
.besenreiser-combination-layout .article-copy p {
  list-style: none;
}

.besenreiser-combination-layout .article-copy::before,
.besenreiser-combination-layout .article-copy h2::before,
.besenreiser-combination-layout .article-copy p::before {
  content: none !important;
  display: none !important;
}

.besenreiser-combination-layout .article-copy {
  overflow: hidden;
}

/* Besenreiser: equal heights only, without adding card styling to the text column */
.besenreiser-page .article-layout,
.besenreiser-page .article-two-column {
  align-items: stretch;
}

.besenreiser-page .zama-editorial-heading {
  align-items: flex-start;
  text-align: left;
}

.besenreiser-page .zama-editorial-heading h2,
.besenreiser-page .zama-editorial-heading .zama-kicker,
.besenreiser-page .article-feature-grid h3 {
  text-align: left;
}

.besenreiser-page .article-layout > .article-copy,
.besenreiser-page .article-two-column > div:first-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.besenreiser-page .article-layout > .article-side-card,
.besenreiser-page .article-layout > .article-check-card,
.besenreiser-page .article-two-column > .article-check-card {
  min-height: 100%;
}

.besenreiser-page .article-side-card img {
  height: clamp(155px, 17vw, 215px);
  object-fit: cover;
}

.besenreiser-page .article-check-card-image {
  width: 100%;
  height: clamp(129px, 14vw, 199px);
  margin: 0 0 18px;
  object-fit: cover;
  object-position: center top;
}

.besenreiser-page .article-layout > .article-copy .article-pill-grid {
  margin-top: 20px;
}

.besenreiser-combination-layout .article-copy p:last-child,
.besenreiser-spectrum-layout .article-copy p:last-child,
.besenreiser-diagnosis-layout > div:first-child p:last-child {
  margin-bottom: 0;
}

/* Besenreiser combination text balance */
.besenreiser-combination-layout .article-copy h2 {
  font-size: clamp(2.18rem, 2.85vw, 2.95rem);
  line-height: 1.08;
}

.besenreiser-combination-layout .article-copy p {
  font-size: clamp(1.12rem, 1.24vw, 1.24rem);
  line-height: 1.88;
  text-align: justify;
}



/* Booking form: solid brand blue */
.zama-booking-dialog {
  overflow: hidden;
  background: #3879af !important;
  box-shadow: 0 30px 80px rgba(8, 47, 85, .24);
}

/* Chronische Wunden page */
.wound-page .article-layout,
.wound-page .article-two-column {
  align-items: stretch;
}

.wound-page .article-layout > .article-copy,
.wound-page .article-two-column > div:first-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wound-page .article-layout > .article-side-card,
.wound-page .article-layout > .article-check-card,
.wound-page .article-two-column > .article-check-card {
  min-height: 100%;
}

.wound-page .article-copy p,
.wound-page .article-check-card li,
.wound-page .article-feature-grid p {
  text-align: justify;
}

.wound-benefit-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.wound-intro-layout .article-copy .article-lead {
  font-size: clamp(1.16rem, 1.36vw, 1.34rem);
}

.wound-intro-layout .article-side-card img,
.wound-regenerative-layout .article-side-card img {
  height: clamp(170px, 18vw, 230px);
  object-fit: cover;
}

.wound-diagnosis-layout > div:first-child,
.wound-regenerative-layout .article-copy,
.wound-expertise-layout .article-copy {
  padding: clamp(22px, 2.8vw, 34px);
}

.wound-regenerative-layout .article-copy h2,
.wound-expertise-layout .article-copy h2 {
  font-size: clamp(2rem, 2.5vw, 2.55rem);
}

.wound-regenerative-layout .article-copy p,
.wound-expertise-layout .article-copy p,
.wound-diagnosis-layout > div:first-child p {
  font-size: clamp(1.04rem, 1.14vw, 1.16rem);
  line-height: 1.78;
}

.wound-page .article-side-card .zama-btn,
.wound-page .article-check-card .zama-btn {
  align-self: flex-end;
  margin-top: auto;
}

.wound-therapy-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.wound-therapy-grid article ul {
  margin-top: auto;
}

.wound-therapy-grid img {
  height: clamp(150px, 15vw, 205px);
  object-fit: cover;
}

/* Nagelpilz page */
.nailfungus-page .article-layout,
.nailfungus-page .article-two-column {
  align-items: stretch;
}

.nailfungus-page .article-layout > .article-copy,
.nailfungus-page .article-two-column > div:first-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nailfungus-page .article-layout > .article-side-card,
.nailfungus-page .article-layout > .article-check-card,
.nailfungus-page .article-two-column > .article-check-card {
  min-height: 100%;
}

.nailfungus-page .article-copy p,
.nailfungus-page .article-check-card li,
.nailfungus-page .article-feature-grid p {
  text-align: justify;
}

.nail-benefit-grid article,
.nail-therapy-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.nail-therapy-grid article ul {
  margin-top: auto;
}

.nail-intro-layout .article-copy .article-lead {
  font-size: clamp(1.16rem, 1.36vw, 1.34rem);
}

.nail-intro-layout .article-side-card img,
.nail-therapy-grid img {
  height: clamp(155px, 16vw, 215px);
  object-fit: cover;
}

.nail-diagnosis-layout > div:first-child,
.nail-expertise-layout .article-copy {
  padding: clamp(22px, 2.8vw, 34px);
}

.nail-expertise-layout .article-copy h2 {
  font-size: clamp(2rem, 2.5vw, 2.55rem);
}

.nail-expertise-layout .article-copy p,
.nail-diagnosis-layout > div:first-child p {
  font-size: clamp(1.04rem, 1.14vw, 1.16rem);
  line-height: 1.78;
}

.nail-expertise-layout .article-check-card img {
  display: block;
  width: 100%;
  height: clamp(150px, 16vw, 210px);
  object-fit: cover;
  object-position: center;
  margin: 0 0 18px;
}

.nailfungus-page .article-side-card .zama-btn,
.nailfungus-page .article-check-card .zama-btn {
  align-self: flex-end;
  margin-top: auto;
}

.nailfungus-page .zama-hero-slide--two {
  background-position: center 38%;
}

.nail-therapy-grid img[src$="nagelpilz-laserbehandlung.jpg"],
.nailfungus-page img[src$="nagelpilz-laserbehandlung.jpg"] {
  object-position: center 59%;
}

.nail-therapy-grid img[src$="nagelpilz-lokal-therapie.jpg"],
.nailfungus-page img[src$="nagelpilz-lokal-therapie.jpg"] {
  object-position: center 48%;
}

/* Altersflecken Laser page */
.age-spots-page .article-layout,
.age-spots-page .article-two-column {
  align-items: stretch;
}

.age-spots-page .article-layout > .article-copy,
.age-spots-page .article-two-column > div:first-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.age-spots-page .article-layout > .article-side-card,
.age-spots-page .article-layout > .article-check-card,
.age-spots-page .article-two-column > .article-check-card {
  min-height: 100%;
}

.age-spots-page .article-copy p,
.age-spots-page .article-check-card li,
.age-spots-page .article-feature-grid p {
  text-align: justify;
}

.age-spots-benefit-grid article,
.age-spots-therapy-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.age-spots-therapy-grid article ul {
  margin-top: auto;
}

.age-spots-intro-layout .article-copy .article-lead {
  font-size: clamp(1.16rem, 1.36vw, 1.34rem);
}

.age-spots-intro-layout .article-side-card img,
.age-spots-therapy-grid img {
  height: clamp(155px, 16vw, 215px);
  object-fit: cover;
}

.age-spots-page .age-spots-dermatoscopy-image {
  object-position: center 18% !important;
}

.age-spots-diagnosis-layout > div:first-child,
.age-spots-expertise-layout .article-copy {
  padding: clamp(22px, 2.8vw, 34px);
}

.age-spots-expertise-layout .article-copy h2 {
  font-size: clamp(2rem, 2.5vw, 2.55rem);
}

.age-spots-expertise-layout .article-copy p,
.age-spots-diagnosis-layout > div:first-child p {
  font-size: clamp(1.04rem, 1.14vw, 1.16rem);
  line-height: 1.78;
}

.age-spots-page .article-side-card .zama-btn,
.age-spots-page .article-check-card .zama-btn {
  align-self: flex-end;
  margin-top: auto;
}

.age-spots-page .zama-hero-slide--one {
  background-position: center center;
}

/* Nagelsprechstunde page */
.nailclinic-page .article-layout,
.nailclinic-page .article-two-column {
  align-items: stretch;
}

.nailclinic-page .article-layout > .article-copy,
.nailclinic-page .article-two-column > div:first-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nailclinic-page .article-layout > .article-side-card,
.nailclinic-page .article-layout > .article-check-card,
.nailclinic-page .article-two-column > .article-check-card {
  min-height: 100%;
}

.nailclinic-page .article-copy p,
.nailclinic-page .article-check-card li,
.nailclinic-page .article-feature-grid p {
  text-align: justify;
}

.nailclinic-benefit-grid article,
.nailclinic-diagnostics-grid article,
.nailclinic-therapy-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.nailclinic-diagnostics-grid article ul,
.nailclinic-therapy-grid article ul {
  margin-top: auto;
}

.nailclinic-intro-layout .article-copy .article-lead {
  font-size: clamp(1.16rem, 1.36vw, 1.34rem);
}

.nailclinic-intro-layout .article-side-card img,
.nailclinic-diagnostics-grid img,
.nailclinic-therapy-grid img {
  height: clamp(155px, 16vw, 215px);
  object-fit: cover;
}

.nailclinic-specialist-card h2 {
  font-size: clamp(1.05rem, 1.35vw, 1.42rem);
  line-height: 1.12;
}

.nailclinic-specialist-card {
  padding-bottom: 0;
}

@media (min-width: 981px) {
  .nailclinic-specialist-card h2 {
    white-space: nowrap;
  }
}

.nailclinic-cause-layout .article-copy,
.nailclinic-equipment-layout .article-copy,
.nailclinic-expertise-layout .article-copy {
  padding: clamp(22px, 2.8vw, 34px);
}

.nailclinic-cause-layout .article-copy h2,
.nailclinic-equipment-layout .article-copy h2,
.nailclinic-expertise-layout .article-copy h2 {
  font-size: clamp(2rem, 2.5vw, 2.55rem);
}

.nailclinic-cause-layout .article-copy p,
.nailclinic-equipment-layout .article-copy p,
.nailclinic-expertise-layout .article-copy p {
  font-size: clamp(1.04rem, 1.14vw, 1.16rem);
  line-height: 1.78;
}

.nailclinic-cause-layout .article-check-card img,
.nailclinic-expertise-layout .article-check-card img {
  display: block;
  width: 100%;
  height: clamp(150px, 16vw, 210px);
  object-fit: cover;
  object-position: center;
  margin: 0 0 18px;
}

.nailclinic-process-card {
  padding: clamp(18px, 2vw, 24px);
  justify-content: flex-start;
}

.nailclinic-process-card h3 {
  margin: 0 0 16px;
  text-align: left;
}

.nailclinic-process-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(10px, 1.25vw, 14px);
  background: linear-gradient(135deg, rgba(235, 247, 252, .96), rgba(255, 255, 255, .98));
  border: 1px solid rgba(17, 123, 180, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.nailclinic-process-mosaic figure {
  display: grid;
  grid-template-columns: 2cm minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 2cm;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 20px rgba(14, 66, 96, .08);
}

.nailclinic-process-mosaic img {
  width: 2cm;
  height: 2cm;
  display: block;
  object-fit: cover;
  object-position: center;
}

.nailclinic-process-mosaic figcaption {
  color: var(--blue-navy);
  font-size: clamp(13px, .92vw, 14px);
  line-height: 1.28;
  font-weight: 650;
}

@media (max-width: 640px) {
  .nailclinic-process-mosaic {
    grid-template-columns: 1fr;
  }
}

.nailclinic-page .article-side-card .zama-btn,
.nailclinic-page .article-check-card .zama-btn {
  align-self: flex-end;
  margin-top: auto;
}


/* Doctor profile page */
.doctor-page .zama-hero-slide {
  background-position: center 18%;
}

.doctor-page .zama-hero-slide--one {
  background-position: center 16% !important;
}

.doctor-page .article-section {
  padding-top: clamp(48px, 6vw, 82px);
  padding-bottom: clamp(48px, 6vw, 82px);
}

.doctor-benefit-grid article,
.doctor-focus-grid article,
.doctor-diploma-grid article,
.doctor-page .article-check-card,
.doctor-page .article-side-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doctor-benefit-grid article,
.doctor-focus-grid article,
.doctor-diploma-grid article {
  border: 1px solid rgba(17, 123, 180, .18);
  background: #fff;
  box-shadow: 0 18px 38px rgba(12, 93, 137, .08);
}

.doctor-page .article-feature-grid h3,
.doctor-diploma-grid h3 {
  text-align: center;
  color: var(--blue-navy, #123d5d);
}

.doctor-page .article-feature-grid p,
.doctor-diploma-grid p,
.doctor-intro-copy p,
.doctor-publication-layout p,
.doctor-page .article-check-card p {
  text-align: justify;
}

.doctor-intro-layout,
.doctor-equal-columns,
.doctor-publication-layout {
  align-items: stretch;
}

.doctor-portrait-card img {
  width: 100%;
  height: clamp(285px, 30vw, 410px);
  object-fit: cover;
  object-position: center 12%;
  padding: 0;
  background: #d8edf8;
  margin-bottom: 18px;
}

.doctor-intro-layout .doctor-portrait-card {
  justify-content: flex-start;
}

.doctor-portrait-card .zama-btn {
  align-self: flex-end;
  margin-top: auto;
}

.doctor-left-heading {
  max-width: 980px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.doctor-left-heading h2 {
  text-align: left;
}

.doctor-left-heading p {
  max-width: 920px;
  text-align: justify;
}

.doctor-diploma-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}

.doctor-diploma-grid article {
  padding: clamp(20px, 2.4vw, 30px);
}

.doctor-diploma-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.2;
}

.doctor-diploma-card--highlight {
  background: linear-gradient(145deg, #f8fcff, #eaf6ff) !important;
  border-color: rgba(56, 121, 175, .36) !important;
}

.doctor-publication-card ul {
  margin: 0;
  padding-left: 20px;
}

.doctor-publication-card li {
  margin: 10px 0;
}

@media (max-width: 980px) {
  .doctor-diploma-grid {
    grid-template-columns: 1fr;
  }

  .doctor-portrait-card img {
    height: auto;
    max-height: none;
  }
}


.doctor-publications-section .doctor-publication-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.6vw, 32px);
}

.doctor-publication-intro,
.doctor-reference-panel {
  width: 100%;
  border: 1px solid rgba(17, 123, 180, .18);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 38px rgba(12, 93, 137, .08);
  padding: clamp(24px, 3vw, 38px);
}

.doctor-publication-intro h2,
.doctor-reference-panel h3 {
  margin-top: 0;
  color: var(--blue-navy, #123d5d);
}

.doctor-publication-intro p {
  max-width: 1040px;
  text-align: justify;
}

.doctor-reference-list {
  margin: 18px 0 0;
  padding-left: 24px;
  display: grid;
  gap: 14px;
}

.doctor-reference-list li {
  padding-left: 6px;
  line-height: 1.65;
  color: var(--text, #1b2733);
  text-align: left;
}

.doctor-reference-list li::marker {
  color: var(--zama-navy, #123d5d);
  font-weight: 800;
}


.article-video-card {
  width: min(1240px, calc(100vw - 36px));
  max-width: none;
  box-sizing: border-box;
  margin: clamp(30px, 4vw, 52px) 0 0 50%;
  transform: translateX(-50%);
  padding: clamp(10px, 1.2vw, 16px);
  border: 1px solid rgba(17, 123, 180, .18);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 38px rgba(12, 93, 137, .08);
}

.article-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b2238;
}

.article-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.article-feature-grid img.screening-image-fit {
  width: 100%;
  height: clamp(210px, 23vw, 320px);
  object-fit: cover;
  object-position: center 32%;
  background: #eef6fb;
  padding: 0;
}

.article-side-card img.screening-image-fit {
  width: 100%;
  height: clamp(260px, 32vw, 430px);
  object-fit: cover;
  object-position: center 32%;
  background: #eef6fb;
  padding: 0;
}

.skin-screening-page .screening-intro-card > img.screening-image-fit {
  height: clamp(205px, 25vw, 340px);
  object-position: center 24%;
}

.skin-screening-page .screening-intro-card > h2 {
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.16;
}

/* Restored treatment pages: Hautbildverbesserung + Scheidenstraffung */
.skin-quality-page .article-layout,
.skin-quality-page .article-two-column,
.vaginal-tightening-page .article-layout,
.vaginal-tightening-page .article-two-column {
  align-items: stretch;
}

.skin-quality-page .article-layout > .article-copy,
.skin-quality-page .article-two-column > div:first-child,
.vaginal-tightening-page .article-layout > .article-copy,
.vaginal-tightening-page .article-two-column > div:first-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.skin-quality-page .article-layout > .article-side-card,
.skin-quality-page .article-layout > .article-check-card,
.skin-quality-page .article-two-column > .article-side-card,
.skin-quality-page .article-two-column > .article-check-card,
.vaginal-tightening-page .article-layout > .article-side-card,
.vaginal-tightening-page .article-layout > .article-check-card,
.vaginal-tightening-page .article-two-column > .article-check-card {
  min-height: 100%;
}

.skin-quality-page .article-copy p,
.skin-quality-page .article-check-card li,
.skin-quality-page .article-feature-grid p,
.vaginal-tightening-page .article-copy p,
.vaginal-tightening-page .article-check-card li,
.vaginal-tightening-page .article-feature-grid p {
  text-align: justify;
}

.skin-quality-benefit-grid article,
.skin-quality-therapy-grid article,
.vaginal-benefit-grid article,
.vaginal-indication-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.skin-quality-therapy-grid article ul,
.vaginal-indication-grid article ul {
  margin-top: auto;
}

.skin-quality-intro-layout .article-side-card img,
.skin-quality-therapy-grid img,
.vaginal-tightening-page .article-side-card img,
.vaginal-indication-grid img {
  width: 100%;
  height: clamp(155px, 16vw, 215px);
  object-fit: cover;
  object-position: center;
}

.skin-quality-intro-layout .skin-quality-analysis-card img {
  height: clamp(190px, 18vw, 245px);
}

.skin-quality-intro-layout .skin-quality-analysis-card h2 {
  font-size: clamp(1.25rem, 1.7vw, 1.58rem);
  line-height: 1.18;
}

.skin-quality-intro-layout .skin-quality-analysis-card p {
  font-size: 15px;
  line-height: 1.58;
}

.skin-quality-page .skin-quality-expertise-image-card {
  padding: 0;
  overflow: hidden;
}

.skin-quality-page .skin-quality-expertise-image-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(265px, 28vw, 390px);
  object-fit: cover;
  object-position: center;
}

.skin-quality-page .skin-quality-method-choice-card {
  padding-bottom: clamp(20px, 2.5vw, 30px);
}

.skin-quality-page .article-side-card .zama-btn,
.skin-quality-page .article-check-card .zama-btn,
.vaginal-tightening-page .article-side-card .zama-btn,
.vaginal-tightening-page .article-check-card .zama-btn {
  align-self: flex-end;
  margin-top: auto;
}

.skin-quality-page .zama-hero-slide--one {
  background-position: center 38%;
}

.skin-quality-page .zama-hero-slide--two {
  background-position: center 42%;
}

.skin-quality-page .zama-hero-slide--three {
  background-position: center 45%;
}

.skin-quality-page .zama-hero-slide {
  filter: brightness(.84) blur(1.5px);
  transform: scale(1.015);
}

.skin-quality-page .zama-hero {
  background-color: #095985;
}

.skin-quality-page .zama-hero-slide::after {
  background:
    linear-gradient(90deg, rgba(6, 47, 73, .86) 0%, rgba(9, 89, 133, .70) 42%, rgba(43, 150, 205, .20) 74%, rgba(9, 89, 133, .20) 100%),
    linear-gradient(180deg, rgba(13, 67, 102, .15) 0%, rgba(9, 89, 133, .38) 46%, rgba(6, 47, 73, .70) 100%);
}

.skin-quality-page .skin-quality-left-heading {
  text-align: left;
  align-items: flex-start;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.skin-quality-page .skin-quality-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skin-quality-page .skin-quality-benefit-grid article {
  position: relative;
  min-height: 190px;
  padding: 20px 18px 18px;
  background: rgba(14, 132, 230, .075);
  border: 1px solid rgba(14, 132, 230, .22);
  box-shadow: 0 14px 34px rgba(13, 67, 102, .08);
}

.skin-quality-page .skin-quality-benefit-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 38px;
  height: 2px;
  background: rgba(14, 132, 230, .34);
}

.skin-quality-page .skin-quality-benefit-grid h3 {
  align-self: center;
  margin: 0 0 15px;
  padding: 8px 11px;
  background: #0e84e6;
  border: 1px solid #0e84e6;
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.15;
}

.skin-quality-page .skin-quality-benefit-grid p {
  color: rgba(13, 67, 102, .78);
}

.tattoo-removal-page .tattoo-factor-grid,
.tattoo-removal-page .tattoo-process-grid,
.tattoo-removal-page .tattoo-notice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.tattoo-removal-page .tattoo-factor-grid article,
.tattoo-removal-page .tattoo-process-grid article,
.tattoo-removal-page .tattoo-notice-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 20px 18px 18px;
  background: rgba(14, 132, 230, .075);
  border: 1px solid rgba(14, 132, 230, .22);
  box-shadow: 0 14px 34px rgba(13, 67, 102, .08);
}

.tattoo-removal-page .tattoo-factor-grid article::after,
.tattoo-removal-page .tattoo-process-grid article::after,
.tattoo-removal-page .tattoo-notice-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 38px;
  height: 2px;
  background: rgba(14, 132, 230, .34);
}

.tattoo-removal-page .tattoo-factor-grid h3,
.tattoo-removal-page .tattoo-process-grid h3,
.tattoo-removal-page .tattoo-notice-grid h3 {
  align-self: center;
  margin: 0 0 15px;
  padding: 8px 11px;
  background: #0e84e6;
  border: 1px solid #0e84e6;
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.15;
}

.tattoo-removal-page .tattoo-factor-grid p,
.tattoo-removal-page .tattoo-process-grid p,
.tattoo-removal-page .tattoo-notice-grid p {
  color: rgba(13, 67, 102, .78);
  text-align: justify;
  text-justify: inter-word;
}

.tattoo-removal-page .tattoo-factor-note {
  margin-top: clamp(18px, 2.6vw, 30px);
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(14, 132, 230, .08);
  border: 1px solid rgba(14, 132, 230, .24);
  box-shadow: 0 14px 34px rgba(13, 67, 102, .08);
}

.tattoo-removal-page .tattoo-factor-note strong {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: #0e84e6;
  border: 1px solid #0e84e6;
  color: #fff;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.15;
}

.tattoo-removal-page .tattoo-factor-note p {
  margin: 0;
  color: rgba(13, 67, 102, .82);
  text-align: justify;
  text-justify: inter-word;
}

.tattoo-removal-page .tattoo-spectrum-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tattoo-removal-page .tattoo-handpiece-grid {
  margin-top: clamp(24px, 3vw, 36px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surveillance-benefit-grid,
.doctor-benefit-grid,
.nail-benefit-grid,
.compact-benefit-grid,
.wound-benefit-grid,
.age-spots-benefit-grid,
.nailclinic-benefit-grid,
.vaginal-benefit-grid,
.feuermale-benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.surveillance-benefit-grid article,
.doctor-benefit-grid article,
.nail-benefit-grid article,
.compact-benefit-grid article,
.wound-benefit-grid article,
.age-spots-benefit-grid article,
.nailclinic-benefit-grid article,
.vaginal-benefit-grid article,
.feuermale-benefit-grid article {
  position: relative;
  min-height: 190px;
  padding: 20px 18px 18px;
  background: rgba(14, 132, 230, .075);
  border: 1px solid rgba(14, 132, 230, .22);
  box-shadow: 0 14px 34px rgba(13, 67, 102, .08);
  display: flex;
  flex-direction: column;
}

.surveillance-benefit-grid article::after,
.doctor-benefit-grid article::after,
.nail-benefit-grid article::after,
.compact-benefit-grid article::after,
.wound-benefit-grid article::after,
.age-spots-benefit-grid article::after,
.nailclinic-benefit-grid article::after,
.vaginal-benefit-grid article::after,
.feuermale-benefit-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 38px;
  height: 2px;
  background: rgba(14, 132, 230, .34);
}

.surveillance-benefit-grid h3,
.doctor-benefit-grid h3,
.nail-benefit-grid h3,
.compact-benefit-grid h3,
.wound-benefit-grid h3,
.age-spots-benefit-grid h3,
.nailclinic-benefit-grid h3,
.vaginal-benefit-grid h3,
.feuermale-benefit-grid h3 {
  align-self: center;
  margin: 0 0 15px;
  padding: 8px 11px;
  background: #0e84e6;
  border: 1px solid #0e84e6;
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.15;
}

.surveillance-benefit-grid p,
.doctor-benefit-grid p,
.nail-benefit-grid p,
.compact-benefit-grid p,
.wound-benefit-grid p,
.age-spots-benefit-grid p,
.nailclinic-benefit-grid p,
.vaginal-benefit-grid p,
.feuermale-benefit-grid p {
  color: rgba(13, 67, 102, .78);
  text-align: justify;
}

.feuermale-benefit-grid img {
  display: none;
}

.skin-tumor-page .zama-editorial-heading {
  text-align: left;
  align-items: flex-start;
}

.skin-tumor-page .article-copy h2,
.skin-tumor-page .article-two-column h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.skin-tumor-page .article-copy h2::before,
.skin-tumor-page .article-two-column h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.skin-tumor-page .skin-tumor-left-heading,
.skin-tumor-page .skin-tumor-left-heading .zama-kicker,
.skin-tumor-page .skin-tumor-left-heading h2 {
  text-align: left;
  align-items: flex-start;
}

.skin-tumor-page #diagnostik .article-check-card ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.skin-tumor-page #diagnostik .article-check-card li {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 42px;
  background: rgba(14, 132, 230, .075);
  border: 1px solid rgba(14, 132, 230, .22);
  color: #0d4366;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.skin-tumor-page #diagnostik .article-check-card li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 13px;
  height: 7px;
  border-left: 3px solid #0e84e6;
  border-bottom: 3px solid #0e84e6;
  transform: translateY(-62%) rotate(-45deg);
}

.skin-surveillance-page .article-copy h2,
.skin-surveillance-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.skin-surveillance-page .article-copy h2::before,
.skin-surveillance-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.skin-screening-page .article-copy h2,
.skin-screening-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.skin-screening-page .article-copy h2::before,
.skin-screening-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.sti-page .article-copy h2,
.sti-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.sti-page .article-copy h2::before,
.sti-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.sti-page .sti-confidential-title {
  font-size: clamp(20px, 1.55vw, 23px);
  white-space: nowrap;
}

.lllt-blog-page {
  background: #eef8ff;
  color: var(--ink);
}

.zama-nav--blog {
  background: linear-gradient(135deg, rgba(5, 38, 76, .96), rgba(13, 67, 102, .94));
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(8, 47, 85, .18);
  padding: 12px 0;
}

.zama-nav--blog .zama-nav-mega {
  top: 96px;
}

.lllt-blog-shell {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(24px, 4vw, 54px) auto;
  border: 1px solid rgba(17, 123, 180, .18);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lllt-blog-hero {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: 0;
  min-height: clamp(340px, 42vw, 520px);
  border-bottom: 1px solid rgba(17, 123, 180, .22);
}

.lllt-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lllt-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 58px);
  background: linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
}

.lllt-hero-copy h1 {
  margin: 10px 0 18px;
  color: var(--blue-navy);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lllt-hero-copy p,
.lllt-panel p,
.lllt-sources p,
.lllt-conclusion p {
  line-height: 1.65;
}

.lllt-panel-grid,
.lllt-mechanism-grid {
  display: grid;
  border-bottom: 1px solid rgba(17, 123, 180, .18);
}

.lllt-panel-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lllt-panel-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lllt-panel,
.lllt-mechanism-grid article {
  position: relative;
  padding: clamp(22px, 2.6vw, 34px);
  border-right: 1px solid rgba(17, 123, 180, .18);
}

.lllt-panel:last-child,
.lllt-mechanism-grid article:last-child {
  border-right: 0;
}

.lllt-panel h2,
.lllt-mechanism-grid h3,
.lllt-conclusion h2,
.lllt-sources h2 {
  color: var(--blue-navy);
  letter-spacing: 0;
}

.lllt-panel h2 {
  margin: 0 0 12px;
  padding: 0 38px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.16;
  text-align: center;
}

.lllt-panel p {
  text-align: justify;
  hyphens: auto;
}

.lllt-panel--with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.lllt-panel--stacked-image {
  display: flex;
  flex-direction: column;
}

.lllt-panel-text {
  min-width: 0;
}

.lllt-crop-image {
  display: block;
  width: 100%;
  height: clamp(190px, 18vw, 260px);
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(17, 123, 180, .16);
  background: #f5fbff;
  margin: 0 0 16px;
}

.lllt-panel--with-image .lllt-crop-image {
  height: clamp(240px, 24vw, 340px);
  margin-bottom: 0;
}

.lllt-crop-image--large {
  height: clamp(250px, 28vw, 390px);
}

.lllt-crop-image--wide {
  height: clamp(230px, 23vw, 320px);
}

.lllt-crop-image--full {
  object-fit: contain;
  background: #fff;
  padding: 8px;
}

.lllt-comfort-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lllt-comfort-row .lllt-panel {
  align-content: start;
}

.lllt-comfort-row .lllt-panel-text {
  max-width: 92%;
}

.lllt-comfort-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.lllt-comfort-icons div {
  display: grid;
  gap: 9px;
  justify-items: center;
  align-content: start;
  min-height: 150px;
  padding: 12px 8px;
  border-radius: 8px;
  border: 1px solid rgba(17, 123, 180, .18);
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
  box-shadow: 0 10px 22px rgba(13, 67, 102, .07);
  text-align: center;
}

.lllt-comfort-icons img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.lllt-comfort-icons strong {
  color: var(--blue-navy);
  font-size: clamp(.76rem, .9vw, .9rem);
  line-height: 1.25;
}

.lllt-consult-card--appointment {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
}

.lllt-consult-card--appointment .lllt-panel-text {
  max-width: 100%;
}

.lllt-consult-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .72fr);
  gap: 16px;
  align-items: stretch;
}

.lllt-consult-card-body .lllt-check-list {
  margin-top: 0;
  align-content: center;
}

.lllt-consult-card-body .lllt-crop-image {
  height: 100%;
  min-height: 210px;
  margin: 0;
}

.lllt-comfort-cta-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding: 18px clamp(22px, 2.6vw, 34px) clamp(22px, 2.6vw, 34px);
  border-top: 1px solid rgba(17, 123, 180, .18);
  background: linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
}

.lllt-number {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dff3ff;
  color: #0d4366;
  font-weight: 800;
  border: 1px solid rgba(17, 123, 180, .24);
}

.lllt-photo-panel img {
  display: block;
  width: 100%;
  height: clamp(210px, 22vw, 310px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-top: 18px;
}

.hair-cycle-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hair-cycle-diagram::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 3px solid rgba(17, 123, 180, .42);
  border-radius: 50%;
}

.hair-cycle-diagram div {
  position: relative;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #f5fbff;
  border: 1px solid rgba(17, 123, 180, .15);
  text-align: center;
}

.hair-cycle-diagram strong {
  color: var(--blue-navy);
}

.lllt-section-heading {
  padding: clamp(28px, 3.5vw, 46px) clamp(24px, 4vw, 50px) 18px;
  text-align: center;
}

.lllt-section-heading h2 {
  margin: 8px auto 0;
  max-width: 820px;
  color: var(--blue-navy);
  font-size: clamp(26px, 3vw, 42px);
}

.lllt-mechanism-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.lllt-mechanism-grid article {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.lllt-mechanism-grid h3 {
  min-height: 2.5em;
  margin: 0 0 10px;
  text-align: center;
}

.lllt-mechanism-grid p {
  margin: 0;
  text-align: justify;
  hyphens: auto;
}

.lllt-mechanism-grid .lllt-crop-image {
  height: clamp(220px, 20vw, 300px);
}

.lllt-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #0d4366;
  font-weight: 800;
  background: #dff3ff;
  border: 1px solid rgba(17, 123, 180, .22);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, .45);
}

.lllt-icon--mito {
  border-radius: 50% 42% 48% 44%;
  background: linear-gradient(135deg, #ff7d6a, #ffd1c9);
}

.lllt-icon--follicle::before {
  content: "";
  width: 24px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(180deg, #143b56, #d98462);
}

.lllt-icon--blood {
  background: linear-gradient(135deg, #dff3ff, #ffd5d5);
}

.lllt-icon--immune::before {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, #ffffff 0 10%, #7aa9d6 11% 48%, #0d4366 49% 100%);
}

.lllt-check-list,
.lllt-therapy-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.lllt-check-list li,
.lllt-therapy-list li {
  padding: 10px 12px 10px 38px;
  border-radius: 8px;
  background: #f5fbff;
  border: 1px solid rgba(17, 123, 180, .14);
  position: relative;
}

.lllt-check-list li::before,
.lllt-therapy-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: #0f7f58;
  font-weight: 900;
}

.lllt-therapy-list--icons {
  gap: 12px;
}

.lllt-therapy-list--icons li {
  display: grid;
  grid-template-columns: 28px 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
  border-color: rgba(17, 123, 180, .22);
  box-shadow: 0 10px 24px rgba(13, 67, 102, .08);
}

.lllt-therapy-list--icons li::before {
  content: none;
}

.lllt-therapy-list--icons img,
.lllt-therapy-icon-text {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(17, 123, 180, .14);
}

.lllt-therapy-check {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0f7f58;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 127, 88, .18);
}

.lllt-therapy-icon-text {
  color: #0d4366;
  font-size: .9rem;
  font-weight: 900;
}

.lllt-therapy-list--icons span:last-child {
  color: var(--blue-navy);
  font-weight: 760;
  line-height: 1.35;
}

.follicle-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.follicle-comparison div {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #f5fbff;
  border: 1px solid rgba(17, 123, 180, .14);
}

.follicle-comparison span {
  width: 52px;
  height: 112px;
  border-radius: 999px 999px 36px 36px;
  background: linear-gradient(180deg, #123d57 0 45%, #e6ad8d 46% 100%);
}

.follicle-comparison div:last-child span {
  width: 30px;
  background: linear-gradient(180deg, #45667a 0 42%, #efc7aa 43% 100%);
}

.lllt-conclusion {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(24px, 3.2vw, 42px);
  border-bottom: 1px solid rgba(17, 123, 180, .18);
}

.lllt-conclusion-label {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-radius: 8px;
  background: #0d4366;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
}

.lllt-sources {
  padding: clamp(24px, 3.2vw, 42px);
  background: #f5fbff;
}

.lllt-sources ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.lllt-sources li {
  line-height: 1.55;
}

@media (max-width: 980px) {
  .lllt-blog-hero,
  .lllt-panel-grid--two,
  .lllt-panel-grid--three,
  .lllt-mechanism-grid,
  .lllt-conclusion,
  .lllt-panel--with-image {
    grid-template-columns: 1fr;
  }

  .lllt-panel,
  .lllt-mechanism-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 123, 180, .18);
  }

  .lllt-consult-card-body {
    grid-template-columns: 1fr;
  }

  .lllt-comfort-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lllt-consult-card-body .lllt-crop-image {
    min-height: 230px;
  }

  .lllt-comfort-cta-row {
    justify-content: stretch;
  }

  .lllt-comfort-cta-row .zama-btn {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .lllt-blog-shell {
    width: min(100% - 18px, 1180px);
  }

  .lllt-hero-copy h1 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .lllt-comfort-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hair-cycle-diagram,
  .follicle-comparison {
    grid-template-columns: 1fr;
  }
}

.intim-frauen-page .article-copy h2,
.intim-frauen-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.intim-frauen-page .article-copy h2::before,
.intim-frauen-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.intim-maenner-page .article-copy h2,
.intim-maenner-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.intim-maenner-page .article-copy h2::before,
.intim-maenner-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.intim-maenner-page .intim-maenner-intro-card img {
  height: clamp(190px, 20vw, 285px);
  object-position: center;
}

.intim-maenner-page .intim-maenner-intro-card h2 {
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.12;
  white-space: nowrap;
}

.feigwarzen-page .article-copy h2,
.feigwarzen-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.feigwarzen-page .article-copy h2::before,
.feigwarzen-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.feigwarzen-page .article-copy .article-section-kicker,
.feigwarzen-page .article-two-column > div:first-child .article-section-kicker {
  justify-content: flex-start;
  margin-left: 0;
}

.vaginal-tightening-page .article-copy h2,
.vaginal-tightening-page .article-two-column > article:first-child h2,
.vaginal-tightening-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.vaginal-tightening-page .article-copy h2::before,
.vaginal-tightening-page .article-two-column > article:first-child h2::before,
.vaginal-tightening-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.nailclinic-page .article-copy h2,
.nailclinic-page .article-two-column > article:first-child h2,
.nailclinic-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.nailclinic-page .article-copy h2::before,
.nailclinic-page .article-two-column > article:first-child h2::before,
.nailclinic-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.nailfungus-page .article-copy h2,
.nailfungus-page .article-two-column > article:first-child h2,
.nailfungus-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.nailfungus-page .article-copy h2::before,
.nailfungus-page .article-two-column > article:first-child h2::before,
.nailfungus-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.hair-loss-page .article-copy h2,
.hair-loss-page .article-two-column > article:first-child h2,
.hair-loss-page .article-two-column > div:first-child h2 {
  text-align: left;
  position: relative;
  padding-left: 16px;
}

.hair-loss-page .article-copy h2::before,
.hair-loss-page .article-two-column > article:first-child h2::before,
.hair-loss-page .article-two-column > div:first-child h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .1em;
  bottom: .08em;
  width: 4px;
  background: #0e84e6;
}

.hair-loss-treatment-concept > div:first-child h2,
.hair-loss-concept-layout .article-side-card h2 {
  font-size: clamp(1.22rem, 1.55vw, 1.72rem);
  line-height: 1.12;
}

.hair-loss-concept-layout .article-side-card {
  padding-bottom: 0;
}

.modern-hair-therapy-page .hair-loss-concept-layout .article-side-card {
  padding-bottom: clamp(20px, 2.5vw, 30px);
}

.modern-hair-therapy-page .hair-loss-concept-layout .article-side-card > .zama-btn {
  position: static;
  align-self: flex-end;
  margin-top: auto;
}

@media (min-width: 981px) {
  .hair-loss-treatment-concept > div:first-child h2,
  .hair-loss-concept-layout .article-side-card h2 {
    white-space: nowrap;
  }
}

.hair-loss-page .article-check-card img {
  display: block;
  width: 100%;
  height: clamp(150px, 16vw, 210px);
  object-fit: cover;
  object-position: center;
  margin: 0 0 18px;
}

.hair-loss-page .hair-loss-serious-card h3 {
  margin-bottom: 8px;
}

.hair-loss-page .hair-loss-serious-card ul {
  margin-top: 8px;
}

.hair-loss-page .hair-loss-serious-card li {
  margin: 4px 0;
  line-height: 1.38;
}

.modern-hair-therapy-page .modern-hair-treatment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.modern-hair-therapy-page .modern-hair-treatment-grid article {
  min-height: 100%;
}

.modern-hair-therapy-page .modern-hair-treatment-grid img {
  object-fit: contain;
  background: #f5fbff;
  padding: 8px;
}

.hair-regeneration-page .article-copy-visual {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 clamp(18px, 2.3vw, 28px);
  box-shadow: 0 18px 42px rgba(13, 67, 102, .12);
}

.hair-regeneration-page .hair-regeneration-support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.hair-regeneration-page .hair-regeneration-support-grid article {
  min-height: 100%;
}

.hair-regeneration-page .hair-regeneration-support-grid h3 {
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.modern-hair-therapy-page .article-feature-grid h3 {
  min-height: 2.4em;
}

@media (max-width: 980px) {
  .modern-hair-therapy-page .modern-hair-treatment-grid {
    grid-template-columns: 1fr;
  }

  .hair-regeneration-page .hair-regeneration-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modern-hair-therapy-page .article-feature-grid h3 {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .hair-regeneration-page .hair-regeneration-support-grid {
    grid-template-columns: 1fr;
  }
}

.skin-quality-page .skin-quality-therapy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.skin-quality-page .skin-quality-therapy-grid article {
  min-height: 100%;
}

.skin-quality-page .skin-quality-therapy-grid h3 {
  font-size: clamp(1.05rem, 1.15vw, 1.22rem);
  line-height: 1.18;
}

.skin-quality-page .skin-quality-method-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.skin-quality-page .skin-quality-method-nav a {
  position: relative;
  min-height: 92px;
  padding: 16px 18px;
  background: rgba(14, 132, 230, .075);
  border: 1px solid rgba(14, 132, 230, .22);
  color: #0d4366;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  box-shadow: 0 14px 34px rgba(13, 67, 102, .08);
  overflow: hidden;
}

.skin-quality-page .skin-quality-method-nav a::after {
  content: "";
  position: absolute;
  inset: auto 16px 12px auto;
  width: 38px;
  height: 2px;
  background: rgba(14, 132, 230, .34);
}

.skin-quality-page .skin-quality-method-nav a:hover,
.skin-quality-page .skin-quality-method-nav a:focus-visible {
  background: rgba(14, 132, 230, .11);
  border-color: rgba(14, 132, 230, .36);
  outline: 0;
}

.skin-quality-page .skin-quality-method-nav strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: #0e84e6;
  border: 1px solid #0e84e6;
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1;
}

.skin-quality-page .skin-quality-method-nav span {
  color: #0d4366;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.2;
}

.skin-quality-page .skin-quality-method-group {
  padding-top: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(18px, 3vw, 34px);
  border-top: 1px solid rgba(14, 82, 121, .12);
}

.skin-quality-page .skin-quality-method-heading {
  max-width: 920px;
  margin-bottom: clamp(18px, 2.8vw, 30px);
  text-align: left;
}

.skin-quality-page .skin-quality-method-heading span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(27, 111, 168, .18);
  background: rgba(44, 143, 211, .08);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.skin-quality-page .skin-quality-method-heading h3 {
  margin: 0 0 10px;
  color: var(--zama-ink);
  font-size: clamp(1.34rem, 1.8vw, 1.9rem);
  line-height: 1.12;
}

.skin-quality-page .skin-quality-method-heading p {
  margin: 0;
  color: var(--zama-muted);
  font-size: 16px;
  line-height: 1.62;
  text-align: left;
}

.skin-quality-page .skin-quality-method-group .skin-quality-therapy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.skin-quality-page .skin-quality-method-group .skin-quality-therapy-grid article {
  min-height: 100%;
}

.skin-quality-page .skin-quality-method-group .skin-quality-therapy-grid p {
  text-align: left;
}

.skin-quality-page .skin-quality-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.skin-quality-page .skin-quality-problem-grid article {
  min-height: 214px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(14, 82, 121, .13);
  box-shadow: 0 18px 44px rgba(18, 54, 75, .08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.skin-quality-page .skin-quality-problem-grid a {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.skin-quality-page .skin-quality-problem-grid img {
  width: 100%;
  height: 156px;
  display: block;
  object-fit: cover;
  object-position: center 58%;
}

.skin-quality-page .skin-quality-problem-grid article > div {
  min-height: 54px;
  padding: 10px 13px 11px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.skin-quality-page .skin-quality-problem-grid span {
  color: var(--zama-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  flex: 0 0 auto;
  line-height: 1;
}

.skin-quality-page .skin-quality-problem-grid strong {
  color: var(--zama-ink);
  font-size: 15px;
  line-height: 1.32;
  flex: 1 1 auto;
}

.skin-quality-page .skin-quality-lightbox,
.co2-laser-page .skin-quality-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(4, 24, 38, .86);
}

.skin-quality-page .skin-quality-lightbox.is-open,
.co2-laser-page .skin-quality-lightbox.is-open {
  display: grid;
}

.skin-quality-page .skin-quality-lightbox img,
.co2-laser-page .skin-quality-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
  background: #fff;
}

.skin-quality-page .skin-quality-lightbox-caption,
.co2-laser-page .skin-quality-lightbox-caption {
  max-width: min(1120px, 94vw);
  margin: 14px 0 0;
  padding: 11px 16px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.skin-quality-page .skin-quality-lightbox button,
.co2-laser-page .skin-quality-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.skin-quality-page .skin-quality-lightbox .skin-quality-lightbox-nav,
.co2-laser-page .skin-quality-lightbox .skin-quality-lightbox-nav {
  top: 50%;
  right: auto;
  width: 52px;
  height: 58px;
  transform: translateY(-50%);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .14);
  font-size: 38px;
}

.skin-quality-page .skin-quality-lightbox .skin-quality-lightbox-prev,
.co2-laser-page .skin-quality-lightbox .skin-quality-lightbox-prev {
  left: 22px;
}

.skin-quality-page .skin-quality-lightbox .skin-quality-lightbox-next,
.co2-laser-page .skin-quality-lightbox .skin-quality-lightbox-next {
  right: 22px;
}

.skin-quality-page .zama-hero-copy h1,
.vaginal-tightening-page .zama-hero-copy h1 {
  font-size: clamp(2.4rem, 4.9vw, 5rem);
  line-height: 1.02;
}

.vaginal-tightening-page .zama-hero-slide--one {
  background-position: center 45%;
}

.vaginal-tightening-page .zama-hero-slide--two {
  background-position: center 46%;
}

.vaginal-tightening-page .zama-hero-slide--three {
  background-position: center 44%;
}

.vaginal-tightening-page .vaginal-video-layout {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: stretch;
}

.vaginal-tightening-page .article-video-card {
  position: relative;
  width: 100%;
  max-width: 760px;
  min-height: 0;
  margin: 0;
  padding: 0;
  transform: none;
  border: 0;
  border-radius: 8px;
  background: #061826;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.vaginal-tightening-page .article-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 820px) {
  .vaginal-tightening-page .vaginal-video-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .vaginal-tightening-page .article-video-card {
    max-width: 100%;
  }
}

.restored-treatment-page .article-layout,
.restored-treatment-page .article-two-column {
  align-items: stretch;
}

.restored-treatment-page .article-layout > .article-copy,
.restored-treatment-page .article-two-column > div:first-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.restored-treatment-page .article-side-card,
.restored-treatment-page .article-check-card,
.restored-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.restored-treatment-page .article-copy p,
.restored-treatment-page .article-side-card p,
.restored-grid p {
  text-align: justify;
}

.restored-grid img,
.restored-treatment-page .article-side-card img,
.restored-treatment-page .article-check-card img {
  width: 100%;
  height: clamp(170px, 18vw, 235px);
  object-fit: cover;
  object-position: center;
}

.frax-benefit-card h3 {
  color: #0d4366;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  margin-bottom: 14px;
}

.frax-benefit-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.frax-benefit-card li {
  position: relative;
  margin: 0;
  padding: 11px 13px 11px 42px;
  background: rgba(14, 132, 230, .075);
  border: 1px solid rgba(14, 132, 230, .22);
  color: #0d4366;
  font-weight: 700;
  line-height: 1.34;
  text-align: left;
}

.frax-benefit-card li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 13px;
  height: 7px;
  border-left: 3px solid #0e84e6;
  border-bottom: 3px solid #0e84e6;
  transform: translateY(-62%) rotate(-45deg);
}

.frax-expertise-card h2 {
  font-size: clamp(1.08rem, 1.45vw, 1.48rem);
  line-height: 1.12;
}

.co2-expertise-card h2 {
  font-size: clamp(1.08rem, 1.45vw, 1.48rem);
  line-height: 1.12;
}

@media (min-width: 981px) {
  .frax-expertise-card h2,
  .co2-expertise-card h2 {
    white-space: nowrap;
  }
}

.restored-treatment-page .article-side-card .zama-btn {
  align-self: flex-end;
  margin-top: auto;
}

.restored-treatment-page .alterswarzen-diagnostic-card h2 {
  font-size: clamp(1.28rem, 1.55vw, 1.62rem);
  line-height: 1.18;
  text-align: left;
}

.restored-treatment-page .alterswarzen-diagnostic-card .article-credential {
  margin: 16px 0 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue-navy);
  background: #f4fbff;
}

.restored-treatment-page .alterswarzen-diagnostic-card .article-credential strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-navy);
}

.restored-treatment-page .alterswarzen-diagnostic-card .article-credential p {
  margin: 0;
  font-size: clamp(.95rem, 1vw, 1.04rem);
  line-height: 1.62;
  text-align: justify;
}

.restored-grid h3 {
  min-height: 2.5em;
}

.contact-page .zama-hero,
.before-after-page .zama-hero {
  min-height: clamp(620px, 78vh, 820px);
}

.contact-section {
  padding-top: clamp(58px, 7vw, 88px);
}

.contact-layout,
.ba-intro-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}

.contact-info-panel,
.contact-form-panel,
.ba-notice {
  border: 1px solid rgba(34, 48, 74, .12);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px rgba(21, 34, 56, .10);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-info-panel h2,
.contact-form-panel h2,
.ba-intro-layout h2 {
  margin: 10px 0 18px;
  color: #12233d;
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  letter-spacing: 0;
}

.contact-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-detail-list li {
  border-top: 1px solid rgba(34, 48, 74, .10);
  padding-top: 14px;
  display: grid;
  gap: 4px;
}

.contact-detail-list strong,
.ba-card span {
  color: #7b5a34;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.zama-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.zama-gallery-card {
  background: rgba(255,255,255,.94);
  border: 1px solid #c7eaf7;
  box-shadow: 0 14px 36px rgba(20, 129, 184, .1);
  overflow: hidden;
}

.before-after-page .zama-gallery-card {
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.before-after-page .zama-gallery-card:hover,
.before-after-page .zama-gallery-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(17,123,180,.42);
  box-shadow: 0 20px 46px rgba(20, 129, 184, .18);
  outline: none;
}

.zama-gallery-card[hidden] {
  display: none;
}

.zama-gallery-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.zama-gallery-card-body {
  padding: 22px;
}

.zama-gallery-card h3 {
  margin: 0 0 10px;
  color: #1d2428;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.zama-gallery-card p {
  margin: 0;
  color: #66747b;
  line-height: 1.75;
  font-size: .96rem;
}

.acne-before-after-card,
.xanthelasma-before-after-card,
.treatment-before-after-card {
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.treatment-before-after-section {
  position: relative;
  border-top: 1px solid rgba(17, 123, 180, .2);
  border-bottom: 1px solid rgba(17, 123, 180, .18);
  background:
    linear-gradient(180deg, rgba(238, 248, 255, .92) 0%, rgba(255, 255, 255, .98) 54%, rgba(248, 252, 255, .96) 100%);
}

.treatment-before-after-section .zama-editorial-heading {
  margin-bottom: 26px;
}

.treatment-before-after-section .zama-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(17, 123, 180, .24);
  border-radius: 999px;
  background: #fff;
  color: #117bb4;
  box-shadow: 0 10px 24px rgba(17, 123, 180, .1);
}

.treatment-before-after-section .article-feature-grid {
  align-items: stretch;
  gap: 18px;
}

.treatment-before-after-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 123, 180, .24);
  background: #fff;
  box-shadow: 0 18px 38px rgba(24, 57, 80, .1);
}

.treatment-before-after-card::after {
  content: "Vorher / Nachher";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12, 52, 79, .9);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(12, 52, 79, .2);
}

.treatment-before-after-card h3 {
  margin-top: 14px;
}

.acne-before-after-card:hover,
.acne-before-after-card:focus-visible,
.xanthelasma-before-after-card:hover,
.xanthelasma-before-after-card:focus-visible,
.treatment-before-after-card:hover,
.treatment-before-after-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(17,123,180,.42);
  box-shadow: 0 20px 46px rgba(20, 129, 184, .18);
  outline: none;
}

.treatment-before-after-section .restored-grid img {
  display: block;
  width: 100%;
  min-height: 210px;
  max-height: 260px;
  object-fit: contain;
  background: #fff;
}

.tattoo-removal-page .treatment-before-after-section .article-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tattoo-removal-page .treatment-before-after-section .restored-grid img {
  max-height: 300px;
}

.zama-gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.zama-gallery-filter button {
  border: 1px solid rgba(17,123,180,.22);
  background: rgba(246,251,255,.92);
  color: #0d4366;
  padding: 13px 16px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
}

.zama-gallery-filter button.is-active {
  color: #117bb4;
  border-color: rgba(17,123,180,.58);
  box-shadow: inset 0 -2px 0 rgba(17,123,180,.48);
}

.zama-gallery-filter button:hover,
.zama-gallery-filter button:focus-visible {
  background: rgba(17,123,180,.1);
  border-color: rgba(17,123,180,.38);
}

.zama-gallery-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  background: linear-gradient(135deg, rgba(222,245,255,.96), rgba(199,234,247,.92));
  border: 1px solid rgba(17,123,180,.22);
  color: #0d4366;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.before-after-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10000;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(5, 29, 45, .86);
  backdrop-filter: blur(10px);
}

.before-after-lightbox.is-open {
  display: flex !important;
}

.before-after-lightbox[hidden] {
  display: none !important;
}

.before-after-lightbox-figure {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(94vw, 1180px);
  margin: 0;
}

.before-after-lightbox img {
  width: auto;
  max-width: min(94vw, 1180px);
  max-height: 76vh;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 86px rgba(0, 0, 0, .34);
}

.before-after-lightbox-caption {
  width: min(92vw, 900px);
  padding: 14px 18px;
  border: 1px solid rgba(199, 234, 247, .34);
  border-radius: 8px;
  background: rgba(13, 67, 102, .9);
  color: #fff;
  font-size: clamp(.88rem, 1.3vw, 1rem);
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.before-after-lightbox button {
  border: 1px solid rgba(199, 234, 247, .42);
  background: rgba(222, 245, 255, .94);
  color: #0d4366;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.before-after-lightbox button:hover,
.before-after-lightbox button:focus-visible {
  background: #fff;
  outline: 2px solid rgba(199, 234, 247, .72);
  outline-offset: 3px;
}

.before-after-lightbox-close {
  position: absolute;
  top: clamp(14px, 2vw, 26px);
  right: clamp(14px, 2vw, 26px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.before-after-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: clamp(44px, 5vw, 58px);
  height: clamp(44px, 5vw, 58px);
  border-radius: 50%;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: .7;
  transform: translateY(-50%);
}

.before-after-lightbox-prev {
  left: clamp(12px, 2vw, 30px);
}

.before-after-lightbox-next {
  right: clamp(12px, 2vw, 30px);
}

body.before-after-lightbox-open {
  overflow: hidden;
}

.contact-detail-list a,
.contact-detail-list span {
  color: #16233a;
  text-decoration: none;
  font-weight: 650;
}

.contact-note {
  margin-top: 26px;
  padding: 18px;
  border-left: 3px solid #a8733b;
  background: rgba(168, 115, 59, .08);
}

.contact-note p {
  margin: 6px 0 0;
  color: rgba(22, 35, 58, .72);
  line-height: 1.65;
}

.contact-form-panel .zama-form-field input,
.contact-form-panel .zama-form-field select,
.contact-form-panel .zama-form-field textarea {
  border-bottom-color: rgba(22, 35, 58, .24);
  color: #12233d;
  background: rgba(18, 35, 61, .025);
}

.contact-form-panel .zama-form-field input::placeholder,
.contact-form-panel .zama-form-field textarea::placeholder,
.contact-form-panel .zama-form-field select {
  color: rgba(22, 35, 58, .56);
}

.contact-form-panel .zama-form-hint {
  color: rgba(22, 35, 58, .68);
}

.contact-form-panel .zama-checkbox label {
  color: rgba(22, 35, 58, .76);
}

.zama-form-field--wide {
  grid-column: 1 / -1;
}

.zama-form-field textarea {
  min-height: 142px;
  resize: vertical;
  line-height: 1.55;
}

.zama-form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #163052;
  font-weight: 700;
}

.contact-map-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(420px, 1.22fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
}

.contact-map-card {
  overflow: hidden;
  border-radius: 8px;
  min-height: 360px;
  border: 1px solid rgba(34, 48, 74, .12);
  box-shadow: 0 22px 60px rgba(21, 34, 56, .12);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.ba-intro-layout {
  grid-template-columns: minmax(460px, 1fr) minmax(280px, 380px);
}

.ba-notice {
  align-self: stretch;
  border-left: 4px solid #a8733b;
}

.ba-notice strong {
  display: block;
  color: #12233d;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.ba-notice p {
  margin: 0;
  color: rgba(22, 35, 58, .74);
  line-height: 1.7;
}

.ba-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.ba-card {
  display: grid;
  grid-template-columns: minmax(180px, .9fr) minmax(220px, 1.1fr);
  min-height: 270px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(34, 48, 74, .10);
  box-shadow: 0 20px 58px rgba(21, 34, 56, .09);
}

.ba-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: center;
}

.ba-card div {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ba-card h3 {
  margin: 8px 0 10px;
  color: #12233d;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.ba-card p {
  margin: 0 0 16px;
  color: rgba(22, 35, 58, .72);
  line-height: 1.65;
}

.ba-card a {
  color: #7b5a34;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .contact-layout,
  .contact-map-layout,
  .ba-intro-layout,
  .ba-gallery-grid,
  .zama-gallery-grid,
  .ba-card {
    grid-template-columns: 1fr;
  }

  .ba-card img {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .before-after-lightbox {
    padding: 72px 14px 24px;
  }

  .before-after-lightbox img {
    max-height: 66vh;
  }

  .before-after-lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .before-after-lightbox-prev {
    left: 18px;
  }

  .before-after-lightbox-next {
    right: 18px;
  }

  .before-after-lightbox-caption {
    margin-bottom: 62px;
  }
}

.contact-page--blue .zama-section--compact {
  padding-top: clamp(56px, 7vw, 86px);
  padding-bottom: clamp(56px, 7vw, 86px);
}

.zama-shell--narrow {
  max-width: 1180px;
}

.zama-section-head--contact {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.zama-section-head--contact h2 {
  margin: 12px 0 14px;
  color: #103653;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: 0;
}

.zama-section-head--contact p {
  margin: 0 auto;
  max-width: 780px;
  color: rgba(16, 54, 83, .72);
  line-height: 1.75;
}

.zama-contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: start;
}

.zama-contact-panel {
  border-radius: 7px;
  border: 1px solid rgba(156, 205, 222, .46);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
  box-shadow: 0 24px 60px rgba(20, 92, 130, .12);
  padding: 34px;
}

.zama-contact-panel--form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
  color: #103653;
}

.zama-contact-panel--form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #bfeaf3 0%, #75d4e3 52%, #4caec8 100%);
}

.zama-contact-panel-head {
  display: block;
  margin-bottom: 24px;
}

.zama-contact-panel-head strong {
  display: block;
  margin-bottom: 7px;
  color: inherit;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.zama-contact-panel-head span {
  display: block;
  color: rgba(16, 54, 83, .62);
  font-size: 15px;
  line-height: 1.5;
}

.zama-contact-panel--aside .zama-contact-panel-head span,
.zama-contact-map-card .zama-contact-panel-head span {
  color: rgba(16, 54, 83, .66);
}

.zama-form-grid--contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.zama-form-grid--contact .zama-form-field--full {
  grid-column: 1 / -1;
}

.zama-contact-panel--form .zama-form-field input,
.zama-contact-panel--form .zama-form-field textarea {
  width: 100%;
  border: 1px solid #d5e8ee;
  border-radius: 7px;
  background: #fbfefe;
  color: #103653;
  padding: 16px 18px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.zama-contact-panel--form .zama-form-field input::placeholder,
.zama-contact-panel--form .zama-form-field textarea::placeholder {
  color: rgba(16, 54, 83, .48);
}

.zama-contact-panel--form .zama-form-field input:focus,
.zama-contact-panel--form .zama-form-field textarea:focus {
  outline: none;
  border-color: rgba(76, 174, 200, .62);
  box-shadow: 0 0 0 4px rgba(117, 212, 227, .12);
  background: #ffffff;
}

.zama-contact-panel--form .zama-form-field textarea {
  resize: vertical;
  min-height: 180px;
}

.zama-checkbox--contact {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(117, 212, 227, .07);
  border: 1px solid rgba(76, 174, 200, .14);
  align-items: start;
  border-radius: 7px;
}

.zama-checkbox--contact input {
  accent-color: #75d4e3;
}

.zama-btn-row--contact {
  margin-top: 20px;
  justify-content: flex-start;
}

.zama-btn-contact {
  width: 100%;
  padding: 17px 24px;
  background: linear-gradient(135deg, #a7e8f1 0%, #55c6d6 100%);
  border: 1px solid transparent;
  border-radius: 7px;
  color: #103653;
  box-shadow: 0 18px 40px rgba(76, 174, 200, .16);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.zama-btn-contact:hover {
  background: linear-gradient(135deg, #86dfea 0%, #3aaec5 100%);
  color: #082b44;
}

.zama-btn-contact-secondary {
  background: rgba(167, 232, 241, .38);
  border-color: rgba(76, 174, 200, .28);
  border-radius: 7px;
  color: #103653;
  box-shadow: none;
}

.zama-btn-contact-secondary:hover {
  background: rgba(134, 223, 234, .55);
  border-color: rgba(58, 174, 197, .36);
  color: #082b44;
}

.zama-contact-highlight {
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(8, 119, 169, .10), rgba(80, 208, 222, .16));
  border: 1px solid rgba(18, 139, 190, .18);
  margin-bottom: 20px;
}

.zama-contact-highlight-kicker {
  display: block;
  color: #0b6f9e;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.zama-contact-highlight-link {
  display: inline-block;
  color: #103653;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.05;
  margin-bottom: 10px;
}

.zama-contact-highlight p {
  margin: 0;
  color: rgba(16, 54, 83, .70);
  line-height: 1.65;
}

.zama-contact-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.zama-contact-tile {
  min-height: 132px;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(18, 139, 190, .15);
}

.zama-contact-tile strong {
  color: #0b6f9e;
  display: block;
  margin-bottom: 8px;
}

.zama-contact-tile p {
  margin: 0;
  color: rgba(16, 54, 83, .72);
  line-height: 1.55;
}

.zama-contact-tile a,
.zama-contact-stack a {
  color: #0b6f9e;
  font-weight: 800;
  text-decoration: none;
}

.zama-contact-map-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(320px, .85fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.zama-contact-map-card,
.zama-contact-location-card {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(18, 139, 190, .16);
  box-shadow: 0 24px 68px rgba(11, 77, 116, .12);
  padding: clamp(22px, 3vw, 32px);
}

.zama-contact-map {
  height: clamp(360px, 42vw, 500px);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(18, 139, 190, .18);
}

.zama-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.zama-contact-location-card h2 {
  color: #103653;
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  margin: 12px 0 20px;
}

.zama-contact-stack {
  display: grid;
  gap: 14px;
}

.zama-contact-stack p {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(18, 139, 190, .16);
  color: rgba(16, 54, 83, .74);
  line-height: 1.55;
}

.zama-form-status {
  display: block;
}

.zama-form-status.is-success {
  color: #087456;
}

.zama-form-status.is-error {
  color: #9c2424;
}

@media (max-width: 980px) {
  .zama-contact-stage,
  .zama-contact-map-layout,
  .zama-form-grid--contact,
  .zama-contact-tiles {
    grid-template-columns: 1fr;
  }
}

/* Exact contact form geometry copied from the reference contact page. */
.contact-page--blue {
  --contact-primary: #0f6d78;
  --contact-primary-dark: #12353a;
  --contact-accent: #16b8c8;
  --contact-muted: rgba(18, 53, 58, .68);
  --contact-text: #183236;
  --contact-border: #dcebec;
  --contact-shadow-strong: 0 28px 70px rgba(15, 109, 120, .14);
}

.contact-page--blue .zama-contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: start;
}

.contact-page--blue .zama-contact-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
  border: 1px solid var(--contact-border);
  box-shadow: var(--contact-shadow-strong);
  padding: 34px;
}

.contact-page--blue .zama-contact-panel--form {
  position: relative;
  overflow: hidden;
}

.contact-page--blue .zama-contact-panel--form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #117bb4 0%, #0d6ea4 52%, #0d4366 100%);
}

.contact-page--blue .zama-contact-panel-head {
  margin-bottom: 24px;
}

.contact-page--blue .zama-contact-panel-head strong {
  display: block;
  margin-bottom: 7px;
  color: var(--contact-primary-dark);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contact-page--blue .zama-contact-panel-head span {
  display: block;
  color: var(--contact-muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-page--blue .zama-contact-form .zama-form-grid--contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-page--blue .zama-contact-form .zama-form-field {
  display: grid;
  gap: 9px;
}

.contact-page--blue .zama-contact-form .zama-form-field input,
.contact-page--blue .zama-contact-form .zama-form-field textarea {
  width: 100%;
  border: 1px solid #d5e8e8;
  background: #fbfefe;
  color: var(--contact-text);
  padding: 0 18px;
  font: inherit;
  border-radius: 0;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-page--blue .zama-contact-form .zama-form-field input {
  height: 54px;
}

.contact-page--blue .zama-contact-form .zama-form-field input::placeholder,
.contact-page--blue .zama-contact-form .zama-form-field textarea::placeholder {
  color: rgba(22,53,58,.48);
}

.contact-page--blue .zama-contact-form .zama-form-field input:focus,
.contact-page--blue .zama-contact-form .zama-form-field textarea:focus {
  outline: none;
  border-color: rgba(17,123,180,.65);
  box-shadow: 0 0 0 4px rgba(17,123,180,.10);
  background: #ffffff;
}

.contact-page--blue .zama-contact-form .zama-form-field textarea {
  resize: vertical;
  min-height: 180px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.contact-page--blue .zama-form-field--full {
  grid-column: 1 / -1;
}

.contact-page--blue .zama-checkbox--contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  margin-left: 0;
  padding: 16px 18px;
  background: rgba(17,123,180,.05);
  border: 1px solid rgba(17,123,180,.10);
  color: var(--contact-primary-dark);
  justify-content: flex-start;
  width: 100%;
}

.contact-page--blue .zama-checkbox--contact input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  margin-left: 0;
  padding: 0;
  accent-color: #117bb4;
}

.contact-page--blue .zama-btn-row--contact {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.contact-page--blue .zama-btn-contact {
  width: auto;
  min-width: 112px;
  height: 54px;
  min-height: 54px;
  padding: 0 20px;
  background: #117bb4;
  color: #ffffff;
  border: 1px solid #117bb4;
  border-radius: 0;
  box-shadow: 0 14px 30px rgba(17, 123, 180, .22);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.contact-page--blue .zama-btn-contact:hover {
  background: #0d4366;
  border-color: #0d4366;
}

/* Unified button color: same blue plaque as the hero info card. */
.button,
.send,
.zama-btn,
.zama-nav-cta,
.trust-card a,
.zama-btn-contact,
.zama-btn-contact-secondary,
.article-side-card .zama-btn,
.article-check-card .zama-btn,
.zama-parallax-btn-row .zama-btn,
.zama-parallax-btn-row .zama-btn-booking {
  background: #117bb4;
  border-color: #117bb4;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 123, 180, .22);
}

.button:hover,
.send:hover,
.zama-btn:hover,
.zama-nav-cta:hover,
.trust-card a:hover,
.zama-btn-contact:hover,
.zama-btn-contact-secondary:hover,
.article-side-card .zama-btn:hover,
.article-check-card .zama-btn:hover,
.zama-parallax-btn-row .zama-btn:hover,
.zama-parallax-btn-row .zama-btn-booking:hover {
  background: #0d4366;
  border-color: #0d4366;
  color: #ffffff;
}

.contact-page--blue .zama-btn-contact,
.contact-page--blue .zama-btn-contact-secondary {
  background: #117bb4;
  border-color: #117bb4;
  border-radius: 0;
  color: #ffffff;
}

.contact-page--blue .zama-btn-contact {
  min-width: 112px;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-page--blue .zama-btn-contact:hover,
.contact-page--blue .zama-btn-contact-secondary:hover {
  background: #0d4366;
  border-color: #0d4366;
  color: #ffffff;
}

.contact-page--blue .zama-contact-form .zama-btn-row--contact {
  justify-content: center !important;
}

@media (max-width: 980px) {
  .contact-page--blue .zama-contact-stage,
  .contact-page--blue .zama-contact-map-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
  }

  .contact-page--blue .zama-contact-panel,
  .contact-page--blue .zama-contact-map-card,
  .contact-page--blue .zama-contact-location-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact-page--blue .zama-contact-form .zama-form-grid--contact,
  .contact-page--blue .zama-contact-tiles {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .contact-page--blue .zama-contact-panel,
  .contact-page--blue .zama-contact-map-card,
  .contact-page--blue .zama-contact-location-card {
    padding: 22px;
  }

  .contact-page--blue .zama-contact-highlight-link,
  .contact-page--blue .zama-contact-tile a,
  .contact-page--blue .zama-contact-stack a {
    overflow-wrap: anywhere;
  }
}

.zama-checkbox label {
  display: block;
  font-size: 15px;
  color: #0d4366;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
  text-align: left;
  margin: 0;
}

input[type="checkbox"],
input[type="radio"] {
  width: 16px;
  height: 16px;
  padding: 0;
}

/* Recovered skin-surveillance balancing from the previous working version. */
.article-page.skin-surveillance-page .surveillance-intro-layout > .article-side-card > img.screening-image-fit {
  height: 329px;
  min-height: 0;
  max-height: 329px;
  object-fit: cover;
  object-position: center top;
}

.article-page.skin-surveillance-page .surveillance-intro-layout > .article-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-page.skin-surveillance-page .surveillance-intro-layout > .article-copy > .article-lead {
  margin-bottom: clamp(24px, 2.2vw, 34px);
  line-height: 1.5;
}

.article-page.skin-surveillance-page .surveillance-intro-layout > .article-copy > p:not(.article-lead) {
  line-height: 1.78;
  margin-bottom: clamp(22px, 2vw, 30px);
}

.article-page.skin-surveillance-page .surveillance-intro-layout > .article-copy > h2 {
  margin: clamp(18px, 2vw, 28px) 0 clamp(18px, 1.8vw, 26px);
}

.article-page.skin-surveillance-page .surveillance-intro-layout > .article-copy > .article-pill-grid {
  margin-top: clamp(20px, 2vw, 30px);
}

.article-page.skin-surveillance-page .surveillance-intro-layout > .article-side-card > h2 {
  margin: 10px 0 6px;
  font-size: clamp(1.28rem, 1.55vw, 1.56rem);
  line-height: 1.08;
  white-space: nowrap;
}

.article-page.skin-surveillance-page .surveillance-intro-layout > .article-side-card > p {
  margin-top: 0;
  line-height: 1.48;
}

.article-page.skin-surveillance-page .surveillance-bodymap-layout .article-check-card h3 {
  margin-bottom: clamp(4px, .45vw, 6px);
}

.article-page.skin-surveillance-page .surveillance-bodymap-layout .article-check-card > img.screening-image-fit {
  height: clamp(180px, 19vw, 250px);
  object-fit: cover;
  object-position: center top;
}

.article-page.skin-surveillance-page .surveillance-bodymap-layout .article-check-card li {
  margin: clamp(6px, .75vw, 10px) 0;
  line-height: 1.34;
}

.article-page.skin-surveillance-page .surveillance-expertise-layout > .article-copy > p {
  line-height: 1.72;
}

/* Working mobile menu behavior imported from the reference ZAMA page. */
html.zama-mobile-nav-open,
body.zama-mobile-nav-open,
html.zama-nav-lock,
body.zama-nav-lock {
  overflow: hidden;
}

.haemangiome-page .zama-hero-card {
  background: #0e84e6 !important;
  border-color: #0e84e6 !important;
  color: #ffffff !important;
  background-image: none !important;
}

.haemangiome-page .zama-hero-card strong,
.haemangiome-page .zama-hero-card p,
.haemangiome-page .zama-hero-metric span,
.haemangiome-page .zama-hero-metric small {
  color: #ffffff !important;
}

.haemangiome-page .zama-hero-metric {
  background: #0e84e6 !important;
  border-color: #0e84e6 !important;
  color: #ffffff !important;
  background-image: none !important;
}

/* Hero right-side plaques use the same approved blue tone as the buttons. */
.zama-hero-card,
.zama-hero-metric {
  background: #0e84e6 !important;
  border-color: #0e84e6 !important;
  color: #ffffff !important;
  background-image: none !important;
}

.zama-hero-card strong,
.zama-hero-card p,
.zama-hero-metric span,
.zama-hero-metric small {
  color: #ffffff !important;
}

.zama-hero-note {
  background: rgba(255, 255, 255, .10) !important;
  border-color: rgba(255, 255, 255, .18) !important;
  color: rgba(255, 255, 255, .95) !important;
  background-image: none !important;
  padding: 12px !important;
  max-width: max-content !important;
}

.zama-hero-metrics {
  gap: 28px !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.zama-hero-metric {
  border-right: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, .34) !important;
  border-bottom: 0 !important;
}

.zama-hero-metric:last-child {
  border-right: 0 !important;
}

.zama-hero-metric::after {
  display: none;
}

@media (max-width: 980px) {
  .zama-hero-aside {
    display: flex !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 22px !important;
    justify-content: stretch !important;
  }

  .zama-hero-card {
    width: 100% !important;
  }

  .zama-hero-metrics {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .zama-hero-metric {
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-top: 0 !important;
    padding: 12px 0 !important;
  }

  .zama-hero-metric:last-child {
    border-bottom: 0 !important;
  }

  .zama-hero-metric:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 12px;
    background: rgba(255, 255, 255, .34);
  }
}

.haemangiome-page .zama-hero .zama-btn {
  background: #0e84e6 !important;
  border-color: #0e84e6 !important;
  color: #ffffff !important;
  background-image: none !important;
}

.haemangiome-page .zama-hero .zama-btn:hover {
  background: #0b6fc2 !important;
  border-color: #0b6fc2 !important;
  color: #ffffff !important;
}

/* Global button color aligned with the approved hero plaque tone. */
.zama-btn,
.zama-nav-cta,
.zama-btn-booking,
.zama-btn-primary,
.zama-form-submit,
.zama-btn-contact,
.zama-btn-contact-secondary,
.contact-page--blue .zama-btn-contact,
.contact-page--blue .zama-btn-contact-secondary,
.zama-parallax-btn-row .zama-btn-booking,
button[type="submit"],
input[type="submit"] {
  background: #0e84e6 !important;
  border-color: #0e84e6 !important;
  color: #ffffff !important;
  background-image: none !important;
}

.zama-btn:hover,
.zama-nav-cta:hover,
.zama-btn-booking:hover,
.zama-btn-primary:hover,
.zama-form-submit:hover,
.zama-btn-contact:hover,
.zama-btn-contact-secondary:hover,
.contact-page--blue .zama-btn-contact:hover,
.contact-page--blue .zama-btn-contact-secondary:hover,
.zama-parallax-btn-row .zama-btn-booking:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: #0b6fc2 !important;
  border-color: #0b6fc2 !important;
  color: #ffffff !important;
  background-image: none !important;
}

/* Test tone for the scrolled header and mobile menu background. */
.zama-nav.is-scrolled,
.zama-nav.is-mobile-open {
  background: rgba(14, 82, 121, .94) !important;
  box-shadow: 0 10px 28px rgba(14, 82, 121, .20) !important;
}

.acne-scar-clinical-card h2 {
  font-size: clamp(1.2rem, 1.35vw, 1.48rem);
  line-height: 1.08;
}

@media (min-width: 981px) {
  .acne-scar-clinical-card h2 {
    white-space: nowrap;
  }
}

@media (min-width: 981px) {
  .zama-nav-inner {
    width: min(1460px, calc(100% - 28px));
    gap: 12px;
  }

  .zama-nav-brand {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .zama-nav-links {
    gap: 10px;
    flex-wrap: nowrap;
    margin-left: auto;
    transform: translateX(-34px);
  }

  .zama-nav-link,
  .zama-nav-trigger,
  .zama-nav-cta {
    font-size: 12.5px;
    letter-spacing: .035em;
    white-space: nowrap;
  }

  .zama-nav-trigger {
    gap: 5px;
  }

  .zama-nav-cta {
    padding: 11px 13px;
    min-width: max-content;
  }
}

@media (max-width: 980px) {
  .zama-nav-links {
    background: rgba(14, 82, 121, .97) !important;
  }
}

@media (max-width: 980px) {
  .zama-nav {
    max-height: 100vh;
    overflow: visible;
  }

  .zama-nav.is-mobile-open {
    background: rgba(5, 38, 76, .94);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(8, 47, 85, .18);
  }

  .zama-nav-inner {
    align-items: center !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    width: min(1320px, calc(100% - 40px)) !important;
    gap: 16px !important;
    justify-content: space-between !important;
  }

  .zama-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .zama-nav-links {
    position: fixed !important;
    left: 50% !important;
    top: 72px !important;
    bottom: auto !important;
    height: auto !important;
    min-height: 0 !important;
    width: min(calc(100vw - 24px), 420px) !important;
    transform: translateX(-50%) !important;
    z-index: 2147483001 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    padding: 14px 16px !important;
    background: rgba(5, 38, 76, .97) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 24px 44px rgba(5, 25, 47, .30) !important;
    border-radius: 0 !important;
    max-height: calc(100dvh - 84px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch !important;
    backdrop-filter: blur(14px) !important;
  }

  .zama-nav.is-mobile-open .zama-nav-links {
    display: flex !important;
  }

  .zama-nav-links > * {
    width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    border-bottom: 1px solid rgba(255, 255, 255, .18) !important;
    padding-bottom: 10px !important;
  }

  .zama-nav-links > *:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .zama-nav-link,
  .zama-nav-cta {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 0 !important;
  }

  .zama-nav-item--mega {
    width: 100% !important;
  }

  .zama-nav-trigger {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 0 !important;
    text-align: center !important;
    position: relative !important;
  }

  .zama-nav-trigger::after {
    position: absolute;
    right: 4px;
  }

  .zama-nav-mega {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-top: 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important;
    overflow: hidden !important;
  }

  .zama-nav-item--mega[open] > .zama-nav-mega {
    display: block !important;
  }

  .zama-nav-mega::before {
    display: none !important;
  }

  .zama-nav-mega-shell {
    padding: 14px !important;
    width: 100% !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .zama-nav-mega-head {
    width: 100% !important;
    text-align: center !important;
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .zama-nav-mega-head strong,
  .zama-nav-mega-head span {
    width: 100% !important;
    text-align: center !important;
  }

  .zama-nav-mega-grid,
  .zama-nav-mega-grid--wide {
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .zama-nav-mega-card {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(13, 67, 102, .16) !important;
  }

  .zama-nav-mega-card:last-child {
    border-bottom: 0 !important;
  }
}

.alterswarzen-ak-card > h2 {
  font-size: clamp(1.02rem, 1.05vw, 1.2rem) !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

.alterswarzen-diagnosis-heading {
  margin-top: clamp(34px, 4vw, 54px) !important;
}

@media (min-width: 981px) {
  .haemangioma-therapy-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.feuermale-page .feuermale-expertise-card > h2 {
  font-size: clamp(1.22rem, 1.32vw, 1.42rem) !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

.feuermale-page .feuermale-expertise-card img[src$="dip-sorbonne.jpg"] {
  object-position: center 0% !important;
  transform: translateY(10px);
}

.vaginal-tightening-page .vaginal-consult-card > h2 {
  font-size: clamp(1.18rem, 1.25vw, 1.38rem) !important;
  line-height: 1.1 !important;
}

.article-page .intimate-trust-card > h2 {
  font-size: clamp(1.18rem, 1.22vw, 1.34rem) !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

.article-page .intimate-trust-card img[src$="geschlecht-arzt-hanau.png"] {
  object-position: center calc(50% + 16px) !important;
}

.feuermale-page .feuermale-advice-card > h2 {
  font-size: clamp(1.22rem, 1.32vw, 1.42rem) !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

.besenreiser-page img[src$="besenreiser-veroedung.png"][alt*="Schaumverödung"] {
  object-position: 35% center !important;
}

.besenreiser-page img[src$="besenreiser-entfernen-hanau.jpg"][alt*="kosmetischer Belastung"] {
  object-position: 65% center !important;
}

.scar-correction-page .skin-quality-therapy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .skin-quality-page .skin-quality-benefit-grid,
  .skin-quality-page .skin-quality-therapy-grid,
  .skin-quality-page .skin-quality-problem-grid,
  .skin-quality-page .skin-quality-method-nav,
  .skin-quality-page .skin-quality-method-group .skin-quality-therapy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .skin-quality-page .skin-quality-benefit-grid,
  .skin-quality-page .skin-quality-therapy-grid,
  .skin-quality-page .skin-quality-problem-grid,
  .skin-quality-page .skin-quality-method-nav,
  .skin-quality-page .skin-quality-method-group .skin-quality-therapy-grid {
    grid-template-columns: 1fr;
  }

  .skin-quality-page .skin-quality-benefit-grid article,
  .skin-quality-page .skin-quality-problem-grid article {
    min-height: 0;
  }
}

.tattoo-removal-page .tattoo-intro-card > h2 {
  font-size: clamp(1.58rem, 1.95vw, 2.12rem) !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
}

.tattoo-removal-page .tattoo-inline-expertise {
  margin-top: clamp(16px, 1.8vw, 24px);
  padding-top: clamp(16px, 1.8vw, 24px);
  border-top: 1px solid rgba(14, 132, 230, .18);
}

.tattoo-removal-page .tattoo-inline-expertise h3 {
  margin: 0 0 12px;
  color: #0e84e6;
  font-size: clamp(1.28rem, 1.55vw, 1.62rem);
  line-height: 1.1;
  white-space: nowrap;
}

.tattoo-removal-page .tattoo-inline-expertise p {
  margin: 0 0 14px;
  font-size: clamp(1.06rem, 1.16vw, 1.18rem);
  line-height: 1.7;
}

.tattoo-removal-page .tattoo-classification-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tattoo-removal-page .tattoo-classification-grid article {
  display: flex;
  flex-direction: column;
}

.tattoo-removal-page .tattoo-classification-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 18px;
}

.tattoo-removal-page .tattoo-classification-grid h3 {
  align-self: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  margin: 0 0 16px;
  padding: 8px 16px;
  border: 1px solid rgba(14, 132, 230, .2);
  background: rgba(14, 132, 230, .09);
  color: #0e84e6;
  font-size: clamp(.96rem, 1vw, 1.08rem);
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
}

.tattoo-removal-page .tattoo-classification-grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #24506b;
  font-size: .94rem;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .tattoo-removal-page .tattoo-classification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .tattoo-removal-page .tattoo-intro-card > h2,
  .tattoo-removal-page .tattoo-inline-expertise h3 {
    white-space: normal !important;
  }

  .tattoo-removal-page .tattoo-classification-grid {
    grid-template-columns: 1fr;
  }

  .tattoo-removal-page .tattoo-classification-grid h3 {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .home-core-themes {
    grid-template-columns: 1fr;
  }

  .home-core-theme-card {
    grid-template-columns: minmax(140px, .48fr) minmax(0, 1fr);
  }

  .home-spectrum-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-spectrum-flow span:not(:last-child)::after {
    display: none;
  }

  .home-blue-summary-grid {
    grid-template-columns: 1fr;
  }}

@media (max-width: 640px) {
  .home-core-theme-card {
    grid-template-columns: 1fr;
  }

  .home-core-theme-card img {
    min-height: 210px;
    max-height: 250px;
  }

  .home-core-theme-card h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .home-spectrum-flow {
    grid-template-columns: 1fr;
  }

  .home-blue-summary {
    min-height: 0;
    padding: 18px;
  }

  .home-blue-summary-panel {
    padding: 20px;
  }

  .home-blue-summary h3 {
    font-size: clamp(24px, 7vw, 30px);
  }}

.google-reviews-widget {
  position: relative;
  min-height: 100%;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(17, 123, 180, .2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(238,248,255,.94));
  box-shadow: 0 18px 46px rgba(9, 45, 67, .12);
}

.google-reviews-widget[hidden] {
  display: none;
}

.google-reviews-widget__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.google-reviews-widget__brand {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-size: 22px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(66, 133, 244, .18), 0 10px 24px rgba(66, 133, 244, .14);
}

.google-reviews-widget h3 {
  margin: 0 0 4px;
  color: #12344a;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0;
}

.google-reviews-widget__head p,
.google-reviews-widget__status {
  margin: 0;
  color: #607583;
  font-size: .94rem;
}

.google-reviews-widget__summary {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.google-reviews-widget__rating {
  color: #0d4366;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.google-reviews-widget__stars {
  position: relative;
  display: inline-block;
  color: rgba(13, 67, 102, .18);
  font-size: 22px;
  letter-spacing: 1px;
}

.google-reviews-widget__stars::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: var(--google-rating-width, 0%);
  overflow: hidden;
  color: #fbbc05;
}

.google-reviews-widget__count {
  color: #607583;
  font-size: .9rem;
}

.google-reviews-widget__list {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.google-review-card {
  padding: 14px;
  border: 1px solid rgba(17, 123, 180, .14);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
}

.google-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.google-review-card__top a {
  color: #12344a;
  font-weight: 700;
  text-decoration: none;
}

.google-review-card__top span {
  color: #fbbc05;
  white-space: nowrap;
}

.google-review-card p {
  margin: 0;
  color: #405664;
  font-size: .95rem;
  line-height: 1.62;
  text-align: justify;
}

.google-review-card small {
  display: block;
  margin-top: 8px;
  color: #748792;
  font-size: .82rem;
}

@media (max-width: 980px) {
  .google-reviews-widget {
    padding: 22px;
  }
}


/* Narbenkorrektur Therapieplanung */
.scar-v2-treatment-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
  margin-top: clamp(18px, 2.2vw, 26px);
}

.scar-v2-treatment-panels article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(14, 132, 230, .18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 67, 102, .09);
}

.scar-v2-treatment-panels img {
  width: 100%;
  height: clamp(170px, 15vw, 230px);
  object-fit: cover;
  object-position: center;
}

.scar-v2-treatment-panels div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(18px, 2.1vw, 26px);
}

.scar-v2-treatment-panels h3 {
  align-self: center;
  margin: 0 0 12px;
  padding: 8px 12px;
  background: #0e84e6;
  border: 1px solid #0e84e6;
  color: #fff;
  text-align: center;
  font-size: clamp(1.08rem, 1.15vw, 1.32rem);
  line-height: 1.15;
}

.scar-v2-treatment-panels p {
  margin: 0 0 10px;
  color: rgba(13, 67, 102, .78);
  font-size: .96rem;
  line-height: 1.48;
  text-align: justify;
}

.scar-v2-treatment-panels p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .scar-v2-treatment-panels {
    grid-template-columns: 1fr;
  }
}

/* FAQ accordion */
.article-faq-section .zama-editorial-heading {
  text-align: left;
  align-items: flex-start;
}

.article-faq-accordion {
  display: grid;
  gap: 12px;
}

.article-faq-accordion details {
  overflow: hidden;
  background: rgba(14, 132, 230, .075);
  border: 1px solid rgba(14, 132, 230, .22);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(13, 67, 102, .08);
}

.article-faq-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 52px 18px 20px;
  color: #0d4366;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.article-faq-accordion summary::-webkit-details-marker {
  display: none;
}

.article-faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #0e84e6;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.article-faq-accordion details[open] summary::after {
  content: "-";
}

.article-faq-accordion details > div {
  padding: 0 20px 18px;
}

.article-faq-accordion p {
  margin: 0;
  color: rgba(13, 67, 102, .78);
  text-align: justify;
}


.scar-correction-v2-page .scar-v2-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scar-correction-v2-page .scar-v2-type-grid img {
  height: clamp(150px, 13vw, 190px);
}

.scar-correction-v2-page .scar-v2-type-grid h3 {
  font-size: clamp(1rem, 1.05vw, 1.14rem);
}

.scar-correction-v2-page .scar-v2-type-grid p {
  font-size: .95rem;
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .scar-correction-v2-page .scar-v2-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .scar-correction-v2-page .scar-v2-type-grid {
    grid-template-columns: 1fr;
  }
}
