/* HairMedics single stylesheet: fonts → tokens → reset → base → layout →
   utilities → components → per-phase section CSS. Tokens from plan §1. */

/* == fonts == */

/* Sora is a variable font (wght 100–800); one file serves 300/400/700. */
@font-face {
	font-family: 'Sora';
	font-style: normal;
	font-weight: 100 800;
	font-display: swap;
	src: url('../fonts/sora-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Sora';
	font-style: normal;
	font-weight: 100 800;
	font-display: swap;
	src: url('../fonts/sora-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'IBM Plex Serif';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/ibm-plex-serif-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'IBM Plex Serif';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/ibm-plex-serif-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'IBM Plex Serif';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/ibm-plex-serif-italic-latin.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'IBM Plex Serif';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/ibm-plex-serif-italic-latin-ext.woff2') format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* == tokens == */

:root {
	/* Colors (plan §1.1) */
	--c-navy: #0a2a43;
	--c-blue: #0062f5;
	--c-sky: #89c6ff;
	--c-sky-light: #c4e3ff;
	--c-blue-pale: #c2ddfc;
	--c-lime: #e1fc6a;
	--c-glow: #a7eaff;
	--c-ink: #241a17;
	--c-black: #000;
	--c-bg-soft: #eef4fa;
	--c-white: #fff;

	/* Glass (header pill, stats bar) */
	--glass-bg: rgba(255, 255, 255, 0.68);
	--glass-blur: 15.3px;

	/* Gradients (plan §1.1) */
	--grad-hero: radial-gradient(710px 460px at 50% 250px, var(--c-sky) 0%, var(--c-sky-light) 52%, rgba(255, 255, 255, 0) 100%);
	--grad-dark: linear-gradient(115deg, rgba(0, 98, 245, 0) 42.6%, rgba(0, 98, 245, 0.63) 99.5%);
	--grad-light: linear-gradient(-84.6deg, var(--c-sky) 3.75%, rgba(255, 255, 255, 0) 42.3%);
	--grad-photo-overlay: linear-gradient(rgba(0, 0, 0, 0.16) 4%, rgba(0, 0, 0, 0.68) 55%);

	/* Type (plan §1.2) */
	--font-sans: 'Sora', system-ui, sans-serif;
	--font-serif: 'IBM Plex Serif', Georgia, serif;
	--fs-h1: 50px;
	--fs-h2: 37px;
	--fs-h3: 25px;
	--fs-hero-sub: 27px;
	--fs-body: 19px;
	--fs-body-lg: 22px;
	--fs-nav: 18px;
	--fs-chip: 16px;
	--fs-button: 17px;

	/* Radii (plan §1.3) */
	--r-chip: 8px;
	--r-card: 20px;
	--r-photo-card: 29px;
	--r-image: 35px;
	--r-pill: 45px;

	/* Layout */
	--container: 1306px;
	--container-wide: 1360px;
	--gutter: 67px;
}

/* == reset == */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-serif);
	font-size: var(--fs-body);
	line-height: 1.4;
	color: var(--c-black);
	background: var(--c-white);
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

ul[class],
ol[class] {
	list-style: none;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

button {
	background: none;
	border: 0;
	cursor: pointer;
}

/* == base == */

h1,
h2,
h3,
h4 {
	font-family: var(--font-sans);
	font-weight: 700;
	color: var(--c-ink);
}

h1 {
	font-size: var(--fs-h1);
	line-height: 1.1;
	color: var(--c-black);
}

h2 {
	font-size: var(--fs-h2);
	line-height: 1.27;
}

h3 {
	font-size: var(--fs-h3);
	line-height: 1.39;
}

:focus-visible {
	outline: 3px solid var(--c-blue);
	outline-offset: 2px;
}

::selection {
	background: var(--c-sky-light);
}

/* == layout == */

.hm-container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
	box-sizing: content-box;
}

.hm-container > * {
	box-sizing: border-box;
}

.hm-container--wide {
	max-width: var(--container-wide);
	padding-inline: 40px;
}

@media (max-width: 1440px) {
	.hm-container,
	.hm-container--wide {
		max-width: 100%;
		box-sizing: border-box;
	}
}

/* == utilities == */

.hm-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--c-white);
	color: var(--c-black);
	padding: 0.75rem 1.25rem;
	z-index: 100;
}

.hm-skip-link:focus {
	left: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.hm-text-center {
	text-align: center;
}

/* Dark sections: navy base + blue sweep, white text. */
.hm-dark {
	background-color: var(--c-navy);
	background-image: var(--grad-dark);
	color: var(--c-white);
}

.hm-dark h2,
.hm-dark h3 {
	color: var(--c-white);
}

/* Light band: soft blue base + sky sweep. */
.hm-band-soft {
	background-color: var(--c-bg-soft);
	background-image: var(--grad-light);
}

/* == buttons == */

/* Base: lime pill, Sora Bold 17/1.543 (Figma 23:312). */
.hm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 32px;
	background: var(--c-lime);
	border-radius: var(--r-pill);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: var(--fs-button);
	line-height: 1.543;
	color: var(--c-black);
	text-decoration: none;
	white-space: nowrap;
	transition: filter 0.15s ease;
}

.hm-button:hover {
	filter: brightness(0.96);
}

/* Hero variant: glow shadow, 18px text, radius 54 (Figma 23:293). */
.hm-button--glow {
	padding: 14px 38px;
	border-radius: 54px;
	font-size: 18px;
	box-shadow: 0 4px 33.5px var(--c-glow);
}

/* == chips/eyebrows == */

/* Bordered chip: 2px #c2ddfc, radius 8, uppercase Sora 16 (Figma 23:343). */
.hm-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 20px;
	border: 2px solid var(--c-blue-pale);
	border-radius: var(--r-chip);
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: var(--fs-chip);
	line-height: 1.273;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: var(--c-black);
}

.hm-chip--bold {
	font-weight: 700;
	letter-spacing: 1.19px;
}

/* On dark bands the chip text turns pale blue. */
.hm-dark .hm-chip,
.hm-chip--dark,
.hm-chip--on-dark {
	color: var(--c-blue-pale);
}

/* Solid white chip (e.g. “#haareohneop”). */
.hm-chip--solid {
	border: 0;
	padding: 7px 22px;
	background: var(--c-white);
	color: var(--c-black);
}

/* Plain uppercase eyebrow text, pale blue (dark sections). */
.hm-eyebrow {
	display: block;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: var(--fs-chip);
	line-height: 1.273;
	letter-spacing: 1.12px;
	text-transform: uppercase;
	color: var(--c-blue-pale);
}

/* == cards == */

/* White card panel, radius 20. */
.hm-card {
	background: var(--c-white);
	border-radius: var(--r-card);
}

/* Bordered benefit-style card, 2px pale-blue outline. */
.hm-card--outline {
	background: transparent;
	border: 2px solid var(--c-blue-pale);
}

/* Photo testimonial card, radius 29, dark overlay for quote legibility. */
.hm-card--photo {
	position: relative;
	overflow: hidden;
	border-radius: var(--r-photo-card);
	color: var(--c-white);
}

.hm-card--photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--grad-photo-overlay);
}

.hm-card--photo > * {
	position: relative;
	z-index: 1;
}

/* Glass panel (header pill, stats bar): white .68 + blur 15.3, radius 20. */
.hm-glass {
	background: var(--glass-bg);
	-webkit-backdrop-filter: blur(var(--glass-blur));
	backdrop-filter: blur(var(--glass-blur));
	border-radius: var(--r-card);
}

/* Inset rounded image, radius 35. */
.hm-image-rounded {
	border-radius: var(--r-image);
	object-fit: cover;
}

/* == header == */

/* Transparent header in normal flow; hero sections pull up behind it via
   margin-top: calc(-1 * var(--header-h)) so the gradient runs behind nav.
   Must be ≥ the real rendered header height (~131px incl. the Termin pill),
   else a white strip shows above the hero. Overshoot is harmless: the hero
   just clips above the viewport top, content position is unaffected. */
:root {
	--header-h: 135px;
}

.hm-header {
	position: relative;
	z-index: 10;
}

.hm-header__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 33px;
	padding-bottom: 20px;
}

/* Center the pill on the logo *name* (not the tagline), as in Figma. */
.hm-nav {
	margin-top: -9px;
}

/* Logo: Sora Bold "Hair" + Light "Medics" 38.118/0.94 + tracked tagline. */
.hm-logo {
	display: inline-block;
	color: var(--c-black);
	text-decoration: none;
	font-family: var(--font-sans);
	line-height: 0.94;
}

.hm-logo__name {
	display: block;
	font-size: 38.118px;
	font-weight: 700;
}

.hm-logo__light {
	font-weight: 300;
}

.hm-logo__tagline {
	display: block;
	margin-top: 7px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 4.5px;
	text-transform: uppercase;
}

/* Glass nav pill. */
.hm-nav__toggle {
	display: none;
}

/* Figma canvas shows the nav links directly on the hero background on BOTH
   pages (no glass pill, despite component 23:369) — padding kept for layout. */
.hm-nav__list {
	display: flex;
	align-items: center;
	gap: 40px;
	margin: 0;
	padding: 20px 0 20px 33px;
}

.hm-nav__list li {
	position: relative;
}

.hm-nav__list a {
	font-family: var(--font-sans);
	font-size: var(--fs-nav);
	line-height: 1.25;
	text-decoration: none;
	color: var(--c-black);
	white-space: nowrap;
}

.hm-nav__list a:hover {
	color: var(--c-blue);
}

/* "Termin" nav item rendered as a button pill (nav_menu_css_class filter).
   The menu is fully flat since Phase 9b — no dropdown/caret/submenu. */
