:root {
    --navy-900: #0a1628;
    --navy-800: #0f2038;
    --navy-700: #16324f;
    --gold-600: #a67f34;
    --gold-500: #b9924a;
    --gold-400: #cfa955;
    --gold-50: #faf3e3;
    --green-700: #1a6e4c;
    --green-600: #228058;
    --green-50: #eaf6f0;
    --amber-700: #93650f;
    --amber-50: #fbf3e2;
    --red-700: #a8352a;
    --red-600: #bd4438;
    --red-50: #fbeceb;
    --gray-50: #f5f6f8;
    --gray-100: #eceef1;
    --gray-300: #d4d9e0;
    --gray-500: #6b7684;
    --gray-700: #37414d;
    --text: #1a2128;
    --shadow: 0 1px 2px rgba(10, 22, 40, 0.06), 0 4px 16px rgba(10, 22, 40, 0.06);
    --shadow-lg: 0 2px 4px rgba(10, 22, 40, 0.07), 0 12px 28px rgba(10, 22, 40, 0.09);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--gray-50);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.site-header {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #fff;
    padding: 22px 24px;
    border-bottom: 2px solid var(--gold-500);
}

.header-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    letter-spacing: 0.015em;
    line-height: 1.15;
    margin: 0;
}

.brand-tagline {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.main-nav a:hover { color: #fff; }

.main-nav a.nav-cta {
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 7px;
}

.main-nav a.nav-cta:hover { background: var(--gold-400); }

.nav-user {
    color: var(--gold-400);
    font-size: 13px;
    font-weight: 500;
}

.nav-logout-form { margin: 0; }

.nav-logout-btn {
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.15s ease;
}

.nav-logout-btn:hover { color: #fff; }

/* ---- Admin-Bereich (isoliert, nicht Teil der öffentlichen Navigation) ---- */

.admin-header {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #fff;
    padding: 18px 24px;
    border-bottom: 2px solid var(--gold-500);
}

.admin-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.admin-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px 60px;
}

.admin-stat-card {
    display: inline-flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-top: 3px solid var(--gold-500);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px 30px;
    margin-bottom: 28px;
}

.admin-stat-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--navy-900);
}

.admin-stat-label {
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 4px;
}

.admin-table-wrap {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    text-align: left;
    padding: 12px 20px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--gray-100);
    white-space: nowrap;
}

.admin-table th {
    color: var(--gray-500);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.admin-table tr:last-child td { border-bottom: none; }

.admin-status {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
}

.admin-status-trial { background: var(--amber-50); color: var(--amber-700); }
.admin-status-active { background: var(--green-50); color: var(--green-700); }
.admin-status-none { background: var(--gray-100); color: var(--gray-500); }

.admin-empty {
    text-align: center;
    color: var(--gray-500);
    padding: 26px;
    white-space: normal;
}

.search-section {
    padding: 44px 32px 4px;
}

.search-inner {
    max-width: 1560px;
    margin: 0 auto;
}

.search-inner .panel + .panel { margin-top: 24px; }

.dashboard-section {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
    margin-top: 44px;
    padding: 52px 32px 68px;
}

.dashboard-inner {
    max-width: 1560px;
    margin: 0 auto;
}

.dashboard-heading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.dashboard-heading h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy-900);
    margin: 0 0 6px;
}

.dashboard-heading .dashboard-meta {
    font-size: 12.5px;
    color: var(--gray-500);
    margin: 0 0 14px;
}

.dashboard-heading .dashboard-lead {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
}

.info-toggle {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.4px solid var(--gold-500);
    background: transparent;
    color: var(--gold-600);
    font-size: 11px;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, serif;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.info-toggle:hover { background: var(--gold-50); }

.dashboard-info {
    display: none;
    max-width: 640px;
    margin: 16px auto 0;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--gray-700);
    text-align: left;
    box-shadow: var(--shadow);
}

