:root {
  --bg: #f6f5f2;
  --bg-soft: #efede8;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-alt: #f3f0ea;
  --line: rgba(29, 29, 29, 0.09);
  --line-strong: rgba(185, 16, 21, 0.22);
  --text: #171717;
  --muted: #403d39;
  --accent: #b91015;
  --accent-soft: #f7e7e7;
  --accent-ink: #901116;
  --shadow: 0 18px 38px rgba(26, 24, 22, 0.04);
  --radius-xl: 20px;
  --radius-md: 12px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: linear-gradient(180deg, #faf9f7 0%, #f1efea 100%);
  color: var(--text);
  font-family: "Manrope", "Aptos", "Segoe UI Variable Text", sans-serif;
  line-height: 1.6;
}

body[data-page="home"] {
  background: linear-gradient(180deg, #f1ede7 0%, #e7e1d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(23, 23, 23, 0.03) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  opacity: 0.14;
  z-index: 1;
}

.site-video-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.site-video-frame,
.site-video-scrim {
  position: absolute;
  inset: 0;
}

.site-video {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(100vw, calc(100dvh * 4 / 3));
  height: max(100dvh, calc(100vw * 3 / 4));
  transform: translate(-50%, -50%);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: brightness(1.18) saturate(0.82) contrast(0.86);
}

.site-video-scrim {
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.72) 0%, rgba(248, 246, 241, 0.6) 100%),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.34), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(185, 16, 21, 0.06), transparent 18%);
}

body[data-page="home"] .site-video {
  filter: brightness(1) saturate(0.86) contrast(0.82);
}

body[data-page="home"] .site-video-scrim {
  background:
    linear-gradient(180deg, rgba(236, 232, 226, 0.74) 0%, rgba(236, 232, 226, 0.6) 100%),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(185, 16, 21, 0.05), transparent 18%);
}

.site-shell {
  position: relative;
  z-index: 2;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(249, 248, 245, 0.88);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: clamp(190px, 18vw, 310px);
  height: auto;
  display: block;
}

.site-nav a,
h3,
.button,
.nav-toggle {
  font-family: "Manrope", "Bahnschrift", sans-serif;
}

h1,
h2 {
  font-family: "Newsreader", "Georgia", serif;
  font-weight: 500;
}

.headline-accent {
  color: var(--accent-ink);
  font-style: italic;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  border-radius: 0;
  color: #1e1e1e;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  background: var(--accent-ink);
  color: #f8f5ee;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  background: var(--accent);
  color: #fff8f8;
  border-color: rgba(120, 10, 14, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(23, 23, 23, 0.12);
  color: var(--text);
}

.hero,
.subpage-hero {
  padding: 84px 0 42px;
}

body[data-page="legal"] .subpage-hero {
  padding: 64px 0 26px;
}

body[data-page="legal"] .section {
  padding-top: 20px;
}

.hero {
  position: relative;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 247, 243, 0.96) 0%, rgba(249, 247, 243, 0.88) 34%, rgba(249, 247, 243, 0.58) 58%, rgba(249, 247, 243, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
  z-index: 0;
}

body[data-page="home"] .hero::before {
  background:
    linear-gradient(90deg, rgba(239, 235, 229, 0.96) 0%, rgba(239, 235, 229, 0.9) 34%, rgba(239, 235, 229, 0.62) 58%, rgba(239, 235, 229, 0.76) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.44), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(185, 16, 21, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  z-index: 0;
}

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

.hero-grid,
.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.subpage-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.subpage-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subpage-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: #2c2c2c;
  font-size: 0.92rem;
  font-weight: 600;
}

.subpage-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.subpage-stat-grid article {
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.subpage-stat-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.subpage-stat-grid p {
  margin: 0;
  color: var(--muted);
}

.subpage-hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 235, 0.86));
}

.hero-copy {
  position: relative;
  padding: 18px 24px 18px 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -14px -24px -18px -18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 245, 242, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(5px);
  z-index: -1;
}

body[data-page="home"] .hero-copy::before {
  background: linear-gradient(135deg, rgba(248, 245, 240, 0.76), rgba(227, 223, 216, 0.24));
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-copy h1,
.subpage-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  max-width: 10.5ch;
  text-wrap: balance;
}

body[data-page="home"] .hero-copy h1 .headline-accent {
  display: inline-block;
  font-size: 0.94em;
}

