:root {
  --color-petrol: #0F4C5C;
  --color-petrol-hover: #0a3642;
  --color-petrol-light: #E0F2F1;
  --color-warm-gray: #F5F5F4;
  --color-off-white: #FAFAFA;
  --color-white: #FFFFFF;
  --color-gray-border: #E0E0E0;
  --color-text-dark: #212121;
  --color-text-light: #616161;
  --color-accent-green: #4CAF50;
  --color-accent-green-hover: #43A047;
  --color-accent-green-light: #E8F5E9;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-off-white);
  padding-bottom: 5.5rem;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

body.has-mobile-call-bar {
  padding-bottom: 6.75rem;
}

body.has-mobile-call-bar.cookie-banner-visible {
  padding-bottom: 11rem;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-border);
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.header .container.header__inner {
  position: relative;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header__inner {
    padding: 0.35rem 0;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.18s ease;
}

.header__logo-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 1rem;
  background: transparent;
  box-shadow: none;
  position: relative;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.header__brand {
  display: block;
  width: auto;
  height: auto;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-petrol);
  overflow: visible;
  position: static;
}

.header__logo-icon svg {
  display: none;
}

.header__logo-icon::before {
  content: "KH";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background: var(--color-petrol);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.header__brand::before {
  display: none;
}

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

.header__nav {
  display: none;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .header__nav a {
    font-weight: 500;
    color: var(--color-text-light);
    transition: color 0.2s;
  }
  
  .header__nav a:hover {
    color: var(--color-petrol);
  }
}

.header__actions {
  display: none;
}

@media (min-width: 768px) {
  .header__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
}

.header__tariff-note {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.4;
  max-width: 160px;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  text-align: center;
  line-height: 1.5;
  max-width: 360px;
}

.cta-note a {
  color: var(--color-petrol);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-note a:hover {
  color: var(--color-petrol-hover);
}

.cta-disclosure {
  width: 100%;
  max-width: 37rem;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px -28px rgba(8, 47, 57, 0.2);
  text-align: left;
}

.cta-disclosure--compact {
  max-width: 35rem;
  padding: 0.72rem 0.85rem;
}

.cta-disclosure__title {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-petrol);
  opacity: 0.9;
}

.cta-disclosure__list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.cta-disclosure__list li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.77rem;
  line-height: 1.42;
  color: var(--color-text-light);
}

.cta-disclosure__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--color-petrol);
}

.cta-disclosure__links {
  margin: 0.5rem 0 0;
  font-size: 0.74rem;
  line-height: 1.4;
}

.cta-disclosure__links a {
  color: var(--color-petrol);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-disclosure__links a:hover {
  color: var(--color-petrol-hover);
}

.hero__cta-group .cta-note {
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-group .cta-disclosure {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero__cta-group .cta-note {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero__cta-group .cta-disclosure {
    margin-left: 0;
    margin-right: 0;
  }
}

.footer__tariff-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
  cursor: pointer;
  border: none;
}

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

.btn--primary:hover {
  background-color: var(--color-petrol-hover);
}

.btn--outline {
  background-color: transparent;
  border: 1px solid var(--color-petrol);
  color: var(--color-petrol);
}

.btn--outline:hover {
  background-color: var(--color-petrol-light);
}

.header__mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
}

.header__mobile-menu[aria-expanded="true"] {
  color: var(--color-petrol);
}

@media (min-width: 768px) {
  .header__mobile-menu {
    display: none;
  }
}

.header__mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-border);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 49;
}

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

.header__mobile-nav a {
  font-weight: 600;
  color: var(--color-petrol);
  padding: 0.35rem 0;
}

.header__mobile-nav .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.mobile-call-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.mobile-call-bar .btn {
  width: 100%;
  max-width: 420px;
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
}

.mobile-call-bar__note {
  font-size: 0.7rem;
  color: var(--color-text-light);
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-call-bar {
    display: none;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background-color: var(--color-warm-gray);
  color: var(--color-text-dark);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero {
  background-color: var(--color-warm-gray);
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-gray-border);
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 992px) {
  .hero__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
  
  .hero__content {
    flex: 1;
    max-width: 600px;
  }
  
  .hero__visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-petrol);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero__subheadline {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

@media (min-width: 992px) {
  .hero__cta-group {
    align-items: flex-start;
  }
}

.hero__cta-group .btn {
  font-size: 1.125rem;
  padding: 1rem 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__cta-group .btn {
    width: auto;
  }
}

.price-text {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.hero__disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.hero__visual-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-border);
  width: 100%;
  max-width: 400px;
}

.hero__visual-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-petrol);
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid var(--color-warm-gray);
  padding-bottom: 1rem;
}

.hero__visual-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__visual-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-border);
}

.hero__visual-icon {
  color: var(--color-accent-green);
  background-color: var(--color-accent-green-light);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__visual-text {
  font-weight: 500;
  font-size: 0.95rem;
}

.key-topics {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-petrol);
}

.key-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .key-topics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.key-topics__card {
  background-color: var(--color-warm-gray);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-petrol);
}