.dashboard-info.open { display: block; }

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 980px) {
    .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .dashboard-grid { grid-template-columns: 1fr; }
}

.dash-empty {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    padding: 20px;
}

.dash-card {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-top: 3px solid var(--gray-300);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 30px 30px 26px;
    display: flex;
    flex-direction: column;
}

.dash-card.up { border-top-color: var(--green-600); }
.dash-card.down { border-top-color: var(--red-600); }

.dash-card-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.dash-ticker {
    font-family: "SF Mono", Menlo, Consolas, monospace;
    font-weight: 700;
    font-size: 19px;
    color: var(--navy-900);
    letter-spacing: 0.02em;
}

.dash-pct {
    font-size: 33px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.dash-card.up .dash-pct { color: var(--green-600); }
.dash-card.down .dash-pct { color: var(--red-600); }

.dash-company {
    font-size: 14px;
    color: var(--gray-700);
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-meta {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

.dash-spark {
    display: block;
    width: 100%;
    height: 44px;
    margin-top: 18px;
}

.dash-spark-area {
    fill: var(--gold-500);
    fill-opacity: 0.12;
    stroke: none;
}

.dash-spark-line {
    fill: none;
    stroke: var(--gold-500);
    stroke-width: 1.6;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.dash-spark-label {
    font-size: 10px;
    color: var(--gray-500);
    margin-top: 4px;
}

.dash-sample {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--gray-100);
}

.panel {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 26px;
}

.panel.result-panel {
    border-top: 3px solid var(--navy-800);
    box-shadow: var(--shadow-lg);
}

.panel.panel-hero {
    padding: 48px 56px 44px;
}

.panel-hero h1.page-title {
    font-size: 29px;
    margin: 0 0 10px;
    color: var(--navy-900);
}

.panel-hero .page-subtitle {
    font-size: 16px;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 0 28px;
}

h1.page-title {
    font-size: 20px;
    margin: 0 0 4px;
    color: var(--navy-900);
}

.page-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0 0 20px;
}

.ticker-form {
    display: flex;
    gap: 10px;
}

.autocomplete-wrap {
    position: relative;
    flex: 1;
}

.ticker-form input[type=text] {
    width: 100%;
    padding: 11px 14px;
    font-size: 16px;
    border: 1px solid var(--gray-300);
    border-radius: 7px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.panel-hero .ticker-form input[type=text] {
    padding: 17px 20px;
    font-size: 18px;
}

.panel-hero .ticker-form .btn {
    padding: 17px 34px;
    font-size: 16px;
}

.auth-section {
    max-width: 480px;
    margin: 56px auto 80px;
    padding: 0 24px;
}

.auth-section-wide {
    max-width: 680px;
}

.auth-panel.auth-panel-center {
    text-align: center;
}

.auth-panel.auth-panel-center .btn { margin-top: 8px; }

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.auth-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-900);
    margin-top: 14px;
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.auth-row-narrow {
    grid-template-columns: 1fr 2fr;
}

.auth-row .auth-label { margin-top: 14px; }

.auth-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 16px;
    font-size: 16px;
    border: 1px solid var(--gray-300);
    border-radius: 7px;
    font-family: inherit;
}

.auth-input:focus {
    outline: none;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(22, 50, 79, 0.12);
}

.auth-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.55;
    cursor: pointer;
}

.auth-checkbox-label input[type="checkbox"] {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--navy-800);
}

.auth-checkbox-label a { color: var(--gold-600); }
.auth-checkbox-label a:hover { text-decoration: underline; }

.auth-forgot {
    align-self: flex-end;
    margin-top: 8px;
    font-size: 12.5px;
    color: var(--gold-600);
    text-decoration: none;
}

.auth-forgot:hover { text-decoration: underline; }

.auth-submit {
    margin-top: 22px;
    width: 100%;
}