body[data-page="about"] .subpage-hero h1 {
  max-width: 12.2ch;
  font-size: clamp(2.85rem, 4.55vw, 4.65rem);
}

body[data-page="about"] .subpage-hero {
  padding-bottom: 10px;
}

body[data-page="about"] main > .section:first-of-type {
  padding-top: 8px;
}

body[data-page="about"] .subpage-hero h1 .headline-lock {
  white-space: nowrap;
}

body[data-page="clinic-tv"] .subpage-hero h1 .headline-lock {
  white-space: nowrap;
}

body[data-page="about"] .subpage-hero h1 .headline-accent {
  display: inline-block;
  white-space: nowrap;
}

body[data-page="tv-booking"] .subpage-hero h1 {
  max-width: 11.8ch;
  font-size: clamp(2.85rem, 4.6vw, 4.75rem);
}

body[data-page="industries"] .subpage-hero {
  padding-bottom: 26px;
}

body[data-page="industries"] .subpage-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 4.4vw, 4.45rem);
}

body[data-page="industries"] main > .section:first-of-type {
  padding-top: 24px;
}

body[data-page="references"] .subpage-hero {
  padding-bottom: 18px;
}

body[data-page="references"] main > .section:first-of-type {
  padding-top: 18px;
}

body[data-page="references"] .media-card img.media-card-image-contain {
  background: transparent;
  padding: 0;
}

body[data-page="solutions"] .subpage-hero {
  padding-bottom: 18px;
}

body[data-page="solutions"] main > .section:first-of-type {
  padding-top: 18px;
}

body[data-page="downloads"] .subpage-hero {
  padding-bottom: 0;
}

body[data-page="downloads"] main > .section:first-of-type {
  padding-top: 0;
}

body[data-page="downloads"] .subpage-hero .media-card img {
  width: 85%;
  margin: 0 auto 8px;
  aspect-ratio: 16 / 10.5;
}

body[data-page="contact"] .subpage-hero {
  padding-bottom: 0;
}

body[data-page="contact"] main > .section:first-of-type {
  padding-top: 0;
}

body[data-page="contact"] .contact-meta-grid-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

body[data-page="contact"] .contact-meta-grid-hero article {
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

body[data-page="contact"] .contact-meta-grid-hero .metric-label {
  margin-bottom: 8px;
}

body[data-page="contact"] .contact-meta-grid-hero strong {
  font-size: 1rem;
  line-height: 1.35;
}

body[data-page="contact"] .contact-meta-grid-hero p {
  margin: 0;
  font-size: 0.95rem;
}

body[data-page="tv-booking"] .subpage-copy {
  gap: 10px;
}

.tv-booking-primary {
  align-content: start;
}

.tv-booking-aside {
  display: grid;
  gap: 24px;
  align-content: start;
}

.hero-text,
.subpage-hero p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-text-stack {
  display: grid;
  gap: 14px;
}

.hero-lead {
  margin: 0;
  max-width: 36ch;
  color: rgba(23, 23, 23, 0.9);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.55;
}

.hero-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 18px;
  align-items: start;
}

.hero-detail-list,
.industry-intent-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-detail-list {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.hero-detail-list li,
.industry-intent-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hero-detail-list li::before,
.industry-intent-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero-actions,
.hero-chip-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 28px 0 24px;
}

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

body[data-page="home"] .hero-support-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-support-card,
.hero-video-card,
.hero-promo-card {
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-support-card {
  padding: 18px 20px;
}

.hero-support-card-media {
  display: grid;
  gap: 8px;
  padding: 12px;
  align-content: start;
}

.hero-support-copy,
.hero-promo-copy {
  display: grid;
  align-content: start;
  gap: 4px;
}

.hero-support-card strong,
.hero-video-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.inline-accent {
  color: var(--accent-ink);
  font-weight: 800;
}

.hero-support-card p,
.hero-video-card span {
  margin: 0;
  color: var(--muted);
}

.hero-support-copy strong,
.hero-promo-copy strong {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.34;
}

.hero-support-copy .metric-label,
.hero-promo-copy .metric-label {
  margin-bottom: 6px;
}

.hero-video-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
}

.hero-video-card img,
.hero-promo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.hero-support-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.hero-promo-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  align-content: start;
}

.hero-promo-card-horizontal {
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.hero-promo-card-horizontal img {
  height: 100%;
  min-height: 128px;
  aspect-ratio: auto;
}

.hero-promo-card-horizontal .hero-promo-copy {
  gap: 8px;
  align-content: center;
}

.hero-card-link {
  color: var(--accent-ink);
  font-weight: 800;
}

.hero-card-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.92em;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: #252525;
  font-size: 0.92rem;
}