.key-topics__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.key-topics__card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.benefits {
  background-color: var(--color-petrol);
  color: var(--color-white);
  padding: 5rem 0;
}

.benefits .section-header h2 {
  color: var(--color-white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefits__card {
  text-align: center;
  padding: 1.5rem;
}

.benefits__icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-accent-green);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.benefits__card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefits__card p {
  color: var(--color-petrol-light);
  font-size: 0.875rem;
}

.benefits__transparency {
  margin-top: 3.5rem;
}

.benefits__transparency .section-header p {
  max-width: 720px;
  margin: 0.75rem auto 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.benefits__grid--transparency {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .benefits__grid--transparency {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits__card--highlight {
  background-color: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
}

.benefits__card--highlight .benefits__callout {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-white);
}

.benefits__card--highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.benefits__list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  list-style: disc;
}

.benefits__list li {
  margin-bottom: 0.35rem;
}

.themen {
  padding: 5rem 0;
  background-color: var(--color-off-white);
}

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

@media (min-width: 768px) {
  .themen__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .themen__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.themen__card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-gray-border);
}

.themen__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-petrol);
}

.themen__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.themen__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.themen__list li::before {
  content: "•";
  color: var(--color-accent-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.process {
  padding: 5rem 0;
  background-color: var(--color-white);
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.process__number {
  width: 48px;
  height: 48px;
  background-color: var(--color-petrol-light);
  color: var(--color-petrol);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.process__step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process__step p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.process__cta {
  margin-top: 3rem;
  align-items: center;
}

.final-cta {
  background-color: var(--color-warm-gray);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--color-gray-border);
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-petrol);
}

.final-cta p {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn {
  font-size: 1.25rem;
  padding: 1rem 3rem;
  margin-bottom: 0.75rem;
}

.final-cta .badge {
  margin-top: 2rem;
  background-color: var(--color-white);
  margin-bottom: 0;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.final-cta__inner .cta-disclosure {
  margin-top: 0.1rem;
}

.footer {
  background-color: var(--color-white);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid var(--color-gray-border);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: start;
    column-gap: 3rem;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 38rem;
}

.footer__contact {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

.footer__contact strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__contact a {
  color: inherit;
}

.footer__phone {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-petrol);
  line-height: 1.15;
}

.footer__disclaimer {
  margin: 0;
  max-width: 38ch;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.footer__disclaimer strong {
  color: var(--color-text-dark);
  font-weight: 700;
}

.footer__provider {
  margin-top: 0;
  padding: 0;
  border-top: none;
  width: 100%;
  max-width: 22rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .footer__provider {
    justify-self: end;
  }
}

.footer__provider strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
  border-top: 1px solid var(--color-gray-border);
  padding-top: 1.25rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.35rem;
}

.footer__links-label {
  flex-basis: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-petrol);
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.footer__links a[href$="impressum.html"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px -22px rgba(0, 0, 0, 0.45);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer__links a:hover {
  color: var(--color-petrol);
}

.footer__links a[href$="impressum.html"]:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--color-white);
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--color-text-light);
}


.call-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.call-popup-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.call-popup-overlay.show .call-popup__close {
  pointer-events: auto;
}

body.popup-open {
  overflow: hidden;
}

.call-popup {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-popup-overlay.show .call-popup {
  transform: translateY(0) scale(1);
}

.call-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.call-popup__close:hover {
  background-color: var(--color-warm-gray);
  color: var(--color-text-dark);
}

.call-popup__icon {
  width: 64px;
  height: 64px;
  background-color: #FEF3C7;
  color: #D97706;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.call-popup h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-petrol);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.call-popup p {
  color: var(--color-text-dark);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.call-popup .btn {
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.call-popup__footer {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.legal-content {
  background: var(--color-white);
  padding: 4rem 0;
}

.legal-content .container--narrow {
  max-width: 800px;
}
.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-content p {
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-petrol);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  z-index: 9999;
  box-shadow: 0 -10px 15px -3px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-banner.show {
  transform: translateY(0);
}

body.has-mobile-call-bar .cookie-banner {
  bottom: 4.75rem;
}

.cookie-banner__content h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.cookie-banner__content p {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--color-petrol-light);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.25rem;
    gap: 1rem;
  }
  .cookie-banner__content {
    max-width: 65%;
  }
}

.cookie-banner__actions .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.cookie-banner__actions .btn--outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cookie-banner__actions .btn--outline:hover {
  background-color: rgba(255,255,255,0.1);
}

.cookie-banner__actions .btn--primary {
  background-color: var(--color-accent-green);
  color: var(--color-white);
}
.cookie-banner__actions .btn--primary:hover {
  background-color: var(--color-accent-green-hover);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
  pointer-events: auto;
}

.cookie-modal.show .cookie-modal__content {
  pointer-events: auto;
}

.cookie-modal[aria-hidden="true"] {
  display: none !important;
  pointer-events: none !important;
}

.cookie-modal__content {
  background: var(--color-white);
  color: var(--color-text-dark);
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
}

.cookie-modal__content h3 {
  margin-bottom: 1rem;
}

.cookie-modal__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray-border);
}

.cookie-modal__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

:root {
  --section-padding: clamp(3.5rem, 8vw, 5rem);
  --container-padding: clamp(1rem, 4vw, 1.5rem);
  --radius-xl: 1.5rem;
  --shadow-card: 0 18px 40px -28px rgba(15, 76, 92, 0.45);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.btn {
  white-space: normal;
  line-height: 1.3;
  border-radius: 0.875rem;
}

.btn--primary {
  box-shadow: 0 14px 28px -20px rgba(15, 76, 92, 0.85);
}

#anliegen,
#vorteile,
#ablauf {
  scroll-margin-top: 6rem;
}

.header {
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 70px;
}

.header__logo {
  gap: 0.625rem;
}

.header__logo-icon {
  width: 42px;
  height: 42px;
}

.header__brand {
  width: clamp(9.75rem, 26vw, 11rem);
  height: clamp(1.7rem, 4vw, 1.85rem);
}

.header__mobile-menu {
  width: 44px;
  height: 44px;
  border-radius: 0.875rem;
}

.header__mobile-nav {
  margin-top: 0.35rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: 0 0 1rem 1rem;
}

.hero,
.key-topics,
.benefits,
.themen,
.process,
.final-cta,
.legal-content {
  padding: var(--section-padding) 0;
}

.hero {
  background:
    linear-gradient(135deg, rgba(248, 248, 247, 0.94), rgba(242, 244, 244, 0.82)),
    url("assets/images/de-hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__container {
  gap: clamp(1.75rem, 5vw, 3rem);
}

.hero__content {
  width: 100%;
}

.badge {
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1.25rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: clamp(2.1rem, 9vw, 3.6rem);
  letter-spacing: -0.04em;
  max-width: 11ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__subheadline {
  font-size: clamp(1rem, 3.4vw, 1.18rem);
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta-group .btn,
.process__cta .btn,
.final-cta .btn {
  width: 100%;
  max-width: 24rem;
  min-height: 56px;
}

.phone-safety-note {
  width: 100%;
  max-width: 32rem;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 76, 92, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text-dark);
  font-size: 0.94rem;
  line-height: 1.55;
  box-shadow: 0 12px 30px -26px rgba(8, 47, 57, 0.28);
}

.hero__cta-group .phone-safety-note {
  margin-left: auto;
  margin-right: auto;
}

.hero__visual {
  width: 100%;
}

.hero__visual-card {
  max-width: min(100%, 28rem);
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.hero__visual-item {
  padding: 0.9rem;
  border-radius: 0.875rem;
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-header h2,
.final-cta h2,
.legal-content h1 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.key-topics__grid,
.benefits__grid,
.themen__grid,
.process__grid {
  gap: 1rem;
}

.key-topics__card,
.themen__card,
.process__step {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow-card);
}

.key-topics__card {
  background-color: var(--color-white);
  border-left: none;
}

.benefits__grid {
  gap: 1.15rem;
}

.benefits__card {
  text-align: left;
  padding: 1.35rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.35);
}

.benefits__icon {
  margin: 0 0 1rem;
  width: 54px;
  height: 54px;
  border-radius: 1rem;
}

.benefits__card--highlight {
  background-color: rgba(255, 255, 255, 0.14);
}

.process__step {
  align-items: flex-start;
  text-align: left;
  padding: 1.35rem;
  background-color: var(--color-white);
}

.process__number {
  margin-bottom: 0.85rem;
}

.final-cta__inner {
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: calc(var(--radius-xl) + 0.25rem);
  box-shadow: var(--shadow-card);
}

.final-cta p {
  font-size: clamp(1rem, 3.2vw, 1.125rem);
}

.footer {
  padding-top: clamp(3rem, 7vw, 4rem);
}

.footer__top {
  gap: 1.5rem;
}

.footer__phone {
  font-size: clamp(1.5rem, 6vw, 2rem);
  line-height: 1.1;
}

.footer__links {
  gap: 0.75rem 1.25rem;
}

.footer__disclaimer {
  border-radius: 1rem;
  border-left-width: 1px;
}

.call-popup {
  max-width: 26rem;
  border-radius: calc(var(--radius-xl) + 0.25rem);
  box-shadow: var(--shadow-card);
}

.cookie-banner {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.cookie-banner__actions .btn {
  flex: 1 1 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero h1,
  .hero__subheadline {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__visual-card {
    padding: 1.8rem;
  }

  .benefits__card {
    text-align: center;
    padding: 1.5rem;
  }

  .benefits__icon {
    margin: 0 auto 1.25rem;
  }

  .process__grid {
    gap: 1.25rem;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .cookie-banner__actions .btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 767px) {
  body {
    line-height: 1.55;
  }

  .header__inner {
    min-height: 66px;
  }

  .header__nav,
  .header__actions {
    display: none;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .hero__container {
    text-align: center;
  }

  .hero__cta-group,
  .process__cta {
    align-items: center;
  }

  .hero__visual-item,
  .key-topics__card,
  .benefits__card,
  .themen__card,
  .process__step,
  .final-cta__inner,
  .call-popup,
  .cookie-modal__content {
    padding: 1.25rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .footer__links,
  .cookie-banner__actions,
  .cookie-modal__actions {
    flex-direction: column;
  }

  .footer__links a,
  .cookie-modal__actions .btn {
    width: 100%;
  }

  .mobile-call-bar {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .mobile-call-bar .btn {
    min-height: 54px;
    border-radius: 1rem;
  }
}

:root {
  --color-petrol-deep: #082f39;
  --color-petrol-soft: #0d5f73;
  --color-surface: rgba(255, 255, 255, 0.78);
  --color-surface-strong: rgba(255, 255, 255, 0.92);
  --color-outline-soft: rgba(15, 76, 92, 0.12);
  --shadow-floating: 0 24px 60px -32px rgba(8, 47, 57, 0.38);
  --shadow-soft-card: 0 20px 45px -34px rgba(8, 47, 57, 0.28);
}

body.mobile-menu-open,
body.cookie-modal-open {
  overflow: hidden;
}

a,
button,
.btn,
.key-topics__card,
.benefits__card,
.themen__card,
.process__step,
.hero__visual-item,
.header__mobile-nav,
.footer__links a {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(76, 175, 80, 0.28);
  outline-offset: 2px;
}

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

.btn--outline {
  background-color: rgba(255, 255, 255, 0.75);
}

.btn--outline:hover {
  border-color: rgba(15, 76, 92, 0.32);
}

.header {
  border-bottom-color: rgba(15, 76, 92, 0.08);
  box-shadow: 0 10px 24px -24px rgba(15, 76, 92, 0.35);
}

.header__nav a {
  position: relative;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.header__nav a:hover {
  background-color: rgba(15, 76, 92, 0.06);
}

.header__actions .btn {
  min-height: 48px;
  padding-inline: 1.25rem;
}

.header__mobile-menu {
  border: 1px solid transparent;
}

.header__mobile-menu:hover,
.header__mobile-menu[aria-expanded="true"] {
  background-color: rgba(15, 76, 92, 0.06);
  border-color: rgba(15, 76, 92, 0.08);
}

.header__mobile-nav {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 244, 0.98));
  box-shadow: 0 22px 36px -30px rgba(8, 47, 57, 0.45);
}

.header__mobile-nav a:not(.btn) {
  border-radius: 0.85rem;
  padding: 0.8rem 0.95rem;
}

.header__mobile-nav a:not(.btn):hover {
  background-color: rgba(15, 76, 92, 0.06);
}

.mobile-call-bar {
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 34px -28px rgba(8, 47, 57, 0.45);
}

.badge {
  color: var(--color-petrol);
  border-color: rgba(15, 76, 92, 0.08);
}

.hero__content {
  position: relative;
}

.hero__visual-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 250, 0.95));
  border: 1px solid rgba(15, 76, 92, 0.08);
}

.hero__visual-card::before,
.final-cta__inner::before,
.call-popup::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.12), transparent 65%);
  pointer-events: none;
}

.hero__visual-item {
  background-color: rgba(255, 255, 255, 0.82);
}

.hero__visual-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-card);
}

.key-topics__card,
.themen__card,
.process__step,
.final-cta__inner,
.legal-content .container--narrow,
.cookie-modal__content,
.call-popup {
  background-color: var(--color-surface-strong);
  box-shadow: var(--shadow-floating);
}

.key-topics__card,
.themen__card,
.process__step {
  position: relative;
  overflow: hidden;
}

.key-topics__card::before,
.themen__card::before,
.process__step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-petrol), var(--color-accent-green));
  opacity: 0.95;
}

