/* ============================================================
   VERIGUARD — Sicherheitstechnik Berlin
   Brand: Deep Navy #0E2A47 · Gold #C9A24B · Off-White #F4F1EA
   ============================================================ */

:root {
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.4rem);
  --text-3xl: clamp(2.5rem, 1.4rem + 3.6vw, 4.2rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand colors */
  --navy: #0e2a47;
  --navy-700: #163a5e;
  --navy-900: #0a2038;
  --gold: #c9a24b;
  --gold-soft: #d8b86c;
  --gold-deep: #b08a36;
  --offwhite: #f4f1ea;

  /* Semantic roles (light, single theme — serious brand identity) */
  --color-bg: #f4f1ea;
  --color-surface: #faf8f3;
  --color-surface-2: #ffffff;
  --color-surface-offset: #ece8df;
  --color-border: #ddd6c8;
  --color-divider: #e4dfd3;

  --color-text: #0e2a47;
  --color-text-muted: #4d5b6c;
  --color-text-faint: #8a93a0;
  --color-text-inverse: #f4f1ea;

  --color-primary: #0e2a47;
  --color-primary-hover: #163a5e;

  --color-gold: #c9a24b;
  --color-gold-hover: #b08a36;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px rgba(14, 42, 71, 0.07);
  --shadow-md: 0 6px 20px rgba(14, 42, 71, 0.1);
  --shadow-lg: 0 18px 48px rgba(14, 42, 71, 0.16);
  --shadow-gold: 0 8px 24px rgba(201, 162, 75, 0.32);

  --content-wide: 1200px;
  --content-default: 980px;
  --content-narrow: 680px;

  --font-display: 'Sora', 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
  margin-top: var(--space-4);
  color: var(--navy);
}

.section-lede {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  min-height: 48px;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 162, 75, 0.42);
}
.btn-navy {
  background: var(--navy);
  color: var(--offwhite);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--color-surface);
}
.btn-outline-gold {
  background: transparent;
  color: var(--offwhite);
  border: 1.5px solid rgba(201, 162, 75, 0.55);
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.12);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow var(--transition-interactive),
    border-color var(--transition-interactive),
    background var(--transition-interactive);
}
.header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 4.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.brand__icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--radius-sm);
  flex: none;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.brand__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold-deep);
  margin-top: 0.25rem;
}
@media (max-width: 460px) {
  .brand__tag {
    display: none;
  }
}
.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-block: 0.25rem;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition-interactive);
}
.header__nav a:hover {
  color: var(--navy);
}
.header__nav a:hover::after {
  width: 100%;
}
.header__cta {
  display: none;
}
@media (min-width: 880px) {
  .header__nav,
  .header__cta {
    display: inline-flex;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(201, 162, 75, 0.12), transparent 55%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy) 55%, var(--navy-700) 100%);
  color: var(--offwhite);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* subtle shield-pattern texture */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='110' viewBox='0 0 90 110'%3E%3Cpath d='M15 10h60v55L45 100 15 65z' fill='none' stroke='%23C9A24B' stroke-opacity='0.05' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 130px 160px;
  opacity: 0.6;
  z-index: -1;
}
.hero__inner {
  display: grid;
  gap: var(--space-12);
  align-items: center;
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
}
.hero__logo {
  width: clamp(180px, 30vw, 280px);
  margin-bottom: var(--space-8);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  letter-spacing: -0.03em;
  color: var(--offwhite);
}
.hero h1 .accent {
  color: var(--gold);
}
.hero__sub {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  color: rgba(244, 241, 234, 0.82);
  max-width: 48ch;
}
.hero__actions {
  margin-top: var(--space-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero__trust {
  margin-top: var(--space-12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(244, 241, 234, 0.12);
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(244, 241, 234, 0.78);
}
.hero__trust svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
}

/* Compact Hero Variante (ohne Logo-Dopplung) */
.hero--compact .hero__inner {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display, inherit);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.hero__content {
  max-width: 64ch;
}

/* WhatsApp-CTA */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1DA851;
  border-color: #1DA851;
  color: #fff;
}
.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  margin-right: var(--space-2);
  vertical-align: -3px;
}

