/* Core design tokens for public pages */
:root {
    --gf-dark: #f4ffe8;
    --gf-dark-2: #d9ff75;
    --gf-green: #9dff3d;
    --gf-green-dark: #c8ff3d;
    --gf-lime: #071f16;
    --gf-soft: #0b2419;
    --gf-soft-2: #123727;
    --gf-border: rgba(200, 255, 61, 0.18);
    --gf-text: #eaffdf;
    --gf-muted: #a9c8b7;
    --gf-warning: #ffcc66;
    --gf-danger: #ff7474;
    --gf-page: #03130d;
    --gf-panel: #071f16;
    --gf-panel-2: #0b2a1d;
    --gf-panel-3: #103725;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--gf-text);
    background:
        radial-gradient(circle at 15% 8%, rgba(200, 255, 61, 0.10), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(22, 161, 99, 0.16), transparent 30%),
        linear-gradient(180deg, #03130d 0%, #061a12 45%, #03130d 100%);
}

body.modal-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Minimal layout and utility layer replacing Bootstrap */
.container {
    --gf-gutter-x: 1.5rem;
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding-right: calc(var(--gf-gutter-x) * 0.5);
    padding-left: calc(var(--gf-gutter-x) * 0.5);
}

.row {
    --gf-gutter-x: 1.5rem;
    --gf-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--gf-gutter-y));
    margin-right: calc(-0.5 * var(--gf-gutter-x));
    margin-left: calc(-0.5 * var(--gf-gutter-x));
}

.row > * {
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gf-gutter-x) * 0.5);
    padding-left: calc(var(--gf-gutter-x) * 0.5);
    margin-top: var(--gf-gutter-y);
}