.key-topics__card:hover,
.themen__card:hover,
.process__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -34px rgba(8, 47, 57, 0.38);
}

.key-topics__card h3,
.themen__card h3,
.process__step h3 {
  letter-spacing: -0.02em;
}

.benefits {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(76, 175, 80, 0.16), transparent 25%),
    linear-gradient(180deg, #0d5262 0%, #083642 100%);
}

.benefits::before,
.final-cta::before,
.legal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 30%);
}

.benefits .container,
.final-cta .container,
.legal-content .container {
  position: relative;
  z-index: 1;
}

.benefits__card {
  backdrop-filter: blur(8px);
}

.benefits__card h3 {
  letter-spacing: -0.02em;
}

.benefits__list li + li {
  margin-top: 0.45rem;
}

.process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 248, 0.96));
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #edf2f2 0%, #f5f5f4 100%);
}

.final-cta__inner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
}

.footer {
  background:
    linear-gradient(180deg, var(--color-petrol-deep) 0%, #06242c 100%);
  color: rgba(255, 255, 255, 0.92);
  border-top: none;
}

.footer .header__logo-icon {
  box-shadow: none;
}

.footer .header__brand,
.footer__phone,
.footer__links a:hover,
.footer__copyright,
.footer__disclaimer strong {
  color: var(--color-white);
}

.footer__links a,
.footer__copyright,
.footer__disclaimer,
.footer__contact,
.footer__contact a,
.footer__provider {
  color: rgba(255, 255, 255, 0.82);
}

.footer__contact strong,
.footer__provider strong {
  color: var(--color-white);
}

.footer__phone {
  color: var(--color-white);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: #d7f0ef;
}

.footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.call-popup-overlay {
  backdrop-filter: blur(8px);
}

.call-popup {
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.08);
}