.panel-card,
.feature-card,
.split-card,
.process-card,
.reference-card,
.route-card,
.solution-card,
.industry-card,
.reason-card,
.pattern-card,
.info-card,
.booking-card,
.download-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel-card,
.feature-card,
.process-card,
.reference-card,
.solution-card,
.industry-card,
.reason-card,
.pattern-card,
.info-card,
.download-item {
  padding: 28px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-figure {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

body[data-page="home"] .hero-figure {
  padding: 10px;
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  min-height: 420px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.hero-photo-full {
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-primary {
  grid-row: 1 / span 2;
}

.hero-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 34ch;
}

.metric-label,
.card-kicker,
.reference-type,
.footer-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

.panel-grid strong,
.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.icon-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.icon-list li,
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-top: 12px;
}

.icon-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
}

.trust-bar {
  padding: 10px 0 20px;
}

.trust-band {
  display: grid;
  gap: 18px;
  padding: 24px 28px 28px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.trust-band-copy {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: end;
}

.trust-band-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.9vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.trust-band-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-band-metrics article {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(247, 231, 231, 0.58);
  border: 1px solid rgba(185, 16, 21, 0.12);
}

.trust-band-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1;
}

.trust-band-metrics span {
  color: var(--muted);
}

.section {
  padding: 58px 0;
}

body[data-page="home"] .hero + .section {
  padding-top: 38px;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(244, 237, 237, 0.72), rgba(247, 247, 245, 0));
}

.section-dark {
  background: linear-gradient(180deg, #f4efed 0%, #f6f5f2 100%);
  color: var(--text);
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.section-dark .section-heading p,
.section-dark .reference-card p,
.section-dark .footer-label {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-heading h2 .headline-accent,
.comparison-card h2 .headline-accent,
.statement-card h3 .headline-accent,
.closing-cta h2 .headline-accent,
.subpage-hero h1 .headline-accent {
  white-space: nowrap;
}

.headline-lock {
  white-space: nowrap;
}

body[data-page="seniorenheime"] .subpage-hero h1,
body[data-page="netzwerk"] .subpage-hero h1,
body[data-page="instandsetzung"] .subpage-hero h1 {
  max-width: 12.6ch;
}

body[data-page="seniorenheime"] .subpage-hero h1 .headline-accent,
body[data-page="netzwerk"] .subpage-hero h1 .headline-accent,
body[data-page="instandsetzung"] .subpage-hero h1 .headline-accent {
  white-space: normal;
}

.section-heading p:last-child {
  color: var(--muted);
}

body[data-page="home"] .section-heading p:last-child,
body[data-page="home"] .comparison-kicker,
body[data-page="home"] .video-copy > p,
body[data-page="home"] .partner-copy > p {
  color: #4c4944;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.access-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.access-card:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 16, 21, 0.2);
}

.access-card h3 {
  margin: 0 0 10px;
}

.access-card p {
  margin: 0;
  color: var(--muted);
}

.access-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(35, 33, 28, 0.08);
}

.access-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: 20px;
  align-items: center;
}

.access-card-wide .access-media {
  margin-bottom: 0;
  aspect-ratio: 16 / 9;
}

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

.three-col {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

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

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.comparison-card,
.statement-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.42);
}

.comparison-card-lead {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 235, 0.84));
}

.comparison-card-side {
  align-content: start;
  background: linear-gradient(180deg, rgba(250, 245, 245, 0.9), rgba(255, 255, 255, 0.84));
}

.modernization-section {
  background: transparent;
}

.modernization-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 240, 236, 0.84));
  box-shadow: var(--shadow);
}

.modernization-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: stretch;
}

.modernization-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}

.modernization-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3.3vw, 3.45rem);
  line-height: 0.97;
  letter-spacing: -0.032em;
  max-width: 12ch;
}

