@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --color-main: #072e42;
  --color-wunderrein: #1083c6;
  --color-zauberfein: #f6bd13;
  --color-gully: #d6d2c4;
  --color-ink: #0c2d3b;
  --color-muted: #3b5562;
  --color-bg: #f4f7f9;
  --color-card: #ffffff;
  --shadow-soft: 0 18px 50px rgba(7, 46, 66, 0.1);
  --shadow-hard: 0 10px 30px rgba(7, 46, 66, 0.14);
  --radius-lg: 22px;
  --radius-md: 14px;
}

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

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6vw;
  background: rgba(244, 247, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7, 46, 66, 0.06);
}

.site-header.slim {
  padding: 20px 5vw;
}

.brands {
  background: #fff;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 120px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-subline {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 200ms ease, color 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(7, 46, 66, 0.08);
  color: var(--color-main);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 46, 66, 0.1);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: var(--color-main);
}

main {
  overflow-x: hidden;
}

section {
  padding: 80px 6vw;
  position: relative;
}

/* Offset for sticky header when scrolling to anchors */
section[id],
.brand-card[id] {
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 0 0 0 6vw;
  background: linear-gradient(130deg, #072e42, #0b3f59);
  color: #fff;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  overflow: hidden;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 40px 0 60px;
}

.hero .eyebrow {
  color: #d6e7f3;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin: 14px 0;
  line-height: 1.2;
}

.lede {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 0 22px;
  color: #e5eef5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  margin-top: 30px;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
  color: #e5eef5;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-left: 3px solid rgba(246, 189, 19, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button.primary {
  background: #072e42;
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 46, 66, 0.18);
}
.button.primary.inverted {
  background: #fff;
  color: #072e42;
  box-shadow: 0 10px 24px rgba(7, 46, 66, 0.18);
}

.button.ghost {
  background: transparent;
  border-color: rgba(7, 46, 66, 0.25);
  color: var(--color-main);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(7, 46, 66, 0.18);
}

.hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.button .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-brand-logos {
  display: inline-flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.hero-brand-logos__item {
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  height: 100%;
}

.hero-brand-logo {
  width: 130px;
  max-width: 100%;
  max-height: 35px;
  object-fit: contain;
  object-position: left;
  display: block;
}

.brand-bar--hero {
  max-width: 64px;
  width: 100%;
  max-height: 6px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(7, 46, 66, 0.08);
  color: var(--color-ink);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(7, 46, 66, 0.08);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  width: 120%;
  max-width: 860px;
  margin-right: 0;
  margin-left: -8%;
  aspect-ratio: 1 / 1;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-label {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(7, 46, 66, 0.35);
  color: #fff;
}

.hero-links a:hover,
.hero-links a:focus-visible {
  background: rgba(246, 189, 19, 0.2);
}

.badge {
  display: inline-flex;
  flex-direction: column;
  background: #fff;
  color: var(--color-main);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(7, 46, 66, 0.08);
}

.badge-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.badge-main {
  font-size: 1.2rem;
  font-weight: 800;
}

.badge-sub {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.section-header {
  max-width: 800px;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 8px 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.section-lede {
  margin: 0;
  color: var(--color-muted);
}

.eyebrow {
  letter-spacing: 1.5px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.eyebrow.small {
  font-size: 0.78rem;
}

.brand-grid {
  display: grid;
  gap: 24px;
}

.brand-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 22px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.1), transparent 45%);
  pointer-events: none;
}

.brand-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  transform: rotate(-18deg);
  opacity: 0.12;
  filter: blur(1px);
}

.brand-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width:600px;
  margin: 0 auto;
}

.brand-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-auto-rows: auto;
  column-gap: 12px;
  row-gap: 6px;
  align-items: center;
}

.brand-bar {
  max-height: 12px;
  flex-shrink: 0;
  grid-column: 1 / -1;
}

.brand-logo {
  max-height: 42px;
}

.tag {
  padding: 8px 12px;
  background: rgba(7, 46, 66, 0.08);
  border-radius: 12px;
  font-weight: 700;
}

.brand-copy {
  margin: 0;
  color: var(--color-muted);
}

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