.call-popup__icon {
  background: linear-gradient(135deg, #fff4d4, #f7d78f);
  color: #9a6700;
  box-shadow: inset 0 0 0 1px rgba(154, 103, 0, 0.08);
}

.legal-content {
  position: relative;
  background:
    linear-gradient(180deg, #f1f4f4 0%, #f8f8f7 100%);
}

.legal-content .container--narrow {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-outline-soft);
  border-radius: calc(var(--radius-xl) + 0.25rem);
}

.legal-content .container--narrow::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-petrol), var(--color-accent-green));
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  letter-spacing: -0.03em;
  color: var(--color-petrol-deep);
}

.legal-content h2 {
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.35rem;
  margin-bottom: 0.65rem;
}

.legal-content p,
.legal-content li {
  color: #42555b;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin: 0.75rem 0 1.25rem;
}

.legal-content a {
  color: var(--color-petrol-soft);
}

.cookie-banner {
  left: 1rem;
  right: 1rem;
  width: auto;
  bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: rgba(8, 47, 57, 0.96);
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.55);
}

body.has-mobile-call-bar .cookie-banner {
  bottom: calc(5.7rem + env(safe-area-inset-bottom, 0px));
}

.cookie-banner__content p {
  color: rgba(224, 242, 241, 0.88);
}