.col {
    flex: 1 0 0;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.g-2 {
    --gf-gutter-x: 0.5rem;
    --gf-gutter-y: 0.5rem;
}

.g-3 {
    --gf-gutter-x: 1rem;
    --gf-gutter-y: 1rem;
}

.g-4 {
    --gf-gutter-x: 1.5rem;
    --gf-gutter-y: 1.5rem;
}

.g-5 {
    --gf-gutter-x: 3rem;
    --gf-gutter-y: 3rem;
}

.d-flex {
    display: flex !important;
}

.d-grid {
    display: grid !important;
}

.d-none {
    display: none !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.position-relative {
    position: relative !important;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-pill {
    border-radius: 999px !important;
}

.border-0 {
    border: 0 !important;
}

.border-secondary {
    border-color: rgba(200, 255, 61, 0.18) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.text-center {
    text-align: center !important;
}

.text-start {
    text-align: left !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.small {
    font-size: 0.875rem !important;
}

.h3,
.h4,
.h5 {
    line-height: 1.2;
    margin-top: 0;
}

.h3 {
    font-size: 1.75rem;
}

.h4 {
    font-size: 1.5rem;
}

.h5 {
    font-size: 1.25rem;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: 800 !important;
}

.text-muted {
    color: var(--gf-muted) !important;
}

.text-success {
    color: #c8ff3d !important;
}

.text-bg-success {
    background: #c8ff3d !important;
    color: #03130d !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:disabled {
    opacity: 0.75;
    cursor: wait;
}

.btn-lg {
    padding: 0.95rem 1.45rem;
    font-size: 1.05rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.progress {
    width: 100%;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

.progress-bar {
    height: 100%;
    border-radius: inherit;
}

.navbar {
    width: 100%;
}

.gf-navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}

.navbar-brand,
.navbar-nav,
.nav-link {
    display: flex;
    align-items: center;
}

.navbar-brand {
    flex: 0 1 auto;
    min-width: 0;
    margin-right: auto;
}

.navbar-nav {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}

.nav-link {
    line-height: 1.4;
}

.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: block;
    width: 27px;
    height: 21px;
    background:
        linear-gradient(currentColor 0 0) top/100% 2px no-repeat,
        linear-gradient(currentColor 0 0) center/100% 2px no-repeat,
        linear-gradient(currentColor 0 0) bottom/100% 2px no-repeat;
}

.navbar-collapse {
    flex: 0 0 100%;
    width: 100%;
}

.collapse {
    display: none;
}

.collapse.show {
    display: block;
}

.accordion-button {
    width: 100%;
    border: 0;
    padding: 1.2rem 1.4rem;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.accordion-button::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.15rem;
    color: var(--gf-green-dark);
    font-weight: 400;
    line-height: 1;
}

.accordion-button:not(.collapsed)::after {
    content: "−";
}

.accordion-collapse {
    display: none;
}

.accordion-collapse.show {
    display: block;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(3, 19, 13, 0.78);
}

.modal.show {
    display: flex;
}

.fade {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.fade.show {
    opacity: 1;
}

.modal-dialog {
    width: min(100%, 600px);
    margin: auto;
}

.modal-dialog-centered {
    min-height: calc(100vh - 2rem);
    display: flex;
    align-items: center;
}

.modal-content {
    width: 100%;
    border: 1px solid rgba(200, 255, 61, 0.18);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
    background: linear-gradient(180deg, #0b2a1d, #071f16);
    color: var(--gf-text);
}

.modal-body {
    width: 100%;
}

.spinner-border {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 0.18em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: gf-spin 0.75s linear infinite;
    vertical-align: -0.125em;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.16em;
}

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

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gf-navbar {
    background: rgba(3, 19, 13, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200, 255, 61, 0.15);
    box-shadow: 0 16px 55px rgba(0, 0, 0, 0.22);
}

.gf-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.gf-brand-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    object-fit: contain;
    display: block;
}

.gf-brand-logo--panel {
    width: 36px;
    height: 36px;
}

.gf-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c8ff3d, #16a163);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(200, 255, 61, 0.20);
}

.gf-brand-icon.gf-brand-letter {
    width: 40px;
    height: 40px;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
}

.gf-brand-text {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 1.25rem;
    line-height: 1;
}

.gf-nav-link {
    color: rgba(234, 255, 223, 0.76);
    font-weight: 600;
    font-size: 0.95rem;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
    cursor: pointer;
}

.gf-nav-link:hover {
    color: #c8ff3d;
}

.gf-nav-link.is-active {
    color: #c8ff3d;
}

.gf-btn-primary {
    background: #c8ff3d;
    border-color: #c8ff3d;
    color: #03130d;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 12px 32px rgba(200, 255, 61, 0.22);
}

.gf-btn-primary:hover {
    background: #dbff72;
    border-color: #dbff72;
    color: #03130d;
    transform: translateY(-1px);
}

/* Hellgrün-Primary auf hellem Untergrund: Rand in Textfarbe */
.gf-on-light .gf-btn-primary {
    border-color: #03130d;
}

.gf-on-light .gf-btn-primary:hover {
    border-color: #03130d;
}

/* Textlinks ohne Button — Unterstrich; Hover hellgrün auf dunklem Untergrund */
.gf-link {
    color: #135c37;
    text-decoration: underline;
    text-underline-offset: 0.15em;
    font-weight: 600;
    cursor: pointer;
}

.gf-link:hover {
    color: #c8ff3d;
}

/* Textlinks auf dunklem Untergrund */
.gf-on-dark .gf-link {
    color: #c8ff3d;
}

.gf-on-dark .gf-link:hover {
    color: #dbff72;
}

/* Hellbereich (Auth-Panels, helle Karten) */
.gf-on-light .gf-link,
.gf-on-dark .gf-on-light .gf-link {
    color: #135c37;
}

.gf-on-light .gf-link:hover,
.gf-on-dark .gf-on-light .gf-link:hover {
    color: #041811;
}

.gf-btn-outline {
    border: 1px solid rgba(200, 255, 61, 0.32);
    color: #eaffdf;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.7rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
}

.gf-btn-outline:hover {
    border-color: #c8ff3d;
    color: #c8ff3d;
    background: rgba(200, 255, 61, 0.08);
}

.gf-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(200, 255, 61, 0.16), transparent 30%),
        radial-gradient(circle at 80% 8%, rgba(22, 161, 99, 0.22), transparent 34%),
        linear-gradient(135deg, #03130d, #092419 52%, #0f3625);
    color: #ffffff;
    padding: 95px 0 80px;
    border-bottom: 1px solid rgba(200, 255, 61, 0.10);
}

.gf-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(3, 19, 13, 0.9));
    pointer-events: none;
}

.gf-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(200, 255, 61, 0.38);
    background: rgba(200, 255, 61, 0.10);
    color: #c8ff3d;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.gf-hero h1 {
    font-size: clamp(2.4rem, 5vw, 5.1rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
    font-weight: 900;
    margin-bottom: 1.35rem;
    color: #ffffff;
}

.gf-hero-text {
    color: rgba(234, 255, 223, 0.76);
    font-size: 1.18rem;
    line-height: 1.7;
    max-width: 650px;
}

.gf-hero-cta {
    display: inline-flex;
    margin-top: 2rem;
}

.gf-search-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(200, 255, 61, 0.18);
    border-radius: 26px;
    padding: 0.85rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.30);
    margin-top: 2rem;
}

