:root {
  --bg: #edf2f8;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-soft: #e9f0f8;
  --text: #102033;
  --muted: #53657b;
  --line: rgba(10, 27, 48, 0.08);
  --primary: #0d3868;
  --primary-strong: #07192f;
  --accent: #1481d6;
  --accent-soft: rgba(20, 129, 214, 0.12);
  --success: #1ea672;
  --success-strong: #12835a;
  --success-soft: rgba(30, 166, 114, 0.14);
  --glow: rgba(26, 147, 240, 0.2);
  --shadow: 0 24px 60px rgba(8, 24, 43, 0.13);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(13, 56, 104, 0.2), transparent 26%),
    radial-gradient(circle at 85% 6%, rgba(20, 129, 214, 0.16), transparent 22%),
    linear-gradient(180deg, #f6f9fd 0%, #eaf0f7 100%);
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 129, 214, 0.14) 0%, rgba(20, 129, 214, 0) 68%);
}

.site-shell::after {
  width: 680px;
  height: 260px;
  top: 120px;
  right: -180px;
  border-radius: 50%;
  transform: rotate(-16deg);
  border: 1px solid rgba(20, 129, 214, 0.14);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 32px 0;
  background: linear-gradient(135deg, rgba(7, 25, 47, 0.08), rgba(20, 129, 214, 0.08));
  z-index: -1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading-left {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #0f1f32;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  max-width: 12ch;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 16ch;
  font-weight: 800;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.nav {
  width: min(calc(100% - 32px), var(--container));
  margin: 18px auto 0;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(7, 25, 47, 0.88), rgba(13, 56, 104, 0.78));
  border: 1px solid rgba(117, 169, 214, 0.16);
  border-radius: 999px;
  color: #f8fbff;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(7, 18, 34, 0.28);
  position: sticky;
  top: 14px;
  z-index: 30;
  overflow: hidden;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-copy span {
  font-size: 0.9rem;
  color: rgba(248, 251, 255, 0.72);
}

.logo {
  width: auto;
  height: 56px;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(26, 147, 240, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 14px;
  text-decoration: none;
  color: rgba(248, 251, 255, 0.78);
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #0b2f57 0%, #1481d6 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(13, 56, 104, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 40px rgba(17, 58, 103, 0.26);
}

.btn-secondary {
  background: linear-gradient(135deg, #0d3868 0%, #1a93f0 100%);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(20, 129, 214, 0.24);
}

.btn-soft {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(14, 28, 46, 0.08);
}

.btn-soft:hover,
.btn-soft:focus-visible {
  border-color: rgba(17, 58, 103, 0.18);
  box-shadow: 0 18px 34px rgba(14, 28, 46, 0.12);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--success) 0%, #2bc486 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(30, 166, 114, 0.22);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  box-shadow: 0 22px 40px rgba(18, 131, 90, 0.26);
}

.btn-whatsapp::before {
  content: "•";
  display: inline-block;
  margin-right: 10px;
  font-size: 1.3rem;
  line-height: 1;
}

.hero {
  padding-top: 54px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 520px;
  height: 220px;
  border-radius: 50%;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, rgba(7, 25, 47, 0.06), rgba(20, 129, 214, 0.14), rgba(20, 129, 214, 0));
  filter: blur(8px);
  pointer-events: none;
}

.hero-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.contact-card,
.about-copy,
.about-visual {
  min-width: 0;
}

.hero-text {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1.1rem;
  color: #4f6075;
}

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

.hero-points,
.issue-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 12px;
}

.hero-points li,
.issue-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 1rem;
}

.hero-points li::before,
.issue-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 0.54rem;
  background: linear-gradient(135deg, #0d3868, #1a93f0);
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.hero-card,
.problem-card,
.service-card,
.step-card,
.contact-card,
.accordion,
.about-visual img {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.problem-card::before,
.service-card::before,
.step-card::before,
.contact-card::before,
.topic-card::before,
.content-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(20, 129, 214, 0), rgba(20, 129, 214, 0.55), rgba(20, 129, 214, 0));
}

.hero-card {
  padding: 28px;
}

.hero-media-frame,
.about-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
}

.hero-media-frame::before,
.about-media-frame::before,
.hero-media-frame::after,
.about-media-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-media-frame::before,
.about-media-frame::before {
  inset: -10px;
  border-radius: calc(var(--radius-lg) + 10px);
  border: 1px solid rgba(20, 129, 214, 0.18);
}

.hero-media-frame::after,
.about-media-frame::after {
  width: 68%;
  height: 28%;
  right: -10%;
  top: -4%;
  border-radius: 50%;
  transform: rotate(-13deg);
  background: linear-gradient(90deg, rgba(7, 25, 47, 0), rgba(20, 129, 214, 0.18), rgba(20, 129, 214, 0));
  filter: blur(6px);
}

.card-label,
.problem-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-img {
  min-height: 360px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(111, 169, 223, 0.2);
  background: linear-gradient(180deg, rgba(7, 25, 47, 0.18), rgba(20, 129, 214, 0.08));
}

.problem-grid,
.service-grid,
.steps-grid,
.trust-list,
.topic-grid {
  display: grid;
  gap: 22px;
}

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

.problem-card,
.service-card,
.step-card {
  padding: 28px;
}

.problem-card h3,
.service-card h3,
.step-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.problem-card p,
.service-card p,
.step-card p,
.trust-list p,
.contact-copy p,
.accordion-content p,
.footer-layout p {
  font-size: 0.99rem;
}

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

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