.cookie-banner__actions .btn--outline {
  background-color: transparent;
}

.cookie-banner__actions .btn--primary {
  box-shadow: none;
}

.cookie-modal {
  padding: 1rem;
  backdrop-filter: none;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

body.cookie-modal-open .mobile-call-bar {
  z-index: 10001;
}

body.cookie-modal-open .js-phone-link,
body.cookie-modal-open a[href^="tel:"] {
  position: relative;
  z-index: 10001;
}

.cookie-modal__content {
  position: relative;
  width: min(94vw, 58rem);
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-outline-soft);
  border-radius: 1rem;
  box-shadow: 0 20px 42px -30px rgba(0, 0, 0, 0.6);
  background: rgba(250, 249, 246, 0.98);
}

.cookie-modal__header {
  margin-bottom: 0.6rem;
  padding-right: 0;
}

.cookie-modal__eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-petrol-soft);
}

.cookie-modal__header h3 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  color: var(--color-petrol-deep);
}

.cookie-modal__header p,
.cookie-modal__option-copy p {
  font-size: 0.8rem;
  color: #617379;
  line-height: 1.45;
}

.cookie-modal__option {
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 0;
}

.cookie-modal__option-copy strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.9rem;
}

.cookie-modal__option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-petrol);
  flex-shrink: 0;
}

.cookie-modal__actions {
  align-items: stretch;
  margin-top: 0.75rem;
  gap: 0.55rem;
}

.cookie-modal__actions .btn {
  min-height: 40px;
  font-size: 0.82rem;
  padding: 0.55rem 0.75rem;
}

.cookie-modal__actions .btn--outline {
  background: transparent;
}

.cookie-modal__option--required {
  opacity: 0.88;
}