.hm-nav__list .nav-cta a {
	display: inline-block;
	padding: 12px 28px;
	border-radius: var(--r-pill);
	background: var(--c-lime);
	font-weight: 700;
	color: var(--c-ink);
	box-shadow: 0 4px 33.5px var(--c-glow);
}

.hm-nav__list .nav-cta a:hover {
	color: var(--c-ink);
	filter: brightness(0.97);
}

/* == section heading == */

.hm-section-heading {
	margin-bottom: 56px;
}

.hm-section-heading .hm-chip,
.hm-section-heading .hm-eyebrow {
	margin-bottom: 28px;
}

.hm-section-heading h2 {
	margin: 0;
}

.hm-section-heading__intro {
	margin-top: 10px;
	font-size: var(--fs-body-lg);
	line-height: 1.35;
}

.hm-section-heading--center {
	text-align: center;
}

/* == stats bar == */

.hm-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	max-width: 644px;
	padding: 18px 30px;
	border-radius: var(--r-card);
}

/* Behandlung hero variant: opaque white card over the hero image. */
.hm-stats--card {
	background: var(--c-white);
}

.hm-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
	text-align: center;
	font-family: var(--font-sans);
}

.hm-stats__value {
	font-weight: 700;
	font-size: 19px;
	line-height: 1.45;
	color: var(--c-black);
}

.hm-stats__label {
	font-size: 16px;
	line-height: 1.45;
	color: var(--c-black);
}

.hm-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--c-black);
}

.hm-stars svg {
	width: 17px;
	height: 16px;
}

/* == quote card: photo == */

.hm-quote-photo {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	aspect-ratio: 304 / 468;
	padding: 28px 38px 28px 25px;
}

.hm-quote-photo__image {
	position: absolute;
	inset: 0;
	z-index: 0 !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hm-quote-photo__quote p {
	font-size: 19px;
	line-height: 1.3;
}

.hm-quote-photo__label {
	margin-top: 22px;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.3;
}

/* == quote card: light == */

.hm-quote-light {
	display: flex;
	flex-direction: column;
	min-height: 350px;
	padding: 30px;
}

.hm-quote-light__quote {
	flex-grow: 1;
}

.hm-quote-light__quote p {
	font-size: var(--fs-body-lg);
	line-height: 1.27;
	color: var(--c-black);
}

.hm-quote-light__meta {
	display: flex;
	align-items: center;
	gap: 19px;
	margin-top: 28px;
}

.hm-quote-light__avatar {
	width: 61px;
	height: 61px;
	border-radius: 50%;
	object-fit: cover;
}

.hm-quote-light__label {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.3;
	color: var(--c-black);
}

/* == quote card: split == */

.hm-quote-split {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.hm-quote-split__image {
	width: 100%;
	height: 263px;
	object-fit: cover;
}

.hm-quote-split__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-height: 213px;
	padding: 30px;
}

.hm-quote-split__quote p {
	font-size: 19px;
	line-height: 1.35;
	color: var(--c-black);
}

.hm-quote-split__label {
	margin-top: auto;
	padding-top: 24px;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 17px;
	color: var(--c-black);
}

/* == benefit card == */

.hm-benefit {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: var(--r-card);
	padding: 25px 18px 40px;
	text-align: center;
}

.hm-benefit__icon {
	height: 75px;
	width: auto;
	margin-bottom: 26px;
}

.hm-benefit__title {
	font-size: 22px;
	line-height: 1.6;
	color: var(--c-black);
	margin-bottom: 13px;
}

.hm-benefit__text {
	font-size: 19px;
	line-height: 1.5;
}

/* == timeline == */

/* Soft-blue steps card; connector rail (line + 27px circles) drawn in the
   gutter left of the card, dots anchored to each step title. */
.hm-timeline {
	counter-reset: hm-step;
	position: relative;
	padding: 50px 48px 45px 37px;
	background: var(--c-bg-soft);
	border-radius: var(--r-card);
	display: grid;
	gap: 55px;
	list-style: none;
}

.hm-timeline__step {
	counter-increment: hm-step;
	position: relative;
	padding-left: 30px;
}

/* Rail line segments: each step covers the gap above it; trimmed at the ends. */
.hm-timeline__step::after {
	content: '';
	position: absolute;
	left: -91.5px;
	top: -55px;
	bottom: 0;
	width: 1px;
	background: var(--c-black);
}

.hm-timeline__step:first-child::after {
	top: 8px;
}

.hm-timeline__step:last-child::after {
	bottom: calc(100% - 8px);
}

/* 27px circle aligned with the step title. */
.hm-timeline__step::before {
	content: '';
	position: absolute;
	z-index: 1;
	left: -104px;
	top: -5px;
	width: 27px;
	height: 27px;
	background: var(--c-white);
	border: 1px solid var(--c-black);
	border-radius: 50%;
}

.hm-timeline__title {
	display: flex;
	gap: 10px;
	margin-left: -30px;
	font-size: 24px;
	line-height: 1.55;
	color: var(--c-black);
}

.hm-timeline__title::before {
	content: counter(hm-step) '.';
	flex-shrink: 0;
	min-width: 20px;
}

.hm-timeline__text {
	max-width: 450px;
	margin-top: 4px;
	font-size: 19px;
	line-height: 1.4;
}

/* == price table == */

.hm-price-table {
	width: 100%;
	max-width: 1094px;
	margin-inline: auto;
	border-collapse: collapse;
	text-align: left;
}

.hm-price-table th,
.hm-price-table td {
	padding: 27px 30px 27px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	vertical-align: middle;
}

.hm-price-table thead th {
	padding-top: 0;
	padding-bottom: 22px;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 30px;
	line-height: 1.25;
	color: var(--c-ink);
}

.hm-price-table tbody th {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 25px;
	line-height: 1.39;
	color: var(--c-ink);
	hyphens: auto;
	hyphenate-limit-chars: 10 6 10;
}

.hm-price-table td {
	font-size: 19px;
	line-height: 1.35;
}

.hm-price-table tbody tr:last-child th,
.hm-price-table tbody tr:last-child td {
	border-bottom: 0;
}

.hm-price-table th:nth-child(1) { width: 30%; }
.hm-price-table th:nth-child(2) { width: 41%; }
.hm-price-table th:nth-child(3) { width: 20%; }
.hm-price-table th:nth-child(4) { width: 9%; }

/* == cta band == */

.hm-cta-band {
	background: var(--c-bg-soft);
	padding: 76px 0 53px;
}

.hm-cta-band__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hm-cta-band__text {
	margin-top: 21px;
	max-width: 800px;
	font-size: var(--fs-hero-sub);
	line-height: 1.33;
	color: var(--c-black);
}

.hm-cta-band .hm-button {
	margin-top: 60px;
}

/* Dark variant (blog single) — beat the base .hm-cta-band background. */
.hm-cta-band.hm-dark {
	background-color: var(--c-navy);
	background-image: var(--grad-dark);
}

.hm-cta-band.hm-dark .hm-cta-band__text {
	color: var(--c-white);
}

/* == post card == */

.hm-post-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.hm-post-card__image {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.hm-post-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-grow: 1;
	padding: 28px 30px 32px;
}

.hm-post-card__title {
	margin: 18px 0 0;
	font-size: 24px;
	line-height: 1.35;
}

.hm-post-card__title a {
	text-decoration: none;
	color: var(--c-black);
}

.hm-post-card__title a:hover {
	color: var(--c-blue);
}

.hm-post-card__excerpt {
	margin-top: 10px;
	font-size: 17px;
	line-height: 1.45;
}

.hm-post-card__meta {
	margin-top: auto;
	padding-top: 16px;
	font-family: var(--font-sans);
	font-size: 14px;
	color: rgba(0, 0, 0, 0.6);
}

/* == footer == */

.hm-footer {
	background: var(--c-white);
	padding-top: 44px;
}

.hm-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	text-align: center;
}

.hm-footer__heading {
	margin-bottom: 16px;
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 37px;
	line-height: 1.273;
	color: var(--c-ink);
}

.hm-footer__col p {
	font-size: 20px;
	line-height: 1.35;
	color: var(--c-ink);
}

.hm-footer__col a {
	text-decoration: none;
}

.hm-footer__col a:hover {
	text-decoration: underline;
}

.hm-footer__divider {
	margin: 56px 0 0;
	border: 0;
	border-top: 1px solid var(--c-black);
}

.hm-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	padding-bottom: 60px;
	font-family: var(--font-sans);
	font-size: 18px;
}

.hm-footer__legal-links {
	display: flex;
	gap: 49px;
}

.hm-footer__legal-links a {
	font-weight: 700;
	text-decoration: none;
}

.hm-footer__legal-links a:hover {
	text-decoration: underline;
}

/* ===================================================== frontpage sections */

/* 1 — Hero (§1.5.1). The sky radial lives on the body so it runs behind the
   transparent header and finishes its fade under the Vorteile heading. */
body.home {
	background: var(--grad-hero) no-repeat, var(--c-white);
}

.hm-hero {
	margin-top: calc(-1 * var(--header-h));
	padding-top: calc(var(--header-h) + 35px);
	padding-bottom: 60px;
	text-align: center;
}

.hm-hero h1 {
	max-width: 700px;
	margin-inline: auto;
}

.hm-hero__sub {
	max-width: 660px;
	margin: 21px auto 0;
	font-size: var(--fs-hero-sub);
	line-height: 1.3;
}

.hm-hero .hm-button {
	margin-top: 39px;
}

.hm-hero .hm-stats {
	margin: 42px auto 0;
}

/* 2 — Ihre Vorteile (§1.5.2) */
.hm-benefits__heading {
	text-align: center;
}

