/* ============================================================
   Klub Zepter — Main Stylesheet
   Aesthetic: Luxury Refined / Art Deco inspired
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8d49a;
  --gold-dark:   #9a7a30;
  --black:       #0f0f0f;
  --dark:        #1a1a1a;
  --mid:         #3d3d3d;
  --muted:       #8a8a8a;
  --cream:       #f7f4ee;
  --cream-dark:  #ece8de;
  --white:       #ffffff;
  --border:      rgba(201,168,76,0.25);
  --border-dark: rgba(201,168,76,0.5);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --radius:  2px;
  --shadow:  0 4px 32px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
.display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.5);
  padding: 8px 20px;
  transition: all var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero__label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--dark {
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--dark:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}
.btn--full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 200px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-dark);
}
.divider__diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Section ──────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--cream {
  background: var(--cream);
}
.section--white {
  background: var(--white);
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.section--dark .section__title { color: var(--white); }
.section__sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}
.section--dark .section__sub { color: rgba(255,255,255,0.5); }

/* ── Benefits grid ────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.benefit-card {
  background: var(--dark);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.benefit-card:hover { background: #222; }
.benefit-card:hover::before { opacity: 1; }
.benefit-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--gold);
}
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.benefit-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ── How it works ─────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  opacity: 0.4;
}
.step {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.step__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Form section ─────────────────────────────────────────── */
.form-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  padding: 56px;
  position: relative;
}
.form-wrapper::before, .form-wrapper::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
}
.form-wrapper::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.form-wrapper::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-weight: 500;
}
.form__input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form__input::placeholder { color: rgba(255,255,255,0.2); }
.form__input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.form__input.error { border-color: #e05a5a; }
.form__error {
  font-size: 0.75rem;
  color: #e05a5a;
  margin-top: 6px;
  display: none;
}
.form__error.visible { display: block; }

/* Consents */
.consents { margin: 32px 0; }
.consents__title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.consent {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.consent__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  border-radius: 1px;
  cursor: pointer;
  margin-top: 2px;
  position: relative;
  transition: all var(--transition);
}
.consent__checkbox:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.consent__checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid var(--black);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.consent__checkbox.error { border-color: #e05a5a; }
.consent__text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.consent__text a { color: var(--gold-light); }
.consent__text a:hover { color: var(--gold); }
.consent--required .consent__text::after {
  content: ' *';
  color: var(--gold);
}

.consent-note {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.consent-note p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.form__submit-row {
  margin-top: 32px;
}
.form__required-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
  text-align: center;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { max-width: 720px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  transition: color var(--transition);
}
.faq__question:hover { color: var(--gold-dark); }
.faq__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
}
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer p {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer__logo {
  text-align: center;
}
.footer__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  list-style: none;
}
.footer__links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  max-width: 640px;
  line-height: 1.6;
}
.cookie-banner p a { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── Confirmation / Thanks / Error pages ─────────────────── */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 48px 24px;
}
.status-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
  position: relative;
}
.status-card::before, .status-card::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
}
.status-card::before { top: -16px; left: -16px; border-width: 2px 0 0 2px; }
.status-card::after  { bottom: -16px; right: -16px; border-width: 0 2px 2px 0; }
.status-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 1px solid var(--gold);
}
.status-icon svg { width: 32px; height: 32px; color: var(--gold); }
.status-card h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.status-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ── Legal pages ──────────────────────────────────────────── */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 8px;
}
.legal-page .updated {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}
.legal-page p { margin-bottom: 16px; font-size: 0.9rem; color: var(--mid); line-height: 1.8; }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }
.legal-page li { font-size: 0.9rem; color: var(--mid); line-height: 1.8; margin-bottom: 4px; }
.legal-page table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.legal-page th { background: var(--cream-dark); padding: 10px 16px; font-size: 0.8rem; text-align: left; font-weight: 500; }
.legal-page td { padding: 10px 16px; font-size: 0.85rem; color: var(--mid); border-bottom: 1px solid var(--cream-dark); }

/* ── Admin panel ──────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #f5f5f3;
}
.admin-sidebar {
  background: var(--dark);
  padding: 32px 0;
  position: fixed;
  top: 0; left: 0;
  width: 240px;
  height: 100vh;
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0;
}
.admin-sidebar__logo {
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.admin-sidebar__logo-sub { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.admin-sidebar__logo-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); }
.admin-nav { padding: 24px 0; list-style: none; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active { color: var(--white); background: rgba(255,255,255,0.05); }
.admin-nav a.active { border-left: 2px solid var(--gold); }
.admin-main {
  margin-left: 240px;
  padding: 40px;
  flex: 1;
  min-width: 0;
  width: calc(100% - 240px);
  box-sizing: border-box;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-header h1 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--dark); }
.admin-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: visible;
  margin-bottom: 24px;
  width: 100%;
}
.admin-card__header {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0ec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-card__title { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.admin-table { width: 100%; border-collapse: collapse; table-layout: auto; }
.admin-table th { padding: 12px 16px; text-align: left; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid #f0f0ec; font-weight: 500; background: #fafaf8; }
.admin-table td { padding: 14px 16px; font-size: 0.85rem; color: var(--dark); border-bottom: 1px solid #f5f5f3; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafaf8; }
.badge-status {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.badge-pending   { background: #FFF3CD; color: #856404; }
.badge-confirmed { background: #D1ECF1; color: #0C5460; }
.badge-active    { background: #D4EDDA; color: #155724; }
.badge-resigned  { background: #F8D7DA; color: #721C24; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--white);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border-top: 2px solid var(--gold);
}
.stat-card__value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--dark); line-height: 1; }
.stat-card__label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* reCAPTCHA badge */
.grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9999 !important;
}


/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero__content { padding: 100px 24px 80px; }
  .form__row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 32px 24px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 24px 16px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}