.auth-error {
    background: var(--red-50);
    color: var(--red-700);
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 13.5px;
    margin: 14px 0 0;
}

.auth-switch {
    text-align: center;
    font-size: 13.5px;
    color: var(--gray-500);
    margin: 22px 0 0;
}

.auth-switch a { color: var(--gold-600); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

.ticker-form input[type=text]:focus {
    outline: none;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(22, 50, 79, 0.12);
}

.autocomplete-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-height: 280px;
    overflow-y: auto;
    z-index: 20;
}

.autocomplete-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: var(--gray-50);
}

.autocomplete-item + .autocomplete-item {
    border-top: 1px solid var(--gray-100);
}

.ac-name {
    color: var(--text);
    text-transform: none;
    letter-spacing: normal;
}

.ac-ticker {
    font-family: "SF Mono", Menlo, Consolas, monospace;
    font-size: 12px;
    color: var(--gray-500);
    flex: 0 0 auto;
}

.btn {
    flex: 0 0 auto;
    padding: 11px 22px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 7px;
    background: var(--navy-800);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn:hover { background: var(--navy-900); }

.result-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.result-ticker {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-900);
}

.result-company {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0 0 18px;
}

.result-date {
    font-size: 13px;
    color: var(--gray-500);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.stat-tile {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 12px 14px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-900);
    font-variant-numeric: tabular-nums;
}

.outcome-box {
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid transparent;
}

.outcome-box.error {
    background: var(--red-50);
    border-color: #f0c6c2;
}

.outcome-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.outcome-box.error .outcome-title { color: var(--red-700); }

.outcome-note {
    font-size: 13px;
    color: var(--gray-700);
}

.similarity-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.similarity-info svg { flex: 0 0 auto; color: var(--gray-500); }
.similarity-info strong { color: var(--navy-900); }

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 4px 9px;
    border-radius: 999px;
    margin-top: 10px;
}

.quality-badge.robust {
    background: var(--gold-50);
    border: 1px solid #ecd9a8;
    color: var(--gold-600);
}

.quality-badge.caution {
    background: #fff;
    border: 1px solid var(--gray-300);
    color: var(--gray-500);
    font-weight: 600;
}

.horizon-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.horizon-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 18px;
    border-radius: 8px;
    padding: 18px 20px;
    border: 1px solid transparent;
}

.horizon-card.up { background: var(--green-50); border-color: #bfe3d1; }
.horizon-card.down { background: var(--red-50); border-color: #f0c6c2; }

.horizon-pct {
    font-size: 32px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-align: center;
}

.horizon-card.up .horizon-pct { color: var(--green-600); }
.horizon-card.down .horizon-pct { color: var(--red-600); }

.horizon-sentence {
    font-size: 15.5px;
    color: var(--gray-700);
    line-height: 1.5;
}

.horizon-sentence strong { color: var(--navy-900); }

/* ---- Landing page ---- */

.hero {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #fff;
    padding: 88px 24px;
    text-align: center;
}

.hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.hero-headline {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.25;
    margin: 0 0 34px;
    font-weight: 500;
}

.hero-headline-sub {
    display: block;
    font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    line-height: 1.5;
}

.btn-hero {
    display: inline-block;
    padding: 15px 32px;
    font-size: 16px;
    background: var(--gold-500);
    color: var(--navy-900);
}

.btn-hero:hover { background: var(--gold-400); }

.landing-section {
    padding: 72px 24px;
    background: #fff;
}

.landing-section-alt { background: var(--gray-50); }

.landing-container {
    max-width: 1220px;
    margin: 0 auto;
}

.landing-container-narrow {
    max-width: 660px;
    margin: 0 auto;
}

.section-title {
    font-size: 29px;
    color: var(--navy-900);
    margin: 0 0 8px;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--gray-500);
    font-size: 16.5px;
    font-weight: 300;
    margin: 0 0 44px;
}

.explainer-section .section-title {
    margin-bottom: 8px;
}

.showcase {
    text-align: center;
    margin: 0 0 44px;
}

.showcase-result-heading {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--navy-900);
    margin: 46px 0 26px;
}

