:root {
  --navy: #102b49;
  --navy-soft: #203b58;
  --coral: #f25f50;
  --coral-dark: #dd5044;
  --coral-soft: #ef9a8d;
  --cream: #fffaf6;
  --card: #fbf7f3;
  --card-side: #f8f3ed;
  --blue-soft: #eaf3f8;
  --green: #607d50;
  --body: #26374a;
  --muted: #5d6876;
  --line: #e9e3dc;
  --white: #ffffff;
  --page: min(1464px, calc(100% - 84px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 253, 250, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  width: min(1516px, calc(100% - 42px));
  min-height: 108px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__symbol {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--coral);
  border: 2px solid currentColor;
  border-radius: 50% 50% 46% 46%;
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.brand__symbol::before,
.brand__symbol::after {
  position: absolute;
  top: -7px;
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "";
}

.brand__symbol::before {
  left: 15px;
}

.brand__symbol::after {
  right: 15px;
}

.brand__symbol span {
  color: var(--navy);
  transform: translateY(2px);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 0.95;
}

.brand__text small {
  margin-top: 7px;
  color: #5f6872;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 680;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--coral);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #f47768);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(242, 95, 80, 0.18);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  grid-template-columns: 52% 48%;
  background: linear-gradient(100deg, #fffdfa 0%, #fff8f2 100%);
}

.hero::after {
  position: absolute;
  z-index: 5;
  right: -6%;
  bottom: -83px;
  left: -6%;
  height: 112px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
}

.hero__left {
  display: flex;
  padding: 42px 38px 72px max(42px, calc((100vw - 1464px) / 2));
  align-items: center;
}

.hero__copy {
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  padding: 9px 18px;
  margin-bottom: 25px;
  color: var(--white);
  background: linear-gradient(90deg, #ee9b8e, #ef8d80);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 750;
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3rem, 3.75vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero__intro {
  max-width: 510px;
  margin-bottom: 30px;
  color: #304258;
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.hero-benefits article {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 0 18px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-benefits article:first-child {
  padding-left: 0;
}

.hero-benefits article:last-child {
  padding-right: 0;
}

.hero-benefits article + article::before {
  position: absolute;
  top: 16px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: #d9d7d4;
  content: "";
}

.line-icon {
  min-height: 42px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1;
}

.line-icon--shield {
  font-size: 2.45rem;
}

.hero-benefits strong {
  margin-top: 6px;
  color: var(--navy);
  font-size: 0.82rem;
}

.hero-benefits small {
  color: #4f5a67;
  font-size: 0.7rem;
}

.hero__right {
  min-width: 0;
  background: #ead8c5;
}

.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.products-section {
  padding: 27px 0 70px;
  background: var(--white);
}

.products-heading {
  margin-bottom: 24px;
  text-align: center;
}

.products-heading > p {
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.products-heading h2 {
  margin-bottom: 4px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
  line-height: 1.1;
}

.products-heading small {
  color: var(--muted);
  font-size: 0.68rem;
}

.product-list {
  display: grid;
  gap: 18px;
}

.product-row {
  display: grid;
  min-height: 306px;
  overflow: hidden;
  grid-template-columns: 34% 34% 32%;
  background: var(--card);
  border: 1px solid #f1ece6;
  border-radius: 17px;
  box-shadow: 0 9px 25px rgba(16, 43, 73, 0.035);
}

.product-visual {
  display: flex;
  min-width: 0;
  padding: 22px 30px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.product-visual img {
  width: 100%;
  height: 258px;
  object-fit: contain;
  filter: drop-shadow(0 9px 9px rgba(16, 43, 73, 0.13));
  transition: transform 180ms ease;
}

.product-visual:hover img,
.product-visual:focus-visible img {
  transform: translateY(-3px);
}

.product-copy {
  display: flex;
  min-width: 0;
  padding: 28px 24px 24px 0;
  justify-content: center;
  flex-direction: column;
}

.product-copy h3 {
  margin-bottom: 2px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.25vw, 2.2rem);
  line-height: 0.98;
}

.product-copy h3 a {
  text-decoration: none;
}

.product-copy h4 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.2;
}

.product-copy > p {
  margin-bottom: 14px;
  color: #5a6571;
  font-size: 0.82rem;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 4px 11px;
  color: var(--navy);
  background: #e5eef3;
  border-radius: 999px;
  font-size: 0.63rem;
}

.product-action {
  display: flex;
  padding: 28px 30px;
  justify-content: center;
  flex-direction: column;
  background: var(--card-side);
}

.product-action ul {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.product-action li {
  position: relative;
  padding: 5px 0 5px 27px;
  color: #1f3448;
  font-size: 0.76rem;
}

.product-action li::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: var(--green);
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.coral-button {
  display: inline-flex;
  min-height: 45px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #f77667);
  border-radius: 6px;
  box-shadow: 0 7px 15px rgba(242, 95, 80, 0.17);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.coral-button:hover,
.coral-button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  background: linear-gradient(135deg, var(--coral-dark), var(--coral));
}

.offer-link {
  width: fit-content;
  margin: 10px auto 0;
  color: var(--navy);
  font-size: 0.7rem;
  text-align: center;
  text-underline-offset: 3px;
}

.provider-note {
  max-width: 850px;
  margin: 15px auto 18px;
  color: #707985;
  font-size: 0.65rem;
  text-align: center;
}

.recommendation {
  display: grid;
  min-height: 98px;
  padding: 18px 56px;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, #eaf3f8, #eef6fa);
  border-radius: 15px;
}

.recommendation__heart {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--navy);
  border: 1px solid #cbdbe5;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2.9rem;
}

.recommendation strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.88rem;
}

.recommendation p {
  max-width: 670px;
  margin: 0;
  color: #3b5065;
  font-size: 0.74rem;
}

.recommendation__signature {
  color: var(--navy);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.7rem;
  line-height: 0.95;
  text-align: center;
  transform: rotate(-4deg);
}

.site-footer {
  color: var(--navy);
  background: linear-gradient(110deg, #fffaf5, #fffdfb);
  border-top: 1px solid #f1ebe5;
}

.footer-grid {
  display: grid;
  padding: 34px 20px 28px;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 80px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
}

.footer-grid p,
.footer-grid a {
  color: #425469;
  font-size: 0.67rem;
  line-height: 1.75;
}

.footer-grid section > a {
  display: block;
  width: fit-content;
}

.footer-icons {
  display: flex;
  margin-top: 15px;
  gap: 14px;
}

.footer-icons span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
}

.footer-bottom {
  padding: 12px 24px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.7rem;
  text-align: center;
}

/* Rechtliche Unterseiten */
.shell {
  width: var(--page);
  margin-inline: auto;
}

.legal-main {
  min-height: 60vh;
  padding: 80px 0 110px;
}

.legal-hero {
  padding: 68px 0;
  background: #fff3ed;
}

.legal-hero .eyebrow {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-content {
  max-width: 830px;
}

.legal-content h1 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.legal-content h2 {
  margin-top: 44px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.legal-content h3 {
  margin-top: 28px;
  color: var(--navy);
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: #526070;
}

.legal-content .button {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 22px;
  align-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 7px;
  font-weight: 750;
  text-decoration: none;
}

.legal-placeholder {
  padding: 22px;
  border: 2px dashed var(--coral);
  background: #fff9f7;
  border-radius: 12px;
}

.legal-placeholder strong {
  color: #9a493f;
}

.legal-warning {
  padding: 16px 18px;
  margin-bottom: 34px;
  color: #5d493f;
  background: #fff2d8;
  border: 1px solid #e6cf9e;
  border-radius: 10px;
  font-size: 0.86rem;
}

.site-footer > .shell.footer-bottom {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.site-footer > .shell.footer-bottom p {
  margin: 0;
}

.site-footer > .shell.footer-bottom a {
  color: var(--white);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4),
  .main-nav a:nth-child(5) {
    display: none;
  }

  .hero {
    grid-template-columns: 55% 45%;
  }

  .product-row {
    grid-template-columns: 31% 36% 33%;
  }

  .product-visual {
    padding-inline: 18px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand__symbol {
    width: 45px;
    height: 45px;
    font-size: 1.85rem;
  }

  .brand__text strong {
    font-size: 1.62rem;
  }

  .brand__text small {
    font-size: 0.49rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 26px rgba(16, 43, 73, 0.1);
  }

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

  .main-nav a:nth-child(n) {
    display: block;
  }

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

  .hero__left {
    order: 2;
    padding: 38px 24px 90px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__right {
    height: 360px;
    order: 1;
  }

  .hero__right img {
    object-position: 62% center;
  }

  .hero::after {
    bottom: -89px;
  }

  .product-row {
    grid-template-columns: 36% 64%;
  }

  .product-visual {
    grid-row: 1;
  }

  .product-copy {
    padding: 25px 22px 22px 0;
    grid-row: 1;
  }

  .product-action {
    padding: 24px;
    grid-column: 1 / -1;
    border-top: 1px solid #ebe5df;
  }

  .product-action ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 20px;
  }

  .recommendation {
    padding-inline: 28px;
  }

  .recommendation__signature {
    display: none;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .hero__right {
    height: 300px;
  }

  .hero__left {
    padding-inline: 20px;
  }

  .hero__badge {
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .hero-benefits {
    gap: 13px;
  }

  .hero-benefits article {
    padding: 0 8px;
  }

  .line-icon {
    font-size: 2.1rem;
  }

  .hero-benefits strong {
    font-size: 0.7rem;
  }

  .hero-benefits small {
    font-size: 0.59rem;
  }

  .products-section {
    padding-top: 10px;
  }

  .products-heading {
    margin-bottom: 18px;
  }

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

  .product-visual,
  .product-copy,
  .product-action {
    grid-row: auto;
  }

  .product-visual {
    min-height: 250px;
    padding: 24px;
  }

  .product-visual img {
    height: 220px;
  }

  .product-copy {
    padding: 0 24px 24px;
    text-align: center;
  }

  .tag-list {
    justify-content: center;
  }

  .product-action {
    grid-column: auto;
  }

  .product-action ul {
    grid-template-columns: 1fr;
  }

  .recommendation {
    grid-template-columns: 48px 1fr;
    padding: 20px;
    gap: 15px;
  }

  .recommendation__heart {
    width: 46px;
    height: 46px;
    font-size: 2.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

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