/* --- i18n visibility --- */
.lang-de .t-en,
.lang-en .t-de {
  display: none !important;
}

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

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

:root {
  --dm-black: #111;
  --dm-white: #fff;
  --dm-red: #b71c1c;
  --dm-red-light: #d32f2f;
  --dm-gray-50: #fafafa;
  --dm-gray-100: #f5f5f5;
  --dm-gray-200: #eee;
  --dm-gray-300: #e0e0e0;
  --dm-gray-400: #bdbdbd;
  --dm-gray-500: #9e9e9e;
  --dm-gray-600: #757575;
  --dm-gray-700: #616161;
  --dm-gray-800: #424242;
  --dm-gray-900: #212121;
  --dm-page-bg: #fff;
  --dm-font: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  --dm-font-serif: Georgia, "Times New Roman", Times, serif;
  --header-height: 72px;
  --header-pill-height: 2.375rem;
  --section-padding: 6rem 1.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--dm-page-bg);
  color: var(--dm-black);
  font-family: var(--dm-font);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--dm-black);
  color: var(--dm-white);
  text-decoration: none;
  font-size: 0.875rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: var(--header-height);
}

.site-logo {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 0.5rem;
}

.site-logo__favicon {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.site-logo__wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dm-black);
}

.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}

.site-nav__track {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding: 0.125rem;
  min-height: var(--header-pill-height);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
}

.site-nav__link {
  color: var(--dm-gray-700);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.site-nav__link:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.6);
  color: var(--dm-black);
}

.site-nav__link.is-active {
  background: var(--dm-white);
  color: var(--dm-black);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.site-header__actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem;
  min-height: var(--header-pill-height);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
}

.lang-switch__btn {
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--dm-gray-500);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.lang-switch__btn:hover {
  color: var(--dm-black);
}

.lang-switch__btn[aria-pressed="true"] {
  color: var(--dm-black);
  background: var(--dm-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.site-main {
  flex: 1;
  width: 100%;
}

.site-main--narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.site-main--legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

/* =============================================
   HOME PAGE
   ============================================= */

/* --- Hero --- */
.home-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 4rem 2rem;
  text-align: center;
  background: var(--dm-white);
}

.home-hero__logo {
  width: clamp(280px, 50vw, 420px);
  height: auto;
  margin-bottom: 2rem;
}

.home-hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--dm-font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dm-black);
}

.home-hero__lead {
  margin: 0 0 2rem;
  max-width: 560px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--dm-gray-600);
}

.home-hero__scroll {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--dm-gray-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.home-hero__scroll:hover {
  color: var(--dm-red);
}

.home-hero__scroll-arrow {
  width: 1.5rem;
  height: 1.5rem;
  animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Section base --- */
.home-section {
  padding: var(--section-padding);
  max-width: 1200px;
  margin: 0 auto;
}

.home-section--gray {
  background: var(--dm-gray-50);
  max-width: none;
}

.home-section--gray > .home-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-section__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dm-red);
}

.home-section__title {
  margin: 0 0 1rem;
  font-family: var(--dm-font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--dm-black);
}

.home-section__lead {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dm-gray-600);
  max-width: 600px;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card {
  padding: 2rem;
  background: var(--dm-white);
  border: 1px solid var(--dm-gray-200);
  border-radius: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.about-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dm-gray-100);
  border-radius: 10px;
  font-size: 1.25rem;
}

.about-card__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dm-black);
}

.about-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--dm-gray-600);
}

/* --- Product highlight --- */
.product-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-highlight__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-highlight__icon-img {
  width: 200px;
  height: 200px;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.product-highlight__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-highlight__name {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dm-black);
}

.product-highlight__desc {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dm-gray-600);
}

.product-highlight__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.product-highlight__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--dm-gray-100);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dm-gray-700);
  letter-spacing: 0.02em;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--dm-black);
  color: var(--dm-white);
}