.gf-hero-note {
    color: rgba(234, 255, 223, 0.68);
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

.gf-dashboard {
    position: relative;
    background: rgba(7, 31, 22, 0.96);
    color: var(--gf-text);
    border-radius: 32px;
    padding: 1.25rem;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(200, 255, 61, 0.18);
}

.gf-dashboard-top {
    background: linear-gradient(135deg, rgba(200, 255, 61, 0.10), rgba(22, 161, 99, 0.10));
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(200, 255, 61, 0.16);
}

.gf-score-circle {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: conic-gradient(var(--gf-danger) 0 64%, rgba(255, 255, 255, 0.10) 64% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
}

.gf-score-circle::before {
    content: "";
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #071f16;
    position: absolute;
}

.gf-score-circle span {
    position: relative;
    font-weight: 900;
    font-size: 1.45rem;
    color: #ffffff;
}

.gf-risk-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200, 255, 61, 0.10);
}

.gf-risk-row:last-child {
    border-bottom: 0;
}

.gf-risk-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.gf-risk-icon.danger {
    background: rgba(255, 116, 116, 0.15);
    color: #ff8989;
}

.gf-risk-icon.warning {
    background: rgba(255, 204, 102, 0.16);
    color: #ffd77c;
}

.gf-risk-icon.success {
    background: rgba(200, 255, 61, 0.13);
    color: #c8ff3d;
}

.gf-section {
    padding: 82px 0;
}

.gf-section-soft {
    background:
        radial-gradient(circle at 75% 20%, rgba(200, 255, 61, 0.06), transparent 32%),
        linear-gradient(180deg, #061a12, #082017);
    border-top: 1px solid rgba(200, 255, 61, 0.08);
    border-bottom: 1px solid rgba(200, 255, 61, 0.08);
}

.gf-section-title {
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.gf-section-lead {
    color: var(--gf-muted);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 760px;
}

.gf-card {
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 52, 36, 0.92), rgba(7, 31, 22, 0.98));
    border: 1px solid rgba(200, 255, 61, 0.14);
    border-radius: 26px;
    padding: 1.45rem;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
    transition: 0.18s ease;
}

.gf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    border-color: rgba(200, 255, 61, 0.32);
}

.gf-step-number {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #c8ff3d;
    color: #03130d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.gf-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: rgba(200, 255, 61, 0.10);
    color: #c8ff3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 255, 61, 0.12);
}

.gf-card h3 {
    color: #ffffff;
    font-weight: 850;
    letter-spacing: -0.035em;
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
}

.gf-card p {
    color: var(--gf-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.gf-why-panel {
    background:
        radial-gradient(circle at 15% 10%, rgba(200, 255, 61, 0.12), transparent 30%),
        linear-gradient(135deg, #071f16, #0f3a27);
    color: #ffffff;
    border-radius: 34px;
    padding: 2rem;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(200, 255, 61, 0.16);
}

.gf-why-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 255, 61, 0.14);
    border-radius: 22px;
    padding: 1.2rem;
    height: 100%;
}

.gf-why-item h3 {
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 800;
}

.gf-why-item p {
    color: rgba(234, 255, 223, 0.72);
    margin-bottom: 0;
    line-height: 1.65;
}

.gf-term-box {
    background: linear-gradient(180deg, rgba(13, 52, 36, 0.95), rgba(7, 31, 22, 0.98));
    border-radius: 30px;
    border: 1px solid rgba(200, 255, 61, 0.15);
    padding: 1.5rem;
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.30);
}

