:root {
  --ink: #30243b;
  --muted: #6e5b78;
  --paper: #fff9fc;
  --pink: #df4f95;
  --pink-dark: #b52e74;
  --lilac: #8e5bd1;
  --purple: #55306f;
  --pale-pink: #f9dbea;
  --pale-lilac: #e8dcfa;
  --cream: #fff3f8;
  --white: #fff;
  --shadow: 0 20px 55px rgba(80, 42, 104, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 16%, rgba(234, 152, 204, .25) 0 72px, transparent 74px),
    radial-gradient(circle at 90% 42%, rgba(155, 118, 217, .18) 0 105px, transparent 108px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.25rem, 9vw, 5.8rem); }
h2 { font-size: clamp(2rem, 7vw, 4.25rem); }
h3 { font-size: 1.35rem; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 100;
  padding: .8rem 1rem;
  border-radius: 10px;
  background: #fff;
}
.skip-link:focus { top: 12px; }

.bubble {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .55;
  pointer-events: none;
}
.bubble-one { width: 180px; height: 180px; background: #f3b7d5; left: -95px; top: 55%; }
.bubble-two { width: 105px; height: 105px; background: #c9b4ef; right: -35px; top: 72%; }
.bubble-three { width: 56px; height: 56px; background: #f4a5cc; right: 7%; top: 22%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: rgba(255, 249, 252, .9);
  border-bottom: 1px solid rgba(85, 48, 111, .09);
  backdrop-filter: blur(16px);
}
.brand {
  width: max-content;
  color: var(--purple);
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
}
.brand span { color: var(--pink-dark); }
nav { display: none; }
.header-call {
  padding: .65rem .8rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  box-shadow: 0 10px 24px rgba(181, 46, 116, .25);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: url("images/teen-telefonsex-3-2.png") center 20% / cover no-repeat;
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 20, 53, .05) 22%, rgba(40, 20, 53, .33) 52%, rgba(40, 20, 53, .9) 100%);
}
.hero-content {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 9rem 1.1rem 2.2rem;
}
.hero h1 { max-width: 1050px; margin-bottom: 1rem; text-shadow: 0 4px 28px rgba(34, 16, 48, .5); }
.hero-copy { max-width: 650px; font-size: 1.05rem; }
.eyebrow {
  margin-bottom: .75rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--pink-dark); }

.call-button {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  padding: .85rem 1.15rem 1rem;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  box-shadow: 0 15px 35px rgba(181, 46, 116, .32);
  text-decoration: none;
}
.call-button small { margin-bottom: .15rem; font-weight: 750; }
.call-button strong { font-size: clamp(1.15rem, 5.2vw, 1.8rem); line-height: 1.1; white-space: nowrap; }
.call-button.light { color: var(--purple); background: #fff; box-shadow: none; }

.section { position: relative; padding: 4.5rem 1.1rem; }
.narrow, .content-grid, .section-head, .faq-list, .step-grid, .feature-strip, .country-grid, .footer-top, #global-tariff {
  width: min(100%, 1120px);
  margin-inline: auto;
}
.narrow { max-width: 850px; }
.lead { font-size: clamp(1.05rem, 2.8vw, 1.25rem); }
.prose p:last-child, .lead:last-child { margin-bottom: 0; }
.alt-section { background: rgba(232, 220, 250, .55); }

.cta-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2.6rem 1.1rem;
  color: #fff;
  background: linear-gradient(130deg, var(--purple), var(--lilac) 58%, var(--pink));
}
.cta-band > * { width: min(100%, 1120px); margin-inline: auto; }
.cta-band h2 { margin: 0; font-size: clamp(1.8rem, 6.5vw, 3.8rem); }
.cta-band p { margin-bottom: .45rem; font-weight: 800; }

.image-section { width: 100%; overflow: hidden; background: var(--pale-lilac); }
.image-section img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
}

.subpage-hero {
  position: relative;
  min-height: 68svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--purple);
}
.subpage-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.subpage-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,27,45,.08) 20%, rgba(36,27,45,.9) 100%); }
.subpage-hero-content { position: relative; z-index: 1; width: min(100%, 1120px); margin-inline: auto; padding: 8rem 1.1rem 2.5rem; }
.subpage-hero h1 { max-width: 950px; margin-bottom: .8rem; }
.subpage-hero p:not(.eyebrow) { max-width: 690px; font-size: 1.05rem; }
.breadcrumb { width: min(100%, 1120px); margin: 0 auto; padding: 1rem 1.1rem 0; color: var(--muted); font-size: .83rem; }
.breadcrumb a { color: var(--pink-dark); font-weight: 800; }
.article-body { width: min(100%, 820px); margin-inline: auto; font-size: 1.04rem; }
.article-body h2 { margin-top: 3.2rem; font-size: clamp(1.8rem, 6vw, 3rem); }
.article-body h3 { margin-top: 2rem; }
.article-body a { color: var(--pink-dark); font-weight: 800; text-underline-offset: 3px; }
.article-body ul { padding-left: 1.25rem; }
.article-body li + li { margin-top: .55rem; }
.mini-cta { margin: 3rem 0; padding: 1.5rem; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--purple), var(--lilac), var(--pink)); }
.mini-cta h2 { margin: 0 0 1rem; font-size: clamp(1.65rem, 5vw, 2.5rem); }
.related { background: rgba(249, 219, 234, .36); }
.related-grid { width: min(100%, 1120px); margin-inline: auto; display: grid; gap: 1rem; }
.related-card {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid rgba(85,48,111,.12);
  border-radius: 20px;
  color: #fff;
  background: var(--purple);
  box-shadow: 0 12px 30px rgba(80,42,104,.08);
  text-decoration: none;
}
.related-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(36,27,45,.92) 100%); }
.related-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.related-card strong, .related-card small { position: relative; z-index: 1; }
.related-card strong { display: block; font-size: 1.2rem; line-height: 1.15; }
.related-card small { display: block; margin-top: .35rem; color: rgba(255,255,255,.88); }