.btn--primary:hover {
  background: var(--dm-gray-800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--outline {
  background: transparent;
  color: var(--dm-black);
  border: 1.5px solid var(--dm-gray-300);
}

.btn--outline:hover {
  border-color: var(--dm-black);
  background: var(--dm-gray-50);
}

.btn--red {
  background: var(--dm-red);
  color: var(--dm-white);
}

.btn--red:hover {
  background: var(--dm-red-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.25);
}

.btn--white {
  background: var(--dm-white);
  color: var(--dm-black);
}

.btn--white:hover {
  background: var(--dm-gray-100);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn__ext {
  font-size: 0.8rem;
  opacity: 0.7;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* legacy button alias */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--dm-black);
  color: var(--dm-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 1px solid var(--dm-black);
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--dm-gray-800);
}

.btn-primary__ext {
  font-size: 0.75rem;
  opacity: 0.85;
}

.btn-primary--submit {
  margin-top: 0.5rem;
}

/* =============================================
   INNER PAGES (Products, Contact)
   ============================================= */
.content-block {
  padding: 0;
}

.content-block__title {
  margin: 0 0 0.75rem;
  font-family: var(--dm-font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--dm-black);
}

.content-block__lead {
  margin: 0 0 2rem;
  color: var(--dm-gray-600);
  font-size: 1rem;
}

.product-card {
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--dm-gray-200);
}

.product-card__name {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-card__desc {
  margin: 0 0 1.25rem;
  color: var(--dm-gray-600);
  font-size: 0.9375rem;
}

.content-block__back {
  margin: 2.5rem 0 0;
}

.text-link {
  color: var(--dm-gray-600);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.15s ease;
}

.text-link:hover {
  color: var(--dm-black);
}

/* --- contact form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 100%;
}

.contact-form label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dm-gray-700);
  margin-top: 0.75rem;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--dm-gray-300);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  background: var(--dm-white);
  color: var(--dm-black);
  transition: border-color 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dm-black);
}

.contact-form .h-captcha {
  margin-top: 0.5rem;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-prose h1 {
  font-family: var(--dm-font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.legal-prose h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
  color: var(--dm-gray-900);
}

.legal-prose h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--dm-gray-800);
}

.legal-prose p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--dm-gray-600);
  line-height: 1.7;
}

.legal-prose ul {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.25rem;
}

.legal-prose li {
  font-size: 0.9375rem;
  color: var(--dm-gray-600);
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.legal-prose a {
  color: var(--dm-black);
}

.legal-back {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dm-gray-200);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid var(--dm-gray-200);
  background: var(--dm-gray-50);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--dm-gray-500);
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__nav a {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--dm-gray-500);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover {
  color: var(--dm-black);
}

/* =============================================
   WRAPPR LANDING PAGE
   ============================================= */

/* --- wrappr header override --- */
.site-header--wrappr {
  background: rgba(107, 60, 143, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header--wrappr .site-logo__wordmark {
  color: var(--dm-white);
}

.site-header--wrappr .site-nav__track {
  background: rgba(255, 255, 255, 0.12);
}

.site-header--wrappr .site-nav__link {
  color: rgba(255, 255, 255, 0.7);
}

.site-header--wrappr .site-nav__link:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.12);
  color: var(--dm-white);
}

.site-header--wrappr .site-nav__link.is-active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--dm-white);
  box-shadow: none;
}

.site-header--wrappr .lang-switch {
  background: rgba(255, 255, 255, 0.12);
}

.site-header--wrappr .lang-switch__btn {
  color: rgba(255, 255, 255, 0.6);
}

.site-header--wrappr .lang-switch__btn:hover {
  color: var(--dm-white);
}