@media (min-width: 768px) {
  .benefits__card:hover {
    transform: translateY(-4px);
  }

  .process__grid {
    position: relative;
  }

  .cookie-banner {
    max-width: 62rem;
    margin: 0 auto;
  }

  .cookie-modal__actions {
    justify-content: flex-end;
  }

  .cookie-modal__content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "header options"
      "header actions";
    column-gap: 1rem;
    align-items: center;
  }

  .cookie-modal__header {
    grid-area: header;
    margin-bottom: 0;
  }

  .cookie-modal__option {
    grid-area: options;
    min-width: 18rem;
  }

  .cookie-modal__actions {
    grid-area: actions;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .header__actions--legal {
    display: flex;
  }

  body,
  body.has-mobile-call-bar,
  body.has-mobile-call-bar.cookie-banner-visible,
  .home-at.has-mobile-call-bar.cookie-banner-visible {
    padding-bottom: 0;
  }

  .header__actions--legal .btn {
    min-height: 44px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .benefits__card {
    text-align: left;
  }

  .footer {
    padding-bottom: 2.5rem;
  }

  body.has-mobile-call-bar .footer {
    padding-bottom: calc(6.75rem + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-call-bar.cookie-banner-visible .footer {
    padding-bottom: calc(11rem + env(safe-area-inset-bottom, 0px));
  }

  .footer__phone {
    font-size: 1.35rem;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.95rem;
  }

  body.has-mobile-call-bar .cookie-banner {
    bottom: calc(5.35rem + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner__actions .btn,
  .cookie-modal__actions .btn {
    width: 100%;
  }

  .cookie-modal {
    padding: 0.65rem 0.65rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-call-bar .cookie-modal {
    padding-bottom: calc(5.8rem + env(safe-area-inset-bottom, 0px));
  }

  .legal-content .container--narrow {
    padding: 1.25rem;
  }
}

#start,
#ueber-uns,
#so-funktioniert-es {
  scroll-margin-top: 6rem;
}

.home-at {
  background: #f5f3ee;
  color: var(--color-text-dark);
}

.home-at .header {
  background-color: rgba(250, 249, 246, 0.94);
  border-bottom-color: rgba(15, 76, 92, 0.08);
}

.home-at .header__inner {
  min-height: 76px;
}

.home-at .header__logo-subline {
  font-size: 0.72rem;
  color: var(--color-text-light);
  line-height: 1.3;
}

.home-at .header__nav a {
  font-weight: 600;
}

.home-at .header__mobile-nav a {
  font-weight: 600;
}

.home-at .home-hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  background:
    linear-gradient(135deg, rgba(248, 246, 242, 0.94), rgba(241, 239, 234, 0.82)),
    url("assets/images/at-hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-at .home-hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.home-at .home-hero__content {
  text-align: center;
}

.home-at .home-hero h1 {
  font-size: clamp(2.25rem, 10vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--color-petrol);
  margin-bottom: 1rem;
}

.home-at .home-hero__text {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: clamp(1rem, 3.8vw, 1.18rem);
}

.home-at .home-hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.home-at .home-hero__actions .btn {
  width: 100%;
  max-width: 24rem;
  min-height: 56px;
}

.home-at .home-hero__actions .phone-safety-note {
  max-width: 36rem;
}

.home-at .home-hero__actions .cta-note {
  max-width: 40rem;
}

.home-at .home-hero__actions .cta-disclosure {
  max-width: 37rem;
}

.home-at .home-hero__note {
  font-size: 0.92rem;
  color: var(--color-text-light);
}

.home-at .home-hero__visual {
  width: 100%;
}

.home-at .hero-panel {
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px -28px rgba(15, 76, 92, 0.35);
}

.home-at .hero-panel__lead,
.home-at .hero-panel__item {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 76, 92, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 22px -24px rgba(15, 76, 92, 0.4);
}

.home-at .hero-panel__lead {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-petrol);
  background: linear-gradient(180deg, rgba(224, 242, 241, 0.75) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.home-at .hero-panel__items {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.home-at .hero-panel__item {
  position: relative;
  padding-left: 2.35rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.home-at .hero-panel__item::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--color-petrol);
  transform: translateY(-50%);
}

.home-at .home-section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.home-at .home-section--soft {
  background: var(--color-white);
  border-top: 1px solid rgba(15, 76, 92, 0.08);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.home-at .home-section--compact {
  padding-top: 0;
}

.home-at .home-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.home-at .home-section__header h2,
.home-at .transparency-card h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-petrol);
  margin-bottom: 0.85rem;
}

.home-at .home-section__header p,
.home-at .transparency-card p {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--color-text-light);
}

.home-at .info-cards,
.home-at .steps-grid {
  display: grid;
  gap: 1rem;
}

.home-at .info-card,
.home-at .step-card,
.home-at .transparency-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 1.35rem;
  box-shadow: 0 18px 36px -28px rgba(15, 76, 92, 0.3);
}

.home-at .info-card,
.home-at .step-card {
  padding: 1.4rem;
}

.home-at .info-card h3,
.home-at .step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  color: var(--color-petrol);
}

.home-at .info-card p,
.home-at .step-card p {
  color: var(--color-text-light);
  font-size: 0.96rem;
}

.home-at .clarity-list {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
  margin: 0 auto;
}

.home-at .clarity-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1rem;
  background: #f6f7f7;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: 0 14px 28px -28px rgba(15, 76, 92, 0.35);
  font-weight: 600;
  color: var(--color-text-dark);
}

.home-at .clarity-list li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--color-petrol);
}

.home-at .step-card {
  text-align: left;
}

.home-at .step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: rgba(15, 76, 92, 0.1);
  color: var(--color-petrol);
  font-weight: 700;
}

.home-at .home-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.home-at .home-section__actions .btn {
  width: 100%;
  max-width: 24rem;
  min-height: 56px;
}