/* Marken-Brandbar (Karten-Variante) */
.brandbar {
  background: #FAF8F3;
  border-block: 1px solid rgba(26, 34, 56, 0.08);
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}
.brandbar__eyebrow {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-700, #2A3954);
  opacity: 0.65;
  margin-bottom: var(--space-6);
}
.brandbar__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .brandbar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-2);
  }
}
.brandcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: #fff;
  border: 1px solid rgba(26, 34, 56, 0.08);
  border-radius: 12px;
  padding: var(--space-6) var(--space-4);
  box-shadow: 0 1px 2px rgba(26, 34, 56, 0.04), 0 4px 12px rgba(26, 34, 56, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
}
.brandcard:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 34, 56, 0.16);
  box-shadow: 0 2px 4px rgba(26, 34, 56, 0.06), 0 8px 24px rgba(26, 34, 56, 0.06);
}
.brandcard__name {
  font-family: var(--font-display, inherit);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--navy, #1A2238);
  line-height: 1.1;
}
.brandcard__type {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-700, #2A3954);
  opacity: 0.7;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services__grid {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 720px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive),
    border-color var(--transition-interactive);
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 75, 0.5);
}
.card:hover::before {
  transform: scaleX(1);
}
.card__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold-deep);
  margin-bottom: var(--space-6);
}
.card__icon svg {
  width: 28px;
  height: 28px;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--navy);
}
.card p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}
.card__tags {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border: 1px solid var(--color-divider);
}

/* ============================================================
   WARUM (trust)
   ============================================================ */
.why {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}
.why__grid {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8) var(--space-10);
}
@media (min-width: 560px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.trust__num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
}
.trust__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(201, 162, 75, 0.45);
  color: var(--navy);
}
.trust__icon svg {
  width: 26px;
  height: 26px;
}
.trust h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--navy);
}
.trust p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ============================================================
   NOTDIENST BANNER
   ============================================================ */
