:root {
  --primary: #0d2818;
  --accent: #1a4a2e;
  --highlight: #c5a028;
  --light: #f4f6f2;
  --gray: #6c757d;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-section: #f4f6f2;
  --text: #333333;
  --card-bg: #ffffff;
  --card-shadow: rgba(0,0,0,0.06);
  --transition: 0.3s ease;
}

[data-theme="dark"] {
  --bg: #0b1d12;
  --bg-section: #0f2318;
  --text: #ddeedd;
  --card-bg: #1c3d28;
  --card-shadow: rgba(0,0,0,0.4);
  --gray: #8aaa8a;
  --light: #0f2318;
  --white: #0b1d12;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* ── Navigation ── */
body > nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

body > nav.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--highlight); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 60%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(233,69,96,0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-content h1 span {
  color: var(--highlight);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--highlight);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(197,160,40,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197,160,40,0.5);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ── */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
[data-theme="dark"] .section-title { color: var(--text); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}

/* ── Services ── */
#leistungen {
  background: var(--bg-section);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--highlight), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
/* In dark mode: hellerer Icon-Hintergrund für Kontrast */
[data-theme="dark"] .service-icon {
  background: linear-gradient(135deg, #2a6040, #3a8055);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
[data-theme="dark"] .service-card h3 { color: var(--text); }

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Quote ── */
#quote {
  background: linear-gradient(135deg, #0d2818, #1a4a2e);
  padding: 5rem 2rem;
  text-align: center;
}
/* In dark mode: hellen Rand + etwas hellerer Hintergrund damit Quote-Sektion sichtbar abgrenzt */
[data-theme="dark"] #quote {
  background: linear-gradient(135deg, #163320, #245c38);
  border-top: 1px solid rgba(197,160,40,0.2);
  border-bottom: 1px solid rgba(197,160,40,0.2);
}

.quote-text {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  color: #ffffff;
  font-style: italic;
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.quote-text strong {
  font-style: normal;
  font-weight: 700;
  color: var(--highlight);
}

.quote-author {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* ── About ── */
#ueber-mich {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1rem;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
[data-theme="dark"] .about-image-wrap img {
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border: 1px solid rgba(197,160,40,0.2);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--highlight);
  border-radius: 20px;
  z-index: -1;
}

.about-text .section-title {
  margin-top: 0.5rem;
}

.about-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-number span {
  color: var(--highlight);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ── Clients ── */
#kunden {
  background: var(--light);
  text-align: center;
}

.clients-intro {
  margin-bottom: 3rem;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.client-badge {
  background: var(--white);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.client-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ── Contact ── */
#kontakt {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--highlight);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-detail-icon { background: var(--bg-section); }
[data-theme="dark"] .contact-detail-icon { background: var(--bg-section); }

.contact-detail-text a,
.contact-detail-text strong {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-detail-text a:hover { color: var(--highlight); }
[data-theme="dark"] .contact-detail-text a,
[data-theme="dark"] .contact-detail-text strong { color: var(--text); }

.contact-info h3 { color: var(--primary); }
[data-theme="dark"] .contact-info h3 { color: var(--text); }

.contact-form {
  background: var(--bg-section);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--bg);
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  border-color: rgba(197,160,40,0.25);
  background: #142a1c;
  color: var(--text);
}
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
  color: rgba(221,238,221,0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--highlight);
  box-shadow: 0 0 0 4px rgba(197,160,40,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--primary);
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: #28a745;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1rem;
}

/* ── Footer ── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 2rem;
  text-align: center;
}

footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

footer img {
  height: 36px;
  opacity: 0.8;
}

footer .footer-links {
  display: flex;
  gap: 2rem;
}

footer .footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

footer .footer-links a:hover { color: var(--highlight); }

footer .footer-copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ── Sub-pages ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: #ffffff;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #444;
  line-height: 1.8;
}

.page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content a {
  color: var(--highlight);
}

[data-theme="dark"] .page-content {
  color: var(--text);
}

[data-theme="dark"] .page-content h2 {
  color: var(--highlight);
}

[data-theme="dark"] .page-content ul li {
  color: var(--text);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.3rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1001; }

  /* Sections */
  section { padding: 4rem 1.25rem; }

  /* Hero */
  #hero { padding: 5rem 1.25rem 3rem; }
  .hero-content .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .btn { width: 100%; max-width: 320px; text-align: center; }
  .btn-outline { margin-left: 0; }

  /* Section label */
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    word-break: break-word;
    hyphens: auto;
  }

  /* Service cards */
  .services-grid { gap: 1.25rem; }
  .service-card { padding: 2rem 1.5rem; }

  /* Quote */
  #quote { padding: 3.5rem 1.25rem; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-wrap {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  /* Decoratieve rand niet laten overflomen op mobile */
  .about-image-wrap::after { display: none; }
  .about-stats {
    gap: 1.5rem;
    justify-content: flex-start;
  }
  .stat-number { font-size: 1.8rem; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-form { padding: 1.5rem 1.25rem; }

  /* Footer */
  footer .footer-links { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }

  /* Sub-pages */
  .page-hero { padding: 6rem 1.25rem 3rem; }
  .page-content { padding: 2.5rem 1.25rem; }
}

@media (max-width: 400px) {
  .about-stats { flex-direction: column; gap: 1rem; }
  .stat { text-align: left; }
}

/* ── Dark Mode Toggle Button ── */
.dark-toggle {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.dark-toggle:hover {
  border-color: var(--highlight);
  background: rgba(197,160,40,0.15);
}
/* Im Dark Mode: goldener Akzent damit der Button auffällt */
[data-theme="dark"] .dark-toggle {
  border-color: rgba(197,160,40,0.6);
  background: rgba(197,160,40,0.1);
}
.dark-toggle svg { width: 18px; height: 18px; pointer-events: none; }
/* Show sun in dark mode, moon in light */
.dark-toggle .icon-moon { display: block; }
.dark-toggle .icon-sun  { display: none; }
[data-theme="dark"] .dark-toggle .icon-moon { display: none; }
[data-theme="dark"] .dark-toggle .icon-sun  { display: block; }

/* ── Pricing Section ── */
#preise {
  background: var(--bg-section);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px var(--card-shadow);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--card-shadow);
}

.pricing-card.featured {
  border-color: var(--highlight);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .pricing-name { color: var(--text); }

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

[data-theme="dark"] .pricing-features li {
  border-bottom-color: rgba(255,255,255,0.06);
}

.pricing-features li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--highlight);
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  margin-top: 2rem;
}

/* ── Referenzen Section ── */
#referenzen {
  background: var(--bg);
}

