/* Fonts */
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Built Titling';
  src: url('assets/fonts/Built-Titling.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --fg: #ffffff;
  --accent: #E7FF4C;
  --card-bg: #141414;
  --border: #333;
  --muted: #a3a3a3;
  /* Alias für inline-Styles in test.php */
  --muted-foreground: var(--muted);
  /* Auswertungsseite */
  --primary: var(--accent);
  --primary-foreground: #000;
  --card: var(--card-bg);
  --foreground: var(--fg);
  --radius: 0.5rem;
  --color-kritisch: #ff4c4c;
  --color-fuersorglich: #4cff67;
  --color-frei: #4cedff;
  --color-rebellisch: #d54cff;
  --color-brav: #8e4cff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Built Titling', 'Inter', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color:#fff;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

ol, ul {
  padding-left: 0rem !important;
}

/* Hero Image */
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 1;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 3rem;
}
.subtitle {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.header h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
}
.accent { color: var(--accent); }

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card p {
  font-size: 1.125rem;
  color: var(--muted);
}
.card strong { color: var(--fg); }

.card-accent {
  background: rgba(231, 255, 76, 0.1);
  border-color: rgba(231, 255, 76, 0.3);
}
.accent-text {
  color: var(--accent) !important;
  font-weight: 500;
}
.muted { color: var(--muted); margin-top: 0.5rem; }

/* Text Center Section */
.text-center { text-align: center; margin: 2rem 0; }
.tagline {
  font-family: 'Built Titling', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.glow-text {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(231, 255, 76, 0.5);
}

/* Features */
.features-section { margin: 3rem 0; }
.section-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(231, 255, 76, 0.5); }
.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 255, 76, 0.1);
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: 'Built Titling', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 0.25rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Privacy */
.privacy-section {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin: 2rem 0;
}

/* CTA Section */
.cta-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 3rem;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Auswertung: CTA ohne Kasten (nur Button) */
.auswertung-success-wrapper .cta-section {
  background: none;
  border: none;
  padding: 0;
}
.mb-5 { margin-bottom: 3rem; }

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  text-align: left;
}
.checkbox-wrapper input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--accent);
  margin-top: 0.125rem;
  cursor: pointer;
}
.checkbox-wrapper label {
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: 'Built Titling', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(231, 255, 76, 0.5);
  transition: all 0.3s;
}
.btn-hero:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(231, 255, 76, 0.8);
}
.btn-hero:active,
a.btn-hero:active {
  background: var(--accent);
  color: #000;
}
.btn-hero:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-hero .arrow {
  transition: transform 0.3s;
}
.btn-hero:hover:not(:disabled) .arrow {
  transform: translateX(4px);
}

.time-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Footer */
.footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.footer a {
  color: var(--muted);
  transition: color 0.3s;
}
.footer a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Test Page (scoped) */
.test-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.test-main .logo {
  width: 100%;
  max-width: 100px;
  margin-bottom: 3rem;
  color: var(--accent);
}
.test-main .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.test-main #test-container {
  width: 100%;
  max-width: 42rem;
  margin-bottom: 3rem;
}

.test-main .question-counter {
  font-family: 'Built Titling', 'Inter', sans-serif;
  color: var(--accent);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}

.test-main .progress-container {
  width: 100%;
  max-width: 42rem;
  margin-bottom: 3rem;
}

.test-main .progress-bar {
  width: 100%;
  height: 4px;
  background-color: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.test-main .progress-fill {
  height: 100%;
  background-color: var(--accent);
  transition: width 0.3s ease;
  width: 0%;
}

.test-main .question-container {
  width: 100%;
  max-width: 42rem;
  text-align: center;
  margin-bottom: 4rem;
}

.test-main .question-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  min-height:200px;
}

@media (min-width: 768px) {
  .test-main .question-text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .test-main .question-text {
    font-size: 1.875rem;
  }
}

.test-main .buttons-container {
  width: 100%;
  max-width: 42rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.test-main .answer-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--fg);
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease, transform 0.08s ease;
  font-family: 'Inter', sans-serif;
}

.test-main .answer-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Nur kurz beim Klicken "dunkler werden", danach sofort wieder normal */
.test-main .answer-btn:active {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(1px);
}

/* Verhindert "stehende" Fokus-/Akzent-Optik nach Klick */
.test-main .answer-btn:focus,
.test-main .answer-btn:focus-visible {
  outline: none;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.test-main .back-row {
  margin-top: 1.25rem;
  text-align: center;
}

.test-main .back-text-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}

.test-main .back-text-btn:hover {
  color: var(--fg);
}

.test-main .result-container {
  display: none;
  text-align: center;
}

.test-main .result-container.active {
  display: block;
}

.test-main .result-title {
  font-family: 'Built Titling', 'Inter', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.test-main .result-form {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  text-align: left;
}

.test-main .result-form-intro,
.test-main .result-form-title {
  font-size: 1.125rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.test-main .result-form-title {
  font-size: 1.25rem;
}
.test-main .result-form-erklaerung {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.test-main .result-form-row {
  margin-bottom: 1rem;
}

.test-main .result-form-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.test-main .result-form-field {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.test-main .result-form-field:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Select-Optionen beim Ausklappen lesbar (weiß auf weiß vermeiden) */
.test-main select.result-form-field option {
  background: #fff;
  color: #1a1a1a;
}

.test-main .result-form-field-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.test-main .result-form-hinweis {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 1.25rem 0 1.5rem;
  line-height: 1.5;
}

.test-main .result-form-submit {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.test-main .token-display {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-family: monospace;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  word-break: break-all;
}

/* Auswertung: Lade-Anzeige, Content erst nach „Speichern“ */
.auswertung-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 2rem;
}
.auswertung-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: auswertung-spin 0.9s linear infinite;
}
.auswertung-loading-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.auswertung-content-wrapper {
  display: none;
}
.auswertung-content-wrapper.visible {
  display: block;
}
.auswertung-success-wrapper {
  /* Inhalt nach erfolgreichem Speichern (Token, Debug-Card, etc.) */
}
.debug-card-hidden {
  display: none !important;
}
.auswertung-failure-wrapper {
  /* Fehlermeldung, wenn DB-Insert fehlschlägt */
}
.auswertung-failure-wrapper .card p {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* Success-Wrapper: Token, PDF-Hinweis, Buchung */
.header .description {
  font-size: 1.25rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.token-section { margin-bottom: 5rem; }
.token-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.token-instruction {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1rem;
}
.token-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(231, 255, 76, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.token-box code {
  color: var(--accent);
  font-size: 0.875rem;
  word-break: break-all;
  display: block;
  text-align: center;
}
.token-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.token-pdf-hint {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--accent);
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pdf-hint { margin-bottom: 3rem; }
.pdf-hint-card {
  background: rgba(231, 255, 76, 0.1);
  border: 1px solid rgba(231, 255, 76, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
.pdf-hint-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.pdf-hint-header h3 {
  font-size: 1.125rem;
  color: var(--accent);
  text-transform: none;
}
.pdf-hint-card p { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  font-family: inherit;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }
.btn-outline.btn-sm {
  font-family: 'Built Titling', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* btn-hero wie Intro „Test starten“: Schrift, Hover (gilt auch für .btn.btn-hero in Auswertung) */
.btn-hero,
.btn.btn-hero {
  font-family: 'Built Titling', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 30px rgba(231, 255, 76, 0.5);
  transition: all 0.3s;
}
.btn-hero:hover,
.btn.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(231, 255, 76, 0.8);
}
.btn-hero:active,
.btn.btn-hero:active,
a.btn-hero:active,
a.btn.btn-hero:active {
  background: var(--accent);
  color: #000;
  border-color: transparent;
}
.btn-hero .arrow,
.btn-hero .icon.arrow,
.btn.btn-hero .arrow,
.btn.btn-hero .icon.arrow {
  transition: transform 0.3s;
}
.btn-hero:hover .arrow,
.btn-hero:hover .icon.arrow,
.btn.btn-hero:hover .arrow,
.btn.btn-hero:hover .icon.arrow {
  transform: translateX(4px);
}

.btn-sm,
.btn.btn-hero.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
}
.btn-sm .icon,
.btn.btn-hero.btn-sm .icon {
  width: 1rem;
  height: 1rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.booking-section { margin-bottom: 3rem; }
.booking-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
}
.booking-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
}
.booking-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
  position: relative;
}
.booking-card:hover { border-color: rgba(231, 255, 76, 0.5); }
.booking-card.featured { border: 2px solid var(--accent); }
.booking-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.booking-header { margin-bottom: 1rem; }
.booking-label {
  color: var(--accent);
  font-family: 'Built Titling', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.booking-header h3 { font-size: 1.5rem; margin-top: 0.25rem; }
.booking-header .price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.5rem;
}
.booking-header .price-note {
  font-size: 0.75rem;
  color: var(--muted);
}
.booking-description {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.feature-list .icon { color: var(--accent); width: 1rem; height: 1rem; }
.booking-card .btn { width: 100%; }
.prerequisite {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

@keyframes auswertung-spin {
  to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.8s ease-out forwards; }

/* Responsive */
@media (max-width: 640px) {
  .container { padding: 2rem 1rem; }
  .cta-section { padding: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ============= AUSWERTUNG PAGE (auswertung.php) ============= */
.auswertung-page .container {
  max-width: 64rem;
}

.auswertung-page .title {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .auswertung-page .title {
    font-size: 3.75rem;
  }
}

.text-primary { color: var(--primary); }
.text-bold { font-weight: 600; }
.text-large {
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

/* Einheitlicher Abstand unten wie bei section-was-jetzt (inkl. innerer Abstände) */
.auswertung-page .section,
.auswertung-page .section.section-was-jetzt {
  margin-bottom: 5rem;
}

.auswertung-page .section.section-urgency {
  margin-top: 3rem;
}

.section-urgency .urgency-section {
  text-align: center;
}

.section-urgency .section-headline {
  color: var(--accent);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.section-urgency .urgency-body,
.section-urgency .urgency-closer {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Bild vor „Was jetzt?“ in der Säule (nicht full-width) */
.section-hero-image {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.section-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.section-was-jetzt-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.was-jetzt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
/* Nur das Bild hat auf Mobile Abstand nach unten */
.was-jetzt-grid .section-hero-image {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .was-jetzt-grid .section-hero-image {
    margin-bottom: 1.5rem;
  }
}
.was-jetzt-grid .card {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .was-jetzt-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  /* Bild quadratisch, Card füllt Spaltenhöhe (mind. so hoch wie das Bild) */
  .was-jetzt-grid .section-hero-image {
    aspect-ratio: 1;
    height: auto;
  }
  .was-jetzt-grid .section-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .was-jetzt-grid .card {
    min-height: 100%;
  }
}
/* „Was jetzt?“-Card: Inhalte linksbündig */
.was-jetzt-grid .card {
  text-align: left;
  align-items: flex-start;
}
.was-jetzt-grid .card .text-large {
  margin-left: 0;
  margin-right: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card-two-col .card-two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
}
.card-two-col-col {
  width: 100%;
}
@media (min-width: 768px) {
  .card-two-col .card-two-col-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
}

.auswertung-page .section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .auswertung-page .section-title {
    font-size: 1.875rem;
  }
}
.section-title-small {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.auswertung-page .card {
  background-color: var(--card);
  border-radius: var(--radius);
}
.card-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-muted {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}
.card-plain {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
/* Entscheidungs-Card: ohne Padding, Inhalte bündig mit der Säule, Headline linksbündig */
.section-decision-card {
  padding: 0 !important;
  text-align: left;
  align-items: flex-start;
}
/* Section-Überschriften wie „Deine nächsten Optionen“ (Status Quo, Entscheidung treffen) */
.section-headline {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
}
.urgency-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  width: 100%;
  text-align: left;
  margin-top: 0.5rem;
  color: #fff;
}
.urgency-two-col p,
.urgency-two-col .text-large,
.urgency-two-col .text-bold {
  color: #fff !important;
}
/* Entscheidung treffen: Fließtext muted */
.section-decision-card .urgency-two-col,
.section-decision-card .urgency-two-col p,
.section-decision-card .urgency-two-col .text-large,
.section-decision-card .urgency-two-col .text-bold {
  color: var(--muted) !important;
}
@media (max-width: 640px) {
  .urgency-two-col {
    grid-template-columns: 1fr;
  }
}

.urgency-section .urgency-body,
.urgency-section .urgency-closer {
  color: #fff;
}
.urgency-section .urgency-body {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}
.urgency-section .urgency-closer {
  font-weight: 500;
}

.section-essentials-callout.urgency-essentials {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  text-align: left;
}
.urgency-essentials p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
}
.card-title-uppercase {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.card-title-small {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Category Cards (Auswertung) */
.category-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.category-card[data-category="kritisch"]::before { background-color: var(--color-kritisch); }
.category-card[data-category="fuersorglich"]::before { background-color: var(--color-fuersorglich); }
.category-card[data-category="frei"]::before { background-color: var(--color-frei); }
.category-card[data-category="rebellisch"]::before { background-color: var(--color-rebellisch); }
.category-card[data-category="brav"]::before { background-color: var(--color-brav); }
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.category-label {
  font-family: 'Built Titling', sans-serif;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  line-height: 2;
}
.category-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  vertical-align: middle;
}
.card-title-white,
.auswertung-page .card-title.card-title-white {
  color: #fff;
}
.auswertung-page .card-title.card-title-white .category-icon {
  margin-right: 0.25rem;
}
.category-score {
  font-family: 'Built Titling', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.category-bar {
  height: 8px;
  background-color: var(--muted);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.category-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}
.category-card[data-category="kritisch"] .category-bar-fill { background-color: var(--color-kritisch); }
.category-card[data-category="fuersorglich"] .category-bar-fill { background-color: var(--color-fuersorglich); }
.category-card[data-category="frei"] .category-bar-fill { background-color: var(--color-frei); }
.category-card[data-category="rebellisch"] .category-bar-fill { background-color: var(--color-rebellisch); }
.category-card[data-category="brav"] .category-bar-fill { background-color: var(--color-brav); }
.category-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.category-scenario {
  font-size: 0.875rem;
  font-style: italic;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
}
.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.keyword {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(231, 255, 76, 0.1);
  color: var(--primary);
  border-radius: 9999px;
}

/* Charts (Auswertung) */
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #ffffff;
}
.legend-item span {
  color: inherit;
}
.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.gauge-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gauge-value {
  font-family: 'Built Titling', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: -2rem;
}
.gauge-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Callout (Auswertung) */
.callout-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}
.callout-primary .callout-title,
.callout-primary p {
  color: #000;
}
.callout-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .callout-title {
    font-size: 1.5rem;
  }
}

/* Booking auf Auswertung: wie auswertung-intro (kein Hüpf-Effekt, linksbündig) */
.auswertung-page .booking-section .booking-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .auswertung-page .booking-section .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Keine Sonder-Styles für .auswertung-page .booking-card – nutzt dieselben wie auswertung-intro (border 1px, hover nur Border-Farbe, text-align links über .booking-header etc.) */

/* Token Display (Auswertung) */
.auswertung-page .token-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
@media (min-width: 640px) {
  .auswertung-page .token-display {
    flex-direction: row;
    justify-content: center;
  }
}
.auswertung-page .token-display code {
  font-family: monospace;
  font-size: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--muted);
  border-radius: 0.5rem;
  word-break: break-all;
  max-width: 100%;
}
.btn-copy {
  padding: 0.5rem 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.btn-copy:hover {
  opacity: 0.9;
}

/* Footer (Auswertung) */
.auswertung-page .footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}
.footer-link {
  display: block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-link:hover {
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer-legal a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: var(--foreground);
}

/* Token-Load-Wrapper (Auswertung) */
.token-load-wrapper {
  border: 1px solid var(--border);
}
.token-load-summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.token-load-summary::-webkit-details-marker {
  display: none;
}
.token-load-chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.token-load-chevron-down {
  display: inline-block;
}
.token-load-chevron-up {
  display: none;
}
.token-load-wrapper[open] .token-load-chevron-down {
  display: none;
}
.token-load-wrapper[open] .token-load-chevron-up {
  display: inline-block;
}
.token-input {
  display: block;
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}
.token-input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Failure-Wrapper (Auswertung) */
.auswertung-failure-wrapper {
  border-color: var(--muted);
}
.auswertung-failure-wrapper a {
  color: var(--accent);
}

@media print {
  .auswertung-page .hero-image,
  .auswertung-page .footer,
  .btn-copy,
  .btn-book {
    display: none;
  }
  body.auswertung-page {
    background: white;
    color: black;
  }
  .auswertung-page .card,
  .category-card,
  .callout-primary {
    border: 1px solid #ccc;
    background: white;
  }
  .callout-primary {
    background: #f0f0f0;
    color: black;
  }
}

/* PDF-Export (html2pdf): Steuerklasse am body, nach Export wieder entfernen */

/* Overlay während PDF-Erzeugung: 100vw/100vh, wie Auswertung-Intro, nicht in PDF (wird vor Capture entfernt) */
.pdf-export-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0a !important;
  padding: 2rem;
  box-sizing: border-box;
}
.pdf-export-overlay-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border, rgba(255,255,255,0.2));
  border-top-color: var(--accent, #E7FF4C);
  border-radius: 50%;
  animation: auswertung-spin 0.9s linear infinite;
  flex-shrink: 0;
}
.pdf-export-overlay-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.pdf-export-overlay.pdf-export-overlay-done .pdf-export-overlay-spinner {
  display: none;
}
.pdf-export-overlay.pdf-export-overlay-out {
  opacity: 0;
  transition: opacity 0.35s ease-out;
  pointer-events: none;
}

#pdf-export-root {
  display: contents;
}
/* Beim Export: Wrapper sichtbar machen und dunklen Hintergrund für PDF setzen */
body.pdf-export-active #pdf-export-root {
  display: block !important;
  background-color: #0a0a0a !important;
}
.pdf-export-active .token-load-wrapper {
  display: none !important;
}
/* Kopieren- und PDF-Download-Button im Export ausblenden */
.pdf-export-active #copyBtn,
.pdf-export-active #pdfDownloadBtn,
.pdf-export-active .token-actions,
.pdf-export-active .token-pdf-hint {
  display: none !important;
}
/* Seite 1: Hero + Header sehr kompakt (v. a. Mobile), damit „Dein Modus Operandi“ mit auf Seite 1 kann */
.pdf-export-active .hero-image {
  height: 198px;
  min-height: 198px;
  aspect-ratio: unset;
}
.pdf-export-active .hero-image img {
  height: 198px;
  width: 100%;
  object-fit: cover;
}
.pdf-export-active .header {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  page-break-after: avoid;
  break-after: avoid;
}
.pdf-export-active .header .title {
  font-size: 1.5rem !important;
}
.pdf-export-active .header .subtitle {
  font-size: 0.75rem !important;
}
/* Section-Titel nie allein lassen (z. B. „Die 5 Ich-Zustände“ mit Cards auf einer Seite) */
.pdf-export-active .section-title {
  page-break-after: avoid;
  break-after: avoid;
}
/* Seitenumbrüche vor jeder Section (nicht vor „Dein Modus Operandi“) */
.pdf-export-active section.pdf-break-before {
  break-before: page;
  page-break-before: always;
}
/* „Was jetzt?“ + „Die Entscheidung“ ohne Umbruch davor → mit „Erwachsenen-Ich“ auf eine Seite */
.pdf-export-active .booking-section {
  break-before: page;
  page-break-before: always;
  padding-top: 1.5rem !important;
  margin-top: 0 !important;
}
/* Booking: Headline nicht allein lassen, Cards nicht durchschneiden; wenig Abstand zum Seitenanfang */
.pdf-export-active .booking-section h2 {
  page-break-after: avoid;
  break-after: avoid;
  margin-top: 0.5rem !important;
}
body.pdf-export-active.pdf-export-android .booking-section h2 {
  margin-top: 0.25rem !important;
}
body.pdf-export-active.pdf-export-android .booking-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.pdf-export-active .booking-grid {
  page-break-before: avoid;
  break-before: avoid;
}
.pdf-export-active .booking-card {
  page-break-inside: avoid;
  break-inside: avoid;
}
/* Token-Section + Footer direkt an Options dran (kein Umbruch davor) */
.pdf-export-active .token-section {
  page-break-inside: avoid;
  break-inside: avoid;
}
/* PDF-Export: Pie-Card einspaltig – Pie + Legende oben, Text darunter (Pie kann größer sein) */
.pdf-export-active .card-pie-two-col .card-two-col-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 0.75rem;
}
.pdf-export-active .card-pie-two-col .card-two-col-col-chart {
  width: 100%;
  min-width: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pdf-export-active .card-pie-two-col .card-two-col-col-text {
  width: 100%;
  min-width: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible;
  margin-top: 1rem;
}
/* Pie-Chart im PDF: größer (180px), da untereinander mehr Platz */
.pdf-export-active #pieChart {
  width: 180px !important;
  height: 180px !important;
  max-width: 180px !important;
  max-height: 180px !important;
  aspect-ratio: 1 !important;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}
/* Canvas beim Export durch Bild ersetzt: komplett ausblenden (nur Ersatzbild sichtbar, kein Doppelbild auf Apple) */
.pdf-export-active #pieChart[data-pdf-pie-hidden] {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  visibility: hidden !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
/* Beim Export ersetztes Pie-Chart als Bild: 180×180, kreisrund (kein Verzerren) */
.pdf-export-active img[data-pdf-pie-replacement] {
  width: 180px !important;
  height: 180px !important;
  max-width: 180px !important;
  max-height: 180px !important;
  aspect-ratio: 1 !important;
  display: block !important;
  flex-shrink: 0;
  object-fit: contain;
}
/* Pie-Card beim Export: kein overflow, damit Chart und Text nicht abgeschnitten werden */
.pdf-export-active .auswertung-success-wrapper .card-pie-two-col {
  overflow: visible;
  min-height: 120px;
  max-height: none;
}
/* Umbruch vor Section „Was jetzt?“ (zweites Bild in der Säule) */
.pdf-export-active section.section-was-jetzt {
  padding-top: 1.5rem;
  break-before: page;
  page-break-before: always;
}
.pdf-export-active .auswertung-success-wrapper .card-pie-two-col .chart-legend {
  flex-shrink: 0;
}
/* Kleine Viewports / Mobile beim PDF-Export: gleiche untereinander-Layout, Pie 180px */
@media (max-width: 768px), (max-height: 600px) {
  body.pdf-export-active .auswertung-success-wrapper .card-pie-two-col {
    min-height: 120px;
    max-height: none;
  }
  body.pdf-export-active #pieChart:not([data-pdf-pie-hidden]) {
    width: 180px !important;
    height: 180px !important;
    max-width: 180px !important;
    max-height: 180px !important;
    aspect-ratio: 1 !important;
  }
}
/* iOS PDF: ebenfalls untereinander (Pie oben, Text unten), Pie 180px */
body.pdf-export-active.pdf-export-ios .card-pie-two-col .card-two-col-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 0.75rem;
}
body.pdf-export-active.pdf-export-ios .card-pie-two-col .card-two-col-col-chart {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.pdf-export-active.pdf-export-ios .card-pie-two-col .card-two-col-col-text {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
  margin-top: 1rem;
}
body.pdf-export-active.pdf-export-ios .card-pie-two-col img[data-pdf-pie-replacement],
body.pdf-export-active.pdf-export-ios .card-pie-two-col #pieChart {
  width: 180px !important;
  height: 180px !important;
  max-width: 180px !important;
  max-height: 180px !important;
  aspect-ratio: 1 !important;
  display: block !important;
  object-fit: contain;
}
/* Category-Icons (inkl. Kritisch) beim Export sichtbar halten – feste Größe, kein Verschwinden */
.pdf-export-active .category-label .category-icon,
.pdf-export-active .category-card[data-category="kritisch"] .category-icon {
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-width: 1.25rem !important;
  min-height: 1.25rem !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
}
/* Erste Section (Modus Operandi) kompakter, damit auf Seite 1 Platz ist */
.pdf-export-active .auswertung-success-wrapper section.section:first-of-type .card-pie-two-col {
  margin-bottom: 1rem !important;
  padding: 0.75rem 1rem !important;
}
/* PDF: alle normalen Texte einheitlich 0.8rem (wie „Was jetzt?“/„Die Entscheidung“), Rest unverändert */
.pdf-export-active .auswertung-success-wrapper p,
.pdf-export-active .auswertung-success-wrapper .text-large,
.pdf-export-active .auswertung-success-wrapper li,
.pdf-export-active .auswertung-success-wrapper .category-description,
.pdf-export-active .auswertung-success-wrapper .category-scenario,
.pdf-export-active .auswertung-success-wrapper .booking-description,
.pdf-export-active .auswertung-success-wrapper .prerequisite,
.pdf-export-active .token-section p,
.pdf-export-active .token-instruction,
.pdf-export-active .footer a,
.pdf-export-active .footer-legal a {
  font-size: 0.8rem !important;
  line-height: 1.35;
}
/* Mehr Abstand über Headlines in der PDF */
.pdf-export-active .section-title,
.pdf-export-active .booking-section h2,
.pdf-export-active .token-section .accent-text {
  margin-top: 2rem;
}
.pdf-export-active section.section:first-of-type .section-title {
  margin-top: 0;
  margin-bottom: 0.75rem !important;
}
/* Nach Seitenumbruch möglichst kein Abstand („Die 5 Ich-Zustände“ auf Android/Desktop) */
.pdf-export-active section.pdf-break-before .section-title {
  margin-top: 0 !important;
}
.pdf-export-active section.pdf-break-before {
  padding-top: 1.5rem !important;
  margin-top: 0 !important;
}
.pdf-export-active section.section:first-of-type {
  margin-bottom: 2rem !important;
}

/* PDF-Export: Gesamte Seite auf A4-Breite begrenzen (Body + Hero + Container) */
body.pdf-export-active {
  width: 210mm !important;
  max-width: 210mm !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}
.pdf-export-active .hero-image,
.pdf-export-active .hero-image img {
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.pdf-export-active .container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: unset !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
  padding-top: 0.75rem !important;
  padding-bottom: 1rem !important;
}
/* Android: noch weniger Abstand oben/unten beim Export */
body.pdf-export-active.pdf-export-android .container {
  padding-top: 0.25rem !important;
  padding-bottom: 0.5rem !important;
}
body.pdf-export-active.pdf-export-android .header {
  margin-bottom: 0.25rem !important;
}
body.pdf-export-active.pdf-export-android section.pdf-break-before .section-title {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.pdf-export-active.pdf-export-android section.pdf-break-before {
  padding-top: 1.5rem !important;
  margin-top: 0 !important;
}
body.pdf-export-active.pdf-export-android .section-title,
body.pdf-export-active.pdf-export-android .booking-section h2 {
  margin-top: 1rem !important;
}
.pdf-export-active .card-two-col .card-two-col-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) !important;
}
/* PDF: Status-Quo/Entscheidung immer 2-spaltig (auch iPhone), kompakter Abstand */
.pdf-export-active .was-jetzt-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) !important;
  align-items: stretch !important;
  margin-bottom: 1rem !important;
  gap: 0.75rem 1rem !important;
}
.pdf-export-active .section-was-jetzt-inner .section-headline {
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
}
.pdf-export-active .section-decision-card .section-headline {
  margin-bottom: 0.75rem !important;
}
.pdf-export-active .section-decision-card .section-hero-image {
  margin-bottom: 0.5rem !important;
}
.pdf-export-active .urgency-two-col {
  grid-template-columns: 1fr 1fr !important;
  margin-top: 0.25rem !important;
  gap: 0.75rem 1rem !important;
}
.pdf-export-active .grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
.pdf-export-active .booking-section .booking-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