.topic-card,
.content-card {
  display: block;
  padding: 28px;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.topic-card h3,
.content-card h2 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.topic-card:hover,
.topic-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(8, 24, 43, 0.18);
}

.service-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 11px;
  border-radius: 18px;
  border: 1px solid rgba(101, 162, 216, 0.22);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, rgba(7, 25, 47, 0.14), rgba(20, 129, 214, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 10px 24px rgba(13, 56, 104, 0.12);
  filter: drop-shadow(0 8px 18px rgba(20, 129, 214, 0.12));
}

.about-copy > p:last-of-type {
  margin-top: 20px;
}

.subpage-hero {
  padding-top: 56px;
}

.subpage-layout,
.subpage-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.subpage-panel {
  display: grid;
  gap: 20px;
}

.content-card {
  display: grid;
  gap: 16px;
}

.content-card-accent {
  background: linear-gradient(180deg, rgba(7, 25, 47, 0.08), rgba(233, 243, 252, 0.92));
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #2492ed);
}

.trust-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.trust-list div {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(175, 204, 231, 0.38);
}

.trust-list strong,
.contact-direct a,
.accordion-content strong {
  color: var(--text);
}

.trust-list p {
  margin-top: 10px;
}

.about-visual img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border: 1px solid rgba(111, 169, 223, 0.2);
  box-shadow: var(--shadow);
}

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

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(7, 25, 47, 0.14), rgba(20, 129, 214, 0.22));
  color: var(--primary);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-copy h2 {
  max-width: 12ch;
}

.contact-copy p {
  margin-top: 18px;
}

.notice-card {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13, 56, 104, 0.12), rgba(20, 129, 214, 0.08));
  border: 1px solid rgba(20, 129, 214, 0.16);
  box-shadow: 0 16px 32px rgba(13, 56, 104, 0.1);
}

.notice-card strong {
  display: block;
  margin-bottom: 6px;
  color: #0d3868;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1rem;
}

.notice-card p {
  margin-top: 0;
  color: #486177;
}

.notice-card-active {
  background: linear-gradient(135deg, rgba(13, 56, 104, 0.18), rgba(20, 129, 214, 0.14));
  border-color: rgba(20, 129, 214, 0.3);
  box-shadow: 0 20px 36px rgba(13, 56, 104, 0.14);
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  align-items: start;
}

.contact-link {
  text-decoration: none;
  font-weight: 600;
  color: #213147;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--primary);
}

.contact-whatsapp {
  justify-self: start;
  margin-top: 6px;
}

.contact-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 252, 0.84));
}

.honeypot {
  position: absolute;
  left: -9999px;
}

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

label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

label span {
  font-size: 0.96rem;
}

.full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 251, 254, 0.98);
  color: var(--text);
  padding: 16px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(20, 129, 214, 0.34);
  box-shadow: 0 0 0 4px rgba(20, 129, 214, 0.1);
  background: #ffffff;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(17, 58, 103, 0.08);
  color: var(--primary-strong);
  font-weight: 700;
}

.form-helper {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #5d6f87;
}

.form-helper strong {
  color: #0d3868;
}

.legal-section {
  padding-top: 72px;
}

.legal-layout {
  display: grid;
  gap: 18px;
}

.accordion {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 247, 252, 0.84));
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.summary-icon-impressum {
  background: linear-gradient(135deg, rgba(17, 58, 103, 0.15), rgba(17, 58, 103, 0.26));
  color: var(--primary);
}

.summary-icon-datenschutz {
  background: linear-gradient(135deg, rgba(30, 166, 114, 0.16), rgba(30, 166, 114, 0.26));
  color: var(--success-strong);
}

.summary-icon-agb {
  background: linear-gradient(135deg, rgba(20, 129, 214, 0.16), rgba(20, 129, 214, 0.28));
  color: #0d3868;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
}

.accordion[open] summary::after {
  content: "-";
}

.accordion-content {
  padding: 0 28px 28px;
  display: grid;
  gap: 14px;
}

.accordion-content a {
  color: var(--primary);
}

.footer {
  padding: 32px 0 48px;
}

.footer-layout {
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #07192f 0%, #0d3868 72%, #1166ad 100%);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 60px rgba(7, 18, 34, 0.24);
}

.footer-layout p {
  color: inherit;
  max-width: 72ch;
}

.cookie {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 420px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10, 20, 34, 0.92);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  z-index: 50;
}

.cookie p {
  color: inherit;
  font-size: 0.94rem;
}

.cookie button {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-weight: 800;
  background: #ffffff;
  color: var(--primary-strong);
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero-layout,
  .about-layout,
  .contact-layout,
  .problem-grid,
  .service-grid,
  .steps-grid,
  .trust-list,
  .topic-grid,
  .subpage-layout,
  .subpage-content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-img,
  .about-visual img {
    min-height: 320px;
  }

  .section,
  .legal-section {
    padding: 72px 0;
  }
}

@media (max-width: 820px) {
  .nav {
    border-radius: 28px;
    padding: 18px;
    position: static;
  }

  .nav,
  .nav-links,
  .footer-layout,
  .cookie,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links a,
  .btn {
    width: 100%;
  }

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

  .full-width {
    grid-column: auto;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .legal-section {
    padding: 60px 0;
  }
}