.referenzen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.referenz-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px var(--card-shadow);
  border-left: 4px solid var(--highlight);
  transition: transform var(--transition);
}

.referenz-card:hover { transform: translateY(-3px); }

.referenz-type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

.referenz-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

[data-theme="dark"] .referenz-card h3 { color: var(--text); }

.referenz-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.referenz-link {
  color: var(--highlight);
  text-decoration: none;
  font-weight: 500;
}
.referenz-link:hover { text-decoration: underline; }

.referenz-apps {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.referenz-apps li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--highlight);
}

.referenz-apps li strong {
  font-size: 0.9rem;
}

.referenz-apps li span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 2rem;
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

#cookie-banner.visible { display: flex; }

#cookie-banner p {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.6;
  min-width: 200px;
}

#cookie-banner a { color: var(--highlight); }

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition);
}

.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept { background: var(--highlight); color: var(--primary); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.3); }

@media (max-width: 768px) {
  /* Pricing */
  .pricing-grid { gap: 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  /* Referenzen */
  .referenzen-grid { gap: 1.25rem; }
  /* Cookie */
  #cookie-banner { padding: 1.25rem; }
  .cookie-buttons { width: 100%; justify-content: flex-end; }
  /* Dark Toggle */
  body > nav { gap: 0.5rem; }
}