.site-header--wrappr .lang-switch__btn[aria-pressed="true"] {
  color: var(--dm-white);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

/* --- wrappr color palette --- */
:root {
  --wr-purple: #6b3c8f;
  --wr-purple-dark: #4a2563;
  --wr-purple-light: #9b6dc0;
  --wr-green: #8cbf45;
  --wr-green-dark: #69ac30;
  --wr-lavender: #e2c2de;
  --wr-cream: #faf5fc;
}

/* --- wrappr hero --- */
.wr-hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--wr-purple-dark) 0%, var(--wr-purple) 50%, var(--wr-purple-light) 100%);
  color: var(--dm-white);
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.wr-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(140, 191, 69, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.wr-hero__inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.wr-hero__icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wr-hero__title {
  margin: 0 0 1rem;
  font-family: var(--dm-font);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.wr-hero__claim {
  margin: 0 0 1.5rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.9;
}

.wr-hero__subtitle {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.wr-hero__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.wr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--dm-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.wr-badge:hover {
  background: rgba(255, 255, 255, 0.25);
}

.wr-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* --- wrappr sections --- */
.wr-section {
  padding: 5rem 2rem;
}

.wr-section--alt {
  background: var(--wr-cream);
}

.wr-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wr-section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wr-purple);
}

.wr-section__title {
  margin: 0 0 1rem;
  font-family: var(--dm-font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dm-black);
}

.wr-section__lead {
  margin: 0 0 3rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dm-gray-600);
  max-width: 600px;
}

/* --- wrappr feature grid --- */
.wr-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wr-feature {
  padding: 2rem;
  background: var(--dm-white);
  border-radius: 16px;
  border: 1px solid var(--dm-gray-200);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.wr-feature:hover {
  box-shadow: 0 12px 40px rgba(107, 60, 143, 0.08);
  transform: translateY(-3px);
}

.wr-feature__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wr-cream);
  border-radius: 12px;
  font-size: 1.5rem;
}

.wr-feature__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dm-black);
}

.wr-feature__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--dm-gray-600);
}

/* --- wrappr how it works --- */
.wr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.wr-step {
  text-align: center;
  counter-increment: step;
}

.wr-step__number {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wr-purple);
  color: var(--dm-white);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
}

.wr-step__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dm-black);
}

.wr-step__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--dm-gray-600);
}

/* --- wrappr quotes / claims --- */
.wr-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.wr-quote {
  padding: 2rem;
  background: var(--dm-white);
  border-radius: 16px;
  border-left: 4px solid var(--wr-purple);
}

.wr-quote__text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dm-black);
  font-style: italic;
}

/* --- wrappr CTA --- */
.wr-cta {
  padding: 5rem 2rem;
  background: linear-gradient(160deg, var(--wr-purple-dark) 0%, var(--wr-purple) 100%);
  color: var(--dm-white);
  text-align: center;
}

.wr-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.wr-cta__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
}

.wr-cta__text {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* --- wrappr footer override --- */
.site-footer--wrappr {
  background: var(--wr-purple-dark);
  border-top: none;
}

.site-footer--wrappr .site-footer__legal {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer--wrappr .site-footer__nav a {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer--wrappr .site-footer__nav a:hover {
  color: var(--dm-white);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
    column-gap: 0.75rem;
    min-height: auto;
    padding: 0.75rem 1rem 0.65rem;
  }

  .site-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header__actions {
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0.65rem 0 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
  }

  .site-header--wrappr .site-nav {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .site-nav__track {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-highlight {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .product-highlight__visual {
    order: -1;
  }

  .product-highlight__icon-img {
    width: 140px;
    height: 140px;
    border-radius: 32px;
  }

  .wr-features {
    grid-template-columns: 1fr;
  }

  .wr-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .wr-quotes {
    grid-template-columns: 1fr;
  }

  :root {
    --section-padding: 4rem 1.25rem;
  }
}

/* =============================================
   ALPHA-STYLE HOME (abc.xyz layout)
   ============================================= */
.page-home--alpha {
  background: var(--dm-white);
}

/* --- Header --- */
.alpha-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dm-white);
  border-bottom: 1px solid var(--dm-gray-200);
}

.alpha-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.75rem 2.5rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.alpha-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  position: relative;
  top: -15px;
}

.alpha-brand__name {
  font-family: var(--dm-font);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--dm-red);
  letter-spacing: -0.005em;
}

.alpha-brand__sub {
  margin-top: -2rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--dm-gray-700);
  letter-spacing: 0;
  padding-left: 0.125rem;
}

