/* =====================================================================
   Allianz Züchterversicherung Alexander Gola — Golden Ticket Landingpage
   Eigenständiges Stylesheet · Design-Tokens (:root) + alle Sektions-Styles
   ===================================================================== */

:root {
  --black: #0a0a0b;
  --black-2: #141414;
  --panel: #1a1a1b;
  --gold: #e7c558;
  --gold-2: #d4af37;
  --gold-deep: #b3851f;
  --gold-grad: linear-gradient(150deg, #fbf0b4 0%, #e7c558 28%, #c9962f 70%, #a8761c 100%);
  --gold-line: linear-gradient(90deg, #b3851f, #f4e08a, #b3851f);
  --ink: #1c1607;
  --cream: #f6f3e9;
  --muted: #b3ad99;
  --muted-2: #8a856f;
  --radius: 18px;
  --font-display: "Archivo", system-ui, sans-serif;   /* Headlines */
  --font-body: "Manrope", system-ui, sans-serif;       /* Fließtext */
  --font-script: "Dancing Script", cursive;            /* Akzent-Schrift */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--black); color: var(--cream);
  font-family: var(--font-body); -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(120% 60% at 50% -10%, rgba(231,197,88,0.10) 0%, rgba(10,10,11,0) 55%);
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding-inline: clamp(18px, 4vw, 40px); }

h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: 0.01em; }
.gold-text {
  background: linear-gradient(120deg, #fbf0b4, #e7c558 45%, #c9962f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10,10,11,0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231,197,88,0.18);
}
.header__inner { display: flex; align-items: center; gap: 16px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: auto; max-width: 190px; max-height: 48px; object-fit: contain; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: var(--gold-grad);
  box-shadow: 0 0 0 1px rgba(231,197,88,0.5), 0 6px 18px rgba(231,197,88,0.18);
}
.brand__mark [data-lucide] { width: 22px; height: 22px; color: var(--ink); }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.04em; color: var(--cream); }
.brand__name small { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; color: var(--gold); }
.header__cta { margin-left: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.86rem; cursor: pointer; border: none;
  padding: 13px 24px; border-radius: 999px; color: var(--ink);
  background: var(--gold-grad); box-shadow: 0 8px 22px rgba(231,197,88,0.22);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:hover { filter: brightness(1.06); box-shadow: 0 10px 28px rgba(231,197,88,0.34); }
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 16px 30px; font-size: 0.95rem; }
.btn--ghost { background: transparent; color: var(--gold); border: 1.5px solid rgba(231,197,88,0.5); box-shadow: none; }
.btn--ghost:hover { background: rgba(231,197,88,0.08); filter: none; }
.btn--full { width: 100%; }