.modernization-intro {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.modernization-points article {
  padding: 18px 18px 16px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.modernization-points p {
  margin: 8px 0 0;
  color: var(--muted);
}

.modernization-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.modernization-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

.statement-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  background: linear-gradient(180deg, #f6f1f1 0%, #f7f4f2 100%);
}

.comparison-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
  gap: 22px;
  align-items: end;
}

.comparison-kicker {
  padding: 18px 20px;
  border: 1px solid rgba(185, 16, 21, 0.1);
  border-radius: 18px;
  background: rgba(247, 231, 231, 0.4);
  line-height: 1.58;
}

.comparison-card h2,
.statement-card h3,
.closing-cta h2 {
  margin: 0 0 12px;
}

.comparison-card p,
.statement-card p {
  margin: 0;
  color: var(--muted);
}

.comparison-card-lead h2 {
  font-size: clamp(2.35rem, 3vw, 3.28rem);
  line-height: 0.96;
  letter-spacing: -0.032em;
  max-width: 11.2ch;
  text-wrap: balance;
}

.comparison-card-lead .comparison-kicker {
  font-size: 0.98rem;
}

.comparison-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.comparison-note-grid-lead {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2px;
}

.comparison-note-grid article,
.comparison-strip article,
.comparison-proof-grid article {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.comparison-note-grid strong,
.comparison-strip strong,
.comparison-proof-grid strong {
  display: block;
  line-height: 1.42;
}

.comparison-note-grid article p,
.comparison-proof-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.comparison-side-block {
  display: grid;
  gap: 4px;
}

.comparison-proof-grid {
  display: grid;
  gap: 14px;
}

.comparison-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.comparison-strip-tight {
  grid-column: auto;
}

.statement-card-expanded {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.statement-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

@media (max-width: 1080px) {
  .modernization-grid {
    grid-template-columns: 1fr;
  }

  .modernization-points {
    grid-template-columns: 1fr;
  }

  .modernization-visual {
    order: 2;
  }
}

@media (max-width: 780px) {
  .modernization-card {
    padding: 24px;
  }

  .modernization-visual img {
    min-height: 300px;
  }

  .modernization-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

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

.editorial-grid > :first-child {
  background: var(--surface-alt);
  border-color: var(--line-strong);
}

.editorial-grid > :first-child h3 {
  font-size: 1.55rem;
  line-height: 1.06;
  max-width: 14ch;
}

.route-grid .route-card {
  min-height: 140px;
}

.three-col > :first-child {
  background: rgba(255, 255, 255, 0.42);
}

.feature-card h3,
.solution-card h2,
.industry-card h2,
.reason-card h3,
.process-card h3,
.reference-card h3,
.split-card h3,
.booking-card strong {
  margin: 0 0 12px;
}

.feature-card p,
.solution-card p,
.industry-card p,
.reason-card p,
.reference-card p,
.process-card p,
.split-card p,
.info-card p,
.download-item span {
  margin: 0;
  color: var(--muted);
}

.feature-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(35, 33, 28, 0.08);
  filter: saturate(0.9) contrast(1.02);
}

.solution-card img,
.industry-card img,
.reference-card img,
.media-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(35, 33, 28, 0.08);
  background: #f4efe6;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.solution-card img,
.industry-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
}

.reference-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
}

.media-card img {
  aspect-ratio: 16 / 11;
  margin-bottom: 18px;
}

.media-card img.media-card-image-contain {
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.media-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 236, 0.92));
}

body[data-page="solutions"] .subpage-hero-card,
body[data-page="industries"] .subpage-hero-card,
body[data-page="references"] .subpage-hero-card {
  overflow: hidden;
}

body[data-page="solutions"] .subpage-hero-card img,
body[data-page="industries"] .subpage-hero-card img,
body[data-page="references"] .subpage-hero-card img {
  transition: transform 280ms ease;
  will-change: transform;
}

body[data-page="solutions"] .subpage-hero-card:hover img,
body[data-page="industries"] .subpage-hero-card:hover img,
body[data-page="references"] .subpage-hero-card:hover img {
  transform: scale(1.25);
}

body[data-page="internet-wlan"] .subpage-hero-card strong {
  font-size: 2.05rem;
  line-height: 1.06;
}

.tabs {
  display: grid;
  gap: 22px;
}

.tab-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-button {
  border: 1px solid rgba(23, 23, 23, 0.1);
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  color: #262626;
  font-weight: 600;
}

.tab-button.is-active {
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-color: rgba(185, 16, 21, 0.18);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.split-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(246, 242, 240, 0.86));
}

.split-card-rich {
  align-items: stretch;
}

.industry-copy-block {
  display: grid;
  gap: 22px;
  align-content: space-between;
}