.hm-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 29px;
	margin-top: 45px;
}

/* 3 — Haare ohne OP (§1.5.3) */
.hm-ohneop {
	margin-top: 87px;
}

.hm-ohneop__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 60px;
	border-radius: var(--r-card);
	padding: 49px 28px 27px 44px;
}

.hm-ohneop .hm-eyebrow {
	font-weight: 400;
}

.hm-ohneop h2 {
	margin-top: 15px;
}

.hm-ohneop__intro {
	max-width: 720px;
	margin-top: 16px;
	font-size: 19px;
	line-height: 1.42;
}

ul.hm-ohneop__bullets {
	display: grid;
	gap: 7px;
	margin-top: 16px;
	padding-left: 27px;
	list-style: disc;
	font-size: 19px;
	line-height: 1.4;
}

.hm-ohneop .hm-button {
	margin-top: 29px;
}

.hm-ohneop__image {
	width: 390px;
	height: 422px;
}

/* 4 — Unser Ansatz (§1.5.4) */
.hm-ansatz {
	margin-top: 121px;
}

.hm-ansatz__grid {
	display: grid;
	grid-template-columns: 533px minmax(0, 1fr);
	gap: 131px;
	align-items: start;
}

.hm-ansatz__image {
	width: 533px;
	height: 352px;
	object-fit: cover;
	margin-top: 101px;
}

.hm-ansatz .hm-section-heading {
	margin-bottom: 24px;
}

.hm-ansatz .hm-section-heading .hm-chip {
	margin-bottom: 15px;
}

.hm-ansatz__body {
	max-width: 660px;
}

.hm-ansatz__body p,
.hm-ansatz__body li {
	font-size: 19px;
	line-height: 1.42;
}

.hm-ansatz__body p + p,
.hm-ansatz__body ul,
.hm-ansatz__body ul + p {
	margin-top: 17px;
}

.hm-ansatz__body ul {
	display: grid;
	gap: 7px;
	padding-left: 27px;
	list-style: disc;
}

.hm-ansatz .hm-button {
	margin-top: 62px;
}

/* 5 — Ergebnisse & Erfahrungen #1 (§1.5.5) */
.hm-ee1 {
	padding-top: 155px;
	padding-bottom: 105px;
	background: radial-gradient(800px 520px at 280px 700px, rgba(137, 198, 255, 0.48), rgba(255, 255, 255, 0) 100%) no-repeat;
}

.hm-ee1 .hm-chip {
	background: var(--c-white);
}

.hm-ee1 .hm-section-heading {
	margin-bottom: 73px;
}

.hm-ee1 .hm-section-heading .hm-chip {
	margin-bottom: 24px;
}

.hm-ee1 .hm-section-heading__intro {
	margin-top: 3px;
}

.hm-ee1 .hm-section-heading__intro {
	font-size: var(--fs-hero-sub);
	line-height: 1.3;
}

.hm-ee1__row {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.hm-ee1__arrow {
	position: absolute;
	top: 50%;
	right: -25px;
	z-index: 2;
	transform: translateY(-50%);
}

.hm-ee1__dots {
	margin: 45px auto 0;
}

/* 6 — Regrowth System (§1.5.6) */
.hm-regrowth {
	padding: 83px 0 90px;
	background-color: var(--c-navy);
	background-image: radial-gradient(1600px 1100px at 58% 108%, rgba(0, 98, 245, 0.55), rgba(0, 98, 245, 0) 100%);
	color: var(--c-white);
}

.hm-regrowth h2,
.hm-regrowth h3,
.hm-regrowth h4 {
	color: var(--c-white);
}

.hm-regrowth__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 635px;
	gap: 67px;
	align-items: start;
}

.hm-regrowth .hm-section-heading {
	margin-bottom: 0;
}

.hm-regrowth .hm-section-heading .hm-chip {
	margin-bottom: 13px;
}

.hm-regrowth .hm-section-heading h2 {
	max-width: 560px;
}

.hm-regrowth__intro {
	max-width: 570px;
	margin-top: 50px;
	font-size: 19px;
	line-height: 1.55;
}

.hm-regrowth__image {
	width: 635px;
	height: 465px;
	margin-top: 13px;
}

/* Outlined inner panel, wider than the container (1344 @ 1440). */
.hm-regrowth__panel {
	margin: 99px 48px 0;
	padding: 40px 36px 37px;
	border: 1px solid rgba(194, 221, 252, 0.8);
	border-radius: var(--r-card);
	text-align: center;
}

.hm-regrowth__kicker {
	font-family: var(--font-sans);
	font-size: 30px;
	line-height: 1.3;
}

.hm-regrowth__panel h3 {
	max-width: 640px;
	margin: 1px auto 0;
	font-size: 30px;
	line-height: 1.25;
}

.hm-regrowth__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 27px;
	margin-top: 68px;
}

.hm-regrowth__card {
	padding: 30px 24px;
	background: rgba(0, 98, 245, 0.2);
	border-radius: 10px;
}

.hm-regrowth__card h4 {
	font-size: 26px;
	line-height: 1.45;
}

.hm-regrowth__card p {
	max-width: 310px;
	margin: 12px auto 0;
	font-size: 19px;
	line-height: 1.37;
}

.hm-regrowth__cta {
	margin-top: 44px;
	text-align: center;
}

/* 7 — Termin sichern (§1.5.7) */

/* 8 — Behandlungsablauf (§1.5.8) */
.hm-ablauf {
	padding-top: 100px;
}

.hm-ablauf .hm-section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.hm-ablauf .hm-section-heading .hm-chip {
	margin-bottom: 40px;
	background: var(--c-white);
}

.hm-ablauf__grid {
	display: grid;
	grid-template-columns: 600px minmax(0, 1fr);
	gap: 110px;
	align-items: start;
}

.hm-ablauf__image {
	width: 600px;
	height: 670px;
	object-fit: cover;
}

/* Behandlung variant (§1.6.5): slightly narrower gutter, taller image, CTA row */
.hm-ablauf--behandlung {
	padding-top: 90px;
}

.hm-ablauf--behandlung .hm-section-heading {
	margin-bottom: 70px;
}

.hm-ablauf--behandlung .hm-section-heading .hm-chip {
	margin-bottom: 25px;
}

.hm-ablauf--behandlung .hm-ablauf__grid {
	grid-template-columns: 600px minmax(0, 1fr);
	gap: 110px;
}

.hm-ablauf--behandlung .hm-ablauf__image {
	width: 600px;
	height: 785px;
}

.hm-ablauf__cta {
	margin-top: 70px;
	text-align: center;
}

/* 9 — Ergebnisse der Behandlung (§1.5.9) */
.hm-ebox {
	margin-top: 70px;
}

.hm-ebox__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 372px;
	gap: 60px;
	border-radius: var(--r-card);
	padding: 70px 50px 30px 75px;
	min-height: 440px;
}

.hm-ebox__panel h3 {
	font-size: 27px;
	line-height: 1.35;
	color: var(--c-white);
}

.hm-ebox__body {
	max-width: 545px;
	margin-top: 30px;
	font-size: 19px;
	line-height: 1.45;
}

.hm-ebox__body ul {
	display: grid;
	gap: 2px;
	margin: 20px 0;
	padding-left: 27px;
	list-style: disc;
}

.hm-ebox__image {
	width: 372px;
	height: 385px;
	margin-top: -45px;
	border-radius: var(--r-photo-card);
	object-fit: cover;
}

/* 10 — Ergebnisse & Erfahrungen #2 (§1.5.10) */
.hm-ee2 {
	padding-top: 150px;
	padding-bottom: 50px;
	background: radial-gradient(1000px 700px at 30% 88%, rgba(137, 198, 255, 0.52), rgba(255, 255, 255, 0) 100%) no-repeat;
}

.hm-ee2 .hm-chip {
	background: var(--c-white);
}

.hm-ee2 .hm-section-heading {
	margin-bottom: 80px;
}

.hm-ee2 .hm-section-heading .hm-chip {
	margin-bottom: 25px;
}

.hm-ee2 .hm-section-heading__intro {
	margin-top: 5px;
	font-size: var(--fs-hero-sub);
	line-height: 1.3;
}

.hm-ee2__row {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.hm-ee2__arrow {
	position: absolute;
	top: 263px;
	right: -20px;
	z-index: 2;
	transform: translateY(-50%);
}

/* 11 — Für wen geeignet (§1.5.11) */
.hm-geeignet {
	margin-top: 120px;
	padding: 95px 0 110px;
}

.hm-geeignet__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 473px;
	gap: 90px;
	align-items: start;
}

.hm-geeignet .hm-eyebrow {
	font-weight: 400;
}

.hm-geeignet h2 {
	max-width: 620px;
	margin-top: 10px;
}

.hm-geeignet__body {
	margin-top: 35px;
}

.hm-geeignet__body ul {
	display: grid;
	padding-left: 20px;
	list-style: disc;
	font-size: 19px;
	line-height: 1.5;
}

.hm-geeignet__image {
	width: 473px;
	height: 282px;
	object-fit: cover;
	border-radius: var(--r-card);
}

.hm-starten {
	position: relative;
}

.hm-starten__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hm-starten__inner {
	position: relative;
	padding-top: 90px;
	padding-bottom: 65px;
}

.hm-starten__content {
	margin-left: 665px;
}

.hm-starten__content h2 {
	max-width: 560px;
}

.hm-starten__text {
	max-width: 620px;
	margin-top: 15px;
	font-size: 19px;
	line-height: 1.4;
}

.hm-starten__note {
	margin-top: 25px;
	font-size: 20px;
	line-height: 1.35;
}

