:root {
  --ink: #f3fbfb;
  --forest: #0c2a2f;
  --teal: #2bd8d0;
  --cyan: #75f4ff;
  --coral: #d65a45;
  --amber: #d9a441;
  --paper: #061216;
  --mist: #0a1d23;
  --white: #ffffff;
  --surface: rgba(14, 37, 43, 0.84);
  --muted: #a9c2c2;
  --line: rgba(43, 216, 208, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(43, 216, 208, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 34%, rgba(217, 164, 65, 0.08), transparent 24rem),
    linear-gradient(135deg, #061216 0%, #081a20 54%, #0d252b 100%);
  line-height: 1.62;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(6, 18, 22, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.brand strong,
.brand small { display: block; line-height: 1.18; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 0.8rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover { color: var(--teal); }

.nav-cta {
  padding: 10px 14px;
  background: var(--coral);
  color: #ffffff !important;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #061216;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.02);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 18, 22, 0.96), rgba(6, 18, 22, 0.76) 52%, rgba(6, 18, 22, 0.2)),
    linear-gradient(0deg, rgba(6, 18, 22, 0.88), rgba(6, 18, 22, 0.1) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 44px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 930px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.lead {
  max-width: 790px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button.primary { background: var(--coral); color: #ffffff; }
.button.primary:hover, .nav-cta:hover { background: #a73e30; }
.button.secondary {
  border-color: rgba(117, 244, 255, 0.52);
  color: var(--white);
  background: rgba(15, 41, 48, 0.36);
}
.button.secondary:hover { background: rgba(255, 255, 255, 0.11); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin: 56px 0 0;
  background: rgba(117, 244, 255, 0.24);
  border: 1px solid rgba(117, 244, 255, 0.22);
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 18px;
  background: rgba(10, 29, 35, 0.82);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  margin-bottom: 5px;
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd { margin: 0; color: rgba(255, 255, 255, 0.9); }

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0;
}

.intro-grid,
.two-column,
.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.intro-grid > *,
.two-column > *,
.service-overview > * { min-width: 0; }

.text-block p,
.two-column p,
.faq-section p,
.visual-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.duty-band {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(6, 18, 22, 0.94), rgba(6, 18, 22, 0.72)),
    url("assets/datenschutz-beratung.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.duty-band > h2 { max-width: 790px; }

.duty-grid,
.pricing-grid,
.check-list {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.duty-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }

.duty-grid article,
.pricing-grid article,
.check-list article {
  background: var(--surface);
  backdrop-filter: blur(14px);
  min-width: 0;
}

.duty-grid article {
  min-height: 310px;
  padding: 26px;
}

.duty-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
}

.duty-grid p,
.pricing-grid p,
.pricing-grid li,
.check-list p { color: var(--muted); overflow-wrap: anywhere; }

.service-grid {
  display: grid;
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.72;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6, 18, 22, 0.94), rgba(6, 18, 22, 0.68));
}

.visual-card > div {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 28px;
}

.visual-card.consult::before { background-image: url("assets/datenschutz-beratung.png"); }
.visual-card.officer::before { background-image: url("assets/datenschutzbeauftragter.png"); }
.visual-card.department::before { background-image: url("assets/datenschutzabteilung.png"); }

.check-list article {
  min-height: 170px;
  padding: 24px;
}

.pricing-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(6, 18, 22, 0.93), rgba(6, 18, 22, 0.76)),
    url("assets/datenschutzabteilung.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-section > h2 { max-width: 790px; }
.pricing-grid article { min-height: 410px; padding: 28px; }
.pricing-grid .highlight { border-top: 6px solid var(--teal); }

.price {
  margin-bottom: 18px;
  color: var(--teal) !important;
  font-size: 1.55rem !important;
  font-weight: 800;
}

.pricing-grid ul { margin: 22px 0 0; padding-left: 19px; }
li + li { margin-top: 7px; }

.faq-section { border-top: 1px solid var(--line); }

details {
  background: var(--surface);
  border: 1px solid var(--line);
  margin-top: 12px;
  padding: 0;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

details p { margin: 0; padding: 0 20px 20px; }

.cta-band {
  width: 100%;
  padding: clamp(48px, 7vw, 84px) max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(90deg, rgba(6, 18, 22, 0.94), rgba(6, 18, 22, 0.64)),
    url("assets/datenschutz-hero.png") center / cover no-repeat;
  border-top: 1px solid var(--line);
  color: var(--white);
}

.cta-band h2,
.cta-band p { max-width: 760px; }
.cta-band p { color: rgba(255, 255, 255, 0.8); font-size: 1.08rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 58px);
  background: #030b0e;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong { display: block; margin-bottom: 8px; color: var(--white); }
.site-footer p { margin-bottom: 0; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 3px; }
  .hero-facts,
  .intro-grid,
  .two-column,
  .service-overview,
  .site-footer { grid-template-columns: 1fr; }
  .duty-grid,
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .site-header { gap: 10px; padding: 12px 18px; }
  .brand { min-width: 0; width: 100%; gap: 10px; }
  .brand-mark { width: 40px; height: 40px; flex: 0 0 40px; }
  .brand strong { font-size: 0.98rem; }
  .brand small { font-size: 0.75rem; }
  .brand span:last-child { min-width: 0; max-width: calc(100vw - 86px); }
  .brand strong,
  .brand small { overflow-wrap: anywhere; }
  .nav { flex-wrap: wrap; gap: 10px 14px; font-size: 0.84rem; overflow-x: visible; }
  .nav-cta { padding: 9px 12px; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 84px; }
  h1 { font-size: clamp(2rem, 11vw, 3rem); overflow-wrap: anywhere; }
  .lead { overflow-wrap: anywhere; }
  .hero-facts,
  .duty-grid,
  .check-list,
  .pricing-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
}