.content-grid { display: grid; gap: 1.7rem; }
.content-grid h2 { margin-bottom: 0; }
.prose { font-size: 1.04rem; }

.feature-strip {
  display: grid;
  gap: 1rem;
  padding: 0 1.1rem 4.5rem;
}
.feature-strip article, .step-grid article {
  padding: 1.5rem;
  border: 1px solid rgba(85, 48, 111, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}
.feature-strip span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-weight: 900;
}

.region-section { background: linear-gradient(135deg, var(--pale-pink), var(--cream) 60%, var(--pale-lilac)); }
.lead a, .prose a { color: var(--pink-dark); font-weight: 800; text-underline-offset: 3px; }
.section-head { margin-bottom: 2rem; }
.step-grid { display: grid; gap: 1rem; }
.step-grid b {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
}
.center-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 2rem; }
.center-actions > a {
  width: min(100%, 330px);
  min-height: 84px;
  justify-content: center;
}
.cam-button {
  display: inline-flex;
  align-items: center;
  padding: .75rem 1rem;
  border: 1px solid rgba(85, 48, 111, .2);
  border-radius: 14px;
  color: var(--purple);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.faq { background: rgba(249, 219, 234, .36); }
.topics { background: #fff; }
.topic-grid { width: min(100%, 1120px); margin-inline: auto; display: grid; gap: 1rem; }
.topic-card {
  position: relative;
  min-height: 330px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  background: var(--purple);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.topic-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(36, 27, 45, .92) 100%); }
.topic-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.topic-card > span { position: absolute; z-index: 1; left: 1.25rem; right: 1.25rem; bottom: 1.2rem; display: flex; flex-direction: column; }
.topic-card strong { font-size: 1.45rem; line-height: 1.1; }
.topic-card small { margin-top: .35rem; opacity: .88; }
.faq-list { display: grid; gap: .8rem; }
details {
  border: 1px solid rgba(85, 48, 111, .12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(80, 42, 104, .08);
}
summary { padding: 1.1rem 1.2rem; cursor: pointer; font-weight: 850; }
details p { padding: 0 1.2rem 1.2rem; margin: 0; color: var(--muted); }

.country-section { padding: 4.5rem 1.1rem; color: #fff; background: var(--ink); }
.light-head .eyebrow { color: #f2a8ce; }
.country-grid { display: grid; gap: 1rem; }
.country-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  text-decoration: none;
}
.country-card > span {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--pink);
  font-weight: 900;
}
.country-card div { display: flex; min-width: 0; flex-direction: column; }
.country-card small { opacity: .75; }
.country-card strong { font-size: clamp(1rem, 4.7vw, 1.35rem); white-space: nowrap; }
.country-card em { font-size: .82rem; font-style: normal; opacity: .75; }
.primary-country { background: linear-gradient(135deg, rgba(223, 79, 149, .35), rgba(142, 91, 209, .28)); }

.site-footer { padding: 2.2rem 1.1rem; color: #dcd1e2; background: #241b2d; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand { color: #fff; }
.footer-top > a:last-child { font-weight: 700; }
#global-tariff { padding-top: 1.25rem; font-size: .82rem; }
.tarifangabe { color: #fff; font-weight: 850; }
.rechtshinweis { margin-bottom: 0; }
.legal-link { margin-left: .35rem; color: #fff; font-size: .72em; font-weight: 750; white-space: nowrap; text-underline-offset: 2px; }

a:focus-visible, summary:focus-visible { outline: 3px solid #ffb9dc; outline-offset: 4px; }
@media (hover: hover) {
  .call-button, .header-call, .cam-button, .country-card, .related-card { transition: transform .2s ease, box-shadow .2s ease; }
  .call-button:hover, .header-call:hover, .cam-button:hover, .country-card:hover, .related-card:hover { transform: translateY(-3px); }
}

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

@media (min-width: 700px) {
  .site-header { grid-template-columns: auto 1fr auto; padding-inline: 2rem; }
  nav { display: flex; justify-content: center; gap: 1.4rem; }
  nav a { color: var(--muted); font-size: .9rem; font-weight: 750; text-decoration: none; }
  .header-call { padding: .8rem 1.1rem; font-size: .9rem; }
  .hero-content { padding: 12rem 2.5rem 4rem; }
  .section { padding: 7rem 2rem; }
  .cta-band { grid-template-columns: minmax(0, 1fr) auto; padding: 4rem max(2rem, calc((100% - 1120px) / 2)); }
  .cta-band > * { width: auto; margin: 0; }
  .content-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
  .feature-strip, .step-grid { grid-template-columns: repeat(3, 1fr); }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { padding: 0 2rem 7rem; }
  .center-actions { flex-direction: row; justify-content: center; }
  .country-section { padding: 7rem 2rem; }
  .subpage-hero-content { padding: 12rem 2rem 4rem; }
  .breadcrumb { padding-inline: 2rem; }
}

@media (min-width: 1100px) {
  .country-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { min-height: 88vh; background-position: center 18%; }
  .image-section img { width: min(100%, 1380px); margin-inline: auto; }
  .image-right img { object-position: center 56%; }
}

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