.hm-starten .hm-button {
	margin-top: 30px;
}

/* 12 — Über HairMedics (§1.5.12) */
.hm-ueber {
	padding-top: 135px;
	padding-bottom: 100px;
	background: radial-gradient(900px 520px at 18% 108%, rgba(137, 198, 255, 0.55), rgba(255, 255, 255, 0) 100%) no-repeat;
}

.hm-ueber__grid {
	display: grid;
	grid-template-columns: 443px minmax(0, 1fr);
	align-items: start;
}

.hm-ueber .hm-section-heading {
	margin-bottom: 0;
}

.hm-ueber .hm-section-heading .hm-chip {
	margin-bottom: 10px;
	background: var(--c-white);
}

.hm-ueber__body {
	max-width: 700px;
	font-size: 19px;
	line-height: 1.4;
}

.hm-ueber__body ul {
	display: grid;
	gap: 5px;
	margin: 15px 0;
	padding-left: 27px;
	list-style: disc;
}

.hm-ueber__body p + p {
	margin-top: 17px;
}

/* =================================================== Behandlung sections */

/* 1 — Hero (§1.6.1) */
/* The sky radial gets a white fade-out over its last 90px so the section's
   bottom edge never shows a hard gradient cut; the stats card hangs below
   the edge (negative margin) as in Figma. */
.hm-bhero {
	margin-top: calc(-1 * var(--header-h));
	padding-top: calc(var(--header-h) + 20px);
	padding-bottom: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0) calc(100% - 90px), var(--c-white)),
		radial-gradient(1000px 700px at 55% 200px, rgba(137, 198, 255, 0.75), rgba(137, 198, 255, 0.25) 55%, rgba(255, 255, 255, 0) 78%);
	background-repeat: no-repeat;
}

.hm-bhero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 636px;
	gap: 30px;
	align-items: start;
}

.hm-bhero__content {
	padding-top: 30px;
}

.hm-bhero h1 {
	max-width: 640px;
}

.hm-bhero__sub {
	max-width: 745px;
	margin-top: 17px;
	font-size: 21px;
	line-height: 1.38;
}

ul.hm-bhero__bullets {
	display: grid;
	gap: 8px;
	margin-top: 25px;
	padding-left: 30px;
	list-style: disc;
	font-size: 20px;
	line-height: 1.4;
}

.hm-bhero .hm-button {
	margin-top: 35px;
}

.hm-bhero__image {
	width: 460px;
	height: 460px;
	margin-left: auto;
	border-radius: var(--r-card);
	object-fit: cover;
}

.hm-bhero__media .hm-stats {
	max-width: none;
	margin-top: -40px;
	margin-bottom: -45px; /* card bottom protrudes below the hero section */
	position: relative;
	padding: 15px 30px;
}

/* 2 — Ihre Vorteile (canvas 02) — top padding clears the protruding hero
   stats card (45px) plus the usual gap. */
.hm-bvorteile {
	padding-top: 110px;
}

.hm-bvorteile__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 29px;
	margin-top: 70px;
}

/* Icons render at natural SVG size, bottom-aligned; titles share a row line. */
.hm-bvorteile__col {
	display: grid;
	grid-template-rows: 100px auto 1fr;
	justify-items: center;
	text-align: center;
}

.hm-bvorteile__icon {
	width: auto;
	height: auto;
	align-self: end;
	margin-bottom: 20px;
}

.hm-bvorteile__title {
	max-width: 370px;
	font-size: 22px;
	line-height: 1.55;
	color: var(--c-black);
}

.hm-bvorteile__text {
	max-width: 360px;
	margin-top: 15px;
	font-size: 19px;
	line-height: 1.5;
}

/* 2/10 — Zufriedenheit wächst bands (§1.6.2 / 2:288) */
.hm-zufrieden {
	background: var(--c-bg-soft);
}

.hm-zufrieden--sweep {
	margin-top: 95px;
	padding: 40px 0 50px;
	background-image: var(--grad-light);
}

.hm-zufrieden--flat {
	padding: 60px 0 35px;
}

.hm-zufrieden__heading {
	text-align: center;
}

.hm-zufrieden__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 60px;
}

.hm-zufrieden--flat .hm-zufrieden__row {
	margin-top: 30px;
}

/* 3 — Frühes Handeln zählt (§1.6.3) */
.hm-frueh {
	margin-top: 40px;
}

.hm-frueh__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 423px;
	gap: 60px;
	border-radius: var(--r-card);
	padding: 40px 45px 40px 45px;
	background-image: radial-gradient(1100px 700px at 45% 108%, rgba(0, 98, 245, 0.55), rgba(0, 98, 245, 0) 100%);
}

.hm-frueh h2 {
	max-width: 450px;
	margin-top: 5px;
}

.hm-frueh__body {
	max-width: 605px;
	margin-top: 40px;
	font-size: 19px;
	line-height: 1.45;
}

.hm-frueh__body p + p {
	margin-top: 17px;
}

.hm-frueh .hm-button {
	margin-top: 40px;
}

.hm-frueh__image {
	width: 423px;
	height: 620px;
	margin-top: 10px;
	border-radius: var(--r-card);
	object-fit: cover;
}

/* 4 — Endlich Haare (§1.6.4) */
.hm-konzept {
	padding-top: 120px;
	padding-bottom: 100px;
	background:
		linear-gradient(rgba(255, 255, 255, 0) calc(100% - 120px), var(--c-white)),
		radial-gradient(1600px 1100px at 31% 56%, rgba(137, 198, 255, 0.65), rgba(255, 255, 255, 0) 72%);
	background-repeat: no-repeat;
}

.hm-konzept .hm-chip {
	background: var(--c-white);
}

.hm-konzept .hm-section-heading {
	margin-bottom: 95px;
}

.hm-konzept .hm-section-heading .hm-chip {
	margin-bottom: 25px;
}

.hm-konzept .hm-section-heading h2 {
	max-width: 520px;
	margin-inline: auto;
}

.hm-konzept__rows {
	display: grid;
	gap: 100px;
	margin-left: 150px;
	margin-right: 140px;
}

.hm-konzept__row {
	display: grid;
	grid-template-columns: 465px minmax(0, 1fr);
	align-items: start;
}

.hm-konzept__term {
	max-width: 440px;
	font-size: 30px;
	line-height: 1.4;
	color: var(--c-ink);
}

.hm-konzept__text {
	font-size: 19px;
	line-height: 1.4;
}

.hm-konzept__text p + p {
	margin-top: 17px;
}

/* 6 — Für wen geeignet + Welche Ergebnisse (§1.6.6) */
.hm-bgeeignet {
	padding-top: 170px;
}

.hm-bgeeignet__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 513px;
	gap: 90px;
	align-items: start;
}

.hm-bgeeignet .hm-section-heading {
	margin-bottom: 30px;
}

.hm-bgeeignet .hm-section-heading .hm-chip {
	margin-bottom: 25px;
}

.hm-bgeeignet__body {
	max-width: 510px;
	font-size: 19px;
	line-height: 1.5;
}

.hm-bgeeignet__image {
	width: 513px;
	height: 340px;
	margin-top: -20px;
	border-radius: var(--r-card);
	object-fit: cover;
}

.hm-erwartung__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 565px;
	gap: 100px;
	margin-top: 130px;
	padding: 75px 70px 100px 50px;
	border-radius: var(--r-card);
	background-color: var(--c-navy);
	background-image: radial-gradient(820px 580px at 8% 2%, rgba(137, 198, 255, 0.5), rgba(0, 98, 245, 0.38) 42%, rgba(0, 98, 245, 0) 76%);
	color: var(--c-white);
}

.hm-erwartung h2 {
	max-width: 460px;
	margin-top: 5px;
	color: var(--c-white);
}

.hm-erwartung .hm-eyebrow {
	font-weight: 400;
}

.hm-erwartung__image {
	width: 410px;
	height: 550px;
	margin-top: 5px;
	border-radius: var(--r-card);
	object-fit: cover;
}

.hm-erwartung__body {
	font-size: 19px;
	line-height: 1.35;
}

.hm-erwartung__body p + p {
	margin-top: 10px;
}

.hm-erwartung .hm-button {
	margin-top: 50px;
}

/* 7 — Preistabelle (§1.6.7) */
.hm-preise {
	padding-top: 130px;
	padding-bottom: 100px;
	background: radial-gradient(1400px 1100px at 66% 48%, rgba(137, 198, 255, 0.55), rgba(255, 255, 255, 0) 72%) no-repeat;
}

.hm-preise .hm-chip {
	background: var(--c-white);
}

.hm-preise .hm-section-heading {
	margin-bottom: 120px;
}

.hm-preise .hm-section-heading .hm-chip {
	margin-bottom: 25px;
}

.hm-preise .hm-section-heading__intro {
	max-width: 660px;
	margin-top: 40px;
	margin-inline: auto;
	font-size: 19px;
	line-height: 1.45;
}

/* Arrow text-link ("Mehr erfahren →"), shared by sections 10–12. */
.hm-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 19px;
	color: var(--c-ink);
	text-decoration: none;
}

.hm-dark .hm-arrow-link {
	color: var(--c-white);
}

.hm-arrow-link__icon {
	width: 23px;
	height: 18px;
	flex: none;
	transition: transform 0.15s ease;
}

.hm-arrow-link:hover .hm-arrow-link__icon {
	transform: translateX(4px);
}

/* 9 — Ergebnisse & Erfahrungen (§1.6.9) */
.hm-bergebnisse {
	padding: 72px 0 116px;
}

.hm-bergebnisse__grid {
	display: grid;
	grid-template-columns: minmax(0, 490px) minmax(0, 1fr);
	gap: 70px;
	align-items: start;
}

