/* ===================================================
   HerknerMedia AI – Modern Animated Stylesheet
   =================================================== */
:root {
  --dark:    #121826;
  --dark-2:  #1a2236;
  --dark-3:  #0d1420;
  --blue:    #2563EB;
  --blue-2:  #1d4ed8;
  --cyan:    #06B6D4;
  --green:   #16A34A;
  --light:   #F8FAFC;
  --muted:   #e2e8f0;
  --text:    #475569;
  --text-dk: #0f172a;
  --border:  #e2e8f0;
  --shadow:  0 4px 20px rgba(15,23,42,.07);
  --shadow-md: 0 8px 30px rgba(15,23,42,.12);
  --shadow-lg: 0 20px 60px rgba(15,23,42,.18);
  --radius:  16px;
  --radius-sm: 10px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text-dk);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 840px; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* ── Scroll-reveal animations ────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: none; }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center; line-height: 1.1;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(37,99,235,.5); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-small { padding: .5rem 1rem; font-size: .88rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(200%) blur(16px);
  -webkit-backdrop-filter: saturate(200%) blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(15,23,42,.1); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 800; color: var(--text-dk); font-size: 1.05rem;
}
.brand strong { color: var(--blue); }
.brand-light { color: #fff; }
.brand-light strong { color: var(--cyan); }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 900; color: #fff; font-size: .85rem;
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
  flex-shrink: 0;
}
.nav-list { list-style:none; padding:0; display:flex; align-items:center; gap:1.25rem; }
.nav-list a { color: var(--text-dk); font-weight: 500; font-size: .93rem; transition: color .2s; }
.nav-list a:hover { color: var(--blue); text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: 0;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 0; border-radius: 8px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--light); }
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--text-dk); border-radius: 2px; margin: 0 auto; transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--dark-3);
  overflow: hidden;
  padding: 5rem 0 4rem;
}

/* Animated gradient background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(37,99,235,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(6,182,212,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 90%, rgba(22,163,74,.1) 0%, transparent 50%),
    linear-gradient(180deg, #0d1420 0%, #121826 100%);
  animation: hue-shift 12s ease-in-out infinite alternate;
}
@keyframes hue-shift {
  0%   { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(15deg) brightness(1.05); }
}

/* Floating particles */
.hero-particles { position:absolute; inset:0; z-index:1; overflow:hidden; pointer-events:none; }
.particle {
  position:absolute;
  width: 2px; height: 2px;
  background: rgba(6,182,212,.6);
  border-radius: 50%;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .5; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* Grid lines overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(6,182,212,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.5) 0%, transparent 70%);
}

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.25);
  border-radius: 999px;
  font-size: .82rem; letter-spacing: .06em;
  color: var(--cyan); font-weight: 600; text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: pulse-border 3s ease-in-out infinite;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes pulse-border { 0%,100%{box-shadow:0 0 0 0 rgba(6,182,212,.2)} 50%{box-shadow:0 0 0 6px rgba(6,182,212,0)} }

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 20%, var(--cyan) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradient-shift 6s ease-in-out infinite alternate;
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hero h1 .accent { color: var(--cyan); -webkit-text-fill-color: var(--cyan); }