.alpha-brand__logo {
  display: block;
  height: 88px;
  width: auto;
}

.alpha-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* Vertikal mittig zur sichtbaren Logo-Linie ausrichten */
  padding-top: calc((88px - 2.375rem) / 2);
}

/* --- Main + Hero --- */
.alpha-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--dm-white);
}

/* --- Tagline dots (used inside hero headline) — geometric circles --- */
.alpha-tagline__dot {
  display: inline-block;
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  /* Unterkante bündig mit der Grundlinie des Wortes „for“ (wie Satzzeichen) */
  vertical-align: baseline;
  margin: 0 0.065em;
}

.alpha-hero__headline .alpha-tagline__dot:first-of-type {
  margin-left: 0.12em;
}

.alpha-tagline__dot--red {
  background-color: var(--dm-red);
}

.alpha-hero {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 2.5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  flex: 1;
}

.alpha-hero__text {
  max-width: 520px;
  justify-self: end;
  width: 100%;
}

.alpha-hero__headline {
  margin: 0 0 1.25rem;
  font-family: var(--dm-font);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--dm-black);
}

.alpha-hero__product {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
}

.alpha-hero__product-slogan {
  font-family: var(--dm-font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--dm-gray-500);
}

.alpha-hero__icon {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.alpha-hero__lead {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dm-black);
  max-width: 460px;
}

.alpha-hero__more-wrap {
  margin: 0 0 3rem;
}

.alpha-hero__more {
  font-size: 1rem;
  color: var(--dm-red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.alpha-hero__more:hover {
  border-bottom-color: var(--dm-red);
}

.alpha-hero__sig {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 320px;
}

.alpha-hero__sig-mark {
  font-family: "Snell Roundhand", "Apple Chancery", "Lucida Handwriting", cursive;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--dm-black);
  line-height: 1;
  padding: 0.25rem 0 1rem;
}

.alpha-hero__sig-name {
  font-size: 0.9375rem;
  color: var(--dm-black);
  border-top: 1px solid var(--dm-gray-300);
  padding-top: 0.75rem;
}

/* Right column visual */
.alpha-hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: stretch;
  min-height: 360px;
}

.alpha-hero__image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 16px 16px 0 0;
}

.alpha-hero__placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--dm-gray-300);
  border-radius: 16px;
  background: var(--dm-gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dm-gray-500);
}

/* --- Sub-page layout --- */
.alpha-main--sub {
  flex: 1;
  display: block;
  background: var(--dm-white);
}

.alpha-page {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 2.5rem clamp(4rem, 8vw, 6rem);
}

.alpha-page__title {
  margin: 0 0 2rem;
  font-family: var(--dm-font);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--dm-black);
}

.alpha-page__lead {
  margin: 0 0 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dm-gray-700);
  max-width: 620px;
}

.alpha-page__content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dm-gray-800);
}

.alpha-page__content h2 {
  margin: 2.5rem 0 1rem;
  font-family: var(--dm-font);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dm-black);
  letter-spacing: -0.01em;
}

.alpha-page__content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dm-black);
}

.alpha-page__content p {
  margin: 0 0 1rem;
}

.alpha-page__content ul,
.alpha-page__content ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.alpha-page__content a {
  color: var(--dm-red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.alpha-page__content a:hover {
  border-bottom-color: var(--dm-red);
}

.alpha-page__content hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid var(--dm-gray-200);
}

/* --- Back button --- */
.alpha-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  color: var(--dm-black);
  text-decoration: none;
  border: 1px solid var(--dm-gray-300);
  border-radius: 999px;
  background: var(--dm-white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.alpha-back:hover {
  border-color: var(--dm-red);
  color: var(--dm-red);
}

.alpha-back__arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.alpha-back:hover .alpha-back__arrow {
  transform: translateX(-2px);
}

/* --- Contact form (alpha) --- */
.alpha-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 560px;
}

.alpha-form label {
  display: block;
  margin: 0 0 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dm-gray-600);
}