.hm-bergebnisse__intro .hm-eyebrow {
	font-weight: 400;
	color: var(--c-white);
}

.hm-bergebnisse__intro h2 {
	max-width: 340px;
	margin-top: 30px;
}

.hm-bergebnisse__body {
	max-width: 745px;
	font-size: 19px;
	line-height: 1.45;
}

.hm-bergebnisse__body p + p {
	margin-top: 18px;
}

/* 10 — Die häufigste Ursache (§1.6.10) */
.hm-ursache {
	padding-top: 90px;
	padding-bottom: 60px;
}

.hm-ursache__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 636px;
	gap: 100px;
	align-items: center;
}

.hm-ursache .hm-section-heading {
	margin-bottom: 30px;
}

.hm-ursache .hm-section-heading .hm-chip {
	margin-bottom: 25px;
	background: var(--c-white);
}

.hm-ursache .hm-section-heading h2 {
	max-width: 500px;
}

.hm-ursache__body {
	max-width: 570px;
	font-size: 19px;
	line-height: 1.45;
}

.hm-ursache__body p + p {
	margin-top: 17px;
}

.hm-ursache .hm-arrow-link {
	margin-top: 35px;
}

.hm-ursache__image {
	width: 636px;
	height: 344px;
	border-radius: var(--r-card);
	object-fit: cover;
}

/* 11 — Wo andere zu kurz greifen (§1.6.11) — white fade-in over the first
   130px so the radial doesn't cut hard at the section's top edge. */
.hm-vergleich {
	padding: 90px 0 70px;
	background:
		linear-gradient(var(--c-white), rgba(255, 255, 255, 0) 130px),
		radial-gradient(1250px 1050px at 24% 32%, rgba(137, 198, 255, 0.45), rgba(255, 255, 255, 0) 62%);
	background-repeat: no-repeat;
}

.hm-vergleich__grid {
	display: grid;
	grid-template-columns: 525px minmax(0, 1fr);
	gap: 140px;
	align-items: start;
}

.hm-vergleich__image {
	width: 525px;
	height: 753px;
	border-radius: var(--r-image);
	object-fit: cover;
}

.hm-vergleich__content {
	padding-top: 64px;
}

.hm-vergleich__content .hm-chip {
	margin-bottom: 25px;
	background: var(--c-white);
}

.hm-vergleich__content h2 {
	max-width: 640px;
}

.hm-vergleich__block {
	margin-top: 30px;
	font-size: 19px;
	line-height: 1.45;
}

.hm-vergleich__block + .hm-vergleich__block {
	margin-top: 42px;
}

.hm-vergleich__block h3 {
	margin-bottom: 15px;
	font-size: 25px;
	line-height: 1.3;
}

.hm-vergleich__block p + p {
	margin-top: 15px;
}

.hm-vergleich .hm-arrow-link {
	margin-top: 32px;
}

/* 12 — Über uns (§1.6.12) */
.hm-bueber {
	padding: 80px 0 95px;
}

.hm-bueber__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 525px;
	gap: 120px;
	align-items: start;
}

.hm-bueber__content h2 {
	margin-top: 8px;
}

.hm-bueber__body {
	max-width: 640px;
	margin-top: 25px;
	font-size: 19px;
	line-height: 1.4;
}

.hm-bueber__body p + p {
	margin-top: 15px;
}

.hm-bueber__anspruch-title {
	margin-top: 35px;
	font-size: 25px;
	color: var(--c-white);
}

.hm-bueber__anspruch {
	margin-top: 15px;
}

.hm-bueber__anspruch ul {
	display: grid;
	gap: 8px;
	padding-left: 22px;
	list-style: disc;
	font-size: 19px;
	line-height: 1.4;
}

.hm-bueber .hm-arrow-link {
	margin-top: 35px;
}

.hm-bueber__image {
	width: 525px;
	height: 520px;
	border-radius: var(--r-image);
	object-fit: cover;
}

/* 13 — Ihr nächster Schritt (§1.6.13) */
.hm-schritt {
	padding: 70px 0 60px;
}

.hm-schritt .hm-section-heading {
	margin-bottom: 0;
}

.hm-schritt .hm-section-heading .hm-chip {
	margin-bottom: 30px;
	background: var(--c-white);
}

.hm-schritt .hm-section-heading__intro {
	max-width: 640px;
	margin-top: 28px;
	margin-inline: auto;
	font-size: var(--fs-body-lg);
	line-height: 1.4;
}

/* 14 — Termin CTA (§1.6.14) */
.hm-btermin {
	position: relative;
}

.hm-btermin__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Source photo has the face on the left; the ref band keeps the text over
	   the bright wall on the left and the face on the right — mirror to match. */
	transform: scaleX(-1);
}

.hm-btermin__inner {
	position: relative;
	padding: 100px 0 95px;
}

.hm-btermin__content {
	max-width: 560px;
}

.hm-btermin__sub {
	max-width: 540px;
	margin-top: 25px;
	font-size: var(--fs-body-lg);
	line-height: 1.35;
}

.hm-btermin .hm-button {
	margin-top: 45px;
}

/* 15 — Medical Disclaimer (§1.6.15) */
.hm-disclaimer {
	padding: 60px 0 70px;
}

.hm-disclaimer__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	border: 1px solid var(--c-black);
	border-radius: var(--r-card);
	padding: 55px 75px;
}

.hm-disclaimer__head {
	margin-bottom: 30px;
}

.hm-disclaimer__chip {
	margin-bottom: 8px;
	font-weight: 400;
	color: var(--c-black);
}

.hm-disclaimer__head h3 {
	font-size: 25px;
	line-height: 1.3;
}

.hm-disclaimer__col {
	font-size: 17px;
	line-height: 1.45;
}

.hm-disclaimer__col p + p {
	margin-top: 16px;
}

/* ===================================================== blog (plan §1.7) */

/* Archive hero: sky radial band, centered H1 + serif sub */
.hm-blog-hero {
	padding: 80px 0 60px;
	background: radial-gradient(900px 520px at 50% 0%, rgba(137, 198, 255, 0.55), rgba(255, 255, 255, 0) 72%) no-repeat;
	text-align: center;
}

.hm-blog-hero__sub {
	max-width: 680px;
	margin: 20px auto 0;
	font-size: var(--fs-hero-sub);
	line-height: 1.33;
}

/* Intro copy between hero and article grid */
.hm-blog-intro {
	max-width: 900px;
	margin: 0 auto;
	padding-bottom: 50px;
	text-align: center;
	font-size: var(--fs-body-lg);
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.8);
}

.hm-blog-main {
	padding-bottom: 100px;
}

/* "Weitere Artikel" copy below the grid */
.hm-blog-outro {
	padding: 70px 0 100px;
	background: var(--c-bg-soft);
}

.hm-blog-outro__heading {
	margin-bottom: 24px;
	text-align: center;
}

.hm-blog-outro .hm-prose {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.hm-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Numbered pagination as pills */
.hm-blog-main .pagination,
.hm-blog-main .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 60px;
}

.hm-blog-main .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 14px;
	border: 2px solid var(--c-blue-pale);
	border-radius: var(--r-pill);
	font-family: var(--font-sans);
	font-size: var(--fs-button);
	color: var(--c-black);
	text-decoration: none;
}

.hm-blog-main .page-numbers.current {
	background: var(--c-blue);
	border-color: var(--c-blue);
	color: var(--c-white);
}

.hm-blog-main a.page-numbers:hover {
	border-color: var(--c-blue);
}

/* Single: centered measure, prose, related, dark CTA */
.hm-single {
	max-width: 820px;
	padding-top: 70px;
}

.hm-single__header {
	text-align: center;
	margin-bottom: 40px;
}

.hm-single__header .hm-chip {
	background: var(--c-white);
}

.hm-single__header h1 {
	max-width: 760px;
	margin: 26px auto 0;
}

.hm-single__meta {
	margin-top: 20px;
	font-family: var(--font-sans);
	font-size: var(--fs-chip);
	letter-spacing: 0.5px;
	color: rgba(0, 0, 0, 0.55);
}

.hm-single__featured {
	width: 100%;
	height: auto;
	margin-top: 36px;
	border-radius: var(--r-image);
	object-fit: cover;
}

/* Prose (single, page, index, 404): serif body, Sora headings, disc lists */
.hm-prose {
	font-size: var(--fs-body-lg);
	line-height: 1.6;
}

.hm-prose > * + * {
	margin-top: 22px;
}

.hm-prose h2 {
	margin-top: 44px;
	font-size: 30px;
	line-height: 1.3;
}

.hm-prose h3 {
	margin-top: 36px;
	font-size: 23px;
}

.hm-prose ul,
.hm-prose ol {
	padding-left: 28px;
}

.hm-prose ul {
	list-style: disc;
}

.hm-prose ol {
	list-style: decimal;
}

.hm-prose li + li {
	margin-top: 8px;
}

.hm-prose a {
	color: var(--c-blue);
	text-decoration: underline;
}

.hm-prose blockquote {
	margin-left: 0;
	padding-left: 24px;
	border-left: 3px solid var(--c-blue-pale);
	font-style: italic;
}

.hm-prose img {
	border-radius: var(--r-card);
}

/* --- Prose extensions (Phase 9a): byline, TOC, callout, tables, FAQ,
   inline-CTA, pull-quote, sources, expert bio, review note, crisis box.
   One consistent treatment, reused across all imported articles. --- */

/* Byline + "medizinisch geprüft" meta (rendered in-content) */
.hm-byline {
	margin: 8px 0 0;
	padding: 22px 26px;
	background: var(--c-bg-soft);
	border-radius: var(--r-card);
	font-family: var(--font-sans);
}