.showcase-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto 36px;
}

.showcase-step {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-top: 3px solid var(--navy-800);
    border-radius: 14px;
    padding: 24px 18px;
}

.showcase-step-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px -6px rgba(166, 127, 52, 0.5);
}

.showcase-step-icon svg { width: 22px; height: 22px; }

.showcase-step-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.5;
}

.showcase-step-arrow {
    flex: 0 0 auto;
    align-self: center;
    width: 22px;
    color: var(--gold-500);
}

.showcase-step-arrow svg { width: 100%; height: auto; display: block; }

.showcase-card {
    position: relative;
    overflow: hidden;
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.showcase-spark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.showcase-spark-area {
    fill: var(--gold-500);
    fill-opacity: 0.14;
    stroke: none;
}

.showcase-spark-line {
    fill: none;
    stroke: var(--gold-400);
    stroke-width: 1.6;
    stroke-linejoin: round;
    stroke-linecap: round;
    opacity: 0.55;
}

.showcase-content {
    position: relative;
    z-index: 1;
    padding: 40px 44px 34px;
}

.showcase-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.showcase-ticker-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.showcase-ticker {
    font-family: "SF Mono", Menlo, Consolas, monospace;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.02em;
}

.showcase-company {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.showcase-price { text-align: right; }

.showcase-price-value {
    display: block;
    font-size: 25px;
    font-weight: 700;
    color: var(--gold-400);
}

.showcase-price-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.showcase-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.showcase-metric {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
}

.showcase-metric-pct {
    font-size: 38px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #3ecf8e;
}

.showcase-metric.down .showcase-metric-pct { color: #e2766a; }

.showcase-metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 6px;
    line-height: 1.4;
}

.showcase-sentence {
    font-size: 17.5px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.showcase-sentence strong { color: var(--gold-400); }

.showcase-outcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 880px;
    margin: 22px auto 0;
    padding: 40px 46px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.showcase-outcome-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px -6px rgba(166, 127, 52, 0.5);
}

.showcase-outcome-icon svg { width: 27px; height: 27px; }

.showcase-outcome-text {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.explainer-audience {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    max-width: 880px;
    margin: 0 auto;
    padding: 28px 32px;
    background: var(--gold-50);
    border-top: 3px solid var(--navy-800);
    border-radius: 10px;
    color: var(--navy-900);
    box-shadow: var(--shadow);
}

.explainer-audience-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--gold-600);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.explainer-audience-icon svg { width: 24px; height: 24px; }

.explainer-audience-text {
    font-size: 15.5px;
    line-height: 1.65;
}

.explainer-audience-text strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    margin-bottom: 4px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 32px;
    border-left: 1px solid var(--gray-100);
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy-900);
}

.about-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 2px;
}

@media (max-width: 860px) {
    .showcase-steps { flex-direction: column; }
    .showcase-step-arrow { display: none; }
    .showcase-metrics { grid-template-columns: 1fr; }
    .showcase-top { flex-direction: column; }
    .showcase-price { text-align: left; }
    .showcase-outcome { padding: 30px 26px; }
    .showcase-outcome-text { font-size: 19px; }
    .explainer-audience { flex-direction: column; text-align: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-top: 1px solid var(--gray-100);
        padding-left: 0;
        padding-top: 24px;
        gap: 28px;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 10px;
    padding: 24px 22px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-50);
    color: var(--gold-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
    font-size: 17.5px;
    color: var(--navy-900);
    margin: 0 0 8px;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto;
}

@media (max-width: 860px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 32px 26px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--gold-500);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.featured-ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-name {
    font-size: 19.5px;
    color: var(--navy-900);
    margin: 4px 0 14px;
}

.plan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 4px 11px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.plan-badge.trial {
    background: var(--green-50);
    color: var(--green-700);
    font-size: 14px;
    font-weight: 800;
    padding: 8px 18px;
    letter-spacing: 0.02em;
}

.plan-note {
    font-size: 12.5px;
    color: var(--gray-500);
    margin: 0 0 8px;
}

.plan-savings {
    font-size: 12.5px;
    color: var(--gold-600);
    font-weight: 600;
    margin: 0 0 18px;
}

.plan-disclaimer {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-top: 16px;
}

.btn-outline-gold {
    width: 100%;
    padding: 12px 22px;
    font-size: 14.5px;
    background: #fff;
    border: 1.5px solid var(--gold-500);
    color: var(--gold-600);
}

.btn-outline-gold:hover { background: var(--gold-50); }

.plan-btn { margin-top: auto; }

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy-900);
}