.emergency {
  background:
    radial-gradient(110% 140% at 100% 0%, rgba(201, 162, 75, 0.16), transparent 50%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.emergency::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.18), transparent 70%);
  pointer-events: none;
}
.emergency__inner {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 860px) {
  .emergency__inner {
    grid-template-columns: 1.4fr auto;
    gap: var(--space-12);
  }
}
.emergency__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(201, 162, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 75, 0);
  }
}
.emergency h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  margin-top: var(--space-4);
  color: var(--offwhite);
}
.emergency p {
  margin-top: var(--space-4);
  color: rgba(244, 241, 234, 0.82);
  font-size: var(--text-lg);
  max-width: 52ch;
}
.emergency__call {
  text-align: center;
}
.emergency__call .btn {
  font-size: var(--text-lg);
  padding: 1.1rem 2rem;
  min-height: 60px;
}
.emergency__phone {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(244, 241, 234, 0.7);
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact__grid {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 860px) {
  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-20);
  }
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  list-style: none;
}
.contact__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact__item .ci {
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold-deep);
}
.contact__item .ci svg {
  width: 22px;
  height: 22px;
}
.contact__item dt {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.contact__item dd {
  margin-top: 0.15rem;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
}
.contact__item dd a {
  color: inherit;
  text-decoration: none;
}
.contact__item dd a:hover {
  color: var(--gold-deep);
}
.contact__area {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.contact__area strong {
  color: var(--navy);
}

/* Form */
.form {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-sm);
}
.form__row {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 520px) {
  .form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}
.field input,
.field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--navy);
  font-size: var(--text-base);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-text-faint);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form .btn {
  width: 100%;
}
.form__note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: none;
}
.form__success {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(201, 162, 75, 0.14);
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--navy);
  font-size: var(--text-sm);
  font-weight: 500;
}
.form__success.is-visible {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: rgba(244, 241, 234, 0.7);
  padding-block: var(--space-16) var(--space-8);
}
.footer__top {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}
@media (min-width: 760px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--space-12);
  }
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: var(--space-5);
}
.footer__logo img {
  height: 2.3rem;
  width: 2.3rem;
  border-radius: 6px;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--offwhite);
}
.footer__brand p {
  font-size: var(--text-sm);
  max-width: 36ch;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: var(--space-5);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
}
.footer__links a {
  color: rgba(244, 241, 234, 0.72);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer__links a:hover {
  color: var(--gold);
}
.footer__bottom {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(244, 241, 234, 0.5);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===================== PREISE ===================== */
.preise {
  background: var(--color-surface);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.price-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(14, 42, 71, 0.35);
  border-color: var(--gold);
}

.price-card__label {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.price-card__value {
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(2rem, 1.4rem + 1.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.price-card__note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card--accent {
  background: linear-gradient(135deg, #fdf6e4 0%, #f9ecc8 100%);
  border-color: var(--gold);
}

.price-card--accent .price-card__value {
  color: var(--gold-deep);
}

.price-extra {
  margin-top: var(--space-12);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: var(--space-6) var(--space-8);
}

.price-extra h3 {
  font-family: "Sora", system-ui, sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--space-4) 0;
}

.price-extra ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-extra li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-base);
}

.price-extra li:last-child {
  border-bottom: none;
}

.price-extra li > span:first-child {
  color: var(--color-text);
}

.price-extra li > span:last-child {
  color: var(--gold-deep);
  font-weight: 600;
  font-family: "Sora", system-ui, sans-serif;
  white-space: nowrap;
}

.price-promise {
  margin-top: var(--space-8);
  background: #faf7ef;
  color: #2b3744;
  border: 1px solid rgba(14, 42, 71, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: var(--space-6) var(--space-7);
  position: relative;
  overflow: hidden;
}

.price-promise h3 {
  font-family: "Sora", system-ui, sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0 0 var(--space-3) 0;
  color: #0E2A47;
}

.price-promise p {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.65;
  color: #44505f;
}

.price-promise strong {
  color: #0E2A47;
}

.price-promise a {
  color: #8a6a1f;
  text-decoration: underline;
  font-weight: 600;
}

.price-promise a:hover {
  color: #0E2A47;
}

.price-footnote {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
}

.price-footnote a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-footnote a:hover {
  color: var(--navy);
}

@media (max-width: 640px) {
  .price-extra {
    padding: var(--space-5);
  }
  .price-extra li {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }
  .price-promise {
    padding: var(--space-6);
  }
}

/* Notdienst-CTA innerhalb Preise-Sektion */
.price-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-8);
  background: linear-gradient(135deg, #0e2a47 0%, #163a5e 100%);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.price-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 162, 75, 0.15), transparent 50%);
  pointer-events: none;
}

.price-cta .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn-large {
  font-size: var(--text-lg);
  padding: 1rem 1.6rem;
}

.price-cta__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: #e8e4d8;
  flex: 1;
  min-width: 240px;
  position: relative;
  z-index: 1;
}

.price-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.price-cta__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.price-cta__text {
  font-size: var(--text-base);
  line-height: 1.55;
  color: #e8e4d8;
}

@media (max-width: 640px) {
  .price-cta {
    padding: var(--space-5);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .price-cta__info {
    align-items: center;
    text-align: center;
  }
  .btn-large {
    justify-content: center;
    font-size: var(--text-base);
  }
}

/* ===================== CHOICE / WEICHE ===================== */
.choice { padding-top: var(--space-7); padding-bottom: var(--space-7); }
.choice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-5);
}
.choice__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(14, 42, 71, 0.12);
  box-shadow: 0 8px 28px rgba(14, 42, 71, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 340px;
}
.choice__card:hover,
.choice__card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(14, 42, 71, 0.15);
  border-color: rgba(14, 42, 71, 0.28);
}
.choice__card--alarm { border-top: 4px solid #0E2A47; }
.choice__card--notdienst { border-top: 4px solid #C8A24B; }
.choice__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(14, 42, 71, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: #0E2A47;
}
.choice__card--notdienst .choice__icon {
  background: rgba(200, 162, 75, 0.15);
  color: #8a6a1f;
}
.choice__icon svg { width: 28px; height: 28px; }
.choice__eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  font-weight: 600;
}
.choice__card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #0E2A47;
  margin: 0;
}
.choice__card p {
  color: #44505f;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}
.choice__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #2b3744;
  font-size: 0.95rem;
}
.choice__bullets li::before {
  content: "✓";
  color: #C8A24B;
  font-weight: 700;
  margin-right: 0.5rem;
}
.choice__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  background: #0E2A47;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .2s ease;
}
.choice__card:hover .choice__cta { background: #0a2038; }
.choice__cta--gold { background: #C8A24B; color: #0E2A47; }
.choice__card:hover .choice__cta--gold { background: #b58f3a; }
.choice__cta svg { width: 18px; height: 18px; }
.choice__hint {
  margin-top: var(--space-5);
  text-align: center;
  color: #44505f;
  font-size: 0.95rem;
}
.choice__hint a { color: #0E2A47; text-decoration: underline; }

@media (max-width: 760px) {
  .choice__grid { grid-template-columns: 1fr; }
  .choice__card { min-height: auto; }
}

/* ===================== ZENTRIERTE AUSRICHTUNG (Marketing-Look) ===================== */

/* Hero zentriert */
.hero__content {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero__sub {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  justify-content: center;
}
.hero__trust {
  justify-content: center;
}

/* Section-Headlines zentriert */
.section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-lede {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section .eyebrow {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

/* Eyebrow-Strich auch bei zentriert noch sichtbar */
.section .eyebrow {
  display: flex;
  align-items: center;
  width: max-content;
}

/* Brandbar zentrieren */
.brandbar__eyebrow {
  text-align: center;
}
.brandbar__grid {
  justify-content: center;
}

/* Choice-Karten: Inhalt linksbündig lassen (lesefreundlich), aber Block zentriert */
/* (kein Override nötig) */

/* Kontakt Section-Title bleibt zentriert; Karten-Listen bleiben links */

/* Footnotes / Hinweise zentrieren */
.price-footnote {
  text-align: center;
}