.hm-byline__author {
	font-size: 17px;
	line-height: 1.5;
	color: var(--c-ink);
}

.hm-byline__meta {
	margin-top: 8px;
	font-size: 15px;
	letter-spacing: 0.3px;
	color: rgba(0, 0, 0, 0.55);
}

/* Lead paragraph (article intro) */
.hm-prose .hm-lead {
	font-size: 24px;
	line-height: 1.5;
}

/* Table of contents */
.hm-toc {
	padding: 26px 30px;
	background: var(--c-white);
	border: 1px solid var(--c-blue-pale);
	border-radius: var(--r-card);
}

.hm-toc__title {
	margin-bottom: 14px;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 20px;
	color: var(--c-ink);
}

.hm-toc ul {
	list-style: none;
	padding-left: 0;
	columns: 2;
	column-gap: 40px;
}

.hm-toc li + li {
	margin-top: 8px;
}

.hm-toc a {
	font-family: var(--font-sans);
	font-size: 17px;
	text-decoration: none;
}

.hm-toc a:hover {
	text-decoration: underline;
}

/* "Das Wichtigste in Kürze" callout */
.hm-callout {
	padding: 30px 34px;
	background: var(--c-bg-soft);
	border-left: 4px solid var(--c-blue);
	border-radius: var(--r-card);
}

.hm-callout__title {
	margin-bottom: 14px;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 22px;
	color: var(--c-ink);
}

.hm-callout ul {
	list-style: disc;
	padding-left: 24px;
}

.hm-callout li + li {
	margin-top: 8px;
}

/* Prose tables (reuse price-table border/padding language) */
.hm-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.hm-prose table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 17px;
	line-height: 1.4;
}

.hm-prose thead th {
	padding: 0 20px 16px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 18px;
	color: var(--c-ink);
	vertical-align: bottom;
}

.hm-prose tbody th,
.hm-prose tbody td {
	padding: 16px 20px 16px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	vertical-align: top;
}

.hm-prose tbody th {
	font-family: var(--font-sans);
	font-weight: 700;
	color: var(--c-ink);
}

.hm-prose tbody tr:last-child th,
.hm-prose tbody tr:last-child td {
	border-bottom: 0;
}

/* FAQ (h3 + p pairs) */
.hm-faq__item + .hm-faq__item {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--c-bg-soft);
}

.hm-prose .hm-faq__item h3 {
	margin-top: 0;
	font-size: 21px;
}

.hm-faq__item p {
	margin-top: 8px;
}

/* Inline CTA card */
.hm-inline-cta {
	padding: 34px 38px;
	background: var(--c-navy);
	border-radius: var(--r-image);
	color: var(--c-white);
	text-align: center;
}

.hm-inline-cta__title {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
}

.hm-inline-cta__text {
	margin-top: 12px;
	font-size: 19px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
}

.hm-inline-cta__actions {
	margin-top: 22px;
}

/* Pull-quote with attribution */
.hm-pullquote {
	margin: 0;
	padding: 4px 0 4px 28px;
	border-left: 3px solid var(--c-blue-pale);
}

.hm-pullquote blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 24px;
	line-height: 1.45;
}

.hm-pullquote figcaption {
	margin-top: 16px;
	font-family: var(--font-sans);
	font-style: normal;
	font-size: 16px;
	font-weight: 700;
	color: var(--c-ink);
}

/* Sources / Quellen */
.hm-sources ol {
	list-style: decimal;
	padding-left: 22px;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.75);
}

.hm-sources li + li {
	margin-top: 10px;
}

/* Expert bio + review note (footer blocks) */
.hm-expert {
	padding: 26px 30px;
	background: var(--c-bg-soft);
	border-radius: var(--r-card);
}

.hm-review-note {
	font-size: 16px;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.6);
}

/* Crisis-help box (Finasterid) */
.hm-crisis {
	padding: 30px 34px;
	background: #fff4f2;
	border: 2px solid #e0483a;
	border-radius: var(--r-card);
}

.hm-crisis__title {
	margin-bottom: 12px;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 22px;
	color: #b5271b;
}

.hm-crisis ul {
	list-style: disc;
	padding-left: 24px;
}

.hm-crisis li + li {
	margin-top: 6px;
}

/* Editorial "needs approval" note (draft content only) */
.hm-editor-note {
	padding: 14px 18px;
	background: #fffbe6;
	border: 1px dashed #d0a800;
	border-radius: var(--r-chip);
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.5;
	color: #6b5300;
}

/* Prev/next + related */
.hm-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	max-width: 820px;
	margin: 60px auto 0;
	padding: 0 var(--gutter);
}

.hm-post-nav a {
	max-width: 48%;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: var(--fs-button);
	color: var(--c-blue);
	text-decoration: none;
}

.hm-post-nav a:hover {
	text-decoration: underline;
}

.hm-post-nav .hm-post-nav__next {
	margin-left: auto;
	text-align: right;
}

.hm-related {
	padding: 90px 0 100px;
}

.hm-related__heading {
	margin-bottom: 40px;
	text-align: center;
}

/* Minimal wrappers for page/index/404 */
.hm-single .hm-404,
.hm-404 {
	padding: 90px 0 120px;
	text-align: center;
}

.hm-404 h1 {
	margin-bottom: 16px;
}

/* ============================================ responsive (Phase 7) ======= */

/* Slider dots (built by main.js) — hidden until a row becomes a mobile slider. */
.hm-slider-dots {
	display: none;
}

/* --- ≤1080: fluid type + narrower gutters. clamp() max = exact Figma size, so
   the 1440px output is unchanged; sizes only shrink below the max. --- */
@media (max-width: 1080px) {
	:root {
		--gutter: 40px;
		--fs-h1: clamp(32px, 3.47vw, 50px);
		--fs-h2: clamp(26px, 2.57vw, 37px);
		--fs-h3: clamp(22px, 1.74vw, 25px);
		--fs-hero-sub: clamp(20px, 1.88vw, 27px);
		--fs-body-lg: clamp(18px, 1.53vw, 22px);
	}

	.hm-container--wide {
		padding-inline: var(--gutter);
	}

	/* Break long German compounds (e.g. "Haarausfallbehandlung") so headings
	   never force horizontal overflow on narrow screens. */
	h1,
	h2,
	h3,
	h4 {
		overflow-wrap: break-word;
		hyphens: auto;
	}
}