.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.brand-card__visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.brand-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card.brand-wunderrein {
  background: linear-gradient(140deg, #ffffff, rgba(16, 131, 198, 0.12));
  border: 1px solid rgba(16, 131, 198, 0.18);
}

.brand-card.brand-wunderrein::after {
  background: linear-gradient(130deg, rgba(16, 131, 198, 0.6), rgba(246, 189, 19, 0.6));
}

.brand-card.brand-wunderrein .button.primary {
  background: var(--color-wunderrein);
  color: #fff;
}

.brand-card.brand-cleanie {
  background: linear-gradient(140deg, #ffffff, rgba(7, 46, 66, 0.08));
  border: 1px solid rgba(7, 46, 66, 0.12);
}

.brand-card.brand-cleanie::after {
  background: linear-gradient(130deg, rgba(7, 46, 66, 0.55), rgba(214, 210, 196, 0.6));
}

.brand-wordmark {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-ink);
}

.brand-wordmark span {
  color: var(--color-wunderrein);
}

.brand-card.brand-zauberfein {
  background: linear-gradient(140deg, #fff8e2, rgba(246, 189, 19, 0.12));
  border: 1px solid rgba(246, 189, 19, 0.25);
}

.brand-card.brand-zauberfein::after {
  background: linear-gradient(130deg, rgba(246, 189, 19, 0.7), rgba(16, 131, 198, 0.35));
}

.brand-card.brand-zauberfein .button.primary {
  background: #f6bd13;
  color: #072e42;
}

.brand-card.brand-gully {
  background: linear-gradient(140deg, #ffffff, rgba(214, 210, 196, 0.16));
  border: 1px solid rgba(214, 210, 196, 0.45);
}

.brand-card.brand-gully::after {
  background: linear-gradient(130deg, rgba(214, 210, 196, 0.9), rgba(7, 46, 66, 0.4));
}

.brand-card.brand-gully .button.primary {
  background: rgb(247, 247, 70);
  color: #072e42;
}

.sds {
  background: #fff;
  border-radius: 32px;
  margin: 60px 6vw;
  box-shadow: var(--shadow-soft);
  padding: 64px 5vw;
}

.sds.sds-page {
  margin: 50px 5vw;
}
.sds-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sds-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(7, 46, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.sds-card header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.sds-card header .brand-bar {
  max-height: 14px;
  margin-top: 4px;
}

.sds-brand-logo {
  max-height: 32px;
  width: auto;
}

.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top:50px;
  display: grid;
  gap: 10px;
  justify-content: center;
  justify-items: center;
}

.download-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(7, 46, 66, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.download-list a:hover,
.download-list a:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.download-list img {
  width: 18px;
  height: 18px;
}

.team {
  padding-top: 30px;
}

.team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(7, 46, 66, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  background: #e9eef2;
}

.team-photo.placeholder {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-main);
  letter-spacing: 1px;
}

.team-info {
  padding: 12px 14px 16px;
  background: linear-gradient(120deg, rgba(7, 46, 66, 0.05), rgba(7, 46, 66, 0));
  flex-grow: 1;
}

.team-info h3 {
  margin: 0 0 6px;
}

.team-info p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  color: var(--color-muted);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  content: "✓";
  display: inline-block;
  margin-top: 1px;
  color: var(--color-main);
  font-weight: 800;
  font-size: 0.9rem;
}

.brand-wunderrein .feature-list li::before {
  border-color: var(--color-wunderrein);
}

.brand-cleanie .feature-list li::before {
  border-color: var(--color-ink);
}

.brand-zauberfein .feature-list li::before {
  border-color: var(--color-zauberfein);
}

.brand-gully .feature-list li::before {
  border-color: var(--color-gully);
}

.download-heading {
  font-weight: 700;
  margin-top: 6px;
}

.about {
  background: #fff;
  border-radius: 32px;
  margin: 50px 6vw;
  padding: 40px 5vw 60px;
  box-shadow: var(--shadow-soft);
}

.about-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-card {
  background: var(--color-bg);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(7, 46, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  margin-top: 0;
}

.about-text {
  max-width: 800px;
  margin: 28px auto 0;
}

.about-text h3 {
  margin: 0 0 8px;
}

.about-text p {
  margin: 0;
  color: var(--color-muted);
}

.contact-grid {
  display: grid;
  gap: 22px;
  margin-top:100px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.contact-card,
.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(7, 46, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card p {
  margin: 4px 0;
}

.contact-icon {
  display: inline-block;
  margin-right: 8px;
  color: var(--color-main);
  font-size: 0.95rem;
  vertical-align: middle;
}

.contact-form .form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

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

.form-row--split > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-weight: 700;
  color: var(--color-muted);
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(7, 46, 66, 0.15);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-actions {
  display: grid;
  gap: 6px;
}

.form-hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  justify-content: center;
}

.link-inline {
  font-weight: 700;
  color: var(--color-main);
  text-decoration: underline;
}

.pill-row.compact span {
  background: rgba(7, 46, 66, 0.08);
  color: var(--color-main);
}

.brand-advantages {
  padding: 24px 6vw 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.brand-advantages h3 {
  margin: 0 0 18px;
  font-size: 1.3rem;
}

.brand-advantages__items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.brand-advantage {
  flex: 1 1 140px;
  max-width: 190px;
  text-align: center;
}

.brand-advantage__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #f5f4ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-advantage__icon img {
  max-width: 70%;
  height: auto;
  display: block;
}

.brand-advantage p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.brand-advantages__rating {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.contact-card--grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding: 0;
}

.contact-tile {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(7, 46, 66, 0.06);
}

.contact-tile--link {
  text-decoration: none;
  color: inherit;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.contact-tile--link:hover,
.contact-tile--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(7, 46, 66, 0.18);
  border-color: rgba(7, 46, 66, 0.16);
}

.contact-tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 46, 66, 0.08);
  color: var(--color-main);
  font-size: 1.1rem;
}

.contact-tile-text h3 {
  margin: 0 0 4px;
}

.contact-tile-text p {
  margin: 0;
}

.contact-form-heading {
  margin-top: 20px;
  margin-bottom: 12px;
}

.contact-form-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.contact-form {
  padding: 32px 24px 24px;
}

.contact-form-avatar {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.contact-form-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal {
  padding-bottom: 40px;
}

.legal-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.legal-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(7, 46, 66, 0.08);
  box-shadow: var(--shadow-soft);
}

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

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

.site-footer {
  padding: 28px 6vw 32px;
  background: linear-gradient(120deg, #072e42, #0b3f59);
  color: #e8f1f6;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #e8f1f6;
}

.footer-logo img {
  width: 38px;
  height: 38px;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #e8f1f6;
  justify-content: flex-end;
}

.footer-legal a {
  color: #e8f1f6;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}

.footer-legal .bullet {
  opacity: 0.6;
}

.footer-note {
  margin: 0;
  color: #c3d5df;
  font-size: 0.95rem;
}

.footer-brand .brand-name {
  font-size: 1rem;
  letter-spacing: 0.3px;
}
.hero-brand-logo.wunderrein {
  margin:14px 0px
}

@media (max-width: 1080px) {

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(16, 131, 198, 0.15), transparent 40%),
      radial-gradient(circle at 100% 0%, rgba(246, 189, 19, 0.18), transparent 35%);
    pointer-events: none;
    z-index: 0;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: -160px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: linear-gradient(100deg, #f6bd13 0 33%, #1083c6 33% 66%, #d6d2c4 66% 100%);
    transform: rotate(-18deg);
    opacity: 0.16;
    filter: drop-shadow(0 25px 60px rgba(7, 46, 66, 0.18));
    z-index: 2;
  }
  
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 12px 6vw 18px;
    background: rgba(244, 247, 249, 0.98);
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(7, 46, 66, 0.08);
    display: none;
  }

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

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

  .hero {
    grid-template-columns: 1fr;
    padding: 0 6vw;
    min-height: auto;
    gap: 32px;
  }

  .hero-visual {
    justify-content: center;
    align-items: center;
  }

  .hero-photo-frame {
    width: 100%;
    max-width: 480px;
    margin-right: 0;
    border-radius: 26px;
    clip-path: none;
  }

  .hero-photo-frame img {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 820px) {
  .hero {
    border-radius: 0 0 28px 28px;
    gap: 28px;
  }

  .brand-card {
    grid-template-columns: 1fr;
  }

  .brand-card__visual {
    order: -1;
  }

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

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

@media (max-width: 620px) {
  section {
    padding: 70px 5vw;
  }

  .site-header {
    padding: 12px 5vw;
  }

  .hero {
    padding: 0;
    gap: 16px;
  }

  .hero-content {
    padding: 24px 6vw 28px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-brand-logos {
    justify-content: center;
    margin-bottom: 0px;
  }
  .hero-brand-logo {
    max-height:22px
  }
  .hero-brand-logo.wunderrein {
    margin: 8px 0px;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-photo-frame {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    clip-path: none;
  }

  .hero-tags span,
  .pill-row span {
    width: 100%;
  }

  .form-row--split {
    grid-template-columns: 1fr;
  }

  .brand-card__header {
    column-gap: 8px;
    row-gap: 4px;
  }

  .brand-card__header .brand-bar {
    grid-column: 1 / -1;
  }

  .brand-card__header .brand-logo {
    max-width: 90%;
  }

  .brand-card__header .tag {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
  .sds-title {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