.subline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #cbd5e1; font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-text {
  color: #94a3b8; font-size: 1.05rem;
  max-width: 660px; margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-region {
  display: inline-block;
  padding: .55rem 1.1rem;
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .25);
  border-radius: 999px;
  color: #cbd5e1; font-size: .92rem;
  line-height: 1.4;
  margin: 0 auto 1.75rem;
  max-width: 100%;
}
.hero-region strong { color: #fff; font-weight: 600; white-space: nowrap; }
@media (max-width: 600px) {
  .hero-region { font-size: .82rem; padding: .5rem .9rem; }
}
.hero-cta {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex; gap: 2.5rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.stat {
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: .75rem 1.25rem;
  backdrop-filter: blur(6px);
}
.stat-num {
  display: block;
  font-size: 1.5rem; font-weight: 800;
  color: var(--cyan);
  line-height: 1.1;
}
.stat-label { font-size: .8rem; color: #64748b; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: #64748b; font-size: .78rem; letter-spacing: .06em;
  animation: bounce-down 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-hint svg { width: 20px; height: 20px; }
@keyframes bounce-down {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(6px)}
}

/* ── Section Styles ──────────────────────────────── */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--light); }
.section-dark {
  background: linear-gradient(160deg, var(--dark) 0%, #1c2541 100%);
  color: #fff;
}
.section-head { text-align: center; max-width: 740px; margin: 0 auto 3.5rem; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: .75rem; font-weight: 800;
  line-height: 1.15;
}
.section-head p { color: var(--text); font-size: 1.05rem; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: #cbd5e1; }
.tag-pill {
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 1rem;
}
.tag-blue  { background: rgba(37,99,235,.1);  color: var(--blue); }
.tag-cyan  { background: rgba(6,182,212,.12);  color: #0891b2; }
.tag-green { background: rgba(22,163,74,.12);  color: var(--green); }

/* ── Grid ────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

/* ── Target group cards ──────────────────────────── */
.target-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.target-card::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.target-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.target-card:hover::before { transform: scaleX(1); }
.card-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(6,182,212,.1));
  display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
  transition: var(--transition);
}
.target-card:hover .card-icon-wrap {
  background: linear-gradient(135deg, rgba(37,99,235,.2), rgba(6,182,212,.2));
  transform: scale(1.1) rotate(-5deg);
}
.target-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.target-card p { color: var(--text); margin-bottom: 1rem; }
.target-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.target-tag {
  font-size: .78rem; padding: .25rem .65rem;
  background: var(--light); border: 1px solid var(--border);
  border-radius: 999px; color: var(--text);
}

/* ── Category title ──────────────────────────────── */
.cat-header {
  display: flex; align-items: center; gap: 1rem;
  margin: 3.5rem 0 1.5rem;
}
.cat-header:first-of-type { margin-top: 0; }
.cat-line { flex: 1; height: 1px; background: var(--border); }
.cat-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1rem;
  border-radius: 999px; font-size: .88rem; font-weight: 700;
  white-space: nowrap;
}
.cat-pill.blue  { background: rgba(37,99,235,.08); color: var(--blue); border: 1px solid rgba(37,99,235,.2); }
.cat-pill.cyan  { background: rgba(6,182,212,.1);  color: #0891b2;    border: 1px solid rgba(6,182,212,.25); }
.cat-pill.green { background: rgba(22,163,74,.1);  color: var(--green);border: 1px solid rgba(22,163,74,.25); }

/* ── Price cards ─────────────────────────────────── */
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}
.price-card::after {
  content: '';
  position: absolute; bottom:0; left:0; right:0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.25); }
.price-card:hover::after { transform: scaleX(1); }
.price-card.highlight {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}
.price-card h4 { font-size: 1.15rem; margin-bottom: .5rem; font-weight: 700; }
.price { font-size: 1.45rem; font-weight: 800; color: var(--blue); margin-bottom: .75rem; }
.price span { font-size: .85rem; color: var(--text); font-weight: 500; }
.price-card > p { color: var(--text); margin-bottom: 1rem; flex-grow:1; font-size: .95rem; }
.price-card .btn { align-self: flex-start; margin-top: auto; }
.ribbon {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 999px; letter-spacing: .04em;
}

/* Example box inside price cards */
.example-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  margin-top: .75rem; margin-bottom: 1rem;
  font-size: .88rem;
  color: var(--text);
}
.example-box strong { display: block; color: var(--text-dk); margin-bottom: .3rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }

/* Service image */
.service-media {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--dark-2);
  position: relative;
}
.service-media img, .service-media video {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
  transition: transform .5s ease;
}
.service-media:hover img, .service-media:hover video { transform: scale(1.03); }
.media-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .75rem; font-weight: 600;
  padding: .3rem .7rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
/* EU AI Act Art. 50: sichtbare Kennzeichnung KI-generierter Medien */
.ai-badge {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .72rem; font-weight: 600;
  padding: .25rem .65rem; border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2; pointer-events: none;
}

/* ── Why section ─────────────────────────────────── */
.reasons-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); }
.reason-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reason-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.reason-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.reason-card p { font-size: .92rem; color: var(--text); margin: 0; }