/* --- ≤1024: burger nav + stack every two-column section grid. --- */
@media (max-width: 1024px) {
	:root {
		--header-h: 100px;
	}

	.hm-header__inner {
		align-items: center;
		padding-top: 22px;
		padding-bottom: 18px;
	}

	.hm-nav {
		margin-top: 0;
	}

	/* Burger button. */
	.hm-nav__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: relative;
		z-index: 40;
		width: 44px;
		height: 44px;
	}

	.hm-nav__burger,
	.hm-nav__burger::before,
	.hm-nav__burger::after {
		content: '';
		display: block;
		width: 26px;
		height: 2px;
		background: var(--c-black);
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.hm-nav__burger {
		position: relative;
	}

	.hm-nav__burger::before {
		position: absolute;
		top: -8px;
		left: 0;
	}

	.hm-nav__burger::after {
		position: absolute;
		top: 8px;
		left: 0;
	}

	body.hm-nav-open .hm-nav__burger {
		background: transparent;
	}

	body.hm-nav-open .hm-nav__burger::before {
		transform: translateY(8px) rotate(45deg);
	}

	body.hm-nav-open .hm-nav__burger::after {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* Full-screen overlay menu. */
	.hm-nav__list {
		position: fixed;
		inset: 0;
		z-index: 30;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 26px;
		padding: 100px 24px 48px;
		background: rgba(255, 255, 255, 0.98);
		-webkit-backdrop-filter: blur(15px);
		backdrop-filter: blur(15px);
		overflow-y: auto;
		transform: translateY(-100%);
		visibility: hidden;
		transition: transform 0.25s ease, visibility 0s linear 0.25s;
	}

	body.hm-nav-open .hm-nav__list {
		transform: none;
		visibility: visible;
		transition: transform 0.25s ease;
	}

	body.hm-nav-open {
		overflow: hidden;
	}

	.hm-nav__list a {
		font-size: 22px;
	}

	/* The "Termin" CTA pill keeps its button look inside the burger overlay. */
	.hm-nav__list .nav-cta a {
		font-size: 20px;
		padding: 14px 32px;
	}

	/* Stack all two-column grids. */
	.hm-ohneop__card,
	.hm-ansatz__grid,
	.hm-regrowth__grid,
	.hm-ablauf__grid,
	.hm-ablauf--behandlung .hm-ablauf__grid,
	.hm-ebox__panel,
	.hm-geeignet__grid,
	.hm-ueber__grid,
	.hm-bhero__grid,
	.hm-frueh__card,
	.hm-konzept__row,
	.hm-bgeeignet__grid,
	.hm-erwartung__card,
	.hm-bergebnisse__grid,
	.hm-ursache__grid,
	.hm-vergleich__grid,
	.hm-bueber__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	/* Fixed-size images become fluid. */
	.hm-ohneop__image,
	.hm-ansatz__image,
	.hm-regrowth__image,
	.hm-ablauf__image,
	.hm-ablauf--behandlung .hm-ablauf__image,
	.hm-ebox__image,
	.hm-geeignet__image,
	.hm-bhero__image,
	.hm-frueh__image,
	.hm-bgeeignet__image,
	.hm-erwartung__image,
	.hm-ursache__image,
	.hm-vergleich__image,
	.hm-bueber__image {
		width: 100%;
		height: auto;
		margin-top: 0;
		margin-left: 0;
	}

	/* Per-section resets that the stack exposes. */
	.hm-konzept__rows {
		margin-left: 0;
		margin-right: 0;
		gap: 56px;
	}

	.hm-konzept__term {
		max-width: none;
		margin-bottom: 14px;
	}

	.hm-regrowth__panel {
		margin-left: 0;
		margin-right: 0;
	}

	.hm-starten__content {
		margin-left: 0;
		max-width: none;
	}

	.hm-btermin__content {
		max-width: none;
	}

	.hm-bhero__media .hm-stats {
		margin-top: 24px;
	}

	.hm-hero .hm-stats,
	.hm-bhero__media .hm-stats {
		max-width: 560px;
		margin-inline: auto;
	}
}

/* --- ≤768: sliders, single-column card grids, price-table cards, mobile
   vertical rhythm. --- */
@media (max-width: 768px) {
	/* Card rows → horizontal scroll-snap sliders (full-bleed to the edges). */
	.hm-ee1__row,
	.hm-ee2__row,
	.hm-zufrieden__row,
	.hm-post-grid {
		display: flex;
		grid-template-columns: none;
		gap: 16px;
		margin-top: 32px;
		margin-inline: calc(-1 * var(--gutter));
		padding: 4px var(--gutter) 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: var(--gutter);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.hm-ee1__row::-webkit-scrollbar,
	.hm-ee2__row::-webkit-scrollbar,
	.hm-zufrieden__row::-webkit-scrollbar,
	.hm-post-grid::-webkit-scrollbar {
		display: none;
	}

	.hm-ee1__row > figure,
	.hm-ee2__row > figure,
	.hm-zufrieden__row > figure,
	.hm-post-grid > article {
		flex: 0 0 82%;
		scroll-snap-align: center;
	}

	/* Static desktop slider affordances give way to the JS dots. */
	.hm-ee1__arrow,
	.hm-ee2__arrow,
	.hm-ee1__dots {
		display: none;
	}

	.hm-slider-dots {
		display: flex;
		justify-content: center;
		gap: 6px;
		margin-top: 22px;
	}

	.hm-slider-dot {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		padding: 0;
	}

	.hm-slider-dot::before {
		content: '';
		width: 9px;
		height: 9px;
		border-radius: 50%;
		background: rgba(10, 42, 67, 0.25);
		transition: background 0.15s ease;
	}

	.hm-slider-dot[aria-selected='true']::before {
		background: var(--c-blue);
	}

	.hm-dark .hm-slider-dot::before,
	.hm-regrowth .hm-slider-dot::before {
		background: rgba(255, 255, 255, 0.35);
	}

	.hm-dark .hm-slider-dot[aria-selected='true']::before,
	.hm-regrowth .hm-slider-dot[aria-selected='true']::before {
		background: var(--c-white);
	}

	/* Three-up static card grids → single column. */
	.hm-benefits__grid,
	.hm-bvorteile__grid,
	.hm-regrowth__cards {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
	}

	.hm-bvorteile__col {
		grid-template-rows: auto auto auto;
	}

	/* Price table → stacked row cards (labels from data-label). */
	.hm-price-table thead {
		display: none;
	}

	.hm-price-table,
	.hm-price-table tbody,
	.hm-price-table tr,
	.hm-price-table th,
	.hm-price-table td {
		display: block;
		width: auto;
	}

	.hm-price-table tr {
		margin-bottom: 20px;
		padding: 24px;
		background: var(--c-white);
		border-radius: var(--r-card);
	}

	.hm-price-table tbody th {
		padding: 0 0 14px;
		border: 0;
		font-size: 22px;
		hyphens: manual;
	}

	.hm-price-table td {
		padding: 8px 0 0;
		border: 0;
	}

	.hm-price-table td::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 2px;
		font-family: var(--font-sans);
		font-weight: 700;
		font-size: 14px;
		color: var(--c-ink);
	}

	.hm-price-table tbody tr:last-child th,
	.hm-price-table tbody tr:last-child td {
		border-bottom: 0;
	}

	/* Timeline: bring the connector rail inside the card. */
	.hm-timeline {
		padding: 36px 24px 36px 62px;
		gap: 40px;
	}

	.hm-timeline__step {
		padding-left: 0;
	}

	.hm-timeline__step::before {
		left: -44px;
		top: 0;
	}

	.hm-timeline__step::after {
		left: -31px;
		top: -40px;
	}

	.hm-timeline__step:first-child::after {
		top: 0;
	}

	.hm-timeline__title {
		margin-left: 0;
		font-size: 22px;
	}

	.hm-timeline__text {
		max-width: none;
	}

	/* Footer → single column, stacked legal row. */
	.hm-footer__columns {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
	}

	.hm-footer__heading {
		font-size: 28px;
	}

	.hm-footer__legal {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.hm-footer__legal-links {
		gap: 30px;
	}

	/* Disclaimer panel → single column. */
	.hm-disclaimer__panel {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
		padding: 32px 24px;
	}

	/* Legibility scrim under text that sits over a full-bleed photo. */
	.hm-starten__inner::before,
	.hm-btermin__inner::before {
		content: '';
		position: absolute;
		inset: 0;
		background: rgba(238, 244, 250, 0.72);
	}

	.hm-starten__content,
	.hm-btermin__content {
		position: relative;
	}

	/* Roomier dark/inset cards. */
	.hm-ohneop__card {
		padding: 32px 24px;
	}

	.hm-frueh__card {
		padding: 32px 24px;
	}

	.hm-erwartung__card {
		padding: 40px 24px 48px;
		gap: 32px;
	}

	.hm-ebox__panel {
		padding: 40px 28px;
		min-height: 0;
	}

	.hm-regrowth__panel {
		padding: 32px 24px;
		margin-top: 48px;
	}

	.hm-bhero__image {
		max-width: 460px;
		margin-inline: auto;
	}

	/* Compress the desktop vertical rhythm. */
	/* No protruding stats card on mobile — rhythm is too tight for it. */
	.hm-bhero { padding-bottom: 24px; }
	.hm-bhero__media .hm-stats { margin-bottom: 0; }
	.hm-ohneop { margin-top: 48px; }
	.hm-ansatz { margin-top: 56px; }
	.hm-ee1 { padding-top: 56px; padding-bottom: 48px; }
	.hm-regrowth { padding: 48px 0; }
	.hm-ablauf,
	.hm-ablauf--behandlung { padding-top: 56px; }
	.hm-ebox { margin-top: 40px; }
	.hm-ee2 { padding-top: 56px; padding-bottom: 32px; }
	.hm-geeignet { margin-top: 48px; padding: 48px 0; }
	.hm-ueber { padding: 56px 0; }
	.hm-bvorteile { padding-top: 32px; }
	.hm-zufrieden--sweep { margin-top: 48px; }
	.hm-zufrieden--flat { padding: 40px 0 24px; }
	.hm-frueh { margin-top: 32px; }
	.hm-konzept { padding-top: 56px; padding-bottom: 64px; }
	.hm-bgeeignet { padding-top: 56px; }
	.hm-preise { padding: 56px 0; }
	.hm-bergebnisse { padding: 48px 0; }
	.hm-ursache { padding-top: 56px; padding-bottom: 40px; }
	.hm-vergleich { padding: 56px 0; }
	.hm-bueber { padding: 56px 0; }
	.hm-schritt { padding: 48px 0; }
	.hm-erwartung__card { margin-top: 48px; }
	.hm-starten__inner { padding: 56px 0; }
	.hm-btermin__inner { padding: 64px 0; }

	/* Unify the (large) section-heading gaps on mobile. */
	.hm-section-heading,
	.hm-ee1 .hm-section-heading,
	.hm-ee2 .hm-section-heading,
	.hm-ablauf .hm-section-heading,
	.hm-ablauf--behandlung .hm-section-heading,
	.hm-konzept .hm-section-heading,
	.hm-preise .hm-section-heading,
	.hm-bgeeignet .hm-section-heading,
	.hm-ueber .hm-section-heading {
		margin-bottom: 32px;
	}
}

/* --- ≤600: tighten gutters + stats bar; stack blog post nav. --- */
@media (max-width: 600px) {
	:root {
		--gutter: 20px;
	}

	.hm-stats {
		padding: 14px 10px;
	}

	.hm-stats__value {
		font-size: 16px;
	}

	.hm-stats__label {
		font-size: 13px;
	}

	.hm-stars svg {
		width: 14px;
		height: 13px;
	}

	.hm-post-nav {
		flex-direction: column;
		gap: 14px;
		padding-inline: var(--gutter);
	}

	.hm-post-nav a {
		max-width: 100%;
	}

	.hm-post-nav .hm-post-nav__next {
		margin-left: 0;
		text-align: left;
	}

	.hm-related {
		padding: 56px 0 64px;
	}
}

/* --- Prose extensions: mobile reflow (Phase 9a) --- */
@media (max-width: 768px) {
	.hm-toc ul {
		columns: 1;
	}

	.hm-prose .hm-lead {
		font-size: 21px;
	}

	.hm-byline,
	.hm-toc,
	.hm-expert {
		padding: 20px 22px;
	}

	.hm-callout,
	.hm-crisis {
		padding: 24px 24px;
	}

	.hm-inline-cta {
		padding: 28px 24px;
	}

	.hm-inline-cta__title {
		font-size: 21px;
	}

	.hm-pullquote blockquote {
		font-size: 21px;
	}

	/* Tables scroll horizontally inside their wrapper on narrow screens. */
	.hm-prose table {
		min-width: 520px;
	}
}

/* ============================================= before/after slider (9b) */
/* Ported from centrum-aestheticum's _before_after_slider.scss; centrum
   tokens → hairmedics tokens; desktop-first (centrum was mobile-first). */

.hm-ba-slider {
	padding: 58px 0;
}

.hm-ba-slider__heading {
	margin: 0 0 24px;
	font-size: var(--fs-h2);
	line-height: 1.3;
}

.hm-ba-slider__grid {
	display: grid;
	gap: 34px;
}

.hm-ba-slider__grid--single {
	max-width: 825px;
	margin: 0 auto;
}

.hm-ba-slider__grid--multi {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hm-ba-slider__item {
	margin: 0;
	min-width: 0;
}

.hm-ba-slider__slider {
	display: block;
	width: 100%;
	border-radius: var(--r-image);
	overflow: hidden;
	--divider-width: 2px;
	--divider-color: rgba(255, 255, 255, 0.9);
	--divider-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	--default-handle-width: 56px;
	--default-handle-color: rgba(255, 255, 255, 0.7);
	--default-handle-opacity: 1;
	--default-handle-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	--transition-time: 0.35s;
}

.hm-ba-slider__slider:focus {
	outline: none;
}

.hm-ba-slider__slider:focus-visible {
	outline: 3px solid var(--c-blue);
	outline-offset: 2px;
}

.hm-ba-slider__layer {
	margin: 0;
	position: relative;
	width: 100%;
	max-height: 75vh;
	overflow: hidden;
}

.hm-ba-slider__layer > img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 0;
}

.hm-ba-slider__badge {
	position: absolute;
	top: 12px;
	margin: 0;
	padding: 6px 14px;
	border-radius: var(--r-pill);
	background: rgba(255, 255, 255, 0.85);
	color: var(--c-ink);
	font-family: var(--font-sans);
	font-size: 14px;
	line-height: 1;
	pointer-events: none;
	user-select: none;
}

.hm-ba-slider__badge--before {
	left: 12px;
}

.hm-ba-slider__badge--after {
	right: 12px;
}

.hm-ba-slider__caption {
	margin: 14px 0 0;
	font-family: var(--font-serif);
	font-size: var(--fs-body);
	line-height: 1.5;
}

@media (max-width: 768px) {
	.hm-ba-slider {
		padding: 40px 0;
	}

	.hm-ba-slider__grid--multi {
		grid-template-columns: minmax(0, 1fr);
		max-width: 825px;
		margin: 0 auto;
		gap: 24px;
	}
}

/* ================================================ new content pages (9b) */
/* Shared, component-reusing layout for the 4 Phase-9b pages. No Figma ref
   — built on existing tokens (consistency over pixel perfection). */

/* Page hero: sky glow behind the transparent header (like the front hero). */
.hm-page-hero {
	margin-top: calc(-1 * var(--header-h));
	padding-top: calc(var(--header-h) + 44px);
	padding-bottom: 60px;
	background-color: var(--c-white);
	background-image: radial-gradient(1000px 540px at 50% -60px, var(--c-sky) 0%, var(--c-sky-light) 45%, rgba(255, 255, 255, 0) 100%);
	background-repeat: no-repeat;
}

.hm-page-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 500px;
	gap: 60px;
	align-items: center;
}

.hm-page-hero--center .hm-page-hero__inner,
.hm-page-hero--compact.hm-page-hero--center .hm-page-hero__inner {
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
	text-align: center;
}

.hm-page-hero--center .hm-page-hero__content {
	max-width: 820px;
}

.hm-page-hero--compact {
	padding-bottom: 48px;
}

.hm-page-hero__heading {
	font-size: var(--fs-h1);
	line-height: 1.08;
}

.hm-page-hero__sub {
	margin-top: 18px;
	font-family: var(--font-serif);
	font-size: var(--fs-hero-sub);
	line-height: 1.35;
}

.hm-page-hero__intro {
	margin-top: 20px;
	font-size: var(--fs-body-lg);
	line-height: 1.55;
	max-width: 620px;
}

.hm-page-hero--center .hm-page-hero__intro {
	max-width: none;
}

.hm-page-hero__actions {
	margin-top: 30px;
}

.hm-page-hero__media img {
	width: 100%;
	height: auto;
}

/* Reading-measure body column shared by all four pages. */
.hm-page-body {
	padding: 60px 0;
}

.hm-page-body__measure {
	max-width: 820px;
}

/* Dr. Turkof profile: portrait + prose, two columns. */
.hm-profile {
	padding: 20px 0 40px;
}

.hm-profile__grid {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.hm-profile__media img {
	width: 100%;
	height: auto;
}

.hm-profile__note {
	margin-top: 12px;
	font-family: var(--font-sans);
	font-size: 14px;
	color: rgba(0, 0, 0, 0.5);
}

/* "Warum HairMedics" / trust bands. */
.hm-whyus {
	padding: 64px 0;
}

.hm-whyus__inner {
	max-width: 960px;
}

.hm-whyus__heading {
	margin-bottom: 34px;
	font-size: var(--fs-h2);
	line-height: 1.25;
	text-align: center;
}

/* Check-list (✓ items) shared by heroes, why-us bands, closing CTAs. */
.hm-check-list {
	list-style: none;
	padding-left: 0;
	display: grid;
	gap: 14px;
}

.hm-check-list li {
	position: relative;
	padding-left: 38px;
	font-family: var(--font-sans);
	font-size: var(--fs-body);
	line-height: 1.45;
}

.hm-check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--c-blue);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9.55 17.3 4.9 12.65l1.4-1.4 3.25 3.25 8.1-8.1 1.4 1.4z'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9.55 17.3 4.9 12.65l1.4-1.4 3.25 3.25 8.1-8.1 1.4 1.4z'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

.hm-check-list--center {
	justify-items: center;
	text-align: left;
	display: inline-grid;
	margin-inline: auto;
}

.hm-page-hero--center .hm-check-list--center,
.hm-page-cta .hm-check-list--center {
	margin-top: 26px;
}

.hm-check-list--two-col {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 40px;
}

/* Highlighted doctor-quote band (Analyse). */
.hm-quote-band {
	padding: 30px 0 50px;
}

.hm-quote-band__inner {
	max-width: 900px;
}

.hm-pullquote--center {
	text-align: center;
	padding: 0;
	border-left: 0;
}

.hm-pullquote--center blockquote {
	font-size: 28px;
}

.hm-pullquote--center figcaption {
	margin-top: 20px;
}

/* Closing CTA (Analyse / Über uns) — soft band, centered. */
.hm-page-cta {
	padding: 70px 0;
	background-color: var(--c-bg-soft);
	background-image: var(--grad-light);
	text-align: center;
}

.hm-page-cta__inner {
	max-width: 820px;
}

.hm-page-cta h2 {
	font-size: var(--fs-h2);
	line-height: 1.2;
}

.hm-page-cta__text {
	margin-top: 20px;
	font-family: var(--font-serif);
	font-size: var(--fs-hero-sub);
	line-height: 1.4;
}

.hm-page-cta__actions {
	margin-top: 30px;
}

.hm-page-cta .hm-check-list--center + .hm-page-cta__actions {
	margin-top: 30px;
}

/* Ergebnisse "Weg zu Ergebnissen" wrapper for the timeline. */
.hm-page-path {
	padding: 64px 0;
}

.hm-page-path__heading {
	margin-bottom: 44px;
	font-size: var(--fs-h2);
	line-height: 1.25;
	text-align: center;
}

/* Termin page: labelled external-embed placeholders + contact cards. */
.hm-embed-placeholder {
	padding: 44px 34px;
	border: 2px dashed var(--c-blue-pale);
	border-radius: var(--r-image);
	background: var(--c-bg-soft);
	text-align: center;
}

.hm-embed-placeholder--map {
	margin-top: 40px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hm-embed-placeholder__label {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 22px;
	color: var(--c-ink);
}

.hm-embed-placeholder__hint {
	margin-top: 10px;
	font-size: var(--fs-body);
	color: rgba(0, 0, 0, 0.6);
}

.hm-embed-placeholder__hint + .hm-button {
	margin-top: 22px;
}

.hm-termin-grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.hm-termin-card {
	padding: 30px 34px;
	background: var(--c-white);
	border: 1px solid var(--c-blue-pale);
	border-radius: var(--r-card);
}

.hm-termin-card h2 {
	margin-bottom: 16px;
	font-size: 24px;
}

.hm-termin-card p + p {
	margin-top: 16px;
}

.hm-termin-card a {
	color: var(--c-blue);
}

.hm-map-embed {
	margin-top: 40px;
	border-radius: var(--r-image);
	overflow: hidden;
}

.hm-map-embed iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

/* --- Responsive (9b pages) --- */
@media (max-width: 1024px) {
	.hm-page-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
	}

	.hm-page-hero__media {
		order: -1;
	}

	.hm-page-hero__media img {
		max-width: 520px;
	}

	.hm-profile__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.hm-profile__media img {
		max-width: 340px;
	}
}

@media (max-width: 768px) {
	.hm-page-hero {
		padding-bottom: 44px;
	}

	/* Long German CTA labels wrap on phones instead of forcing overflow. */
	.hm-page-hero .hm-button,
	.hm-page-cta .hm-button,
	.hm-embed-placeholder .hm-button {
		white-space: normal;
		text-align: center;
		max-width: 100%;
	}

	.hm-page-body {
		padding: 44px 0;
	}

	.hm-whyus,
	.hm-page-path {
		padding: 48px 0;
	}

	.hm-check-list--two-col {
		grid-template-columns: minmax(0, 1fr);
	}

	.hm-termin-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hm-pullquote--center blockquote {
		font-size: 23px;
	}

	.hm-page-cta {
		padding: 52px 0;
	}
}