.industry-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.industry-intent-list {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.industry-meta-grid article,
.process-note {
  padding: 16px 18px;
  border: 1px solid rgba(185, 16, 21, 0.1);
  border-radius: 16px;
  background: rgba(247, 231, 231, 0.42);
}

.industry-meta-grid strong,
.process-note strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
}

.industry-visual-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}

.industry-visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.industry-visual-body {
  display: grid;
  gap: 14px;
  padding: 20px 22px 22px;
}

.industry-visual-body strong {
  font-size: 1.12rem;
  line-height: 1.35;
}

.compact-check-list li {
  margin-top: 10px;
}

.process-grid,
.pattern-grid {
  display: grid;
  gap: 22px;
}

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

.process-stage-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 26px;
  align-items: start;
}

.process-overview-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 235, 0.88));
  box-shadow: var(--shadow);
}

.process-overview-card h3 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.02;
}

.process-overview-card p {
  margin: 0;
  color: var(--muted);
}

.process-overview-list {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.process-overview-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.process-overview-list span,
.process-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-weight: 800;
}

.process-overview-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.process-overview-note {
  padding: 18px 20px;
  border: 1px solid rgba(185, 16, 21, 0.1);
  border-radius: 18px;
  background: rgba(247, 231, 231, 0.32);
}

.process-overview-note strong {
  display: block;
  line-height: 1.5;
}

.process-sequence {
  display: grid;
  gap: 22px;
}

.process-grid-refined {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.process-card-horizontal {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 1.06fr);
  gap: 22px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 239, 235, 0.92));
}

.process-card-body,
.process-card-refined {
  display: grid;
  gap: 14px;
}

.process-card-refined {
  align-content: start;
  grid-template-rows: auto auto auto 1fr;
}

.process-card-service {
  background: linear-gradient(180deg, rgba(247, 231, 231, 0.42), rgba(255, 255, 255, 0.88));
}

.process-step-header {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.process-step-header h3 {
  margin: 2px 0 0;
}

.process-step-header .metric-label {
  margin-bottom: 4px;
}

.process-step-header span {
  margin-bottom: 0;
}

.process-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.process-detail-grid .process-note {
  height: 100%;
}

.process-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(35, 33, 28, 0.08);
  filter: saturate(0.88) contrast(1.02);
}

.process-media-compact {
  aspect-ratio: 16 / 8.8;
  margin-top: 2px;
}

.process-accent-line {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--muted);
}

.process-card-footer {
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.process-card-footer strong {
  display: block;
  line-height: 1.42;
}

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

.video-layout,
.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: start;
}

body[data-page="home"] .partner-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 20px;
}

body[data-page="home"] .partner-copy {
  padding-top: 6px;
}

.video-copy,
.partner-copy {
  padding-top: 12px;
}

.video-frame,
.partner-figure {
  margin: 0;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.partner-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f1efeb;
  padding: 16px;
  filter: saturate(0.94) contrast(1.02);
}

body[data-page="home"] .partner-figure img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: transparent;
  padding: 0;
  object-position: center;
}

.partner-figure figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.process-card span {
  margin-bottom: 4px;
}

.route-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.72);
}

.route-card strong {
  font-size: 1.2rem;
  max-width: 14ch;
}

.route-card span {
  color: var(--muted);
}

.route-card small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.route-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 32px;
  margin-bottom: 6px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(185, 16, 21, 0.12);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.about-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px;
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 235, 0.88));
  box-shadow: var(--shadow);
}

.about-teaser-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.about-teaser-copy p {
  margin: 0;
  color: #4c4944;
}

.about-teaser-copy {
  display: grid;
  gap: 14px;
}

.about-teaser-side {
  display: grid;
  gap: 18px;
  align-content: space-between;
}

.about-teaser-stats {
  display: grid;
  gap: 14px;
}

.about-teaser-stats article {
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.about-teaser-stats strong {
  display: block;
  margin-top: 4px;
  font-size: 1.6rem;
  line-height: 1;
}

.about-teaser-link {
  font-weight: 800;
}

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

.service-intro-card {
  padding: 30px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 235, 0.88));
  box-shadow: var(--shadow);
}

.service-intro-card h3 {
  margin: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1.04;
}

.service-intro-card p {
  margin: 0;
  color: var(--muted);
}

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