/* ---------- Ticket frame ---------- */
section { padding-block: clamp(40px, 6vw, 72px); }
.ticket {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(231,197,88,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(0,0,0,0.4);
}

/* ---------- Hero ticket ---------- */
.hero-ticket { display: grid; grid-template-columns: 300px 1fr; background: var(--black-2); }
.stub {
  position: relative; background: #0d0d0e; padding: 34px 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  border-right: 2px dashed rgba(231,197,88,0.4);
}
.stub__paw { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  background: #111; border: 2px solid var(--gold); box-shadow: 0 0 24px rgba(231,197,88,0.25); }
.stub__paw [data-lucide] { width: 38px; height: 38px; color: var(--gold); }
.stub__title { font-family: var(--font-display); font-weight: 900; line-height: 0.95; text-transform: uppercase; }
.stub__title span:first-child { display: block; font-size: 2.4rem; }
.stub__title span:last-child { display: block; font-size: 2.4rem; color: var(--cream); -webkit-text-fill-color: var(--cream); }
.stub__stars { display: flex; gap: 5px; color: var(--gold); }
.stub__stars [data-lucide] { width: 18px; height: 18px; fill: currentColor; }
.stub__note { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }

.hero-main { background: var(--gold-grad); color: var(--ink); padding: clamp(28px, 3.4vw, 44px); position: relative; }
.hero-main__head { display: flex; gap: 20px; align-items: flex-start; justify-content: space-between; }
.hero-main h1 { font-size: clamp(1.5rem, 1rem + 2.2vw, 2.45rem); font-weight: 900; text-transform: uppercase; line-height: 1.02; color: var(--ink); }
.hero-pet { width: clamp(90px, 12vw, 140px); aspect-ratio: 1/1; border-radius: 14px; flex-shrink: 0; box-shadow: 0 8px 20px rgba(0,0,0,0.3); overflow: hidden; object-fit: cover; }
.hero-pet--placeholder { display: grid; place-items: center; gap: 6px; background: rgba(28,22,7,0.14); border: 2px dashed rgba(28,22,7,0.4); color: #4a3c12; }
.hero-pet--placeholder [data-lucide] { width: 30px; height: 30px; }
.hero-pet--placeholder span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.ribbon {
  display: inline-block; margin-top: 16px; background: var(--ink); color: var(--gold);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: clamp(0.78rem, 0.6rem + 0.6vw, 1rem); padding: 9px 20px; border-radius: 6px;
}
.values { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(16px, 2vw, 30px); margin-top: 26px; }
.value { position: relative; }
.values .value + .value { padding-left: clamp(16px, 2vw, 30px); border-left: 1px solid rgba(28,22,7,0.28); }
.value__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; margin-bottom: 12px; }
.value__icon [data-lucide] { width: 22px; height: 22px; color: var(--gold); }
.value__big { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); line-height: 1; color: var(--ink); }
.value h3 { font-size: 0.96rem; font-weight: 900; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; line-height: 1.1; }
.value p { margin: 6px 0 0; font-size: 0.82rem; font-weight: 600; color: #4a3c12; line-height: 1.45; }
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.checklist li { display: flex; gap: 8px; align-items: flex-start; font-size: 0.84rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.checklist [data-lucide] { width: 16px; height: 16px; color: var(--ink); flex-shrink: 0; margin-top: 2px; }
.hero-foot { margin-top: 26px; background: var(--ink); border-radius: 8px; padding: 13px 18px; text-align: center;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold); font-size: clamp(0.8rem, 0.6rem + 0.7vw, 1.05rem); }

/* ---------- Benefits ticket ---------- */
.benefits-ticket { background: #0d0d0e; padding: clamp(30px, 4vw, 52px); }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); max-width: 940px; margin: 0 auto; }
.benefit { text-align: center; }
.benefit__icon { width: 84px; height: 84px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, #2a2412, #111); border: 1px solid rgba(231,197,88,0.45); box-shadow: 0 0 28px rgba(231,197,88,0.14); }
.benefit__icon [data-lucide] { width: 40px; height: 40px; color: var(--gold); }
.benefit h3 { font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.3rem); font-weight: 800; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; line-height: 1.15; }
.benefit p { margin: 0; font-size: clamp(0.92rem, 0.85rem + 0.3vw, 1.05rem); color: var(--muted); line-height: 1.5; }
.benefits-tagline { margin-top: clamp(30px, 4vw, 48px); text-align: center; border-top: 1px solid rgba(231,197,88,0.18); padding-top: 26px; }
.benefits-tagline .script { font-family: var(--font-script); font-size: clamp(1.6rem, 1rem + 2vw, 2.4rem); color: var(--gold); line-height: 1; }
.benefits-tagline .punch { display: block; margin-top: 6px; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; font-size: clamp(1rem, 0.7rem + 1vw, 1.4rem); color: var(--cream); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.contact-intro h2 { font-size: clamp(1.6rem, 1rem + 2.4vw, 2.6rem); font-weight: 900; text-transform: uppercase; line-height: 1.04; }
.contact-intro p.sub { color: var(--muted); font-size: 1.02rem; line-height: 1.6; margin: 16px 0 28px; max-width: 42ch; }
.contact-rows { display: flex; flex-direction: column; gap: 16px; }
.crow { display: flex; align-items: center; gap: 14px; }
.crow__icon { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  border: 1px solid rgba(231,197,88,0.45); background: #111; }
.crow__icon [data-lucide] { width: 21px; height: 21px; color: var(--gold); }
.crow__label { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 0.74rem; letter-spacing: 0.1em; color: var(--gold); }
.crow__val { font-size: 0.98rem; font-weight: 600; color: var(--cream); }
.closing { margin-top: 26px; font-family: var(--font-script); font-size: 1.5rem; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.closing [data-lucide] { width: 20px; height: 20px; fill: currentColor; }

.form-card { background: var(--panel); border: 1px solid rgba(231,197,88,0.3); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.form-card h3 { font-size: 1.3rem; font-weight: 800; text-transform: uppercase; color: var(--cream); margin-bottom: 4px; }
.form-card .hint { margin: 0 0 20px; font-size: 0.9rem; color: var(--muted); }
.form { display: flex; flex-direction: column; gap: 14px; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; letter-spacing: 0.02em; }
.field input, .field textarea {
  width: 100%; box-sizing: border-box; background: #0e0e0f; border: 1.5px solid rgba(231,197,88,0.25);
  border-radius: 10px; padding: 12px 14px; color: var(--cream); font-family: var(--font-body); font-size: 0.98rem;
  outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #6a6553; }
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(231,197,88,0.18); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.82rem; color: var(--muted); line-height: 1.45; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-success { text-align: center; padding: 24px 6px; }
.form-success .ok { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; background: var(--gold-grad); }
.form-success .ok [data-lucide] { width: 30px; height: 30px; color: var(--ink); }
.form-success h3 { color: var(--cream); margin-bottom: 8px; }
.form-success p { color: var(--muted); margin: 0; line-height: 1.6; }
.is-hidden { display: none !important; }

.legal-section { padding-block: clamp(34px, 5vw, 54px); border-top: 1px solid rgba(231,197,88,0.12); }
.legal-section h2 { color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.legal-copy { color: var(--muted); line-height: 1.7; max-width: 82ch; }
.legal-page { min-height: 65vh; padding-block: clamp(44px, 7vw, 86px); }
.legal-page h1 { font-size: clamp(2rem, 1.2rem + 3vw, 3.6rem); text-transform: uppercase; margin: 14px 0 26px; }
.legal-back { display: inline-flex; margin-bottom: 12px; color: var(--muted); font-weight: 700; }
.legal-back:hover { color: var(--gold); }
.legal-copy--page {
  max-width: 900px; padding: clamp(22px, 3vw, 34px);
  background: var(--panel); border: 1px solid rgba(231,197,88,0.24); border-radius: 8px;
}
.cookie-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 80;
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  max-width: 980px; margin: 0 auto; padding: 18px;
  background: rgba(20,20,20,0.96); border: 1px solid rgba(231,197,88,0.35);
  border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,.55);
}
.cookie-banner strong { color: var(--gold); font-family: var(--font-display); text-transform: uppercase; }
.cookie-banner p { margin: 6px 0 8px; color: var(--muted); line-height: 1.5; }
.cookie-banner label { color: var(--cream); font-size: .9rem; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.embed-body { margin: 0; padding: 0; background: transparent; background-image: none; }
.embed-card { border-radius: 8px; box-shadow: none; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid rgba(231,197,88,0.18); padding-block: 26px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--muted-2); }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__links a { color: var(--muted-2); }
.footer__links a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-ticket { grid-template-columns: 1fr; }
  .stub { border-right: none; border-bottom: 2px dashed rgba(231,197,88,0.4); flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .values { grid-template-columns: 1fr; }
  .values .value + .value { padding-left: 0; border-left: none; border-top: 1px solid rgba(28,22,7,0.28); padding-top: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .benefits { grid-template-columns: 1fr; }
  .hero-main__head { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } }
