:root {
  --background: #fafafa;
  --surface: #ffffff;
  --surface-soft: #f4f4f5;
  --text-primary: #18181b;
  --text-secondary: #71717a;
  --border: #e4e4e7;
  --accent: #18181b;
  --accent-dark: #09090b;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --shadow-soft: 0 24px 48px rgba(24, 24, 27, 0.06);
  --shadow-subtle: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(24, 24, 27, 0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(248, 249, 252, 0.85);
  border-bottom: 1px solid rgba(227, 232, 240, 0.95);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
}

.nav:empty {
  display: none;
}

.nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-auth-cluster {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  row-gap: 0.4rem;
}

.header-auth-cluster .header-reise-starten-link,
.header-auth-cluster .account-login-link {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.header-reise-starten-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
}

.header-reise-starten-link:hover,
.header-reise-starten-link:focus-visible {
  color: var(--text-primary);
}

.account-access {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.88rem;
}

.account-login-link {
  font-size: 0.93rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.account-menu-trigger {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(30, 41, 59, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.account-menu-trigger svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.account-menu-initial {
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.account-menu-initial-muted {
  color: #9ca3af;
}

.account-menu-trigger-initial {
  background: #ffffff;
  color: #111827;
  border-color: rgba(15, 23, 42, 0.24);
}

.account-menu-trigger:hover,
.account-menu-trigger:focus-visible {
  border-color: rgba(15, 23, 42, 0.36);
  transform: translateY(-1px);
}

.account-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  min-width: 230px;
  padding: 0.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.14);
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 60;
}

.account-access[data-open="true"] .account-menu-panel {
  display: flex;
}

.account-menu-link,
.account-menu-button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  color: #111827;
  font-size: 0.9rem;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  font-weight: 400;
}

.account-menu-button {
  cursor: pointer;
}

.account-menu-link:hover,
.account-menu-link:focus-visible,
.account-menu-button:hover,
.account-menu-button:focus-visible {
  background: #f3f4f6;
}

.account-menu-link-muted {
  color: #4b5563;
}

.section {
  padding: 6.5rem 0;
}

.section-title {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-title-centered {
  text-align: center;
}

.section-intro {
  margin: 0;
  max-width: 680px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.hero {
  padding: 7.2rem 0 2.2rem;
}

.hero-centered {
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.hero h1 {
  margin: 0 0 1.3rem;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 740px;
  font-size: 1.1rem;
  margin-inline: auto;
}

.actions {
  margin: 2.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  justify-content: center;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  padding: 0.84rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #d4d7dc;
  background: #fcfcfc;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.trust-row span {
  padding-right: 1rem;
  border-right: 1px solid var(--border);
}

.trust-row span:last-child {
  border-right: 0;
  padding-right: 0;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.section-preview {
  padding-top: 2.2rem;
}

.preview-card {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 1.3fr 0.9fr;
}

.preview-column {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  background: var(--surface-soft);
}

.preview-column-main {
  background: #fff;
}

.preview-column h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.preview-list-clean {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.45rem;
}

.preview-text {
  margin: 0;
  color: var(--text-secondary);
}

.preview-chip-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.preview-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  background: #fff;
  color: #4b5563;
}

.preview-score {
  margin-top: 1rem;
  border: 1px solid #cad4e4;
  color: #1f2937;
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
  background: #f2f6fc;
}

.hero-mockup {
  padding: 1.4rem;
  position: relative;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.mockup-badge {
  font-size: 0.8rem;
  color: var(--accent-dark);
  background: rgba(14, 147, 132, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.mockup-title {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.mockup-sub {
  margin: 0.25rem 0 1rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.mockup-highlight {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--surface-soft);
}

.mockup-metrics {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
}

.metric strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.metric span {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.split-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.split-card {
  padding: 1.8rem;
}

.split-card h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.split-card p {
  margin: 0.8rem 0 1.2rem;
  color: var(--text-secondary);
}

.steps {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.1rem;
}

.steps-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.2rem;
}

.step-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.step h4 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0.25rem 0 0;
  color: var(--text-secondary);
}

.benefits-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--surface);
}

.benefit strong {
  letter-spacing: -0.02em;
}

.payment-success-wrap {
  display: grid;
  place-items: center;
}

.payment-success-stage {
  padding-top: 4.2rem;
  padding-bottom: 5.2rem;
}

.pricing-wrap {
  display: grid;
  place-items: center;
}

.pricing-grid {
  margin-top: 2.1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
  width: 100%;
  padding: 2rem;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.pricing-note {
  margin-top: 1rem;
  text-align: center;
}

.payment-success-card {
  width: min(720px, 100%);
  padding: 2.4rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #0f1013, #050507);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 26px 56px rgba(5, 6, 8, 0.45),
    0 10px 24px rgba(5, 6, 8, 0.34);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f3f4f6;
}

.payment-success-card .section-title {
  margin-bottom: 0.55rem;
  color: #ffffff;
}

.payment-success-card .section-intro {
  max-width: none;
  color: rgba(241, 245, 249, 0.8);
}

.payment-success-card .question-error {
  color: #fca5a5;
}

.payment-success-actions {
  margin-top: 1rem;
}

.payment-success-actions .btn {
  min-width: 190px;
}

.payment-success-card .payment-generator {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.payment-success-card .payment-generator-label {
  color: #f3f4f6;
}

.payment-success-card .payment-progress-track {
  background: rgba(255, 255, 255, 0.14);
}

.payment-success-card .payment-progress-fill {
  background: linear-gradient(90deg, #d1d5db, #9ca3af);
}

.payment-success-card .payment-step {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(17, 24, 39, 0.45);
  color: rgba(226, 232, 240, 0.86);
}

.payment-success-card .payment-step.is-current {
  border-color: rgba(209, 213, 219, 0.45);
  background: rgba(31, 41, 55, 0.62);
  color: #f8fafc;
}

.payment-success-card .payment-step.is-complete {
  border-color: rgba(209, 213, 219, 0.5);
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
}

.price {
  margin: 0.25rem 0 1rem;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.included {
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.tiny-note {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.payment-generator {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  padding: 1.35rem;
}

.payment-generator-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.payment-spinner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #d6d9df;
  border-top-color: #8f97a3;
  animation: payment-spin 1.1s linear infinite;
  flex-shrink: 0;
}

.payment-generator-label {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.payment-progress-track {
  margin-top: 1rem;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #eef1f4;
  overflow: hidden;
}

.payment-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #aeb6c2, #969fab);
  transition: width 0.45s ease;
}

.payment-loading-steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.payment-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0.65rem 0.8rem;
  color: var(--text-secondary);
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.payment-step-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  border-radius: 999px;
  border: 2px solid #cfd5db;
  background: #fff;
  position: relative;
}

.payment-step-icon::before {
  content: "";
  position: absolute;
  left: 0.24rem;
  top: 0.1rem;
  width: 0.26rem;
  height: 0.5rem;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.payment-step.is-current {
  border-color: #cbd2dc;
  background: #f8fafc;
  color: #374151;
}

.payment-step.is-current .payment-step-icon {
  border-color: #a4adb9;
}

.payment-step.is-complete {
  border-color: #c4ccd7;
  background: #f7f9fb;
  color: var(--text-primary);
}

.payment-step.is-complete .payment-step-icon {
  border-color: #8f97a3;
  background: #8f97a3;
}

.payment-step.is-complete .payment-step-icon::before {
  border-color: #fff;
}

@keyframes payment-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand h4 {
  margin: 0;
}

.footer-brand p {
  margin: 0.3rem 0 0;
  color: var(--text-secondary);
}

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.page-hero {
  padding: 5rem 0 3.2rem;
}

.page-hero h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0 0 1.4rem;
  max-width: 700px;
  color: var(--text-secondary);
}

.panel {
  padding: 2rem;
}

.preview-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-secondary);
}

.preview-list li + li {
  margin-top: 0.4rem;
}

.questionnaire-wrap {
  min-height: calc(100vh - 72px);
  padding: 2.5rem 0 4rem;
  display: grid;
  place-items: center;
}

.planner-page {
  background: #f5f6f8;
}

.planner-main {
  padding: 2.2rem 0 3rem;
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 1.55rem;
  align-items: start;
  position: relative;
}

.planner-layout.is-panel-collapsed {
  grid-template-columns: minmax(0, 1fr);
}

.planner-left {
  min-width: 0;
}

.planner-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.planner-hero p {
  margin: 0.9rem 0 0;
  color: #606775;
  max-width: 680px;
  font-size: 1.03rem;
  line-height: 1.62;
}

.planner-meta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  color: #6b7280;
  font-size: 0.88rem;
}

.planner-meta-row strong {
  color: #111827;
  font-size: 0.91rem;
  font-weight: 600;
}

.planner-meta-row span + span::before {
  content: "•";
  margin-right: 0.85rem;
  color: #9ca3af;
}

.planner-meta-rule {
  margin-top: 0.55rem;
  height: 1px;
  background: #dfe3ea;
}

.planner-form-card {
  margin-top: 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, #141416 0%, #0a0a0c 55%, #050506 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1rem 1.02rem 1.05rem;
}

.planner-form-card .question-title {
  font-size: 1.14rem;
  margin-top: 0.2rem;
  color: #f4f4f5;
  font-weight: 500;
}

.planner-form-card .question-help {
  font-size: 0.9rem;
  color: #ffffff;
}

.planner-form-card .summary-help-line {
  color: #ffffff;
}

.planner-form-card .summary-help-line + .summary-help-line {
  margin-top: 0.35rem;
  color: #ffffff;
}

.planner-form-card .summary-note {
  color: #d4d4d8;
}

.planner-form-card .planner-progress-bar,
.planner-form-card .progress-bar {
  background: rgba(255, 255, 255, 0.1);
}

.planner-form-card .progress-fill {
  background: #22c55e;
}

.planner-form-card .question-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}

.planner-form-card .question-label {
  color: #fafafa;
}

.planner-form-card .question-meta {
  color: #a1a1aa;
}

.planner-form-card .choice-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f4f5;
}

.planner-form-card .choice-btn:hover,
.planner-form-card .choice-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.planner-form-card .choice-btn.active {
  border-color: rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.15);
  color: #ecfdf5;
}

.planner-form-card .scale-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f4f5;
}

.planner-form-card .scale-btn:hover,
.planner-form-card .scale-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
}

.planner-form-card .scale-btn.active {
  border-color: rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.15);
  color: #ecfdf5;
}

.planner-form-card .field-input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fafafa;
}

.planner-form-card .field-input:focus {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.planner-form-card .field-caption {
  color: #a1a1aa;
}

.planner-form-card .question-error {
  color: #fca5a5;
}

.planner-form-card .planner-questions select.field-input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(0, 0, 0, 0.35);
  color: #fafafa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background-image:
    linear-gradient(45deg, transparent 50%, #a1a1aa 50%),
    linear-gradient(135deg, #a1a1aa 50%, transparent 50%);
}

.planner-form-card .planner-questions select.field-input:focus {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.planner-form-card .question-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f4f4f5;
}

.planner-form-card .question-actions .btn-secondary:hover,
.planner-form-card .question-actions .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.planner-form-card .question-actions.summary-actions-mode .btn-secondary.summary-back-btn {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  color: #111827;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.planner-form-card .question-actions.summary-actions-mode .btn-secondary.summary-back-btn:hover,
.planner-form-card .question-actions.summary-actions-mode .btn-secondary.summary-back-btn:focus-visible {
  background: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.55);
  color: #09090b;
}

.planner-form-card .question-actions.summary-actions-mode .btn-primary {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  color: #111827;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.planner-form-card .question-actions.summary-actions-mode .btn-primary:hover,
.planner-form-card .question-actions.summary-actions-mode .btn-primary:focus-visible {
  background: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.55);
  color: #09090b;
}

.planner-form-card .field-input::placeholder {
  color: #71717a;
}

.planner-progress-bar {
  margin-bottom: 1rem;
  height: 6px;
  background: #ebeff4;
}

.planner-questions .question-item {
  border-radius: 14px;
  padding: 0.8rem;
}

.planner-questions .question-label {
  font-size: 0.96rem;
}

.planner-questions .question-meta {
  margin-bottom: 0.55rem;
}

.planner-questions select.field-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #dfe5ee;
  background-color: rgba(255, 255, 255, 0.88);
  padding: 0.85rem 2.5rem 0.85rem 0.95rem;
  color: #111827;
  font-size: 0.95rem;
  line-height: 1.3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.planner-questions select.field-input:focus {
  outline: none;
  border-color: #111827;
  box-shadow:
    0 0 0 3px rgba(17, 24, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.planner-actions {
  margin-top: 1rem;
}

.planner-right {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, #141416 0%, #0a0a0c 55%, #050506 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.planner-right h3 {
  margin: 0;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #f4f4f5;
}

.planner-right-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.planner-panel-toggle {
  border: 1px solid #dbe1eb;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 0.78rem;
  padding: 0.35rem 0.66rem;
  line-height: 1.1;
  cursor: pointer;
}

.planner-panel-toggle:hover,
.planner-panel-toggle:focus-visible {
  background: #f9fafb;
  color: #111827;
}

.planner-panel-toggle-open {
  margin-left: auto;
  display: none;
}

.planner-panel-toggle-close {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  border-color: #050507;
  background: linear-gradient(180deg, #16161a, #060608);
  color: #ffffff;
  justify-content: center;
}

.planner-layout.is-panel-collapsed .planner-right {
  display: none;
}

.planner-layout.is-panel-collapsed .planner-panel-toggle-open {
  display: inline-flex;
}

.planner-step-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.62rem;
}

.planner-step-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.6rem 0.72rem;
}

.planner-step-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
}

.planner-step-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #d4d4d8;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.planner-step-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fafafa;
}

.planner-step-card p {
  margin: 0.18rem 0 0;
  font-size: 0.77rem;
  color: #a1a1aa;
  line-height: 1.42;
}

.planner-step-card span {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: #fafafa;
  background: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.planner-trust {
  margin-top: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.8rem;
}

.planner-trust h4 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #e4e4e7;
}

.planner-trust ul {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.7rem;
}

.planner-trust li {
  font-size: 0.84rem;
  color: #a1a1aa;
  position: relative;
  padding-left: 1.05rem;
}

.planner-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.33rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.planner-orb {
  position: absolute;
  width: clamp(95px, 12vw, 150px);
  right: -1.8rem;
  bottom: -1.4rem;
  opacity: 0.7;
  pointer-events: none;
  filter: drop-shadow(0 14px 22px rgba(98, 109, 173, 0.22));
}

.questionnaire-card {
  width: min(760px, 100%);
  padding: 2rem;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}

.questionnaire-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
}

.btn-tertiary {
  border-color: transparent;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.82rem;
  padding: 0.3rem 0.45rem;
  font-weight: 500;
}

.btn-tertiary:hover,
.btn-tertiary:focus-visible {
  color: var(--text-primary);
  background: #f5f6f8;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #eef0f2;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.6rem;
}

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

.question-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.question-help {
  margin: 0.5rem 0 0.2rem;
  color: var(--text-secondary);
}

.question-error {
  min-height: 1.35rem;
  margin: 0.5rem 0 1rem;
  color: #b42318;
  font-size: 0.9rem;
}

.questions {
  display: grid;
  gap: 1rem;
}

.question-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1.1rem;
}

.question-label {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.question-meta {
  display: inline-block;
  margin-top: 0.28rem;
  margin-bottom: 0.7rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-transform: lowercase;
}

.choice-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1fr;
}

.choice-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-btn {
  text-align: left;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--text-primary);
  font: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.choice-btn:hover,
.choice-btn:focus-visible {
  border-color: #cfd5db;
}

.choice-btn.active {
  border-color: rgba(14, 147, 132, 0.55);
  background: rgba(14, 147, 132, 0.08);
}

.choice-grid-compact .choice-btn {
  padding: 0.62rem 0.72rem;
  font-size: 0.88rem;
  line-height: 1.35;
}

.field-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text-primary);
  margin-top: 0.65rem;
  background: #fff;
}

.field-input:focus {
  outline: none;
  border-color: rgba(14, 147, 132, 0.55);
  box-shadow: 0 0 0 3px rgba(14, 147, 132, 0.12);
}

.scale-row {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0.45rem;
}

.scale-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-primary);
  border-radius: 10px;
  padding: 0.55rem 0.35rem;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.scale-btn:hover,
.scale-btn:focus-visible {
  border-color: #cfd5db;
}

.scale-btn.active {
  border-color: rgba(14, 147, 132, 0.55);
  background: rgba(14, 147, 132, 0.08);
}

.field-caption {
  margin: 0.55rem 0 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.question-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.summary-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #fff;
}

.summary-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.summary-title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.summary-list {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem;
}

.summary-list dt {
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.summary-list dd {
  margin: 0 0 0.6rem;
  font-size: 0.94rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #f0f2f5;
}

.summary-list dd:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkout-card {
  border: 1px solid rgba(14, 147, 132, 0.22);
  background: linear-gradient(180deg, rgba(14, 147, 132, 0.08), rgba(14, 147, 132, 0.03));
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-top: 0.5rem;
}

.checkout-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.checkout-card p {
  margin: 0;
  color: var(--text-secondary);
}

.summary-controls {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.35rem;
}

.summary-note {
  margin: 0.35rem 0 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.summary-help-line {
  display: block;
  font-weight: 400;
  color: #6b7280;
}

.summary-trigger-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.summary-open-btn {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  color: #111827;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.summary-open-btn-inline {
  min-width: 200px;
}

.summary-open-btn:hover,
.summary-open-btn:focus-visible {
  background: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.45);
  color: #09090b;
}

.question-actions.summary-actions-mode {
  justify-content: flex-start;
  gap: 0.55rem;
}

.summary-back-btn {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  color: #111827;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.summary-back-btn:hover,
.summary-back-btn:focus-visible {
  background: #f4f4f5;
  border-color: rgba(255, 255, 255, 0.45);
  color: #09090b;
}

.questionnaire-summary-open {
  overflow: hidden;
}

.questionnaire-summary-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 11, 18, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.questionnaire-summary-overlay[hidden] {
  display: none;
}

.questionnaire-summary-dialog {
  width: min(980px, 100%);
  max-height: min(84vh, 900px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, #141416 0%, #0a0a0c 55%, #050506 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1rem;
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.questionnaire-summary-title {
  margin: 0;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  color: #f4f4f5;
  font-weight: 500;
}

.questionnaire-summary-scroll {
  overflow-y: auto;
  max-height: calc(min(84vh, 900px) - 5.2rem);
  padding-right: 0.2rem;
  display: grid;
  gap: 0.65rem;
}

.questionnaire-summary-scroll .summary-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}

.questionnaire-summary-scroll .summary-title {
  color: #fafafa;
}

.questionnaire-summary-scroll .summary-list dt {
  color: #a1a1aa;
}

.questionnaire-summary-scroll .summary-list dd {
  color: #e4e4e7;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.questionnaire-summary-dialog .btn-tertiary {
  color: #d4d4d8;
}

.questionnaire-summary-dialog .btn-tertiary:hover,
.questionnaire-summary-dialog .btn-tertiary:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.questionnaire-summary-close {
  position: absolute;
  right: 0.75rem;
  top: 0.65rem;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e4e4e7;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.questionnaire-summary-close:hover,
.questionnaire-summary-close:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.dashboard-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
}

.dashboard-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--text-secondary);
}

.dashboard-greeting {
  margin: 0 0 0.45rem;
  color: var(--text-secondary);
}

.dashboard-hint {
  margin: 0.45rem 0 0;
  color: var(--text-secondary);
}

.dashboard-empty {
  margin-top: 1.2rem;
}

.dashboard-empty p {
  margin: 0.5rem 0 0;
  color: var(--text-secondary);
}

.dashboard-workspace {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-card {
  border-radius: 22px;
}

.dashboard-card-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.dashboard-card-sub {
  margin: 0.45rem 0 0.95rem;
  color: var(--text-secondary);
}

.dashboard-highlight {
  margin: 0.7rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dashboard-checklist-disclosure,
.dashboard-links-disclosure {
  grid-column: 1 / -1;
}

.dashboard-checklist-disclosure summary,
.dashboard-links-disclosure summary {
  cursor: pointer;
  list-style: none;
}

.dashboard-checklist-disclosure summary::-webkit-details-marker,
.dashboard-links-disclosure summary::-webkit-details-marker {
  display: none;
}

.dashboard-checklist-disclosure summary::after,
.dashboard-links-disclosure summary::after {
  content: " +";
  color: #8a94a6;
}

.dashboard-checklist-disclosure[open] summary::after,
.dashboard-links-disclosure[open] summary::after {
  content: " -";
}

.dashboard-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.35rem 0 0.35rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.dashboard-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #edf1f5;
  overflow: hidden;
}

.dashboard-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111827, #4b5563);
  transition: width 0.25s ease;
}

.dashboard-checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.dashboard-check-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fcfdff;
}

.dashboard-check-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  align-items: start;
}

.dashboard-check-label input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: #15803d;
}

.dashboard-check-content strong {
  display: block;
  font-size: 0.97rem;
}

.dashboard-check-content p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.dashboard-cost-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

.dashboard-link-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-link-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: #fcfdff;
}

.dashboard-link-card h4 {
  margin: 0;
  font-size: 1rem;
}

.dashboard-link-card p {
  margin: 0.4rem 0 0.75rem;
  color: var(--text-secondary);
}

.dashboard-raw-plan {
  margin-top: 1.3rem;
}

.dashboard-raw-plan summary {
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 500;
}

.dashboard-pdf-card .btn {
  margin-top: 0.45rem;
}

.plan-sections {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.35rem;
}

.plan-section {
  break-inside: auto;
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(17, 24, 39, 0.04);
}

.plan-section-large {
  padding: 2.1rem;
}

.plan-section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.plan-document-intro {
  padding: 2.3rem;
}

.plan-document-title {
  margin: 0.7rem 0 0;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.plan-document-label {
  margin: 1.35rem 0 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #778294;
}

.plan-document-actions {
  margin-top: 1.2rem;
}

.plan-field-text {
  margin: 0.85rem 0 0;
  color: var(--text-secondary);
  white-space: pre-wrap;
  line-height: 1.75;
}

.plan-field-list {
  margin: 0.85rem 0 0;
  padding-left: 1.3rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.6rem;
}

.plan-field-list li {
  white-space: pre-wrap;
  line-height: 1.65;
}

.plan-field-object {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
}

.plan-field-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: #fcfdff;
}

.plan-field-subtitle {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.plan-card-grid {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-detail-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: #fcfdff;
}

.city-card-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.city-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.05rem;
  background: #fcfdff;
}

.city-card-title {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.city-card-line {
  margin: 0.36rem 0 0;
  color: var(--text-secondary);
}

.todo-list-large {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.95rem;
}

.todo-list-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fcfdff;
}

.todo-item-title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.todo-item-meta {
  margin: 0.38rem 0 0;
  color: var(--text-secondary);
}

.official-links-disclosure {
  margin-top: 0.2rem;
}

.official-links-summary {
  cursor: pointer;
  list-style: none;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.official-links-summary::-webkit-details-marker {
  display: none;
}

.official-links-summary::after {
  content: " +";
  color: #8a94a6;
}

.official-links-disclosure[open] .official-links-summary::after {
  content: " -";
}

.official-link-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.official-link-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: #fcfdff;
}

.official-link-title {
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.official-link-meta {
  margin: 0.42rem 0 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.official-link-button {
  margin-top: 0.8rem;
}

.official-link-url {
  margin: 0.6rem 0 0;
  color: #475467;
  font-size: 0.85rem;
  word-break: break-all;
}

.official-link-detail {
  margin: 0.5rem 0 0;
  color: var(--text-secondary);
}

.auth-layout {
  padding: 5.5rem 0 6.5rem;
}

.auth-shell {
  max-width: 760px;
}

.auth-intro {
  text-align: center;
  margin-bottom: 1.25rem;
}

.auth-intro .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 2.8rem);
}

.auth-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.form-card {
  padding: 1.8rem;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.04);
  min-height: 440px;
}

.auth-single-card {
  max-width: 560px;
  margin: 0 auto;
}

.auth-single-card-wide {
  max-width: 660px;
  min-height: 520px;
}

.form-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-grid label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-grid .field-input {
  margin-top: 0;
  min-height: 52px;
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem 0.95rem;
}

.form-grid .btn {
  margin-top: 0.3rem;
  width: 100%;
}

.form-grid .btn-primary {
  justify-content: center;
}

.form-message {
  min-height: 1.4rem;
  margin: 0.1rem 0 0.1rem;
  font-size: 0.88rem;
  color: #b42318;
}

.auth-switch-note {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-align: center;
}

.auth-switch-note a {
  color: var(--text-primary);
  font-weight: 600;
}

.login-page {
  background:
    radial-gradient(circle at 12% 92%, rgba(204, 166, 255, 0.14), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 88% 18%, rgba(182, 214, 255, 0.2), rgba(255, 255, 255, 0) 42%),
    #f5f5f7;
  min-height: 100vh;
}

.login-stage {
  padding: 4.2rem 0 5.8rem;
}

.login-shell {
  max-width: 1280px;
  min-height: calc(100vh - 60px - 5.8rem);
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.login-card {
  width: min(760px, calc(100vw - 2.4rem));
  max-width: none;
  border-radius: 32px;
  border: 1px solid rgba(210, 212, 219, 0.76);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  box-shadow:
    0 24px 50px rgba(17, 24, 39, 0.08),
    0 6px 18px rgba(17, 24, 39, 0.05);
  padding: 2.6rem 2.3rem 2.2rem;
  min-height: auto;
  position: relative;
  z-index: 2;
}

.login-card-header {
  text-align: center;
  margin-bottom: 1.3rem;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.login-title {
  margin: 0;
  font-family: "Inter", "Manrope", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.05rem, 3vw, 2.35rem);
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-weight: 700;
}

.login-subtitle {
  margin: 0.72rem auto 0;
  max-width: none;
  color: #666b75;
  font-size: 0.95rem;
  white-space: nowrap;
}

.login-form {
  gap: 0.82rem;
}

.login-field .field-input {
  min-height: 56px;
  border-radius: 14px;
  border-color: #e1e4ea;
  background: rgba(255, 255, 255, 0.92);
}

.login-field-email .field-input {
  padding-left: 2.45rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2399a0ab' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.2' y='5.8' width='17.6' height='12.4' rx='2.6'/%3E%3Cpath d='M4.4 7.2l7.6 6.1 7.6-6.1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  background-position: 0.9rem 50%;
}

.login-field-name .field-input {
  padding-left: 2.45rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2399a0ab' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8.2' r='3.2'/%3E%3Cpath d='M5.1 18.2c.9-2.8 3.6-4.5 6.9-4.5s6 1.7 6.9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  background-position: 0.9rem 50%;
}

.login-field-password .field-input {
  padding-left: 2.45rem;
  padding-right: 2.45rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2399a0ab' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4.4' y='10.3' width='15.2' height='9.6' rx='2.2'/%3E%3Cpath d='M8.1 10.3V8.1a3.9 3.9 0 0 1 7.8 0v2.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  background-position: 0.9rem 50%;
}

.login-field-password {
  position: relative;
}

.password-visibility-toggle {
  position: absolute;
  right: 0.78rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  border: 0;
  padding: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2399a0ab' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 12s3.5-6 9.5-6 9.5 6 9.5 6-3.5 6-9.5 6-9.5-6-9.5-6z'/%3E%3Ccircle cx='12' cy='12' r='2.9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.05rem 1.05rem;
  cursor: pointer;
}

.password-visibility-toggle[aria-pressed="true"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2399a0ab' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.7 5.3A10.6 10.6 0 0 1 12 5c6 0 9.5 7 9.5 7a17.8 17.8 0 0 1-3.1 3.8'/%3E%3Cpath d='M14.9 14.9A2.9 2.9 0 0 1 9.1 9.1'/%3E%3Cpath d='M6.5 6.5A17.2 17.2 0 0 0 2.5 12s3.5 7 9.5 7a9.9 9.9 0 0 0 5.1-1.3'/%3E%3Cpath d='M2 2l20 20'/%3E%3C/svg%3E");
}

.password-visibility-toggle:hover,
.password-visibility-toggle:focus-visible {
  opacity: 0.9;
}

.login-field .field-input::placeholder {
  color: #9297a1;
}

.login-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.12rem;
}

.login-form .remember-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #5f6470;
  font-size: 0.86rem;
  font-weight: 500;
}

.login-form .remember-check input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #15803d;
}

.forgot-link {
  color: #666b75;
  font-size: 0.86rem;
}

.forgot-link:hover,
.forgot-link:focus-visible {
  color: #111827;
}

.login-page .form-message {
  min-height: 1.2rem;
  margin: 0;
}

.login-page .login-submit {
  width: 100%;
  margin-top: 0.2rem;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid #050507;
  background: linear-gradient(180deg, #161619, #060607);
  color: #ffffff;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.3);
}

.login-page .login-submit:hover,
.login-page .login-submit:focus-visible {
  background: linear-gradient(180deg, #232329, #0b0b0f);
}

.login-page .login-register {
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid #e1e4ea;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  margin-top: 0.2rem;
  font-weight: 500;
}

.login-page .login-register:hover,
.login-page .login-register:focus-visible {
  background: #ffffff;
  border-color: #d6dae2;
}

.login-legal-divider {
  width: 100%;
  height: 1px;
  margin-top: 0.35rem;
  background: #e9ebf0;
}

.login-legal-note {
  margin: 0.45rem 0 0;
  text-align: center;
  color: #7a808c;
  font-size: 0.78rem;
  line-height: 1.55;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.login-legal-line {
  display: block;
  white-space: nowrap;
}

.login-legal-note a {
  color: #626874;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-legal-note a:hover,
.login-legal-note a:focus-visible {
  color: #111827;
}

.login-orb {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.login-orb img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 36px rgba(122, 130, 173, 0.22));
}

.login-orb-large {
  width: clamp(280px, 29vw, 420px);
  right: -1.5rem;
  top: 0.1rem;
  opacity: 0.96;
}

.login-orb-small {
  width: clamp(110px, 13vw, 180px);
  left: 2.4rem;
  bottom: 0.8rem;
  opacity: 0.88;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.report-stage {
  background: #eceff3;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}

.report-page {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 2.6rem;
}

.report-page + .report-page {
  margin-top: 1.2rem;
}

.report-meta {
  margin: 0.4rem 0 0;
  color: #667085;
  font-size: 0.92rem;
}

.report-page h1,
.report-page h2 {
  letter-spacing: -0.03em;
}

.report-page h1 {
  margin-top: 0;
}

.report-page h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.report-page p {
  color: var(--text-secondary);
}

.plan-sections-pdf {
  margin-top: 1.2rem;
}

.plan-sections-pdf .plan-section {
  border-radius: 12px;
  box-shadow: none;
}

.report-rule {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.mobile-toggle {
  display: none;
}

.home-header-theme .site-header {
  position: sticky;
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.home-header-theme .container {
  width: min(1220px, calc(100% - 3.2rem));
}

.home-header-theme .header-inner {
  min-height: 60px;
  gap: 1.4rem;
}

.home-header-theme .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.46rem;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: #f5f5f7;
}

.home-header-theme .brand::before {
  content: "✈";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-size: 0.7rem;
  line-height: 1;
  color: #f5f5f7;
  opacity: 0.9;
  transform: translateY(-0.5px);
}

.home-header-theme .nav {
  gap: 2.1rem;
}

.home-header-theme .nav a {
  font-size: 0.94rem;
  color: rgba(245, 245, 247, 0.88);
  font-weight: 300;
  letter-spacing: 0.015em;
}

.home-header-theme .nav a:hover,
.home-header-theme .nav a:focus-visible {
  color: #ffffff;
}

.home-header-theme .header-actions {
  gap: 0.8rem;
}

.home-header-theme .account-login-link,
.home-header-theme .header-reise-starten-link {
  color: rgba(245, 245, 247, 0.88);
  font-weight: 300;
  letter-spacing: 0.015em;
  font-size: 0.93rem;
}

.home-header-theme .account-login-link:hover,
.home-header-theme .account-login-link:focus-visible,
.home-header-theme .header-reise-starten-link:hover,
.home-header-theme .header-reise-starten-link:focus-visible {
  color: #ffffff;
}

.home-header-theme .header-actions > a:not(.btn) {
  color: rgba(245, 245, 247, 0.88);
  font-weight: 300;
  letter-spacing: 0.015em;
  font-size: 0.93rem;
}

.home-header-theme .header-actions > a:not(.btn):hover,
.home-header-theme .header-actions > a:not(.btn):focus-visible {
  color: #ffffff;
}

.home-header-theme .site-header .btn {
  border-radius: 999px;
  padding: 0.73rem 1.24rem;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.015em;
}

.home-header-theme .site-header .btn-primary {
  background: linear-gradient(180deg, #ffffff, #e8e8eb);
  color: #09090b;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

.home-header-theme .site-header .btn-primary:hover,
.home-header-theme .site-header .btn-primary:focus-visible {
  background: #ffffff;
}

.home-header-theme .site-header .btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #f5f5f7;
}

.home-header-theme .account-menu-trigger {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #f5f5f7;
}

.home-header-theme .account-menu-trigger:hover,
.home-header-theme .account-menu-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
}

.home-header-theme .account-menu-trigger.account-menu-trigger-initial {
  background: #ffffff;
  color: #09090b;
  border-color: rgba(255, 255, 255, 0.62);
}

.home-header-theme .account-menu-trigger.account-menu-trigger-initial:hover,
.home-header-theme .account-menu-trigger.account-menu-trigger-initial:focus-visible {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
}

.home-page {
  background: #ffffff;
  color: #09090b;
}

.home-page .site-header {
  position: sticky;
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.home-page .container {
  width: min(1220px, calc(100% - 3.2rem));
}

.home-page .header-inner {
  min-height: 60px;
  gap: 1.4rem;
}

.home-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.46rem;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: #f5f5f7;
}

.home-page .brand::before {
  content: "✈";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-size: 0.7rem;
  line-height: 1;
  color: #f5f5f7;
  opacity: 0.9;
  transform: translateY(-0.5px);
}

.home-page .nav {
  gap: 2.1rem;
}

.home-page .nav a {
  font-size: 0.94rem;
  color: rgba(245, 245, 247, 0.88);
  font-weight: 300;
  letter-spacing: 0.015em;
}

.home-page .nav a:hover,
.home-page .nav a:focus-visible {
  color: #ffffff;
}

.home-page .account-login-link,
.home-page .header-reise-starten-link {
  color: rgba(245, 245, 247, 0.88);
  font-weight: 300;
  letter-spacing: 0.015em;
  font-size: 0.93rem;
}

.home-page .account-login-link:hover,
.home-page .account-login-link:focus-visible,
.home-page .header-reise-starten-link:hover,
.home-page .header-reise-starten-link:focus-visible {
  color: #ffffff;
}

.home-page .header-actions {
  gap: 0.8rem;
}

.home-page .header-actions > a:not(.btn) {
  color: rgba(245, 245, 247, 0.88);
  font-weight: 300;
  letter-spacing: 0.015em;
  font-size: 0.93rem;
}

.home-page .header-actions > a:not(.btn):hover,
.home-page .header-actions > a:not(.btn):focus-visible {
  color: #ffffff;
}

.home-page .btn {
  border-radius: 999px;
  padding: 0.73rem 1.24rem;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.015em;
}

.home-page .btn-primary {
  background: linear-gradient(180deg, #ffffff, #e8e8eb);
  color: #09090b;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

.home-page .btn-primary:hover,
.home-page .btn-primary:focus-visible {
  background: #ffffff;
}

.home-page .btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #f5f5f7;
}

.home-page .account-menu-trigger {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #f5f5f7;
}

.home-page .account-menu-trigger:hover,
.home-page .account-menu-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
}

.home-page .account-menu-trigger.account-menu-trigger-initial {
  background: #ffffff;
  color: #09090b;
  border-color: rgba(255, 255, 255, 0.62);
}

.home-page .account-menu-trigger.account-menu-trigger-initial:hover,
.home-page .account-menu-trigger.account-menu-trigger-initial:focus-visible {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
}

.home-main {
  overflow: hidden;
}

.home-hero {
  padding: 2.7rem 0 2.3rem;
}

.home-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.home-hero-copy {
  position: relative;
  z-index: 3;
}

.home-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5.4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: none;
  white-space: nowrap;
}

.home-hero-copy .hero-subline {
  font-size: 0.84em;
}

.home-hero-copy p {
  margin: 1.65rem 0 0;
  max-width: none;
  color: #4f4f59;
  font-size: clamp(0.84rem, 1vw, 0.94rem);
  line-height: 1.58;
}

.home-hero-copy .hero-line {
  display: inline-block;
  white-space: nowrap;
}

.home-hero-actions {
  margin-top: 2rem;
  gap: 0.9rem;
}

.home-hero-actions .btn-primary,
.home-hero-actions .btn-secondary {
  background: linear-gradient(180deg, #17171a, #050507);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(10, 10, 14, 0.28);
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.home-hero-actions .btn-primary:hover,
.home-hero-actions .btn-primary:focus-visible,
.home-hero-actions .btn-secondary:hover,
.home-hero-actions .btn-secondary:focus-visible {
  background: linear-gradient(180deg, #232328, #0a0a0d);
  box-shadow: 0 18px 30px rgba(10, 10, 14, 0.32);
  transform: translateY(-1px);
}

.home-hero-actions .btn-primary:active,
.home-hero-actions .btn-secondary:active {
  background: linear-gradient(180deg, #141418, #050507);
  box-shadow: 0 10px 20px rgba(10, 10, 14, 0.24);
  transform: translateY(0);
}

.home-preview {
  border-radius: 26px;
  border-color: #ebebee;
  box-shadow: 0 40px 80px rgba(15, 15, 18, 0.09);
  padding: 1.2rem;
  background: #fff;
  position: relative;
  z-index: 3;
}

.home-preview-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.home-preview-brand {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
}

.home-preview-user {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 600;
  border: 1px solid #e7e7ea;
  border-radius: 999px;
  padding: 0.23rem 0.48rem;
  color: #42424a;
}

.home-preview-head {
  margin-bottom: 1rem;
}

.home-preview-plan {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 640;
  letter-spacing: -0.02em;
}

.home-preview-sub {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: #71717a;
}

.home-preview-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-preview-box {
  border: 1px solid #ececf0;
  border-radius: 16px;
  padding: 0.85rem;
  background: #fdfdfe;
}

.home-preview-box h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 620;
  letter-spacing: -0.01em;
}

.home-preview-box p {
  margin: 0.45rem 0 0;
  color: #71717a;
  font-size: 0.75rem;
}

.home-preview-box strong {
  margin-top: 0.2rem;
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.mini-progress {
  margin-top: 0.45rem;
  width: 100%;
  height: 5px;
  background: #e9e9ee;
  border-radius: 999px;
  overflow: hidden;
}

.mini-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #111;
}

.home-preview-box ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.3rem;
  font-size: 0.77rem;
  color: #52525b;
}

.home-preview-docs {
  grid-column: span 1;
}

.home-preview-timeline {
  margin-top: 0.9rem;
  border: 1px solid #ececf0;
  border-radius: 16px;
  padding: 0.65rem 0.7rem 0.6rem;
}

.timeline-line {
  position: relative;
  height: 2px;
  background: #d8d8df;
}

.timeline-line span {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  background: #111;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.timeline-line span:nth-child(1) {
  left: 0;
}

.timeline-line span:nth-child(2) {
  left: 33%;
}

.timeline-line span:nth-child(3) {
  left: 66%;
}

.timeline-line span:nth-child(4) {
  left: 100%;
}

.timeline-labels {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.timeline-labels small {
  font-size: 0.64rem;
  color: #71717a;
}

.glass-orb {
  position: absolute;
  left: 58%;
  bottom: -6px;
  width: clamp(108px, 13.5vw, 148px);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transform: rotate(-6deg);
  opacity: 0.92;
  backdrop-filter: blur(5px) saturate(128%);
  -webkit-backdrop-filter: blur(5px) saturate(128%);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.62) 14%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 76% 76%, rgba(21, 48, 120, 0.34) 0%, rgba(21, 48, 120, 0) 48%),
    radial-gradient(circle at 44% 42%, rgba(109, 234, 255, 0.34) 0%, rgba(109, 234, 255, 0.12) 34%, rgba(109, 234, 255, 0) 64%),
    radial-gradient(circle at 72% 30%, rgba(134, 183, 255, 0.4) 0%, rgba(134, 183, 255, 0.1) 34%, rgba(134, 183, 255, 0) 70%),
    conic-gradient(from 210deg at 56% 50%, rgba(94, 218, 198, 0.22), rgba(100, 160, 255, 0.24), rgba(132, 220, 255, 0.2), rgba(94, 218, 198, 0.22));
  box-shadow:
    inset -20px -20px 30px rgba(30, 62, 130, 0.34),
    inset 14px 14px 22px rgba(255, 255, 255, 0.3),
    inset 0 0 0 1.2px rgba(255, 255, 255, 0.78),
    inset 0 0 14px rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(37, 89, 177, 0.35),
    0 0 26px rgba(96, 183, 255, 0.3),
    0 0 52px rgba(102, 240, 220, 0.18);
  filter: saturate(1.12) contrast(1.03);
}

.glass-orb::before {
  content: "";
  position: absolute;
  inset: 5% 7%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 24% 26%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(ellipse at 72% 44%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(118deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(104deg, rgba(255, 255, 255, 0) 52%, rgba(173, 241, 255, 0.28) 68%, rgba(255, 255, 255, 0) 80%);
  opacity: 0.94;
  filter: blur(0.55px);
}

.glass-orb::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: 280%;
  height: 78%;
  transform: translateX(-50%) rotate(-6deg);
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(127, 201, 255, 0.44) 0%, rgba(127, 201, 255, 0) 70%),
    radial-gradient(ellipse at 16% 56%, rgba(196, 241, 255, 0.3) 0%, rgba(196, 241, 255, 0) 54%),
    radial-gradient(ellipse at 84% 64%, rgba(159, 249, 230, 0.28) 0%, rgba(159, 249, 230, 0) 56%),
    radial-gradient(ellipse at 50% 18%, rgba(15, 31, 63, 0.24) 0%, rgba(15, 31, 63, 0) 72%);
  filter: blur(14px);
}

.home-features {
  padding-top: 0.2rem;
  padding-bottom: 4.6rem;
}

.home-destinations {
  text-align: center;
}

.home-destinations-heading {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #18181b;
}

.home-destinations-lead {
  margin: 0.55rem auto 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #65656f;
}

.home-countries-rows {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-countries-marquee {
  --home-marquee-duration: 45s;
  position: relative;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 247, 252, 0.88) 100%);
  border: 1px solid rgba(15, 15, 18, 0.06);
  box-shadow: 0 12px 40px rgba(15, 15, 18, 0.05);
  padding: 0.65rem 0;
  overflow: hidden;
}

.home-countries-marquee::before,
.home-countries-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 1;
  pointer-events: none;
}

.home-countries-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(250, 251, 253, 1) 0%, rgba(250, 251, 253, 0) 100%);
}

.home-countries-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(250, 251, 253, 1) 0%, rgba(250, 251, 253, 0) 100%);
}

.home-countries-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.home-countries-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: homeMarqueeX var(--home-marquee-duration, 45s) linear infinite;
}

.home-countries-marquee--reverse .home-countries-track {
  animation-direction: reverse;
}

@keyframes homeMarqueeX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.home-countries-list {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.15rem 0.5rem;
  list-style: none;
}

.home-countries-list li {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #3f3f46;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 15, 18, 0.07);
  box-shadow: 0 2px 8px rgba(15, 15, 18, 0.04);
}

.home-countries-marquee--reverse .home-countries-list li {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(15, 15, 18, 0.05);
}

.home-destinations-foot {
  margin: 1.5rem 0 0;
}

.home-page .home-destinations .home-destinations-pricing-btn {
  margin-top: 0.15rem;
  background-color: #000000;
  background-image: none;
  color: #ffffff;
  border-color: #000000;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.home-page .home-destinations .home-destinations-pricing-btn:hover,
.home-page .home-destinations .home-destinations-pricing-btn:focus-visible {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.home-page .home-destinations .home-destinations-pricing-btn:visited {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .home-countries-track {
    animation: none;
    transform: translateX(0);
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
  }

  .home-countries-track .home-countries-list[aria-hidden="true"] {
    display: none;
  }

  .home-countries-marquee .home-countries-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .home-countries-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.journey-picker-page {
  background:
    radial-gradient(circle at 22% 78%, rgba(197, 232, 255, 0.22), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 86% 30%, rgba(205, 197, 255, 0.18), rgba(255, 255, 255, 0) 30%),
    #f4f5f8;
}

.journey-picker-main {
  padding: 2.3rem 0 3.2rem;
}

.journey-picker-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(520px, 1.15fr);
  gap: 2.1rem;
  align-items: start;
  isolation: isolate;
}

.journey-copy {
  padding-top: 3.5rem;
  max-width: 510px;
  position: relative;
  z-index: 2;
}

.journey-copy h1 {
  margin: 0;
  font-size: clamp(2.05rem, 3.8vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-wrap: balance;
}

.journey-copy p {
  margin: 1.15rem 0 0;
  color: #616875;
  font-size: 0.94rem;
  line-height: 1.58;
}

.journey-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.journey-actions .btn {
  min-width: 150px;
}

.journey-actions .btn-primary {
  background: linear-gradient(180deg, #16161a, #060608);
  border-color: #040406;
  box-shadow: 0 14px 30px rgba(7, 7, 11, 0.28);
}

.journey-actions .btn-secondary {
  border-color: #d9dee9;
  background: rgba(255, 255, 255, 0.75);
}

.journey-modal-card {
  border: 1px solid rgba(229, 233, 241, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  box-shadow:
    0 28px 62px rgba(17, 24, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.45rem 1.5rem 1.35rem;
  position: relative;
  z-index: 2;
  justify-self: start;
  margin-top: 1.15rem;
  transform: translateX(-1.4rem);
}

.journey-close-btn {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: #4b5563;
  font-size: 1.75rem;
  line-height: 1;
  cursor: default;
}

.journey-modal-head {
  text-align: center;
  padding: 0.45rem 2.2rem 0.3rem;
}

.journey-modal-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.journey-modal-head p {
  margin: 0.7rem auto 0;
  max-width: 500px;
  color: #6b7280;
  font-size: 0.95rem;
}

.journey-options {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.journey-option-card {
  border: 1px solid #e5e9f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 16px 30px rgba(17, 24, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: 1.3rem 1.1rem 1.2rem;
  text-align: center;
}

.journey-option-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.8rem;
  border: 1px solid #e7ebf2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
}

.journey-option-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: #0f172a;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-option-card h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.journey-option-card p {
  margin: 0.55rem auto 0;
  max-width: 250px;
  color: #636b78;
  font-size: 0.9rem;
  line-height: 1.55;
}

.journey-select-btn {
  margin-top: 1rem;
  display: inline-flex;
  min-width: 118px;
  justify-content: center;
  border: 1px solid #050507;
  border-radius: 999px;
  background: linear-gradient(180deg, #16161a, #060608);
  padding: 0.58rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.journey-select-btn:hover,
.journey-select-btn:focus-visible {
  background: linear-gradient(180deg, #232329, #0b0b0f);
}

.journey-orb {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 22px 36px rgba(104, 114, 186, 0.25));
  z-index: 1;
}

.journey-orb-right {
  width: clamp(220px, 27vw, 360px);
  right: -6rem;
  top: 0.7rem;
}

.journey-orb-left {
  width: clamp(110px, 13vw, 180px);
  left: 12.5%;
  bottom: -2.4rem;
}

.journey-benefits {
  margin-top: 6.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 300px));
  gap: 0.7rem;
  justify-content: center;
}

.journey-benefit-card {
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: center;
  padding: 0.58rem 0.68rem;
}

.journey-benefit-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e7f0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
}

.journey-benefit-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #111827;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-benefit-card h4 {
  margin: 0;
  font-size: 0.93rem;
  letter-spacing: -0.02em;
}

.journey-benefit-card p {
  margin: 0.14rem 0 0;
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.35;
}

.auth-gate-open {
  overflow: hidden;
}

.auth-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(5, 8, 15, 0.55);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.auth-gate-overlay[hidden] {
  display: none;
}

.auth-gate-dialog {
  width: min(720px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(229, 233, 241, 0.92);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  box-shadow:
    0 26px 60px rgba(17, 24, 39, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  padding: 1.7rem 1.5rem 1.45rem;
  position: relative;
}

.auth-gate-close {
  position: absolute;
  right: 0.9rem;
  top: 0.7rem;
  width: 34px;
  height: 34px;
  border: 1px solid #dce2ed;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #4b5563;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.auth-gate-close:hover,
.auth-gate-close:focus-visible {
  color: #111827;
  border-color: #cfd6e2;
}

.auth-gate-kicker {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #050507;
  font-weight: 750;
}

.auth-gate-dialog h2 {
  margin: 0.42rem 0 0;
  font-size: clamp(1.52rem, 2.4vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
  font-weight: 650;
  color: #0b1020;
}

.auth-gate-dialog p {
  margin: 0.68rem 0 0;
  color: #4f5765;
  font-size: 0.935rem;
  line-height: 1.62;
  max-width: 48ch;
}

.auth-gate-dialog .auth-gate-kicker {
  color: #050507;
  font-weight: 750;
}

.auth-gate-subline {
  margin-top: 0.62rem;
  white-space: nowrap;
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-gate-subline-second {
  margin-top: 0.2rem;
}

.auth-gate-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.auth-gate-actions .btn {
  min-width: 190px;
  background: #050507;
  border-color: #050507;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(3, 3, 6, 0.24);
}

.auth-gate-actions .btn:hover,
.auth-gate-actions .btn:focus-visible {
  background: #111217;
  border-color: #111217;
  color: #ffffff;
}

.legal-page {
  background: #f5f6f8;
  color: #111827;
}

.agb-main {
  padding: 2rem 0 1.4rem;
}

.agb-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1rem;
  align-items: stretch;
}

.agb-sidebar-card,
.agb-content-card {
  border: 1px solid rgba(225, 229, 238, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 12px 30px rgba(17, 24, 39, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.agb-sidebar-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.05rem 1.15rem;
}

.agb-sidebar-card h1 {
  margin: 0;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.agb-sidebar-card p {
  margin: 0.35rem 0 1rem;
  color: #6b7280;
  font-size: 0.86rem;
}

.agb-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
  position: relative;
  z-index: 1;
}

.agb-nav-btn {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #5a6372;
  font: inherit;
  font-size: 0.85rem;
  padding: 0.56rem 0.7rem 0.56rem 1.52rem;
  position: relative;
  cursor: pointer;
}

.agb-nav-btn::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bec5d3;
  transform: translateY(-50%);
}

.agb-nav-btn:hover,
.agb-nav-btn:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  border-color: #e4e8f0;
  color: #111827;
}

.agb-nav-btn.is-active {
  background: #fff;
  border-color: #dfe4ee;
  color: #0b0f17;
  box-shadow: 0 8px 16px rgba(17, 24, 39, 0.06);
}

.agb-nav-btn.is-active::before {
  background: #050507;
}

.agb-content-card {
  padding: 1.3rem;
  min-height: 520px;
  display: grid;
  align-content: space-between;
}

.agb-panel {
  display: none;
}

.agb-panel.is-visible {
  display: block;
}

.agb-panel-kicker {
  margin: 0;
  font-size: 0.82rem;
  color: #6b7280;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agb-panel h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.agb-panel p {
  margin: 0.9rem 0 0;
  color: #4f5664;
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 82ch;
}

.agb-controls {
  margin-top: 1.2rem;
  border-top: 1px solid #e4e8f0;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.agb-controls .btn {
  min-width: 152px;
}

.agb-controls .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.agb-orb-left {
  position: absolute;
  right: -22px;
  bottom: -36px;
  width: clamp(140px, 14vw, 205px);
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 16px 24px rgba(90, 111, 168, 0.24));
}

.legal-footer {
  border-top: 1px solid #e6e9ef;
  background: #f5f6f8;
  padding: 1.05rem 0;
  position: relative;
  overflow: hidden;
}

.legal-footer .footer-inner {
  align-items: center;
}

.legal-footer-brand p {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.legal-footer .footer-links a {
  color: #4b5563;
  font-size: 0.9rem;
}

.prices-page {
  background: #f5f5f7;
  color: #09090b;
}

.prices-header {
  position: sticky;
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
}

.prices-header .container {
  width: min(1220px, calc(100% - 3.2rem));
}

.prices-header-inner {
  min-height: 60px;
  gap: 1.4rem;
}

.prices-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.46rem;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: #f5f5f7;
}

.prices-brand::before {
  content: "✈";
  font-size: 0.66rem;
  line-height: 1;
  color: #f5f5f7;
  opacity: 0.9;
  transform: translateY(-0.5px);
}

.prices-nav {
  gap: 2.1rem;
}

.prices-nav a {
  color: rgba(245, 245, 247, 0.88);
  font-size: 0.94rem;
  font-weight: 300;
  letter-spacing: 0.015em;
}

.prices-nav a:hover,
.prices-nav a:focus-visible {
  color: #ffffff;
}

.prices-nav a[aria-current="page"] {
  color: #ffffff;
  font-weight: 400;
}

.prices-header-actions {
  gap: 0.8rem;
}

.prices-header .header-reise-starten-link,
.prices-page .account-login-link {
  color: rgba(245, 245, 247, 0.88);
  font-size: 0.93rem;
  font-weight: 300;
  letter-spacing: 0.015em;
}

.prices-header .header-reise-starten-link:hover,
.prices-header .header-reise-starten-link:focus-visible,
.prices-page .account-login-link:hover,
.prices-page .account-login-link:focus-visible {
  color: #ffffff;
}

body.prices-page.reise-starten-page .header-reise-starten-link {
  color: #ffffff;
  font-weight: 400;
}

.prices-cta {
  background: linear-gradient(180deg, #ffffff, #e8e8eb);
  border-color: transparent;
  color: #09090b;
  border-radius: 999px;
  padding: 0.73rem 1.24rem;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.015em;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
  margin-left: 0.1rem;
}

.prices-cta:hover,
.prices-cta:focus-visible {
  background: #ffffff;
}

.prices-page .account-menu-trigger {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #f5f5f7;
}

.prices-page .account-menu-trigger:hover,
.prices-page .account-menu-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
}

.prices-page .account-menu-trigger.account-menu-trigger-initial {
  background: #ffffff;
  color: #09090b;
  border-color: rgba(255, 255, 255, 0.62);
}

.prices-page .account-menu-trigger.account-menu-trigger-initial:hover,
.prices-page .account-menu-trigger.account-menu-trigger-initial:focus-visible {
  background: #ffffff;
  color: #09090b;
  border-color: #ffffff;
}

.prices-page .mobile-toggle {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #f5f5f7;
}

.prices-main {
  padding: 1.7rem 0 2.4rem;
}

.prices-section {
  padding: 0;
}

.prices-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 28px;
  border-color: #e8e8ec;
  padding: 2.2rem 2.3rem 1.4rem;
  background: #ffffff;
}

.prices-intro {
  text-align: center;
}

.prices-intro h1 {
  margin: 0;
  font-size: clamp(2.05rem, 4.3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.prices-intro p {
  margin: 0.72rem auto 0;
  max-width: 650px;
  color: #666c78;
  font-size: 0.96rem;
  line-height: 1.56;
}

.reise-journey-shell .reise-journey-options {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reise-journey-shell .journey-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 1.35rem;
}

/* Gleiche Texthöhe → Buttons auf einer Linie wie bei Studium */
.reise-journey-shell .journey-option-card p {
  flex-shrink: 0;
  min-height: 4.85rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: 0.012em;
  color: #647089;
}

.reise-journey-shell .journey-option-card h3 {
  font-size: 1.26rem;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: #141820;
}

.reise-journey-shell .journey-option-icon svg {
  stroke-width: 1.45;
}

.reise-journey-shell .journey-select-btn {
  margin-top: auto;
  padding: 0.52rem 1.05rem;
  font-size: 0.835rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.reise-journey-shell .prices-intro h1 {
  font-weight: 500;
  letter-spacing: -0.038em;
}

.reise-journey-shell .prices-intro p {
  font-weight: 400;
  font-size: 0.935rem;
  letter-spacing: 0.01em;
  color: #5f6674;
}

.reise-journey-footnote {
  margin: 1.35rem auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: 0.015em;
  color: #949aa8;
}

.reise-journey-badge {
  margin: 1.1rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  max-width: 640px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #e8eaef;
  background: rgba(249, 250, 252, 0.95);
  font-size: 0.88rem;
  color: #5c6370;
}

.reise-journey-badge strong {
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.02em;
}

.reise-journey-badge-prefix {
  color: #6b7280;
}

.reise-journey-change {
  margin-left: 0.15rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.35);
}

.reise-journey-change:hover,
.reise-journey-change:focus-visible {
  color: #1d4ed8;
  border-bottom-color: rgba(29, 78, 216, 0.55);
}

/* Reise-Journey: volle Höhe, Card unten mittig, Footer am Seitenende */
body.reise-journey-step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.reise-journey-step .site-header.prices-header {
  flex-shrink: 0;
}

body.reise-journey-step .prices-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.65rem 0 1rem;
}

body.reise-journey-step .prices-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.reise-journey-step .prices-section .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-top: 0.25rem;
  padding-bottom: clamp(2.25rem, 11vh, 6.5rem);
}

body.reise-journey-step .reise-journey-shell {
  width: 100%;
  max-width: min(920px, 100%);
}

body.reise-journey-step .site-footer.prices-footer {
  flex-shrink: 0;
  margin-top: auto;
}

body.reise-journey-step.prices-page .site-footer.prices-footer {
  border-top: 1px solid rgba(228, 231, 237, 0.95);
  background: #f5f5f7;
  padding: 1.15rem 0 1.6rem;
}

body.reise-journey-step .prices-footer .footer-inner {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.prices-billing-switch {
  margin: 1.25rem auto 0;
  width: max-content;
  border: 1px solid #e6e8ee;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.26rem;
}

.prices-billing-switch button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  padding: 0.35rem 1.2rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.prices-billing-switch button.is-muted {
  background: transparent;
  color: #6b7280;
}

.prices-billing-switch button.is-active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.08);
}

.prices-billing-switch span {
  font-size: 0.73rem;
  color: #8b92a0;
  padding: 0 0.6rem 0 0.2rem;
  white-space: nowrap;
}

.prices-plan-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.prices-plan-grid.prices-plan-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.prices-plan-card {
  position: relative;
  border: 1px solid #eaecf2;
  border-radius: 18px;
  background: #fff;
  padding: 1.25rem 1.15rem 1.1rem;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.prices-plan-card.is-featured {
  border-color: #d8dbf8;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.09);
}

.prices-plan-card.is-selected {
  border-color: #111827;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.14);
  transform: translateY(-1px);
}

.prices-badge {
  position: absolute;
  top: -0.48rem;
  left: 1rem;
  margin: 0;
  border: 1px solid #e0e2ff;
  border-radius: 999px;
  background: #f4f5ff;
  color: #696fcb;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.52rem;
}

.prices-plan-card h2 {
  margin: 0;
  font-size: 1.72rem;
  letter-spacing: -0.03em;
}

.prices-plan-sub {
  margin: 0.2rem 0 0;
  color: #6b7280;
  font-size: 0.82rem;
}

.prices-plan-deal {
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #6b7280;
}

.prices-plan-deal-was del {
  color: #9ca3af;
  text-decoration-thickness: 1px;
  text-decoration-color: #c5c9d4;
}

.prices-plan-deal-promo {
  color: #5c61b8;
  font-weight: 600;
  font-size: 0.76rem;
}

.prices-plan-deal + .prices-amount {
  margin-top: 0.42rem;
}

.prices-amount {
  margin: 0.72rem 0 0;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 650;
}

.prices-amount .prices-amount-term {
  margin-left: 0.26rem;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  color: #737986;
  font-weight: 500;
}

.prices-plan-card ul {
  margin: 0.95rem 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.prices-plan-card li {
  padding-left: 1.55rem;
  position: relative;
  font-size: 0.86rem;
  color: #232833;
  line-height: 1.45;
}

.prices-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: #111827;
  border: 0;
}

.prices-plan-btn {
  width: 100%;
  min-height: 41px;
  font-size: 0.87rem;
}

.prices-plan-card.is-selected .prices-plan-btn {
  background: #ffffff;
  border-color: #d4d4d8;
  color: #111827;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.prices-plan-card.is-selected .prices-plan-btn:hover,
.prices-plan-card.is-selected .prices-plan-btn:focus-visible {
  background: #f4f4f5;
  border-color: #c4c4cc;
  color: #09090b;
}

.prices-plan-card .btn-primary {
  background: #ffffff;
  border-color: #e4e4e7;
  color: #111827;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
}

.prices-plan-card .btn-primary:hover,
.prices-plan-card .btn-primary:focus-visible {
  background: #f4f4f5;
  border-color: #d4d4d8;
  color: #09090b;
}

.prices-selected-note {
  margin: 0.85rem 0 0;
  text-align: center;
  color: #5f6674;
  font-size: 0.84rem;
}

.prices-selected-note strong {
  color: #111827;
}

.prices-compare {
  margin-top: 1rem;
  border: 1px solid #eceef3;
  border-radius: 16px;
  background: #fff;
}

.prices-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) repeat(3, minmax(0, 0.8fr));
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #f0f2f6;
}

.prices-compare.prices-compare--cols-2 .prices-compare-row {
  grid-template-columns: minmax(0, 2.2fr) repeat(2, minmax(0, 1fr));
}

.prices-compare-row:last-child {
  border-bottom: 0;
}

.prices-compare-row p {
  margin: 0;
  font-size: 0.84rem;
  color: #2a303b;
}

.prices-compare-row > span {
  text-align: center;
  font-size: 0.77rem;
  color: #5b6372;
}

.prices-compare-row .is-x {
  color: #dc2626;
  font-weight: 600;
}

.prices-compare-row .is-cross {
  display: inline-flex;
  justify-self: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #cfd4e1;
  position: relative;
}

.is-check {
  display: inline-flex;
  justify-self: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #86efac;
  background: #f0fdf4;
  position: relative;
  box-sizing: border-box;
}

.is-check::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 3px;
  height: 7px;
  border: solid #15803d;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.prices-compare-row .is-cross::before,
.prices-compare-row .is-cross::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 1px;
  height: 8px;
  background: #bac0cd;
}

.prices-compare-row .is-cross::before {
  transform: rotate(45deg);
}

.prices-compare-row .is-cross::after {
  transform: rotate(-45deg);
}

.prices-footer {
  background: transparent;
  border-top: 0;
  padding: 1rem 0 1.45rem;
}

.prices-footer-brand p {
  margin: 0;
  color: #777f8d;
  font-size: 0.78rem;
}

.prices-footer .footer-links a {
  font-size: 0.88rem;
}

.prices-orb {
  position: absolute;
  pointer-events: none;
  user-select: none;
  display: block;
  object-fit: contain;
  z-index: 0;
  filter: drop-shadow(0 16px 28px rgba(86, 107, 173, 0.24));
}

.prices-orb-large {
  top: 2.8rem;
  right: -0.6rem;
  width: clamp(120px, 15vw, 190px);
  aspect-ratio: 1;
  opacity: 0.82;
}

.prices-orb-small {
  left: -1.8rem;
  bottom: 7.8rem;
  width: clamp(52px, 6vw, 78px);
  aspect-ratio: 1;
  opacity: 0.6;
}

.prices-intro,
.prices-mode-hint,
.prices-plan-grid,
.prices-compare {
  position: relative;
  z-index: 1;
}

.prices-mode-hint {
  margin: 0.75rem auto 0;
  max-width: 650px;
  color: #666c78;
  font-size: 0.88rem;
  line-height: 1.52;
}

.prices-mode-hint--after-grid {
  margin-top: 1rem;
}

.prices-selected-note + .prices-mode-hint--after-grid {
  margin-top: 0.55rem;
}

.prices-page--from-login .prices-from-login-cta {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.prices-page--from-login .prices-jetzt-reise-btn {
  width: 100%;
  max-width: min(100%, 32rem);
  min-height: 3.1rem;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 999px;
  text-align: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.18);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-cards,
  .benefits-grid,
  .dashboard-grid,
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .preview-card,
  .steps-compact,
  .pricing-grid,
  .plan-card-grid,
  .city-card-grid,
  .official-link-grid,
  .dashboard-link-grid,
  .dashboard-workspace {
    grid-template-columns: 1fr;
  }

  .home-hero-layout,
  .home-preview-grid {
    grid-template-columns: 1fr;
  }

  .prices-plan-grid {
    grid-template-columns: 1fr;
  }

  .glass-orb {
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    bottom: -34px;
  }

  .agb-layout {
    grid-template-columns: 1fr;
  }

  .planner-layout {
    grid-template-columns: 1fr;
  }

  .planner-right {
    order: 2;
  }

  .journey-picker-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .journey-copy {
    padding-top: 0.45rem;
    max-width: none;
  }

  .journey-modal-card {
    order: 3;
    transform: none;
    margin-top: 0.25rem;
  }

  .journey-benefits {
    grid-template-columns: 1fr;
  }

  .journey-orb-right {
    right: -2rem;
    top: 8.8rem;
    width: clamp(175px, 24vw, 270px);
  }

  .journey-orb-left {
    left: 1rem;
    bottom: -1.2rem;
  }

  .agb-sidebar-card {
    padding-bottom: 6rem;
  }

  .agb-nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agb-orb-left {
    right: -20px;
    bottom: -30px;
    width: clamp(120px, 28vw, 180px);
  }

  .login-stage {
    padding: 3.4rem 0 4.8rem;
  }

  .login-shell {
    min-height: auto;
  }

  .login-orb-large {
    width: clamp(220px, 34vw, 300px);
    right: -1rem;
    top: 0.8rem;
    opacity: 0.84;
  }

  .login-orb-small {
    width: clamp(95px, 12vw, 130px);
    left: 0.5rem;
    bottom: 0.3rem;
  }

  .prices-shell {
    padding: 1.7rem 1rem 1.1rem;
  }

  .prices-compare-row {
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 0.8fr));
    padding: 0.6rem;
  }

  .prices-compare.prices-compare--cols-2 .prices-compare-row {
    grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 0.85fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.4rem));
  }

  .home-page .container,
  .home-header-theme .container {
    width: min(1220px, calc(100% - 1.4rem));
  }

  .prices-header .container {
    width: min(1220px, calc(100% - 1.4rem));
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 5rem;
  }

  .auth-layout {
    padding: 3.5rem 0 4.4rem;
  }

  .header-inner {
    min-height: 64px;
  }

  .home-page .header-inner,
  .home-header-theme .header-inner {
    min-height: 56px;
  }

  .prices-page .header-inner {
    min-height: 56px;
  }

  .mobile-toggle {
    display: inline-flex;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 10px;
    padding: 0.42rem 0.55rem;
    cursor: pointer;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .site-header.mobile-open .nav,
  .site-header.mobile-open .header-actions {
    display: flex;
    width: 100%;
  }

  .site-header.mobile-open .nav:empty {
    display: none !important;
  }

  .site-header.mobile-open .header-inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .site-header.mobile-open .nav {
    gap: 0.9rem;
    padding-top: 0.4rem;
  }

  .site-header.mobile-open .header-actions {
    padding-bottom: 0.35rem;
  }

  .home-page .site-header.mobile-open .nav,
  .home-header-theme .site-header.mobile-open .nav {
    justify-content: flex-start;
    flex-basis: 100%;
  }

  .home-page .site-header.mobile-open .header-actions,
  .home-header-theme .site-header.mobile-open .header-actions {
    justify-content: flex-start;
    flex-basis: 100%;
  }

  .prices-page .site-header.mobile-open .nav,
  .prices-page .site-header.mobile-open .header-actions {
    justify-content: flex-start;
    flex-basis: 100%;
  }

  .legal-page .site-header.mobile-open .nav,
  .legal-page .site-header.mobile-open .header-actions {
    display: flex;
    width: 100%;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .legal-page .site-header.mobile-open .header-inner {
    flex-wrap: wrap;
  }

  .legal-page .brand {
    font-size: 1.45rem;
  }

  .agb-main {
    padding-top: 1.2rem;
  }

  .journey-picker-main {
    padding-top: 1.2rem;
  }

  .journey-copy h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .planner-main {
    padding-top: 1.1rem;
  }

  .planner-hero h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.8rem);
  }

  .planner-hero p {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .planner-form-card {
    padding: 0.86rem 0.8rem 0.92rem;
  }

  .planner-trust ul {
    grid-template-columns: 1fr;
  }

  .planner-orb {
    right: -2rem;
    bottom: -2.6rem;
    width: clamp(84px, 24vw, 112px);
  }

  .journey-copy p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .journey-modal-card {
    border-radius: 20px;
    padding: 1rem 0.9rem 1rem;
  }

  .journey-modal-head {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .journey-modal-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }

  .journey-options {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .journey-option-card h3 {
    font-size: 1.25rem;
  }

  .auth-gate-dialog {
    border-radius: 18px;
    padding: 1.35rem 0.95rem 1.1rem;
  }

  .auth-gate-actions {
    margin-top: 1rem;
  }

  .auth-gate-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .journey-actions .btn {
    width: 100%;
  }

  .journey-orb-right {
    display: none;
  }

  .journey-orb-left {
    width: clamp(90px, 26vw, 140px);
    left: 0.3rem;
    bottom: -2.5rem;
  }

  .agb-layout {
    border-radius: 14px;
  }

  .agb-sidebar-card {
    padding: 1.2rem 0.95rem 5.5rem;
  }

  .agb-sidebar-card h1 {
    font-size: 2rem;
  }

  .agb-content-card {
    padding: 0.95rem;
    min-height: 420px;
  }

  .agb-nav-list {
    grid-template-columns: 1fr;
  }

  .agb-controls {
    flex-direction: column;
  }

  .agb-controls .btn {
    width: 100%;
  }

  .legal-footer .footer-inner {
    align-items: flex-start;
  }

  .home-hero {
    padding-top: 1.7rem;
  }

  .home-hero-copy h1 {
    font-size: clamp(1.55rem, 8.2vw, 2.3rem);
    line-height: 1.15;
  }

  .home-hero-copy p {
    font-size: 0.95rem;
    margin-top: 1.1rem;
    line-height: 1.5;
  }

  .home-hero-actions {
    margin-top: 1.35rem;
  }

  .home-preview {
    padding: 0.95rem;
  }

  .timeline-labels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glass-orb {
    width: 114px;
    bottom: -38px;
  }

  .home-features {
    padding-top: 0.8rem;
    padding-bottom: 3.5rem;
  }

  .preview-card {
    padding: 1rem;
  }

  .trust-row span {
    border-right: 0;
    padding-right: 0;
  }

  .questionnaire-card {
    padding: 1.2rem;
  }

  .scale-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .choice-grid-compact {
    grid-template-columns: 1fr 1fr;
  }

  .login-stage {
    padding: 2.2rem 0 3.2rem;
  }

  .login-card {
    width: min(560px, 100%);
    border-radius: 24px;
    padding: 1.8rem 1.15rem 1.45rem;
  }

  .login-title {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }

  .login-subtitle {
    font-size: 0.9rem;
    white-space: normal;
  }

  .login-legal-line {
    white-space: normal;
  }

  .login-meta-row {
    flex-wrap: wrap;
  }

  .login-orb-large,
  .login-orb-small {
    display: none;
  }

  .prices-main {
    padding-top: 1rem;
  }

  .prices-intro h1 {
    font-size: clamp(1.75rem, 7.3vw, 2.35rem);
  }

  .prices-intro p {
    font-size: 0.9rem;
  }

  .reise-journey-shell .reise-journey-options {
    grid-template-columns: 1fr;
  }

  .prices-billing-switch {
    width: 100%;
    justify-content: center;
  }

  .prices-billing-switch button {
    padding-inline: 0.82rem;
  }

  .prices-billing-switch span {
    display: none;
  }

  .prices-compare {
    overflow-x: auto;
  }

  .prices-compare-row {
    min-width: 560px;
  }

  .prices-compare.prices-compare--cols-2 .prices-compare-row {
    min-width: 380px;
  }

  .prices-footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .prices-orb-large {
    width: clamp(92px, 24vw, 136px);
    top: 2.4rem;
    right: -1.2rem;
  }

  .prices-orb-small {
    left: -1.5rem;
    bottom: 8.8rem;
    width: clamp(48px, 15vw, 70px);
  }
}

.dashboard-page {
  background: var(--background);
}

.dashboard-page .container {
  width: min(1380px, calc(100% - 2rem));
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 247, 0.88);
  border-bottom: 1px solid #e7eaf0;
  backdrop-filter: blur(10px);
}

.dashboard-header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-brand {
  font-size: 1.6rem;
  font-weight: 700;
}

.dashboard-main {
  padding: 1.2rem 0 2.2rem;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 300px;
  gap: 1rem;
  align-items: start;
}

.dashboard-sidebar,
.dashboard-center,
.dashboard-right {
  min-width: 0;
}

.dashboard-sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid #e8ebf1;
  border-radius: 20px;
  background: #fff;
  padding: 1rem 0.75rem;
}

.dashboard-plan-chip {
  width: 100%;
  border: 1px solid #060608;
  border-radius: 999px;
  background: linear-gradient(180deg, #1b1c20, #07080b);
  color: #fff;
  font-weight: 600;
  font-size: 0.83rem;
  padding: 0.6rem 0.8rem;
}

.dashboard-nav {
  margin-top: 1rem;
  display: grid;
  gap: 0.2rem;
}

.dashboard-nav a {
  border-radius: 10px;
  padding: 0.48rem 0.6rem;
  color: #5f6775;
  font-size: 0.9rem;
}

.dashboard-nav a.is-active,
.dashboard-nav a:hover {
  background: #f3f5fa;
  color: #101828;
}

.dashboard-center-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.dashboard-greeting-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  letter-spacing: -0.03em;
}

.dashboard-greeting-sub {
  margin: 0.2rem 0 0;
  color: #6b7280;
}

.dashboard-edit-btn {
  min-height: 40px;
}

.dashboard-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7eaf0;
  border-radius: 22px;
  background: linear-gradient(180deg, #f9faff, #f4f7ff);
  padding: 1.2rem 1.25rem 1.4rem;
}

.dashboard-hero-eyebrow {
  margin: 0;
  font-size: 0.8rem;
  color: #738098;
}

.dashboard-hero-title {
  margin: 0.15rem 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.dashboard-hero-copy {
  margin: 0.35rem 0 0;
  color: #515a67;
  max-width: 64ch;
}

.dashboard-hero-meta {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #4d5563;
  font-size: 0.88rem;
}

.dashboard-hero-orb {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 72% 74%, rgba(74, 118, 255, 0.32), rgba(74, 118, 255, 0) 56%),
    radial-gradient(circle at 50% 50%, rgba(172, 255, 248, 0.45), rgba(172, 255, 248, 0.08) 42%, rgba(172, 255, 248, 0) 70%),
    conic-gradient(from 200deg, rgba(96, 218, 255, 0.26), rgba(151, 143, 255, 0.24), rgba(96, 218, 255, 0.26));
  box-shadow:
    inset -18px -18px 28px rgba(38, 71, 152, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75),
    0 14px 30px rgba(70, 90, 162, 0.3);
}

.dashboard-journey {
  margin-top: 0.8rem;
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  background: #fff;
  padding: 0.8rem;
}

.dashboard-journey-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.dashboard-journey-track div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #9098a8;
  font-size: 0.8rem;
}

.dashboard-journey-track span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #dde2ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.dashboard-journey-track div.is-complete,
.dashboard-journey-track div.is-active {
  color: #202938;
}

.dashboard-journey-track div.is-complete span,
.dashboard-journey-track div.is-active span {
  border-color: #b7bfd0;
  background: #f2f4fa;
}

.dashboard-overview {
  margin-top: 0.8rem;
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem;
}

.dashboard-overview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.dashboard-overview-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.dashboard-overview-list .dashboard-check-item {
  background: #fff;
}

.dashboard-overview-list .dashboard-check-label {
  grid-template-columns: auto 1fr;
}

.dashboard-overview-list .dashboard-check-item + .dashboard-check-item {
  margin-top: 0.4rem;
}

.dashboard-secondary {
  margin-top: 0.8rem;
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  background: #fff;
  padding: 0.8rem;
}

.dashboard-secondary > summary {
  cursor: pointer;
  font-weight: 600;
}

.dashboard-secondary-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.dashboard-links-card {
  grid-column: 1 / -1;
}

.dashboard-right {
  display: grid;
  gap: 0.75rem;
}

.dashboard-side-card {
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem;
}

.dashboard-side-card h3 {
  margin: 0;
  font-size: 1.07rem;
}

.dashboard-detail-list {
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.dashboard-detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.dashboard-detail-list dt {
  color: #6b7280;
  font-size: 0.83rem;
}

.dashboard-detail-list dd {
  margin: 0;
  text-align: right;
  font-size: 0.86rem;
  font-weight: 600;
}

.dashboard-side-btn {
  width: 100%;
  margin-top: 0.75rem;
}

.dashboard-next-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.dashboard-next-list li {
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  background: #fbfcff;
  padding: 0.55rem 0.6rem;
}

.dashboard-next-list li strong {
  display: block;
  font-size: 0.9rem;
}

.dashboard-next-list li span {
  display: block;
  margin-top: 0.15rem;
  color: #6b7280;
  font-size: 0.78rem;
}

.dashboard-next-list li.is-done {
  border-color: #d5deeb;
  background: #f6f9ff;
}

.dashboard-next-step-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
}

.dashboard-next-step-label input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: #15803d;
}

.dashboard-all-steps-btn {
  width: 100%;
  margin-top: 0.7rem;
  border: 1px solid #050507;
  background: linear-gradient(180deg, #17171a, #060608);
  color: #fff;
  box-shadow: 0 10px 22px rgba(6, 7, 12, 0.25);
}

.dashboard-all-steps-btn:hover,
.dashboard-all-steps-btn:focus-visible {
  background: linear-gradient(180deg, #25262a, #0c0d10);
}

.dashboard-budget-total {
  margin: 0.65rem 0 0;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.dashboard-budget-bars {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.58rem;
}

.dashboard-budget-bars span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.dashboard-budget-bars em {
  font-style: normal;
  color: #5f6775;
  font-size: 0.8rem;
  position: relative;
  padding-left: 0.72rem;
}

.dashboard-budget-bars span:first-of-type em::before,
.dashboard-budget-bars span:last-of-type em::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.dashboard-budget-bars span:first-of-type em::before {
  background: #31b377;
}

.dashboard-budget-bars span:last-of-type em::before {
  background: #8c7bff;
}

.dashboard-budget-bars strong {
  font-size: 0.85rem;
  font-weight: 600;
}

.dashboard-mini-track {
  height: 7px;
  border-radius: 999px;
  background: #eceff5;
  overflow: hidden;
}

.dashboard-mini-track i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #36c389, #82d4ac);
}

.dashboard-budget-btn {
  width: 100%;
  margin-top: 0.75rem;
}

@media (max-width: 1200px) {
  .dashboard-shell {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .dashboard-right {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
  }

  .dashboard-right {
    grid-template-columns: 1fr;
  }

  .dashboard-hero-orb {
    width: 98px;
    right: 0.8rem;
  }

  .dashboard-secondary-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-overview-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ga-dashboard-header {
  background: rgba(250, 250, 250, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
}

.ga-dashboard-header-inner {
  min-height: 68px;
}

.ga-dashboard-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ga-dashboard-actions {
  gap: 0.55rem;
}

.ga-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.ga-profile-chip {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0.45rem 0.68rem;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}

.ga-black-btn {
  background: #ffffff;
  border-color: rgba(228, 228, 231, 0.95);
  color: #111827;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.ga-black-btn:hover,
.ga-black-btn:focus-visible {
  background: #f4f4f5;
  border-color: #d4d4d8;
  color: #09090b;
}

.ga-dashboard-main {
  padding: 0.9rem 0 1.5rem;
}

.ga-dashboard-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr) 320px;
  gap: 1rem;
}

.ga-sidebar,
.ga-center,
.ga-rightbar {
  min-width: 0;
}

.ga-sidebar {
  position: sticky;
  top: 92px;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.06);
  padding: 1rem 0.8rem;
}

.ga-sidebar-logo {
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.ga-sidebar-nav {
  margin-top: 1rem;
  display: grid;
  gap: 0.15rem;
}

.ga-sidebar-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.ga-sidebar-nav a.is-active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  color: #09090b;
  font-weight: 600;
}

.ga-sidebar-promo {
  margin-top: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.8rem;
  position: relative;
  overflow: hidden;
}

.ga-sidebar-promo h4 {
  margin: 0;
  font-size: 0.98rem;
}

.ga-sidebar-promo p {
  margin: 0.45rem 0 0.75rem;
  color: #6b7280;
  font-size: 0.82rem;
}

.ga-promo-orb {
  position: absolute;
  width: 76px;
  height: 76px;
  right: -14px;
  bottom: -24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 72% 76%, rgba(100, 126, 255, 0.32), rgba(100, 126, 255, 0) 62%),
    radial-gradient(circle at 48% 50%, rgba(110, 226, 255, 0.28), rgba(110, 226, 255, 0) 66%);
}

.ga-welcome-card,
.ga-plan-card,
.ga-accordion-section,
.ga-side-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.ga-welcome-card {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.ga-welcome-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.ga-welcome-sub {
  margin: 0.32rem 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.ga-welcome-orb {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(73, 87, 146, 0.16));
  opacity: 0.92;
}

.ga-plan-card {
  margin-top: 0.7rem;
  padding: 0.95rem;
}

.ga-plan-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: default;
  position: relative;
}

.ga-plan-card-head::after {
  content: none;
  position: absolute;
  right: -0.1rem;
  top: -0.15rem;
  font-size: 1rem;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.ga-plan-card.is-collapsed .ga-plan-card-head::after {
  transform: rotate(-90deg);
}

.ga-plan-card-body {
  max-height: 2000px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.25s ease;
}

.ga-plan-card.is-collapsed .ga-plan-card-body {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

.ga-label {
  margin: 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.ga-plan-card h2 {
  margin: 0.1rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  color: var(--text-primary);
}

.ga-plan-card-head p {
  margin: 0.2rem 0 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.ga-plan-progress {
  font-size: 0.82rem;
  color: #6b7280;
}

.ga-plan-progress span {
  color: #09090b;
  font-weight: 700;
}

.ga-plan-meta-grid {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 0.5rem;
}

.ga-plan-meta-grid div {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: #fcfcfd;
  padding: 0.5rem 0.55rem;
}

.ga-plan-meta-grid span {
  display: block;
  font-size: 0.7rem;
  color: #6b7280;
}

.ga-plan-meta-grid strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.ga-plan-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ga-sticky-view-nav {
  position: sticky;
  top: 68px;
  z-index: 35;
  margin-top: 0;
  margin-bottom: 0.9rem;
  padding: 0.5rem 0.55rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(0);
  opacity: 0.98;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
  overflow: visible;
}

.ga-sticky-view-nav.is-scrolled {
  transform: translateY(4px);
  opacity: 1;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.ga-accordion-section {
  margin-top: 0.95rem;
  padding: 1rem;
}

.ga-section-head h3 {
  margin: 0;
  font-size: 1.22rem;
}

.ga-plan-accordion {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.ga-accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.ga-accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem;
}

.ga-accordion-item summary::-webkit-details-marker {
  display: none;
}

.ga-accordion-index {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.ga-accordion-head h4 {
  margin: 0;
  font-size: 1rem;
}

.ga-accordion-head p {
  margin: 0.2rem 0 0;
  color: #6b7280;
  font-size: 0.84rem;
}

.ga-status-badge {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.2rem 0.55rem;
  font-size: 0.73rem;
}

.ga-status-badge.is-open {
  color: #6b7280;
}

.ga-status-badge.is-in_progress {
  color: #4f46e5;
}

.ga-status-badge.is-done {
  color: #15803d;
}

.ga-accordion-body {
  padding: 0 0.8rem 0.85rem;
}

.ga-accordion-body p {
  margin: 0;
  color: #111827;
  font-size: 0.93rem;
  line-height: 1.62;
}

.ga-inline-checklist {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.ga-inline-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ga-rightbar {
  display: grid;
  gap: 0.75rem;
}

.ga-side-card {
  padding: 0.82rem;
}

.ga-side-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.ga-progress-ring {
  --progress: 0%;
  --progress-color: #22c55e;
  margin-top: 0.6rem;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: conic-gradient(var(--progress-color) var(--progress), #e6e8ee 0);
  display: grid;
  place-items: center;
}

.ga-progress-ring::before {
  content: "";
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
}

.ga-progress-ring span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 0.84rem;
}

.ga-progress-stats {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.ga-progress-stats li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.ga-progress-stats strong {
  color: #09090b;
}

.ga-next-list {
  margin: 0.62rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.ga-next-list li {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  background: #fcfcfd;
  padding: 0.4rem 0.5rem;
}

.ga-next-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
}

.ga-next-row strong {
  display: block;
  font-size: 0.8rem;
}

.ga-next-row span {
  display: block;
  margin-top: 0.08rem;
  color: #6b7280;
  font-size: 0.72rem;
}

.ga-budget-main {
  margin: 0.7rem 0 0;
  font-size: 1.36rem;
  font-weight: 700;
}

.ga-budget-list {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: #6b7280;
  font-size: 0.85rem;
}

.ga-budget-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.ga-budget-list strong {
  color: #09090b;
}

.ga-small-muted {
  margin: 0.5rem 0 0;
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Dashboard & Fragebogen: moderne Fläche (ruhig, 2020s) */
body.dashboard-page .ga-dashboard-main {
  min-height: calc(100vh - 5rem);
  padding: 1.25rem 0 2.5rem;
  background: var(--background);
}

body.dashboard-page .ga-home-section,
body.dashboard-page .ga-areas-section,
body.dashboard-page .ga-empty-state {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
}

body.dashboard-page .ga-welcome-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  background: #fff;
}

body.dashboard-page .ga-welcome-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

body.dashboard-page .ga-welcome-sub {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  max-width: 38ch;
  line-height: 1.55;
}

body.dashboard-page .ga-welcome-orb {
  width: 104px;
  height: 104px;
  filter: drop-shadow(0 4px 12px rgba(24, 24, 27, 0.08));
  opacity: 1;
}

body.dashboard-page .ga-plan-card {
  margin-top: 0.85rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid #fff;
  background: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
}

body.dashboard-page .ga-plan-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--accent);
}

body.dashboard-page .ga-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

body.dashboard-page .ga-plan-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

body.dashboard-page .ga-plan-meta-grid div {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.6rem 0.65rem;
  transition: border-color 0.15s ease;
}

body.dashboard-page .ga-plan-meta-grid div:hover {
  border-color: #a1a1aa;
}

body.dashboard-page #dashboardHomeProgress.ga-home-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: 0.75rem;
}

body.dashboard-page .ga-side-card {
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius-md);
  border: 2px solid #fff;
  background: #fff;
}

body.dashboard-page .ga-side-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

body.dashboard-page .ga-side-card.ga-plan-coach-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: min(58vh, 520px);
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid rgba(201, 169, 98, 0.5);
  border-radius: 18px;
  background: linear-gradient(168deg, #fffefb 0%, #ffffff 38%, #f0f1f7 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 36px 72px -32px rgba(15, 23, 42, 0.22),
    0 14px 32px -12px rgba(15, 23, 42, 0.1);
}

body.dashboard-page .ga-side-card.ga-plan-coach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 98, 0.2) 15%,
    rgba(224, 192, 120, 0.95) 50%,
    rgba(201, 169, 98, 0.2) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 3;
}

body.dashboard-page .ga-side-card.ga-plan-coach-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(100% 80% at 100% 0%, rgba(99, 102, 241, 0.07), transparent 52%),
    radial-gradient(90% 70% at 0% 100%, rgba(201, 169, 98, 0.06), transparent 55%);
}

body.dashboard-page .ga-plan-coach-head {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

body.dashboard-page .ga-plan-coach-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.28rem;
}

body.dashboard-page .ga-plan-coach-eyebrow {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6e5f48;
}

body.dashboard-page .ga-plan-coach-badge {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  color: #3d3428;
  background: linear-gradient(135deg, rgba(237, 220, 180, 0.95) 0%, rgba(212, 180, 110, 0.88) 100%);
  border: 1px solid rgba(160, 130, 70, 0.45);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

body.dashboard-page .ga-side-card.ga-plan-coach-card .ga-plan-coach-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0a0908;
}

body.dashboard-page .ga-plan-coach-tagline {
  margin: 0.38rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
  font-weight: 400;
}

body.dashboard-page .ga-plan-coach-body {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-top: 0.85rem;
  padding: 0.55rem 0.55rem 0.6rem;
  border-radius: 14px;
  background: linear-gradient(168deg, #16161a 0%, #0e0e11 42%, #121218 100%);
  border: 1px solid rgba(212, 175, 95, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 40px -18px rgba(0, 0, 0, 0.45);
}

body.dashboard-page .ga-plan-coach-messages {
  flex: 1 1 auto;
  min-height: 132px;
  margin: 0;
  padding: 0.45rem 0.4rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  scroll-behavior: smooth;
  scrollbar-color: rgba(180, 151, 90, 0.45) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

body.dashboard-page .ga-plan-coach-messages::-webkit-scrollbar {
  width: 5px;
}

body.dashboard-page .ga-plan-coach-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(200, 170, 100, 0.55), rgba(140, 120, 80, 0.35));
  border-radius: 99px;
}

body.dashboard-page .ga-plan-coach-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 99px;
}

body.dashboard-page .ga-plan-coach-bubble {
  max-width: 94%;
  padding: 0.58rem 0.78rem;
  border-radius: 14px;
  font-size: 0.83rem;
  line-height: 1.48;
  white-space: pre-wrap;
  word-break: break-word;
}

body.dashboard-page .ga-plan-coach-bubble--assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(212, 175, 95, 0.88);
  color: #e7e5e4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

body.dashboard-page .ga-plan-coach-bubble--user {
  align-self: flex-end;
  background: linear-gradient(145deg, #f8f4ec 0%, #ebe4d4 100%);
  border: 1px solid rgba(201, 169, 98, 0.55);
  color: #1c1917;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

body.dashboard-page .ga-plan-coach-bubble--error {
  align-self: stretch;
  background: rgba(69, 10, 10, 0.55);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  font-size: 0.78rem;
}

body.dashboard-page .ga-plan-coach-form {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-top: 0.55rem;
}

body.dashboard-page .ga-plan-coach-composer {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  width: 100%;
  padding: 0.38rem 0.42rem 0.38rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.28s ease,
    background 0.25s ease;
}

body.dashboard-page .ga-plan-coach-composer:hover {
  border-color: rgba(212, 175, 95, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

body.dashboard-page .ga-plan-coach-composer:focus-within {
  border-color: rgba(212, 175, 95, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 2px rgba(212, 175, 95, 0.2);
}

body.dashboard-page .ga-plan-coach-input {
  flex: 1 1 auto;
  width: 100%;
  min-height: 2.55rem;
  max-height: 7.25rem;
  margin: 0;
  padding: 0.52rem 0.35rem 0.52rem 0;
  resize: none;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.9rem;
  line-height: 1.45;
  color: #f4f4f5;
  scrollbar-width: thin;
}

body.dashboard-page .ga-plan-coach-input::placeholder {
  color: rgba(161, 161, 170, 0.95);
}

body.dashboard-page .ga-plan-coach-input:focus-visible {
  outline: none;
}

@supports (field-sizing: content) {
  body.dashboard-page .ga-plan-coach-input {
    field-sizing: content;
  }
}

body.dashboard-page .ga-plan-coach-send {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.04rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #1a1814;
  background: linear-gradient(145deg, #f0e4c8 0%, #d4b76a 38%, #b8924a 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.35, 0.64, 1), box-shadow 0.2s ease;
}

body.dashboard-page .ga-plan-coach-send__svg {
  display: block;
  transform: translateX(1px);
}

body.dashboard-page .ga-plan-coach-send:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 8px 22px rgba(0, 0, 0, 0.4);
  transform: scale(1.06);
}

body.dashboard-page .ga-plan-coach-send:active {
  transform: scale(0.95);
}

body.dashboard-page .ga-plan-coach-send:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(12, 10, 8, 0.9),
    0 0 0 5px rgba(212, 175, 95, 0.45),
    0 6px 18px rgba(0, 0, 0, 0.35);
}

body.dashboard-page .ga-plan-coach-send:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.25);
}

body.dashboard-page .ga-plan-coach-hint {
  margin: 0;
  padding: 0 0.45rem 0 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(161, 161, 170, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  body.dashboard-page .ga-plan-coach-composer,
  body.dashboard-page .ga-plan-coach-send {
    transition: none;
  }

  body.dashboard-page .ga-plan-coach-send:hover,
  body.dashboard-page .ga-plan-coach-send:active {
    transform: none;
  }
}

body.dashboard-page .ga-progress-ring {
  position: relative;
  width: 96px;
  height: 96px;
  margin-top: 0.65rem;
  --ring-track: #e4e4e7;
  background: conic-gradient(from 0.12turn, #18181b var(--progress), var(--ring-track) 0);
  box-shadow: none;
}

body.dashboard-page .ga-progress-ring::before {
  width: 70px;
  height: 70px;
  background: #fff;
  box-shadow: none;
}

body.dashboard-page .ga-progress-ring span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

body.dashboard-page .ga-next-list li {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 0.5rem 0.6rem;
  transition: border-color 0.15s ease;
}

body.dashboard-page .ga-next-list li:hover {
  border-color: #d4d4d8;
}

body.dashboard-page .ga-sticky-view-nav {
  border-radius: 12px;
  padding: 0.4rem 0.5rem;
  gap: 0.35rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

body.dashboard-page .ga-sticky-view-nav .btn {
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.38rem 0.7rem;
}

body.dashboard-page .ga-sticky-view-nav .ga-black-btn {
  background: var(--accent);
  color: #fafafa;
  border: 1px solid var(--accent);
  box-shadow: none;
}

body.dashboard-page .ga-sticky-view-nav .ga-black-btn:hover,
body.dashboard-page .ga-sticky-view-nav .ga-black-btn:focus-visible {
  background: #27272a;
  border-color: #27272a;
  color: #fff;
}

body.dashboard-page .ga-area-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

body.dashboard-page .ga-section-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Fragebogen: rechte Spalte */
body.planner-page .planner-right {
  border-radius: var(--radius-md);
  border: 1px solid #27272a;
  background: #18181b;
  box-shadow: var(--shadow-card);
  padding: 1.2rem 1.15rem;
}

body.planner-page .planner-right-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: #fafafa;
}

body.planner-page .planner-step-list {
  position: relative;
  margin-top: 0.9rem;
  padding-left: 0.25rem;
  gap: 0.45rem;
}

body.planner-page .planner-step-list::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: #3f3f46;
}

body.planner-page .planner-step-card {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid #3f3f46;
  background: #27272a;
  padding: 0.7rem 0.8rem;
  gap: 0.7rem;
  box-shadow: none;
  transition: border-color 0.15s ease;
}

body.planner-page .planner-step-card:first-child {
  border-color: #52525b;
  background: #3f3f46;
}

body.planner-page .planner-step-card:hover {
  border-color: #52525b;
}

body.planner-page .planner-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #52525b;
  background: #18181b;
  box-shadow: none;
}

body.planner-page .planner-step-icon svg {
  stroke: #e4e4e7;
  stroke-width: 1.65;
}

body.planner-page .planner-step-card:first-child .planner-step-icon svg {
  stroke: #fafafa;
}

body.planner-page .planner-step-card strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
}

body.planner-page .planner-step-card span:last-child {
  width: 26px;
  height: 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid #52525b;
  background: #18181b;
  color: #e4e4e7;
  box-shadow: none;
}

body.planner-page .planner-step-card:first-child span:last-child {
  background: #fafafa;
  color: #18181b;
  border-color: #fafafa;
}

body.planner-page .planner-trust {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid #3f3f46;
}

body.planner-page .planner-trust h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fafafa;
}

body.planner-page .planner-hero h1,
body.planner-page .question-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* Dashboard: Unterbereiche (Tabs), einblendend */
.ga-segment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding-bottom: 0.15rem;
}

.ga-segment-btn {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text-secondary);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-10px);
  animation: ga-segment-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--seg-delay, 0ms);
}

.ga-segment-btn:hover,
.ga-segment-btn:focus-visible {
  border-color: #d4d4d8;
  color: var(--text-primary);
  outline: none;
}

.ga-segment-btn.is-active {
  background: var(--accent);
  color: #fafafa;
  border-color: var(--accent);
}

@keyframes ga-segment-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ga-segment-panel {
  margin-top: 1rem;
  animation: ga-panel-in 0.35s ease both;
}

.ga-segment-panel-inner {
  margin-top: 0;
}

@keyframes ga-panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ga-segment-empty {
  margin: 0.5rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.ga-checklist-segment-root {
  display: grid;
  gap: 0.65rem;
}

/* Sticky-Nav: Dropdown unter jedem Tab (wie Kontomenü) */
.ga-nav-dropdown {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.ga-nav-dropdown .ga-nav-dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  min-width: min(280px, calc(100vw - 2rem));
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.14);
  display: none;
  flex-direction: column;
  gap: 0.12rem;
  z-index: 80;
}

[data-nav-dropdown][data-open="true"] .ga-nav-dropdown-panel {
  display: flex;
}

.ga-nav-dropdown-item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.88rem;
  padding: 0.52rem 0.58rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
}

.ga-nav-dropdown-item:hover,
.ga-nav-dropdown-item:focus-visible {
  background: var(--surface-soft);
  outline: none;
}

.ga-home-jump-highlight {
  outline: 2px solid rgba(99, 102, 241, 0.38);
  outline-offset: 6px;
  border-radius: var(--radius-md);
  transition: outline-offset 0.25s ease;
}

@media (max-width: 1200px) {
  .ga-dashboard-layout {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .ga-rightbar {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ga-dashboard-layout {
    grid-template-columns: 1fr;
  }

  .ga-sidebar {
    position: static;
  }

  .ga-rightbar {
    grid-template-columns: 1fr;
  }

  .ga-plan-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-dashboard-actions #dashboardNewPlanBtn {
    display: none;
  }
}

@media (max-width: 620px) {
  .ga-plan-meta-grid {
    grid-template-columns: 1fr;
  }

  .ga-welcome-orb {
    display: none;
  }
}

.ga-dashboard-shell {
  width: min(1040px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.ga-dashboard-content {
  display: grid;
  gap: 0.75rem;
}

/* Zentriertes Fenster über dem Dashboard (abgedunkelter, unscharfer Hintergrund) — nutzt fast die volle Fläche */
.ga-dashboard-segment-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.4rem, 1.2vw, 1rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.ga-dashboard-segment-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ga-dashboard-segment-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(17, 24, 39, 0.48);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.ga-dashboard-segment-modal__panel {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 0.85rem), 1440px);
  max-width: 100%;
  height: min(96dvh, calc(100vh - 0.85rem));
  max-height: min(96dvh, calc(100vh - 0.85rem));
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.ga-dashboard-segment-modal__head {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.45rem 0.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.ga-dashboard-segment-modal__close {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text-primary);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-body);
}

.ga-dashboard-segment-modal__close:hover,
.ga-dashboard-segment-modal__close:focus-visible {
  background: var(--border);
  outline: none;
}

.ga-dashboard-segment-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 0.85rem clamp(1rem, 2.5vw, 1.75rem) 1.35rem;
  -webkit-overflow-scrolling: touch;
}

/* Im Modal: eine Spalte über die volle Breite (keine schmalen Halbseiten-Karten) */
.ga-dashboard-segment-modal__body .ga-segment-panel {
  margin-top: 0.35rem;
}

.ga-dashboard-segment-modal__body .ga-areas-grid,
.ga-dashboard-segment-modal__body .ga-segment-panel-inner.ga-areas-grid {
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: 0.45rem;
}

.ga-dashboard-segment-modal__body .ga-area-card {
  width: 100%;
  max-width: none;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.ga-dashboard-segment-modal__body .ga-area-card p {
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.58;
}

.ga-dashboard-segment-modal__body .ga-section-head {
  width: 100%;
}

.ga-dashboard-segment-modal__body .ga-checklist-segment-root {
  width: 100%;
  max-width: none;
}

.ga-dashboard-segment-modal__body .ga-area-card.ga-area-card--accordion {
  padding: 0;
}

/* Lesefenster: Karten mit Text — Standard eingeklappt, per Kopfzeile auf-/zuklappbar */
.ga-area-card.ga-area-card--accordion {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ga-area-card--accordion .ga-area-card__accordion-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.78rem 1rem;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.ga-area-card--accordion .ga-area-card__accordion-head:hover,
.ga-area-card--accordion .ga-area-card__accordion-head:focus-visible {
  background: var(--border);
  outline: none;
}

.ga-area-card--accordion .ga-area-card__accordion-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.32;
}

.ga-area-card--accordion .ga-area-card__accordion-chev {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.28s ease;
  opacity: 0.78;
}

.ga-area-card--accordion.is-collapsed .ga-area-card__accordion-chev {
  transform: rotate(-135deg);
}

.ga-area-card--accordion .ga-area-card__accordion-panel {
  max-height: 2800px;
  opacity: 1;
  overflow: hidden;
  padding: 0 1rem 1rem;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.26s ease, padding 0.26s ease;
}

.ga-area-card--accordion:not(.is-collapsed) .ga-area-card__accordion-panel {
  padding-top: 0.65rem;
}

.ga-area-card--accordion.is-collapsed .ga-area-card__accordion-panel {
  max-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.ga-home-section,
.ga-mini-section,
.ga-areas-section,
.ga-empty-state {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  padding: 0.85rem;
}

.ga-home-section {
  display: grid;
  gap: 0.72rem;
}

.ga-welcome-copy {
  position: relative;
  z-index: 1;
}

.ga-home-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.ga-mini-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.ga-mini-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem;
}

.ga-mini-card h4 {
  margin: 0;
  font-size: 0.92rem;
}

.ga-mini-card p {
  margin: 0.35rem 0 0;
  color: #6b7280;
  font-size: 0.83rem;
}

.ga-areas-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.ga-checklist-grid {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.ga-checklist-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  padding: 0.5rem 0.56rem;
}

.ga-checklist-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.48rem;
  align-items: start;
}

.ga-checklist-row input[type="checkbox"] {
  margin-top: 0.12rem;
  accent-color: #15803d;
}

.ga-checklist-copy {
  min-width: 0;
}

.ga-checklist-title {
  display: block;
  margin: 0;
  color: #111827;
  font-size: 0.84rem;
  font-weight: 560;
  line-height: 1.28;
}

.ga-checklist-meta {
  display: block;
  margin-top: 0.12rem;
  color: #7c8798;
  font-size: 0.7rem;
  line-height: 1.26;
}

.ga-checklist-desc {
  margin: 0.26rem 0 0;
  color: #566173;
  font-size: 0.77rem;
  line-height: 1.32;
}

.ga-checklist-grid-completed .ga-checklist-item.is-completed {
  border-style: solid;
  border-color: rgba(100, 116, 139, 0.16);
  background: rgba(248, 250, 252, 0.9);
}

.ga-checklist-completed-title {
  margin: 0;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 560;
  line-height: 1.3;
}

.ga-checklist-bullet-list {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.ga-checklist-bullet-list li {
  color: #475467;
  font-size: 0.82rem;
  line-height: 1.4;
}

.ga-checklist-completed-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.45rem;
}

.ga-checklist-restore-btn {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #ffffff;
  color: #0f172a;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.ga-checklist-restore-btn:hover,
.ga-checklist-restore-btn:focus-visible {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.ga-area-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.85rem;
}

.ga-area-card h4 {
  margin: 0;
  font-size: 0.98rem;
}

.ga-area-card p {
  margin: 0.35rem 0 0;
  color: #6b7280;
  font-size: 0.87rem;
  line-height: 1.45;
}

.ga-empty-state {
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

.ga-empty-state h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.ga-empty-state p {
  margin: 0.45rem 0 0;
  color: #6b7280;
}

.ga-empty-actions {
  margin-top: 0.95rem;
}

@media (max-width: 980px) {
  .ga-home-row {
    grid-template-columns: 1fr;
  }

  .ga-mini-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ga-areas-grid {
    grid-template-columns: 1fr;
  }

  .ga-mini-section {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .site-header,
  .site-footer,
  .actions,
  #pdfDownloadBtn {
    display: none !important;
  }

  .section {
    padding: 0;
  }

  .container {
    width: 100%;
    margin: 0;
  }

  .report-stage {
    background: #fff;
    padding: 0;
  }

  .report-page {
    max-width: none;
    margin: 0;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 1.5rem;
    page-break-after: always;
  }

  .report-page:last-child {
    page-break-after: auto;
  }

  .plan-section,
  .plan-field-item,
  .todo-list-item,
  .city-card,
  .plan-detail-card,
  .official-link-card {
    border: 1px solid #ddd;
    page-break-inside: auto;
  }

  .official-links-disclosure {
    margin-top: 0;
  }

  .official-links-disclosure .official-links-summary::after {
    content: "";
  }

  .official-links-disclosure:not([open]) > *:not(summary) {
    display: block;
  }
}