.closing-cta {
  margin-top: 30px;
  padding: 26px 30px;
  border: 1px solid rgba(35, 33, 28, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.service-form,
.booking-card,
.download-list {
  padding: 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.service-form {
  display: grid;
  gap: 16px;
}

.service-form label {
  display: grid;
  gap: 8px;
  color: #203245;
  font-weight: 600;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.service-form input::placeholder,
.service-form textarea::placeholder {
  color: rgba(23, 23, 23, 0.5);
}

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

.form-grid .form-span-2 {
  grid-column: 1 / -1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 235, 0.9));
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-form-card h2 {
  margin: 0;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.contact-card p,
.contact-form-card p,
.contact-meta-grid p,
.contact-detail-list a,
.contact-detail-list span,
.contact-process-note p {
  color: var(--muted);
}

.contact-detail-list {
  display: grid;
  gap: 16px;
}

.contact-detail-list article {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.48);
}

.contact-detail-list strong,
.contact-meta-grid strong,
.contact-process-note strong,
.contact-form-card strong {
  display: block;
  color: var(--text);
  line-height: 1.42;
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-meta-grid article {
  padding: 16px 18px;
  border: 1px solid rgba(185, 16, 21, 0.12);
  border-radius: 16px;
  background: rgba(247, 231, 231, 0.42);
}

.contact-form-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.contact-prompt-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-prompt-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(185, 16, 21, 0.14);
  background: rgba(247, 231, 231, 0.48);
  color: var(--accent-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form-card .service-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.contact-form-card .service-form label {
  color: #262626;
}

.form-hint {
  margin: -6px 0 2px;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-process-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(250, 247, 242, 0.86);
}

.contact-form-status {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-form-status strong {
  display: block;
  color: var(--text);
  line-height: 1.35;
}

.contact-form-status p {
  margin: 0;
  color: var(--muted);
}

.contact-form-status[data-tone="success"] {
  border-color: rgba(18, 127, 74, 0.22);
  background: rgba(231, 248, 238, 0.92);
}

.contact-form-status[data-tone="success"] strong {
  color: #13613c;
}

.contact-form-status[data-tone="warning"] {
  border-color: rgba(185, 112, 16, 0.24);
  background: rgba(255, 247, 232, 0.94);
}

.contact-form-status[data-tone="warning"] strong {
  color: #8c5710;
}

.contact-form-status[data-tone="error"] {
  border-color: rgba(185, 16, 21, 0.2);
  background: rgba(252, 237, 237, 0.94);
}

.contact-form-status[data-tone="error"] strong {
  color: var(--accent-ink);
}

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

.booking-card,
.download-list {
  display: grid;
  gap: 14px;
}

.downloads-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
}

.download-category {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.download-category-wide {
  grid-column: 1 / -1;
}

.download-category-compact {
  align-self: start;
}

.download-category-header {
  display: grid;
  gap: 10px;
}

.download-category-header h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.02;
}

.download-category-header p:last-child {
  margin: 0;
  color: var(--muted);
}

.download-link-list {
  display: grid;
  gap: 12px;
}

.download-link-list-single {
  align-content: start;
}

.download-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: rgba(252, 250, 245, 0.96);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.download-link:hover {
  transform: translateY(-1px);
  border-color: rgba(185, 16, 21, 0.14);
  background: rgba(255, 255, 255, 0.98);
}

.download-link strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.4;
}

.download-link p {
  margin: 0;
  color: var(--muted);
}

.download-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 231, 231, 0.6);
  color: var(--accent-ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.download-callout {
  background: linear-gradient(180deg, rgba(250, 245, 245, 0.88), rgba(255, 255, 255, 0.88));
}

.proposal-hero {
  padding-top: 96px;
}

.proposal-link-static {
  cursor: default;
}

.proposal-link-static:hover {
  transform: none;
  border-color: rgba(23, 23, 23, 0.08);
  background: rgba(252, 250, 245, 0.96);
}

.proposal-price {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-ink);
}

.proposal-combo {
  margin-top: 24px;
}

.proposal-signoff {
  display: grid;
  gap: 4px;
}

.proposal-signoff strong {
  font-size: 1.1rem;
}

.proposal-signoff span {
  color: var(--muted);
  max-width: 30ch;
}

.booking-tier {
  padding: 18px;
  border-radius: 14px;
  background: rgba(246, 241, 241, 0.85);
}

.booking-tier span {
  display: block;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-surface,
.booking-faq-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.booking-surface {
  display: grid;
  gap: 28px;
}

.booking-surface-head h2 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.booking-clinic-section {
  display: grid;
  gap: 16px;
}

.booking-clinic-section h3 {
  margin: 0;
  font-size: 1.18rem;
}

.booking-search input,
.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 14px;
  background: rgba(247, 243, 238, 0.85);
  color: var(--text);
  font: inherit;
}

.booking-field select {
  border-color: rgba(178, 66, 53, 0.22);
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.96), rgba(247, 239, 233, 0.98));
  box-shadow: 0 12px 28px rgba(178, 66, 53, 0.08);
  font-weight: 700;
}

.booking-search input.is-selected {
  font-weight: 800;
  color: #171410;
}

.booking-search input::placeholder,
.booking-field input::placeholder {
  color: rgba(40, 38, 34, 0.54);
}

.booking-search-suggestions {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.booking-search-option {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(28, 24, 18, 0.08);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.booking-search-option strong,
.booking-search-option span {
  display: block;
}

.booking-search-option strong {
  font-size: 0.99rem;
  color: #171410;
}

.booking-search-option span {
  margin-top: 4px;
  font-size: 0.88rem;
  color: rgba(47, 42, 37, 0.72);
}

.booking-search-option:hover,
.booking-search-option:focus-visible {
  border-color: rgba(178, 66, 53, 0.35);
  box-shadow: 0 18px 38px rgba(178, 66, 53, 0.12);
  transform: translateY(-1px);
}

.booking-search-hint,
.booking-plan-note,
.booking-submit p,
.booking-agb-link,
.booking-faq-intro,
.faq-item p,
.clinic-option-card p,
.booking-result-meta {
  margin: 0;
  color: var(--muted);
}

.booking-result-panel {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 18px;
  background: rgba(248, 244, 239, 0.9);
}

.booking-result-panel-inline {
  margin-top: 20px;
}

.booking-result-panel[data-tone="success"] {
  border-color: rgba(24, 117, 49, 0.18);
  background: rgba(238, 248, 240, 0.94);
}

.booking-result-panel[data-tone="warning"] {
  border-color: rgba(185, 135, 16, 0.18);
  background: rgba(253, 248, 236, 0.94);
}

.booking-result-panel[data-tone="error"] {
  border-color: rgba(185, 16, 21, 0.18);
  background: rgba(252, 239, 239, 0.94);
}

.booking-result-panel h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.08;
}

.booking-result-copy {
  margin: 0;
}

.booking-result-token {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.booking-result-token strong {
  font-size: 1.45rem;
  color: var(--accent-ink);
  letter-spacing: 0.03em;
}

.clinic-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.clinic-option-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 18px;
  background: rgba(252, 250, 246, 0.92);
}

.clinic-option-card.is-active {
  border-color: rgba(147, 16, 21, 0.22);
  background: rgba(255, 251, 249, 0.96);
  box-shadow: inset 0 0 0 1px rgba(147, 16, 21, 0.08);
}

.clinic-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 31, 28, 0.06);
  color: rgba(34, 31, 28, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.clinic-option-card strong {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.35;
}

.booking-form-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-field {
  display: grid;
  gap: 8px;
}

.booking-field label,
.booking-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(23, 23, 23, 0.9);
}

.full-width {
  grid-column: 1 / -1;
}

.booking-plan-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.96), rgba(245, 239, 235, 0.88));
}