.alpha-form input,
.alpha-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dm-black);
  background: var(--dm-white);
  border: 1px solid var(--dm-gray-300);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.alpha-form input:focus,
.alpha-form textarea:focus {
  outline: none;
  border-color: var(--dm-red);
}

.alpha-form textarea {
  resize: vertical;
  min-height: 140px;
}

.alpha-form__submit {
  align-self: flex-start;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dm-white);
  background: var(--dm-red);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}

.alpha-form__submit:hover {
  background: var(--dm-red-light);
}

/* --- Footer --- */
.alpha-footer {
  background: var(--dm-gray-50);
  border-top: 1px solid var(--dm-gray-200);
}

.alpha-footer__support {
  color: var(--dm-red) !important;
  font-weight: 500;
}

.alpha-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.alpha-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.alpha-footer__logo {
  display: block;
  height: 44px;
  width: auto;
}

.alpha-footer__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.alpha-footer__nav a {
  font-size: 0.9375rem;
  color: var(--dm-black);
  text-decoration: none;
  transition: color 0.2s;
}

.alpha-footer__nav a:hover {
  color: var(--dm-red);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .alpha-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem 4rem;
    min-height: auto;
  }

  .alpha-hero__text {
    justify-self: start;
    max-width: 100%;
    order: 2;
  }

  .alpha-hero__visual {
    order: 1;
    justify-content: center;
    min-height: auto;
  }

  .alpha-header__inner {
    padding: 1.25rem 1.5rem;
  }

  .alpha-footer__inner {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .alpha-footer__nav {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

/* =============================================
   HOLDING (legacy holding-letter, ungenutzt)
   ============================================= */
.holding-letter {
  padding: clamp(5rem, 10vw, 9rem) 1.5rem clamp(4rem, 8vw, 7rem);
  background: var(--dm-white);
  border-bottom: 1px solid var(--dm-gray-200);
}

.holding-letter__inner {
  max-width: 720px;
  margin: 0 auto;
}

.holding-letter__eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dm-red);
}

.holding-letter__title {
  margin: 0 0 2rem;
  font-family: var(--dm-font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dm-black);
}

.holding-letter__body p {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--dm-gray-700);
}

.holding-letter__body p:last-child {
  margin-bottom: 0;
}

/* --- Companies --- */
.holding-companies {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--dm-gray-50);
}

.holding-companies__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.company-grid {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.company-tile {
  background: var(--dm-white);
  border: 1px solid var(--dm-gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.company-tile:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: var(--dm-gray-300);
}

.company-tile__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
}

.company-tile__visual {
  margin-bottom: 1.25rem;
}

.company-tile__icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.company-tile__name {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dm-black);
}

.company-tile__desc {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--dm-gray-600);
  flex: 1;
}

.company-tile__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dm-red);
  letter-spacing: 0.01em;
}

/* --- Facts --- */
.holding-facts {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--dm-white);
  border-top: 1px solid var(--dm-gray-200);
}

.holding-facts__inner {
  max-width: 720px;
  margin: 0 auto;
}

.facts-list {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--dm-gray-200);
}

.facts-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--dm-gray-200);
}

.facts-row dt {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dm-gray-500);
}

.facts-row dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dm-black);
}

@media (max-width: 640px) {
  .facts-row {
    grid-template-columns: 1fr;
    gap: 0.375rem;
  }
}

@media (max-width: 600px) {
  .home-hero {
    padding: 3rem 1.25rem;
    min-height: calc(100vh - 8rem);
  }

  .wr-hero {
    padding: 3rem 1.25rem;
  }

  .wr-steps {
    grid-template-columns: 1fr;
  }

  .site-main--narrow,
  .site-main--legal {
    padding: 2rem 1rem 3rem;
  }
}