/* ── Steps ───────────────────────────────────────── */
.steps-wrap { max-width: 760px; margin: 0 auto; }
.step-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  position: relative; padding-bottom: 2rem;
}
.step-item:last-child { padding-bottom: 0; }
.step-item::before {
  content: '';
  position: absolute; left: 27px; top: 54px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
  opacity: .2;
}
.step-item:last-child::before { display: none; }
.step-circle {
  flex-shrink: 0; width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
  position: relative; z-index: 1;
}
.step-content {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow); flex: 1;
  transition: var(--transition);
}
.step-content:hover { border-color: rgba(37,99,235,.3); box-shadow: var(--shadow-md); }
.step-content h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.step-content p { color: var(--text); margin: 0; font-size: .93rem; }

/* ── FAQ ─────────────────────────────────────────── */
.faq details {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.35rem;
  margin-bottom: .75rem; box-shadow: var(--shadow);
  transition: var(--transition);
}
.faq details:hover { border-color: rgba(37,99,235,.25); }
.faq details[open] { border-color: var(--blue); box-shadow: 0 0 0 1px rgba(37,99,235,.15), var(--shadow); }
.faq summary {
  cursor: pointer; font-weight: 600;
  list-style: none; position: relative; padding-right: 2rem;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--blue); font-weight: 300;
  transition: transform .25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { color: var(--text); margin: .85rem 0 0; font-size: .95rem; line-height: 1.7; }

/* ── Contact ─────────────────────────────────────── */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1.5fr 1fr; }
.contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 2rem; border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: block; margin-bottom: 1rem; font-weight: 600; font-size: .92rem; color: #cbd5e1; }
.contact-form input,
.contact-form textarea {
  width: 100%; margin-top: .4rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  font: inherit; font-weight: 400;
  color: #fff;
  background: rgba(255,255,255,.07);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,.2);
  background: rgba(255,255,255,.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #64748b; }
.form-hint { font-size: .83rem; color: #64748b; margin: .75rem 0 0; text-align: center; }
.contact-aside h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  font-size: 1rem;
}
.contact-item-text .label { font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: #94a3b8; font-weight: 600; }
.contact-item-text a { color: var(--cyan); font-weight: 500; }
.contact-item-text a:hover { color: #fff; }

/* ── Price note ─────────────────────────────────── */
.price-note {
  text-align: center; color: var(--text);
  font-size: .95rem; margin-top: 2.5rem;
  font-style: italic;
  padding: 1rem; background: var(--light);
  border-radius: var(--radius); border: 1px solid var(--border);
}

/* ── Footer ──────────────────────────────────────── */
.site-footer { background: #0b1020; color: #cbd5e1; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 2fr 1fr 1fr 1fr; margin-bottom: 2.5rem; }
.footer-brand p { margin: .75rem 0 1.25rem; color: #64748b; font-size: .93rem; line-height: 1.7; }
.footer-col h4 { color: #fff; margin-bottom: .9rem; font-size: .95rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { color: #64748b; font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; color: #64748b;
}
.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: var(--cyan); text-decoration: none; }

/* ── Cookie Banner ───────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13,20,32,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 1.5rem;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text p { color: #cbd5e1; font-size: .9rem; margin: 0; line-height: 1.6; }
.cookie-text a { color: var(--cyan); }
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── Imprint / Privacy pages ─────────────────────── */
.legal-page { padding: 4rem 0 5rem; }
.legal-page h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.2rem; margin: 2rem 0 .75rem; color: var(--text-dk); }
.legal-page h3 { font-size: 1rem; margin: 1.5rem 0 .5rem; font-weight: 600; }
.legal-page p, .legal-page li { color: var(--text); font-size: .97rem; line-height: 1.75; margin-bottom: .75rem; }
.legal-page ul { padding-left: 1.5rem; }
.legal-page a { color: var(--blue); }
.legal-box {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 2rem; margin-bottom: 2rem;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch;
    padding: 1rem 1.5rem; gap: .25rem;
    border-bottom: 1px solid var(--border);
    display: none; box-shadow: var(--shadow-md);
  }
  .nav-list.open { display: flex; }
  .nav-list a { padding: .7rem 0; display: block; border-bottom: 1px solid var(--border); }
  .nav-list li:last-child a { border: none; }
  .nav-list .btn { text-align: center; margin-top: .25rem; }

  .hero { min-height: 80vh; padding: 3.5rem 0 3rem; }
  .hero-stats { gap: 1rem; }
  .stat { padding: .6rem 1rem; }
  .section { padding: 3.5rem 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .cat-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .cat-line { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