.booking-plan-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.booking-plan-head strong {
  display: block;
  margin-top: 4px;
  font-size: 1.18rem;
}

.booking-plan-price {
  color: var(--accent-ink);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.booking-channel-note {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding-top: 6px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.booking-channel-note strong {
  color: var(--accent-ink);
  font-size: 1.1rem;
}

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

.payment-method {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 14px;
  background: rgba(252, 250, 246, 0.92);
  font-weight: 600;
}

.payment-method input {
  accent-color: var(--accent-ink);
}

.booking-consent {
  display: flex;
  gap: 10px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(247, 243, 238, 0.85);
  color: var(--muted);
}

.booking-consent input {
  margin-top: 3px;
  accent-color: var(--accent-ink);
}

.booking-submit {
  display: grid;
  gap: 12px;
}

.booking-submit .button {
  width: 100%;
  justify-content: center;
}

.booking-faq-panel {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 104px;
}

.faq-item {
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 14px;
  background: rgba(248, 244, 239, 0.88);
  overflow: clip;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  line-height: 1.4;
}

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

.faq-item[open] summary {
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.faq-item p {
  padding: 14px 18px 18px;
}

.booking-agb-link a,
.booking-faq-intro a {
  color: var(--accent-ink);
  font-weight: 700;
}

.download-item {
  box-shadow: none;
  background: rgba(252, 250, 245, 0.92);
}

.reference-card,
.pattern-card,
.reason-card {
  box-shadow: none;
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(250, 248, 244, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.9fr) minmax(220px, 0.8fr) auto;
  gap: 24px;
}

.footer-grid strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.4;
}

.footer-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-grid a {
  color: var(--text);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--accent-ink);
}

.footer-address {
  display: grid;
  gap: 4px;
}

.footer-address span {
  color: var(--muted);
}

.footer-link-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.footer-link-list a {
  width: fit-content;
  font-weight: 600;
}

.footer-signoff {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.footer-signoff a {
  display: inline-flex;
  align-items: center;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-signoff a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-signoff img {
  width: 110px;
  height: auto;
}

.legal-layout {
  display: grid;
  gap: 24px;
}

.legal-card {
  padding: 30px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 12px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

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

.legal-card + .legal-card {
  margin-top: 0;
}

.legal-highlight {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(185, 16, 21, 0.12);
  border-radius: 18px;
  background: rgba(247, 231, 231, 0.42);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .site-video {
    width: max(100vw, calc(100dvh * 4 / 3));
    height: max(100dvh, calc(100vw * 3 / 4));
  }

  .hero-grid,
  .subpage-grid,
  .split-card,
  .service-layout,
  .comparison-grid,
  .statement-card,
  .video-layout,
  .partner-layout,
  .about-teaser,
  .trust-band-copy {
    grid-template-columns: 1fr;
  }

  .comparison-header,
  .statement-card-expanded {
    grid-template-columns: 1fr;
  }

  .four-col,
  .three-col,
  .access-grid,
  .pattern-grid,
  .process-grid,
  .trust-band-metrics,
  .route-grid-refined,
  .industry-meta-grid,
  .comparison-note-grid,
  .comparison-strip,
  .hero-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-overview,
  .process-stage-layout,
  .process-card-horizontal {
    grid-template-columns: 1fr;
  }

  .downloads-shell,
  .comparison-note-grid-lead,
  .process-detail-grid {
    grid-template-columns: 1fr;
  }

  .download-category-compact {
    grid-template-columns: 1fr;
  }

  .editorial-grid > :first-child,
  .editorial-grid > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .trust-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-photo-grid {
    min-height: 360px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-video {
    width: max(100vw, calc(100dvh * 4 / 3));
    height: max(100dvh, calc(100vw * 3 / 4));
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(23, 23, 23, 0.08);
    padding: 12px 0 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .header-cta {
    width: 100%;
    text-align: center;
  }

  .trust-items,
  .four-col,
  .three-col,
    .two-col-grid,
    .two-col,
    .panel-grid,
    .process-grid,
    .pattern-grid,
    .subpage-stat-grid,
    .footer-grid,
    .trust-band-metrics,
    .hero-support-grid,
    .editorial-grid,
    .access-grid,
  .access-card-wide,
  .route-grid-refined,
  .route-grid-contact,
  .industry-meta-grid,
  .service-overview,
  .comparison-note-grid,
  .comparison-strip,
  .hero-detail-grid,
  .process-grid-refined,
  .form-grid,
  .contact-meta-grid,
  .booking-form-shell,
  .payment-method-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .subpage-hero {
    padding-top: 60px;
  }

  .brand-logo {
    width: min(180px, 52vw);
  }

  .closing-cta {
    align-items: start;
    flex-direction: column;
  }

  .hero-copy h1,
  .subpage-hero h1,
  .section-heading h2 {
    max-width: none;
  }

  .hero-promo-card-horizontal {
    grid-template-columns: 1fr;
  }

  .hero-promo-card-horizontal img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy::before {
    inset: -12px -10px -16px -10px;
  }

  .hero-copy h1,
  .subpage-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 0.98;
  }

  .headline-lock {
    white-space: normal;
  }

  .hero-figure {
    padding: 12px;
  }

  .hero-video-card {
    grid-template-columns: 88px 1fr;
  }

  .booking-faq-panel {
    position: static;
  }

  .hero-promo-card img {
    aspect-ratio: 16 / 10;
  }

  .trust-band {
    padding: 20px;
  }

  .hero-photo-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo,
  .hero-photo-primary {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .split-card {
    padding: 24px;
  }

  .industry-visual-card img,
  .process-media {
    aspect-ratio: 16 / 11;
  }
}