.gf-term {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 116, 116, 0.12);
    color: #ff9a9a;
    border: 1px solid rgba(255, 116, 116, 0.28);
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    font-weight: 700;
    margin: 0.25rem;
    font-size: 0.92rem;
}

.gf-term.ok {
    background: rgba(200, 255, 61, 0.10);
    color: #c8ff3d;
    border-color: rgba(200, 255, 61, 0.26);
}

.gf-cta {
    background:
        radial-gradient(circle at 15% 20%, rgba(200, 255, 61, 0.18), transparent 30%),
        linear-gradient(135deg, #071f16, #103725);
    color: #ffffff;
    border-radius: 38px;
    padding: 3rem 2rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(200, 255, 61, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.30);
}

.gf-claim-bad {
    background: rgba(255, 116, 116, 0.14);
    border: 1px solid rgba(255, 116, 116, 0.34);
    color: #ffdada;
    font-weight: 600;
}

.gf-claim-good {
    background: rgba(200, 255, 61, 0.10);
    border: 1px solid rgba(200, 255, 61, 0.30);
    color: #eaffdf;
    font-weight: 600;
}

.gf-faq-accordion .accordion-item {
    background: var(--gf-panel-2);
    border: 1px solid var(--gf-border);
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 0.8rem;
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.20);
}

.gf-faq-accordion .accordion-header {
    margin: 0;
    padding: 0;
    background: var(--gf-panel-2);
}

.gf-faq-accordion .accordion-button,
.gf-faq-accordion .accordion-button:not(.collapsed) {
    font-weight: 700;
    color: var(--gf-text);
    background: var(--gf-panel-2);
    box-shadow: none !important;
}

.gf-faq-accordion .accordion-body {
    background: var(--gf-panel);
    color: var(--gf-muted);
    line-height: 1.7;
    padding: 1.15rem 1.4rem 1.35rem;
    border-top: 0;
}

.gf-faq-accordion .accordion-body .gf-link {
    color: var(--gf-green-dark);
}

.gf-faq-accordion .accordion-body .gf-link:hover {
    color: #dbff72;
}

.gf-footer {
    background: #020c08;
    color: rgba(234, 255, 223, 0.65);
    padding: 54px 0 28px;
    border-top: 1px solid rgba(200, 255, 61, 0.12);
}

.gf-footer h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.gf-footer a {
    color: rgba(234, 255, 223, 0.62);
    display: block;
    margin-bottom: 0.55rem;
    cursor: pointer;
}

.gf-footer a:hover {
    color: #c8ff3d;
}

.gf-footer-brand {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: 1.4rem;
}

.gf-kunde-flash-wrap {
    padding: 1.25rem 0 0;
}

.gf-kunde-flashes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gf-kunde-page--auth .gf-kunde-flashes {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
}

.gf-kunde-alert {
    border-radius: 18px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    margin: 0;
}

.gf-kunde-alert-success {
    background: #e8f8ef;
    color: #135c37;
    border: 1px solid #b8e4c6;
}

.gf-kunde-alert-error {
    background: #fff0f0;
    color: #9e2332;
    border: 1px solid #f4c4c8;
}