.price-period {
    font-size: 15px;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    text-align: left;
}

.pricing-features li {
    font-size: 15px;
    color: var(--gray-700);
    padding: 7px 0;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
}

.btn-gold {
    width: 100%;
    padding: 13px 22px;
    font-size: 15px;
    background: var(--gold-500);
    color: var(--navy-900);
}

.btn-gold:hover { background: var(--gold-400); }

.registration-note {
    display: none;
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--green-700);
}

.registration-note.visible { display: block; }

.about-text {
    text-align: left;
    font-size: 16.5px;
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0;
}

.disclaimer {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px 40px;
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.6;
    border-top: 1px solid var(--gray-100);
    padding-top: 18px;
}

.disclaimer strong { color: var(--gray-700); }

.disclaimer a, .footer-links a {
    color: var(--gray-500);
    text-decoration: underline;
}

.disclaimer a:hover, .footer-links a:hover { color: var(--navy-800); }

.footer-links {
    max-width: 780px;
    margin: 10px auto 0;
    padding: 0 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
}

/* ---- Rechtstexte (Impressum, Datenschutz, AGB, Widerruf) ---- */

.legal-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.legal-back {
    display: inline-block;
    font-size: 13px;
    color: var(--gray-500);
    text-decoration: none;
    margin-bottom: 20px;
}

.legal-back:hover { color: var(--navy-800); }

.legal-section h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    color: var(--navy-900);
    margin: 0 0 6px;
}

.legal-updated {
    font-size: 12.5px;
    color: var(--gray-500);
    margin: 0 0 24px;
}

.legal-draft-notice {
    background: var(--amber-50);
    border-left: 3px solid var(--amber-700);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--amber-700);
    line-height: 1.6;
    margin-bottom: 32px;
}

.legal-draft-notice strong { display: block; margin-bottom: 3px; }

.legal-section h2 {
    font-size: 18px;
    color: var(--navy-900);
    margin: 36px 0 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.legal-section h2:first-of-type { border-top: none; padding-top: 0; margin-top: 28px; }

.legal-section h3 {
    font-size: 14.5px;
    color: var(--navy-900);
    margin: 20px 0 8px;
}

.legal-section p {
    font-size: 14.5px;
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0 0 14px;
}

.legal-section ul, .legal-section ol {
    font-size: 14.5px;
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0 0 14px;
    padding-left: 22px;
}

.legal-section li { margin-bottom: 6px; }

.legal-section a { color: var(--gold-600); }
.legal-section a:hover { text-decoration: underline; }

.legal-tbd {
    display: inline-block;
    background: var(--gold-50);
    color: var(--gold-600);
    border: 1px dashed var(--gold-500);
    border-radius: 5px;
    padding: 1px 8px;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 13.5px;
}

.legal-table td {
    border: 1px solid var(--gray-100);
    padding: 10px 12px;
    color: var(--gray-700);
    vertical-align: top;
}

.legal-formular {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 20px 22px;
    margin: 16px 0;
}

.legal-formular p { margin: 0 0 10px; }
