/* Final typography and responsive spacing layer */
:root {
  --copy-measure: 68ch;
  --heading-measure: 19ch;
}

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
}

p,
li {
  text-wrap: pretty;
}

.section-heading {
  max-width: 900px;
}

.section-heading h2,
.pricing-heading h2,
.intro-grid h2,
.website-intro h2,
.region-grid h2,
.split-panel h2,
.contact-copy h2,
.narrow-center h2 {
  max-width: var(--heading-measure);
}

.section-heading > p:last-child,
.pricing-heading > p,
.intro-copy,
.website-copy,
.region-grid > div:first-child > p:not(.eyebrow),
.split-panel > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow),
.narrow-center > p:not(.eyebrow) {
  max-width: var(--copy-measure);
}

.overview-card h3,
.service-detail-card h3,
.price-card h3,
.care-card h3 {
  text-wrap: balance;
}

@media (max-width: 1050px) {
  h2 {
    font-size: clamp(34px, 4.8vw, 46px) !important;
    line-height: 1.12 !important;
  }

  .section-heading {
    max-width: 820px;
  }

  .section-heading h2 {
    max-width: 17ch;
  }

  .section-heading > p:last-child {
    max-width: 62ch;
  }
}

@media (max-width: 850px) {
  h2 {
    font-size: clamp(32px, 7vw, 42px) !important;
  }

  .section-heading,
  .pricing-heading,
  .intro-grid > div:first-child,
  .website-intro > div:first-child {
    max-width: 100%;
  }

  .section-heading h2,
  .pricing-heading h2,
  .intro-grid h2,
  .website-intro h2,
  .region-grid h2,
  .split-panel h2,
  .contact-copy h2,
  .narrow-center h2 {
    max-width: 20ch;
  }

  .section-heading > p:last-child,
  .pricing-heading > p,
  .intro-copy,
  .website-copy,
  .region-grid > div:first-child > p:not(.eyebrow),
  .split-panel > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow),
  .narrow-center > p:not(.eyebrow) {
    max-width: 58ch;
  }
}

@media (max-width: 620px) {
  h1,
  h2,
  h3 {
    text-wrap: pretty;
  }

  h2 {
    font-size: clamp(30px, 9.5vw, 38px) !important;
    line-height: 1.14 !important;
  }

  .section-heading h2,
  .pricing-heading h2,
  .intro-grid h2,
  .website-intro h2,
  .region-grid h2,
  .split-panel h2,
  .contact-copy h2,
  .narrow-center h2 {
    max-width: 100%;
  }
}

/* Audience section and pricing refinements */
.audience-section {
  background: #fff;
}

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

.audience-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(6, 24, 41, .06);
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--blue-700);
  background: var(--blue-100);
}

.audience-icon svg {
  width: 24px;
  height: 24px;
}

.audience-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.offer-label {
  font-weight: 800;
}

.reference-footnote,
.pricing-note,
.care-note {
  max-width: 980px;
  margin-inline: auto;
}

@media (max-width: 1050px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .audience-card {
    padding: 24px;
  }
}


/* Transition from packages to care tariffs */
.package-transition {
  position: relative;
  padding: 10px 0 0;
  background: linear-gradient(180deg, var(--surface-muted) 0%, rgba(10,37,64,.06) 100%);
}

.package-transition .container {
  display: flex;
  justify-content: center;
}

.package-transition-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 22px 24px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