.gf-kunde-page--auth {
    background:
        radial-gradient(circle at 18% 18%, rgba(200, 255, 61, 0.12), transparent 24%),
        radial-gradient(circle at 82% 8%, rgba(22, 161, 99, 0.18), transparent 28%),
        linear-gradient(180deg, #041811 0%, #09261b 100%);
    padding: 3.5rem 0 5.5rem;
}

.gf-kunde-auth-section {
    padding: 2rem 0 3rem;
}

.gf-kunde-panel {
    width: min(100%, 760px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    color: #113426;
}

.gf-kunde-panel > * + * {
    margin-top: 1.25rem;
}

.gf-kunde-stack > * + * {
    margin-top: 1rem;
}

.gf-kunde-title-lockup {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 0.5rem;
    color: #041811;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.gf-kunde-title-lockup .gf-brand-logo {
    flex-shrink: 0;
}

.gf-kunde-muted {
    color: #4c675c;
}

.gf-kunde-form-grid {
    display: grid;
    gap: 1.15rem;
}

.gf-kunde-password-group {
    display: grid;
    gap: 0.55rem;
}

.gf-kunde-form-grid .gf-field-footer {
    margin-top: 0;
}

.gf-kunde-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.gf-kunde-actions .btn {
    min-height: 2.75rem;
}

.gf-kunde-panel .gf-btn-outline {
    border: 1px solid #1a5c3f;
    color: #113426;
    background: #fff;
}

.gf-kunde-panel .gf-btn-outline:hover {
    border-color: #0d4a32;
    color: #041811;
    background: #f0faf4;
}

.gf-kunde-panel .gf-btn-primary {
    box-shadow: 0 8px 24px rgba(3, 19, 13, 0.12);
}

.gf-modal-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: linear-gradient(135deg, #c8ff3d, #16a163);
    color: #03130d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 14px 34px rgba(200, 255, 61, 0.20);
}

.gf-modal-title {
    font-weight: 900;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.gf-modal-text {
    color: var(--gf-muted);
    line-height: 1.7;
}

.gf-modal-info {
    background: rgba(200, 255, 61, 0.08);
    border: 1px solid rgba(200, 255, 61, 0.15);
    border-radius: 20px;
    padding: 1rem;
    color: var(--gf-text);
}

.gf-danke-modal {
    background:
        radial-gradient(circle at 20% 0%, rgba(200, 255, 61, 0.16), transparent 34%),
        linear-gradient(180deg, #0b2a1d, #071f16);
    border: 1px solid rgba(200, 255, 61, 0.18);
    color: var(--gf-text);
}

.gf-danke-icon {
    width: 78px;
    height: 78px;
    border-radius: 28px;
    background: linear-gradient(135deg, #c8ff3d, #16a163);
    color: #03130d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 18px 42px rgba(200, 255, 61, 0.22);
}

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

.gf-kunde-page--inhalt {
    padding: 0 0 4rem;
}

.gf-kunde-inhalt-hero {
    padding: 4rem 0 2rem;
}

.gf-kunde-inhalt-titel {
    margin: 0;
    color: #ffffff;
    line-height: 1.05;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: -0.06em;
    font-weight: 900;
}

.gf-kunde-inhalt-lead {
    margin: 1rem 0 0;
    max-width: 920px;
    color: var(--gf-muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

.gf-kunde-inhalt-section {
    padding: 1.2rem 0 3rem;
}

.gf-kunde-prose {
    background: linear-gradient(180deg, rgba(12, 38, 27, 0.96), rgba(8, 30, 21, 0.98));
    border: 1px solid rgba(200, 255, 61, 0.15);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.gf-kunde-prose > * + * {
    margin-top: 0.95rem;
}

.gf-kunde-prose h2 {
    margin: 1.5rem 0 0.65rem;
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.gf-kunde-prose h3 {
    margin: 1.1rem 0 0.45rem;
    font-size: 1.1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #efffe5;
}

.gf-kunde-prose-sources {
    font-size: 0.92rem;
    color: rgba(213, 236, 216, 0.85);
}

.gf-kunde-prose .gf-price-card .gf-price-tier {
    margin: 0;
}

.gf-kunde-prose p,
.gf-kunde-prose li {
    color: #d5ecd8;
    line-height: 1.75;
}

.gf-kunde-prose ul {
    margin: 0;
    padding-left: 1.2rem;
}

.gf-kunde-callout {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(200, 255, 61, 0.24);
    background: rgba(200, 255, 61, 0.08);
    color: #efffe5;
}

.gf-term-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.gf-price-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    margin-bottom: 0.25rem;
}

.gf-price-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #d8f6cf;
}

.gf-price-trust-item .bi-check-circle-fill {
    color: #9dff3d;
    flex-shrink: 0;
}

.gf-price-section-title {
    margin: 1.75rem 0 0.65rem !important;
    font-size: 1.15rem !important;
    letter-spacing: -0.02em;
}

.gf-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 0.5rem;
}

.gf-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(200, 255, 61, 0.20);
    border-radius: 22px;
    padding: 1.35rem 1.25rem 1.2rem;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(7, 31, 22, 0.72);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gf-price-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 255, 61, 0.34);
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(200, 255, 61, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gf-price-tier {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.gf-price-tier-name {
    color: #ffffff;
    text-shadow:
        0 0 18px rgba(200, 255, 61, 0.55),
        0 0 36px rgba(200, 255, 61, 0.28);
}

.gf-price-tier-credits {
    color: #c8ff3d;
    font-size: 1.5rem;
    font-weight: 900;
    text-shadow:
        0 0 20px rgba(200, 255, 61, 0.75),
        0 0 40px rgba(200, 255, 61, 0.35);
}

.gf-price-credits-label {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
}

.gf-price-tagline {
    margin: 0.2rem 0 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.gf-price-amount-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.gf-price-old {
    position: relative;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.32);
    text-decoration: none;
    line-height: 1;
}

.gf-price-old::after {
    content: "";
    position: absolute;
    left: -0.05em;
    right: -0.05em;
    top: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
    border-radius: 1px;
    pointer-events: none;
}

.gf-price-euro {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.gf-price-vat {
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
}

.gf-price-badge {
    position: absolute;
    top: -0.65rem;
    right: 1rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: #c8ff3d;
    color: #03130d;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gf-price-features {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    flex: 1 1 auto;
}

.gf-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.38rem 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #d5ecd8;
}

.gf-price-features .bi-check-circle-fill {
    flex-shrink: 0;
    margin-top: 0.12rem;
    color: #9dff3d;
    font-size: 0.95rem;
}

.gf-price-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 255, 61, 0.12);
}

.gf-price-cta {
    width: 100%;
    justify-content: center;
}

.gf-price-card--featured {
    background:
        linear-gradient(165deg, rgba(200, 255, 61, 0.14), rgba(200, 255, 61, 0.04)),
        rgba(7, 31, 22, 0.82);
    border-color: rgba(200, 255, 61, 0.42);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.28),
        0 0 32px rgba(200, 255, 61, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.gf-price-card--free {
    border-style: dashed;
    border-color: rgba(200, 255, 61, 0.26);
}

.gf-price-legal {
    margin-top: 1.25rem;
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.gf-price-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gf-price-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.45rem 0;
    color: #d5ecd8;
}

.gf-price-benefits .bi-check-circle-fill {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #9dff3d;
}

.gf-price-actions {
    margin-top: 1rem;
}

.gf-kunde-prose .gf-price-features,
.gf-kunde-prose .gf-price-benefits {
    padding-left: 0;
}

.gf-media-placeholder {
    margin-top: 1.2rem;
    border: 1px dashed rgba(200, 255, 61, 0.45);
    border-radius: 18px;
    padding: 1.3rem;
    background: rgba(255, 255, 255, 0.02);
    color: #d8f6cf;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

@media (min-width: 576px) {
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .gf-navbar .container {
        flex-wrap: nowrap;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg .navbar-brand {
        margin-right: 0;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex: 1 1 auto;
        flex-basis: auto;
        width: auto;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 0;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .gf-hero {
        padding: 70px 0 60px;
    }

    .gf-dashboard {
        margin-top: 2rem;
    }

    .gf-section {
        padding: 58px 0;
    }

    .gf-search-card .row {
        gap: 0.6rem;
    }

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

@media (max-width: 575px) {
    .col-6 {
        width: 100%;
    }

    .gf-kunde-page--auth {
        padding: 2rem 0 3.5rem;
    }

    .gf-kunde-page--inhalt {
        padding-bottom: 2.5rem;
    }

    .gf-kunde-inhalt-hero {
        padding: 2.3rem 0 1.2rem;
    }

    .gf-kunde-prose {
        border-radius: 18px;
        padding: 1.1rem;
    }

    .gf-price-grid {
        grid-template-columns: 1fr;
    }

    .gf-kunde-auth-section {
        padding: 1rem 0 1.5rem;
    }

    .gf-kunde-panel {
        border-radius: 18px;
        padding: 1.15rem;
    }

    .gf-kunde-title-lockup {
        font-size: 1.45rem;
    }

    .gf-kunde-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .gf-kunde-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gf-cta {
        padding: 2rem 1.25rem;
    }

    .modal {
        padding: 0.75rem;
    }
}