.home-at .transparency-card {
  padding: 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.home-at .final-cta--at {
  background:
    linear-gradient(180deg, #eef3f3 0%, #f4f2ed 100%);
  border-top: 1px solid rgba(15, 76, 92, 0.08);
}

.home-at .final-cta--at .final-cta__inner {
  max-width: 46rem;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.88);
}

.home-at .final-cta--at .cta-note {
  max-width: 40rem;
}

.home-at .final-cta--at .cta-disclosure {
  max-width: 37rem;
}

.home-at .final-cta__number {
  font-size: clamp(1.45rem, 6vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-petrol);
  letter-spacing: -0.03em;
}

.home-at .footer--at {
  background: var(--color-white);
  color: var(--color-text-dark);
  border-top: 1px solid rgba(15, 76, 92, 0.08);
}

.home-at .footer--at .header__logo-icon {
  box-shadow: none;
}

.home-at .footer--at .header__brand,
.home-at .footer--at .footer__phone {
  color: var(--color-petrol);
}

.home-at .footer--at .header__logo-subline,
.home-at .footer--at .footer__links a,
.home-at .footer--at .footer__copyright {
  color: var(--color-text-light);
}

.home-at .footer--at .footer__links a:hover {
  color: var(--color-petrol);
}

.home-at .footer--at .footer__links a[href$="impressum.html"] {
  background: var(--color-petrol);
  border-color: rgba(15, 76, 92, 0.18);
  box-shadow: 0 14px 28px -22px rgba(15, 76, 92, 0.45);
  color: var(--color-white);
}

.home-at .footer--at .footer__links a[href$="impressum.html"]:hover {
  background: var(--color-petrol-hover);
  color: var(--color-white);
}

.home-at .footer--at .footer__bottom {
  border-top-color: rgba(15, 76, 92, 0.1);
}

.home-at .footer--at .footer__contact strong,
.home-at .footer--at .footer__provider strong {
  color: var(--color-petrol);
}

.home-at .footer--at .footer__contact a,
.home-at .footer--at .footer__provider {
  color: var(--color-text-light);
}

.home-at .footer__top--at {
  gap: 1.5rem;
}

.home-at .footer__contact--at {
  gap: 0.4rem;
}

.home-at .footer__bottom--at {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.home-at .footer--at .footer__provider {
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .home-at .home-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

  .home-at .home-hero__content {
    text-align: left;
  }

  .home-at .home-hero__text {
    margin-left: 0;
  }

  .home-at .home-hero__actions {
    align-items: flex-start;
  }

  .home-at .home-hero__actions .phone-safety-note {
    margin-left: 0;
    margin-right: 0;
  }

  .home-at .info-cards--two {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-at .info-cards--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-at .clarity-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .home-at .footer__bottom--at {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .home-at .home-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .home-at .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.legal-at .legal-content--at {
  padding: 0 0 clamp(4rem, 8vw, 5rem);
}

.legal-at .legal-hero {
  padding: clamp(2.75rem, 6vw, 4rem) 0 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(15, 76, 92, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f6f2 0%, #f1efea 100%);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.legal-at .legal-hero__inner {
  text-align: center;
}

.legal-at .legal-hero h1 {
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--color-petrol);
  margin-bottom: 0.85rem;
}

.legal-at .legal-hero p {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: clamp(1rem, 3.2vw, 1.08rem);
}

.legal-at .legal-shell {
  padding-top: 1.5rem;
}

.legal-at .legal-shell .container {
  max-width: 900px;
}

.legal-at .legal-card {
  padding: clamp(1.35rem, 4vw, 2.25rem);
}

.legal-at .legal-card > :first-child {
  margin-top: 0;
}

.legal-at .legal-card > :last-child {
  margin-bottom: 0;
}

.legal-at .legal-card h2 {
  font-size: clamp(1.35rem, 4.4vw, 1.8rem);
  margin: 2rem 0 0.85rem;
  color: var(--color-petrol);
  line-height: 1.2;
}

.legal-at .legal-card h3 {
  font-size: 1.02rem;
  margin: 1.25rem 0 0.55rem;
  color: var(--color-text-dark);
}

.legal-at .legal-card p,
.legal-at .legal-card li {
  color: var(--color-text-dark);
  line-height: 1.7;
}

.legal-at .legal-card p {
  margin-bottom: 1rem;
}

.legal-at .legal-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-at .legal-card li + li {
  margin-top: 0.4rem;
}

.legal-at .legal-card a {
  color: var(--color-petrol);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.legal-at .legal-card strong {
  color: var(--color-text-dark);
}

.legal-at .legal-inline-action {
  margin: 1.25rem 0 1.5rem;
}

.legal-at .legal-inline-action .btn {
  min-height: 52px;
}

/* Austria mobile-first polish */
.home-at .cookie-banner,
.home-at [data-cookie-banner] {
  display: none !important;
}

.home-at.has-mobile-call-bar.cookie-banner-visible {
  padding-bottom: 6.75rem;
}

.home-at .home-hero {
  background:
    radial-gradient(circle at top left, rgba(15, 76, 92, 0.08), transparent 32%),
    linear-gradient(180deg, #f8f6f2 0%, #f1efea 100%);
}

@media (max-width: 767px) {
  .home-at .header__inner {
    min-height: 68px;
    gap: 0.5rem;
  }

  .home-at .header__logo {
    align-items: flex-start;
    gap: 0.55rem;
    max-width: calc(100% - 3.5rem);
  }

  .home-at .header__logo-icon {
    width: 36px;
    height: 36px;
  }

  .home-at .header__brand {
    width: 9.2rem;
    height: 1.55rem;
  }

  .home-at .header__logo-subline {
    max-width: 16ch;
    font-size: 0.67rem;
  }

  .home-at .home-hero {
    padding: 2.35rem 0 3rem;
  }

  .home-at .home-hero__grid {
    gap: 1.25rem;
  }

  .home-at .home-hero h1 {
    max-width: 10ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.95rem, 9vw, 2.6rem);
  }

  .home-at .home-hero__text {
    max-width: 31ch;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .home-at .home-hero__actions {
    margin-top: 1.35rem;
    gap: 0.65rem;
  }

  .home-at .home-hero__actions .btn,
  .home-at .home-section__actions .btn,
  .legal-at .legal-inline-action .btn {
    width: 100%;
    max-width: none;
  }

  .home-at .home-hero__note {
    font-size: 0.84rem;
  }

  .home-at .hero-panel {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .home-at .hero-panel__lead,
  .home-at .hero-panel__item {
    padding: 0.9rem 1rem;
    border-radius: 0.95rem;
  }

  .home-at .hero-panel__lead {
    font-size: 1rem;
  }

  .home-at .hero-panel__item {
    padding-left: 2.15rem;
    font-size: 0.95rem;
  }

  .home-at .home-section {
    padding: 3rem 0;
  }

  .home-at .home-section__header {
    margin-bottom: 1.35rem;
  }

  .home-at .home-section__header h2,
  .home-at .transparency-card h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .home-at .home-section__header p,
  .home-at .transparency-card p {
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .home-at .info-cards,
  .home-at .steps-grid,
  .home-at .clarity-list {
    gap: 0.85rem;
  }

  .home-at .info-card,
  .home-at .step-card,
  .home-at .transparency-card {
    border-radius: 1.1rem;
  }

  .home-at .info-card,
  .home-at .step-card,
  .home-at .transparency-card {
    padding: 1.15rem;
  }

  .home-at .info-card p,
  .home-at .step-card p {
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .home-at .clarity-list li {
    padding: 0.95rem 0.95rem 0.95rem 2.75rem;
    font-size: 0.95rem;
  }

  .home-at .clarity-list li::before {
    left: 1rem;
    top: 1.2rem;
    width: 0.62rem;
    height: 0.62rem;
  }

  .home-at .step-card__number {
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.85rem;
    border-radius: 0.75rem;
  }

  .home-at .home-section__actions {
    margin-top: 1.5rem;
  }

  .home-at .transparency-card {
    text-align: left;
  }

  .home-at .final-cta--at .final-cta__inner {
    padding: 1.3rem 1.1rem 1.4rem;
    gap: 0.85rem;
    border-radius: 1.25rem;
  }

  .home-at .final-cta--at h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .home-at .final-cta--at p {
    font-size: 0.98rem;
    margin-bottom: 0;
  }

  .home-at .final-cta__number {
    font-size: 1.5rem;
  }

  .home-at .footer {
    padding-top: 2.5rem;
  }

  .home-at .footer__top--at {
    margin-bottom: 1.1rem;
  }

  .home-at .footer__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
  }

  .home-at .footer__links a {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(15, 76, 92, 0.08);
    background: #f8f8f6;
    color: var(--color-text-dark);
  }

  .footer__links a[href$="impressum.html"] {
    width: 100%;
  }

  .home-at .footer__bottom--at {
    gap: 0.85rem;
  }

  .home-at .footer__disclaimer,
  .home-at .footer__copyright {
    font-size: 0.84rem;
  }

  .legal-at .legal-hero {
    padding: 2.25rem 0 1.15rem;
  }

  .legal-at .legal-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .legal-at .legal-hero p {
    max-width: 32ch;
  }

  .legal-at .legal-shell {
    padding-top: 1rem;
  }

  .legal-at .legal-card {
    padding: 1.15rem;
  }

  .legal-at .legal-card h2 {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
    margin-top: 1.6rem;
  }

  .legal-at .legal-card h3 {
    font-size: 0.98rem;
    margin-top: 1rem;
  }

  .legal-at .legal-card p,
  .legal-at .legal-card li {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .legal-at .legal-card ul {
    padding-left: 1.1rem;
  }
}

.image-showcase {
  padding: var(--section-padding) 0;
}

.image-showcase--light {
  background: var(--color-white);
}

.image-showcase--soft {
  background: linear-gradient(180deg, #f8f6f2 0%, #f1efea 100%);
  border-top: 1px solid rgba(15, 76, 92, 0.08);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.image-showcase__intro {
  max-width: 46rem;
  margin: 0.85rem auto 0;
  color: var(--color-text-light);
  font-size: 1rem;
}

.image-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.image-showcase__card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.image-showcase__card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: var(--color-off-white);
}

.image-showcase__card figcaption {
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem;
}

.image-showcase__card strong {
  font-size: 1.08rem;
  color: var(--color-petrol);
}

.image-showcase__card span {
  color: var(--color-text-light);
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .image-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.site-affiliation-banner {
  background: #fffaf2;
  border-top: 1px solid #f1e8d6;
  color: #6b5a2b;
}

.site-affiliation-banner .container {
  padding-top: 0.38rem;
  padding-bottom: 0.38rem;
}

.site-affiliation-banner__text {
  display: block;
  max-width: 980px;
  margin: 0 auto;
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 768px) {
  .site-affiliation-banner__text {
    font-size: 0.85rem;
  }
}