.package-transition-kicker {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.package-transition-link strong {
  font-size: 22px;
  line-height: 1.2;
}

.package-transition-link > span:nth-child(3) {
  max-width: 34ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.package-transition-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-top: 4px;
  border: 1px solid rgba(10,37,64,.1);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 24px rgba(6,24,41,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.package-transition-arrow svg {
  width: 24px;
  height: 24px;
}

.package-transition-link:hover .package-transition-arrow,
.package-transition-link:focus-visible .package-transition-arrow {
  transform: translateY(2px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(6,24,41,.12);
}

@media (max-width: 620px) {
  .package-transition {
    padding-top: 4px;
  }

  .package-transition-link {
    padding: 16px 0 22px;
  }

  .package-transition-link strong {
    font-size: 20px;
  }

  .package-transition-link > span:nth-child(3) {
    font-size: 14px;
    max-width: 28ch;
  }

  .package-transition-arrow {
    width: 50px;
    height: 50px;
  }
}


/* Website pricing clarity + exclusive ITCS Website-Manager */
.package-addon-note {
  margin: -12px 0 20px;
  font-size: 13px;
  line-height: 1.45;
}
.package-addon-note strong { font-weight: 850; }
.package-addon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  text-decoration: none;
}
.package-addon-link:hover,
.package-addon-link:focus-visible {
  color: var(--blue-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.package-addon-sep {
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}
.package-addon-price {
  font-weight: 700;
}

.tax-note {
  display: block;
  margin-top: 6px;
  color: color-mix(in srgb, var(--muted) 82%, transparent);
  font-size: 11px !important;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .005em;
}

.tax-note-light {
  color: rgba(255,255,255,.62);
}

.privacy-note {
  max-width: 980px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.selfservice-section {
  padding: 58px 0 66px;
  background: #fff;
}

.selfservice-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 38px 42px;
  border: 1px solid #d9e5ee;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff 0%, #f5faff 100%);
  box-shadow: 0 18px 48px rgba(6,24,41,.08);
}

.selfservice-main {
  min-width: 0;
}

.selfservice-badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-bottom: 16px;
  padding: 5px 11px;
  border: 1px solid rgba(30,111,205,.16);
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.selfservice-main .eyebrow {
  margin-bottom: 7px;
}

.selfservice-main h2 {
  max-width: 17ch;
  margin: 8px 0 12px;
  font-size: clamp(34px, 3.1vw, 46px);
  line-height: 1.08;
}

.selfservice-intro {
  max-width: 57ch;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.selfservice-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.selfservice-features span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(10,37,64,.09);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 5px 14px rgba(6,24,41,.035);
}

.selfservice-limit {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.selfservice-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: 28px 28px 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #0a2540 0%, #0d477a 100%);
  box-shadow: 0 16px 36px rgba(6,24,41,.17);
}

.selfservice-offer::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -62px;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: rgba(22,136,255,.2);
  pointer-events: none;
}

.selfservice-offer-head {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.selfservice-price-label {
  display: block;
  color: #9fd1ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.selfservice-once {
  display: none;
}

.selfservice-price-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
}

.selfservice-price {
  color: #fff;
  font-size: clamp(50px, 4.2vw, 60px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.selfservice-price-cycle {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.selfservice-offer .tax-note-light {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(255,255,255,.6);
  font-size: 10.5px !important;
  font-weight: 500;
  line-height: 1.35;
}

.selfservice-offer-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 18px 0 15px;
  background: rgba(255,255,255,.15);
}

.selfservice-offer-copy {
  position: relative;
  z-index: 1;
  margin: 0 0 10px !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.selfservice-offer-copy strong {
  color: #fff;
}

.selfservice-hosting-note {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 20px;
  color: rgba(255,255,255,.54);
  font-size: 10px;
  line-height: 1.45;
}

.selfservice-offer .selfservice-button {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  padding-inline: 18px;
  justify-content: center;
  border-color: #fff;
  background: #fff;
  color: #0a2540;
  box-shadow: 0 9px 22px rgba(0,0,0,.11);
}

.selfservice-offer .selfservice-button:hover,
.selfservice-offer .selfservice-button:focus-visible {
  border-color: #dceeff;
  background: #dceeff;
  color: #061829;
}

@media (max-width: 980px) {
  .selfservice-card {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    padding: 34px;
  }

  .selfservice-main h2 {
    font-size: clamp(32px, 4.3vw, 40px);
  }
}

@media (max-width: 850px) {
  .selfservice-section {
    padding: 50px 0 56px;
  }

  .selfservice-card {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 720px;
    padding: 30px;
  }

  .selfservice-main h2 {
    max-width: 18ch;
  }

  .selfservice-offer {
    max-width: none;
    padding: 26px;
  }

  .selfservice-offer-copy {
    max-width: 48ch;
  }
}

@media (max-width: 620px) {
  .selfservice-section {
    padding: 42px 0 48px;
  }

  .selfservice-card {
    gap: 24px;
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .selfservice-badge {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .selfservice-main h2 {
    max-width: 100%;
    margin-top: 7px;
    font-size: clamp(29px, 8.7vw, 34px) !important;
    line-height: 1.1 !important;
  }

  .selfservice-intro {
    margin-bottom: 18px;
    font-size: 15px;
  }

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

  .selfservice-features span {
    justify-content: center;
    min-height: 42px;
    padding: 8px 9px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
  }

  .selfservice-limit {
    margin-top: 15px;
    font-size: 12px;
  }

  .selfservice-offer {
    padding: 23px 20px 20px;
    border-radius: 18px;
  }

  .selfservice-offer::before {
    top: -62px;
    right: -55px;
    width: 145px;
    height: 145px;
  }

  .selfservice-offer-head {
    margin-bottom: 10px;
  }

  .selfservice-price-label {
    font-size: 9.5px;
  }

  .selfservice-price {
    font-size: 46px;
  }

  .selfservice-price-cycle {
    font-size: 11px;
  }

  .selfservice-offer .tax-note-light {
    font-size: 10px !important;
  }

  .selfservice-offer-divider {
    margin: 16px 0 14px;
  }

  .selfservice-offer-copy {
    font-size: 12.5px !important;
  }

  .selfservice-hosting-note {
    margin-bottom: 18px;
    font-size: 9.5px;
  }

  .selfservice-offer .selfservice-button {
    min-height: 46px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .selfservice-card {
    padding-inline: 15px;
  }

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

  .selfservice-price {
    font-size: 43px;
  }
}

.package-transition {
  background: linear-gradient(180deg, #fff 0%, rgba(10,37,64,.06) 100%);
}


/* Recommended package + compact hosting comparison */
.price-card-featured .featured-tag {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 7px 18px rgba(8,118,232,.2);
}

.care-comparison {
  margin: 34px auto 0;
  padding: 24px 26px 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  box-shadow: 0 16px 42px rgba(0,0,0,.1);
}

.care-comparison-heading {
  margin-bottom: 16px;
}

.care-comparison-heading p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.5;
}

.care-comparison-kicker {
  display: block;
  margin-bottom: 4px;
  color: #8fc9ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.care-comparison-heading h3 {
  margin: 2px 0 0;
  color: #fff;
  font-size: 21px;
}

.care-comparison-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}

.care-comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: rgba(255,255,255,.84);
  font-size: 13px;
}

.care-comparison-table th,
.care-comparison-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255,255,255,.085);
  text-align: center;
  vertical-align: middle;
  line-height: 1.45;
}

.care-comparison-table th:first-child {
  width: 36%;
  text-align: left;
}

.care-comparison-table tbody th {
  color: rgba(255,255,255,.74);
  font-weight: 650;
}

.care-comparison-table thead th {
  color: #fff;
  background: rgba(255,255,255,.045);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .035em;
}

.care-comparison-table .is-recommended {
  background: rgba(22,136,255,.105);
}

.care-comparison-table thead .is-recommended {
  color: #fff;
  background: rgba(22,136,255,.22);
}

.care-comparison-table tr:last-child th,
.care-comparison-table tr:last-child td {
  border-bottom: 0;
}

.compare-check {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: var(--navy-950);
  background: #8fc9ff;
  font-size: 11px;
  font-weight: 900;
}

.compare-dash {
  color: rgba(255,255,255,.33);
}

.care-comparison-footnote {
  margin: 10px 2px 0;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  text-align: right;
  line-height: 1.45;
}

@media (max-width: 850px) {
  .care-comparison {
    display: none;
  }
}

/* Center constrained copy inside intentionally centered CTA sections. */
.narrow-center h2,
.narrow-center > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

/* Homepage hero: keep the more generous homepage composition, but align it
   more closely with the vertical rhythm of the subpage heroes. */
@media (min-width: 851px) {
  .hero-home .hero-content {
    transform: translateY(-40px);
  }
}

@media (min-width: 621px) and (max-width: 850px) {
  .hero-home .hero-content {
    transform: translateY(-20px);
  }
}

@media (max-width: 620px) {
  .hero-home .hero-content {
    transform: none;
  }
}

/* Homepage content canvas: the body may stay dark as a transition fallback,
   but all regular content below the explicitly dark hero belongs on white. */
body.home-page main {
  background: #fff;
}

/* Homepage: introductory positioning and target groups are one coherent section. */
.home-audience-section {
  padding-top: 92px;
  padding-bottom: 96px;
  background: #fff;
}

.home-audience-intro {
  margin-bottom: 52px;
}

.home-audience-intro h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.home-audience-section .audience-grid {
  margin-top: 0;
}

@media (max-width: 850px) {
  .home-audience-section {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .home-audience-intro {
    margin-bottom: 40px;
  }
}

@media (max-width: 620px) {
  .home-audience-section {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .home-audience-intro {
    margin-bottom: 32px;
  }
}


/* 2026-08-07: Hosting clarity + calmer Website-Manager */
.care-contact-note {
  max-width: 820px;
  margin: 18px 0 0;
  padding: 12px 15px;
  border: 1px solid rgba(143,201,255,.22);
  border-radius: 12px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.055);
  font-size: 13px;
  line-height: 1.55;
}
.care-contact-note strong { color: #fff; }

.selfservice-card {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(38px, 4vw, 56px);
  align-items: stretch;
  padding: 42px 44px;
  border-radius: 22px;
  background: #f8fbfe;
  box-shadow: 0 14px 38px rgba(6,24,41,.065);
}
.selfservice-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.selfservice-badge {
  width: fit-content;
  margin-bottom: 14px;
}
.selfservice-main h2 {
  max-width: 18ch;
  margin-bottom: 14px;
}
.selfservice-intro {
  margin-bottom: 22px;
}
.selfservice-features {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.selfservice-features li {
  position: relative;
  min-height: 0;
  padding: 14px 14px 14px 42px;
  border: 1px solid #dbe7f0;
  border-radius: 12px;
  background: #f7fbff;
  box-shadow: none;
}
.selfservice-features li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-600);
  font-size: 10px;
  font-weight: 900;
}
.selfservice-features strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}
.selfservice-features span {
  display: block;
  color: #536a7b;
  font-size: 13px;
  line-height: 1.45;
}
.selfservice-limit {
  max-width: 58ch;
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid #b9d8f3;
  color: #4f6577;
  background: rgba(255,255,255,.7);
}
.selfservice-limit strong { color: var(--ink); }
.selfservice-offer {
  justify-content: center;
  padding: 30px 28px;
  border-radius: 18px;
  background: #0b3c66;
  box-shadow: 0 12px 30px rgba(6,24,41,.14);
}
.selfservice-offer::before { display: none; }
.selfservice-offer-divider { margin: 20px 0 17px; }
.selfservice-hosting-note { margin-bottom: 22px; }

@media (max-width: 980px) {
  .selfservice-card { grid-template-columns: minmax(0,1fr) 320px; padding: 36px; }
}
@media (max-width: 850px) {
  .selfservice-card { grid-template-columns: 1fr; }
  .selfservice-offer { min-height: 0; }
}
@media (max-width: 620px) {
  .care-contact-note { margin-top: 15px; padding: 11px 12px; font-size: 12px; }
  .selfservice-card { padding: 24px 18px 18px; }
  .selfservice-features { grid-template-columns: 1fr; }
  .selfservice-features li { padding: 13px 13px 13px 40px; }
  .selfservice-limit { margin-top: 14px; font-size: 12px; }
}


/* Tarifvergleich: klare Kontingent-Logik mit Haken / Strichen */
.care-comparison-highlight th,
.care-comparison-highlight td {
  background-color: rgba(143,201,255,.045);
}
.care-comparison-highlight .is-recommended {
  background-color: rgba(22,136,255,.16);
}
.compare-count {
  display: inline-grid;
  min-width: 34px;
  height: 30px;
  place-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(143,201,255,.16);
  font-size: 16px;
  font-weight: 900;
}
.care-comparison-table .is-recommended .compare-count {
  background: rgba(143,201,255,.24);
}
.compare-ref {
  position: relative;
  top: -.15em;
  margin-left: 3px;
  color: #8fc9ff;
  font-size: 10px;
  font-weight: 900;
}
.care-definition {
  max-width: 980px;
  margin: 26px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.035);
  text-align: left;
}
.care-definition > strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}
.care-definition p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.6;
}
.care-definition span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  line-height: 1.55;
}


/* Hosting: geschäftliche E-Mail und externe Anbieter */
.care-email {
  max-width: 1080px;
  margin: 30px auto 34px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 46px rgba(3,18,31,.13);
  text-align: left;
}
.care-email-heading { max-width: 800px; }
.care-email-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #8fc9ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.care-email h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.16;
}
.care-email-heading > p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.65;
}
.care-email-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.care-email-option {
  min-width: 0;
  padding: 19px 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  background: rgba(4,31,53,.34);
}
.care-email-option-label {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #d8ecff;
  background: rgba(63,157,244,.14);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.care-email-option h4 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 17px;
}
.care-email-option p {
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: 13px;
  line-height: 1.62;
}
.care-email-option strong { color: rgba(255,255,255,.92); }
.care-email-extra {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 15px;
  padding: 16px 18px;
  border: 1px solid rgba(143,201,255,.16);
  border-radius: 14px;
  background: rgba(143,201,255,.055);
}
.care-email-extra strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
}
.care-email-extra p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 11.5px;
  line-height: 1.55;
}
.care-email-link {
  white-space: nowrap;
  color: #cfe8ff;
  font-size: 12px;
  font-weight: 850;
  transition: color .18s ease, transform .18s ease;
}
.care-email-link:hover { color: #fff; transform: translateX(2px); }
@media (max-width: 760px) {
  .care-email { margin-top: 24px; padding: 21px 17px; border-radius: 17px; }
  .care-email-options { grid-template-columns: 1fr; }
  .care-email-extra { grid-template-columns: 1fr; gap: 12px; }
  .care-email-link { white-space: normal; }
}


/* 2026-08-08: Hosting/E-Mail final alignment and content hierarchy */
.care-section .care-heading {
  margin-bottom: 22px;
}
.care-contact-note,
.care-email,
.care-comparison,
.care-definition {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.care-contact-note {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 0;
  margin-bottom: 30px;
  padding: 13px 16px;
}
.care-contact-note span {
  min-width: 0;
}
.care-email {
  margin-top: 30px;
  margin-bottom: 34px;
}
.care-email-heading {
  max-width: 820px;
}
.care-email-extra p {
  max-width: 86ch;
}
.care-comparison {
  margin-top: 34px;
}
.care-comparison-heading {
  max-width: 820px;
}
.care-comparison-email-note {
  margin: 10px 2px 0;
  color: rgba(255,255,255,.58);
  font-size: 11.5px;
  line-height: 1.5;
}
.care-definition {
  margin-top: 18px;
}
.care-definition p {
  max-width: 100ch;
}
@media (max-width: 850px) {
  .care-contact-note {
    margin-bottom: 24px;
  }
}
@media (max-width: 620px) {
  .care-contact-note {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 11px 12px;
  }
  .care-contact-note strong {
    display: inline;
  }
  .care-email {
    margin-bottom: 26px;
  }
  .care-definition {
    margin-top: 14px;
  }
}

/* 2026-08-08: Einheitliche Modulbreite unterhalb Hosting */
.selfservice-section .selfservice-card,
.process-wrap {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Die Außenkanten folgen dem gemeinsamen 1180px-Seitencontainer.
   Textbreiten innerhalb der Module bleiben bewusst begrenzt. */
.selfservice-section .container,
.process-wrap {
  max-width: var(--container);
}

/* 2026-08-08: Ablaufbereich wieder wie normaler Seitencontainer zentrieren */
.process-wrap {
  width: min(calc(100% - 40px), var(--container));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 620px) {
  .process-wrap {
    width: min(calc(100% - 28px), var(--container));
  }
}
