:root {
    --radius:           32px;
    --glass-tint:    rgba(255,255,255,0.1);
    --glass-fill:       rgba(255,255,255,0.4);  /* noch heller (30→35%) */
    --glass-border:     rgba(255,255,255,0.5);   /* hellerer Rand */
    --shadow-light:     rgba(255,255,255,0.4);   /* stärkerer innerer Glow */
    --shadow-dark:      rgba(0,0,0,0.1);

    --field-radius:     0.75rem;
    --field-fill:       rgba(255,255,255,0.2);   /* Inputs ebenfalls etwas heller */
    --field-border:     rgba(255,255,255,0.4);
    --field-shadow:     rgba(0,0,0,0.1);
    --focus-accent:     rgba(8,198,198,0.8);
    --text-light:       #F4F4F8;

    --brand: #08c6c6;
    --bg: #0a0d11;
    --fg: #e9edf2;
    --muted: #9aa3ad;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --container-max: 1400px;
}
body {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
}
.required-label::after {
    content: " *";
    color: red;
}
.required-label-small::after {
    content: " *";
    color: red;
    font-weight: lighter;
}
.form-select {
    background: none !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input.form-control,
select.form-select {
    /*background-color: var(--field-fill);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border: 1px solid var(--field-border);
    box-shadow:
            inset 0 1px 2px rgba(255,255,255,0.2),
            0 2px 4px var(--field-shadow);
    border-radius: var(--field-radius);*/
    background: transparent;
    border: 1px solid #424242;
    border-radius: 0.5rem;
    color: white;
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
    font-size: 0.9rem !important;
    transition:
            border-color .2s ease,
            box-shadow .2s ease;
    /* für Select-Pfeil eigenen Platz schaffen */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.form-select option:first-child {
    color: #737373 !important;
}

/* Set normal option color */
select.form-select option:not(:first-child) {
    color: #ffffff !important;
}

/* Change select text color when placeholder is selected */
select.form-select.placeholder-active {
    color: #737373 !important;
}

select.form-select option {
    background-color: rgba(0, 0, 0, 0.85) !important;
    color:            var(--text-light) !important;
}

.custom-icon{
    top: 2.5rem;
    color: #727272 !important;
}

.custom-icon-2{
    color: #727272 !important;
}

.hint-icon {
    color: #007bff;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem; /* Make it larger */
    margin-left: auto; /* Push it to the right end */
}
.filepond--credits {
    display: none !important;
}
.hint-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hint-icon:hover {
    color: #0056b3;
}
.hint-box {
    position: absolute;
    top: 100%; /* Place below the dropdown */
    left: 0;
    width: 100%;
    background-color: #ffe6e6; /* Light red background for emphasis */
    color: red;
    border: 1px solid red;
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100; /* Ensure it appears on top of other elements */
    font-size: 14px;
    line-height: 1.5;
    display: none; /* Hidden by default */
}
/* Hide the validation icons */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #198754; /* Green border for valid input */
    padding-right: 0; /* Remove padding for icons */
    background-image: none; /* Remove the check icon */
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"]{
    padding-right: 0;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"]{
    padding-right: 0;
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545; /* Red border for invalid input */
    padding-right: 0; /* Remove padding for icons */
    background-image: none; /* Remove the exclamation icon */
}
/* For select elements */
.was-validated .form-select:valid,
.form-select.is-valid {
    border-color: #198754; /* Green border for valid select */
    padding-right: 0; /* Remove padding for icons */
    background-image: none; /* Remove the check icon */
}

.was-validated .form-select:invalid,
.form-select.is-invalid {
    border-color: #dc3545; /* Red border for invalid select */
    padding-right: 0; /* Remove padding for icons */
    background-image: none; /* Remove the exclamation icon */
}
.alert-subtle-smafina{
    background:rgba(8,198,198,.12);
    color:#08c6c6;
    border:1px solid rgba(8,198,198,.3);
}

.text-smafina{
    color: #08c6c6;
}
.form-label{
    font-size: 0.8rem;
    font-weight: normal !important;
}
.btn-smafina {
    background: linear-gradient(45deg, #08c6c6, #07aab3);
    color: #fff; /* Weißer Text für besseren Kontrast */
    font-weight: bold;
    border: none;
}

.btn-smafina {
    background-color: #08c6c6;
    color: #000;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease-in-out;
}

.btn-smafina:hover {
    background-color: #00b3b3;
    color: #fff;
    transform: translateY(-1px);
}

.callback-card .form-control {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.callback-card .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

video:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease-in-out;
}
#formAlert {
    transition: opacity 0.5s ease-in-out;
}
/* Sticky Sidebar Styling */
.sticky-sidebar {
    position: -webkit-sticky;  /* Für Safari */
    position: sticky;
    top: 20px; /* Abstand von der oberen Kante */
    height: auto;
    top: 100px; /* Wenn du mehr Abstand von oben brauchst */
    margin-left: auto;  /* Positioniert die Sidebar rechts */
    margin-top: 20px;
    z-index: 10;  /* Macht sicher, dass es über anderen Inhalten schwebt */
    background-color: var(--phoenix-emphasis-bg);
    border: var(--phoenix-card-border-width) solid var(--phoenix-card-border-color);
    border-radius: 0.5rem;
    border-width: var(--phoenix-border-width);
    border-color: var(--phoenix-border-color-translucent);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.sticky-progress-bar {
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Schatten für den „Schwebenden“ Effekt */
    border-radius: 5px;
    position: relative;
}

.sticky-progress-bar .progress {
    margin-bottom: 15px;  /* Abstand zur unteren Seite */
}

.sticky-progress-bar small {
    font-size: 0.85rem;
}

.sticky-sidebar.visible {
    opacity: 1;
    transform: translateY(0);
}
#uploadStatus {
    transition: opacity 0.5s ease;
}

.apple-progress-bar {
    height: 12px;
    border-radius: 10px;
    background-color: #e5e5ea;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

.apple-progress-bar .progress-bar {
    background-color: #007aff;
    transition: width 0.4s ease;
}

/* Vorbereitungsphase: animierter Streifen */
.apple-progress-bar.pulsing .progress-bar {
    background: linear-gradient(270deg, #007aff, #66aaff, #007aff);
    background-size: 400% 100%;
    animation: pulseProgress 2s ease-in-out infinite;
}

/* Standard Upload */
.apple-progress-bar .progress-bar {
    background-color: #007aff;
    transition: width 0.4s ease;
}

/* Slider track base (the full range) */
.noUi-target {
    background: black;
    border-radius: 0.25rem;
    height: 0.45rem;
    border: none;
    box-shadow: none;
}

/* Connected (filled) part of the slider */
.noUi-connect {
    background: white;
    border-radius: 0.25rem;
}

/* Handle itself */
.noUi-handle {
    background: gray;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    top: -7px; /* Half handle height minus half track height */
    box-shadow: none;
    cursor: grab;
}

/* Optional: Touch area inside handle */
.noUi-touch-area {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

/* Hide default pseudo elements on handle */
.noUi-handle::before,
.noUi-handle::after {
    display: none;
}

/* Add smooth transitions */
.noUi-connect, .noUi-handle {
    transition: all 0.3s ease;
}

@keyframes pulseProgress {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}
input, textarea, select, button {
    font-size: 16px !important;
}
.form-label {
    font-size: 1rem !important;
    text-transform: none !important;
}
.header-main {
    z-index: 2000;
    color: white;
    background-color: #0000;
    border-bottom: 1px solid #2d2d2d;
    border-radius: 50rem;
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    top: 1rem;
    box-shadow: 0 0 20px #0000001a, 0 6px 6px #0003;
}
footer {
    background: rgba(20,24,28,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #2d2d2d;
    border-radius: 20px 20px 0 0;  /* nur unten links und rechts */
    padding: 20px 0;
    z-index: 999999;
}
.navbar-brand-logo {
    aspect-ratio: auto;
    object-fit: cover;
    width: 250px;
    max-width: 100%;
    height: 100px;
    max-height: 100%;
}
.navbar-glass-effect {
    filter: url(#glass-distortion);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: inherit;
    position: absolute;
    inset: 0%;
    overflow: hidden;
}
.navbar-glass-tint {
    border-radius: inherit;
    background-color: #0009;
    position: absolute;
    inset: 0%;
    overflow: hidden;
}
.navbar-glass-shine {
    border-radius: inherit;
    position: absolute;
    inset: 0%;
    overflow: hidden;
    box-shadow: inset -1px -1px 1px 1px #ffffff4d, inset 2px 2px 1px #ffffff4d;
}
.navbar-wrapper {
    grid-column-gap: 0;
    grid-row-gap: 0;
    color: white;
    background-color: #0000;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    min-height: 80px;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
}
.w-nav:before, .w-nav:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}
.navbar-container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1350px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    display: flex;
}
.navbar-logo-link {
    padding-right: 2rem;
}
.w-nav-brand {
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
}
.w-nav-menu {
    float: right;
    position: relative;
    text-decoration: none;
}
.w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
}
.navbar-menu {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex;
    text-decoration: none !important;
}
a:hover{
    text-decoration: none !important;
}
.navbar-link {
    color: white;
    padding: 1.75rem 1rem;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    text-decoration: none !important;
    position: relative;
}
.navbar-menu-left {
    justify-content: flex-start;
    display: flex;
    position: static;
    text-decoration: none;
}
.navbar-menu-right {
    justify-content: flex-start;
    max-height: none;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    display: flex;
}
.navbar-button-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    align-items: center;
    margin-left: 10px;
    display: flex;
}
.button-secondary {
    grid-column-gap: .5px;
    border: 1px solid #08c6c6;
    color: white;
    background-color: #111;
    border-radius: .5rem;
    justify-content: center;
    align-items: center;
    padding: .625rem 1.125rem;
    transition: all .3s;
    display: flex;
    text-decoration: none !important;
}
.button-secondary:hover{
    border-radius: 0.5rem;
    border: 1px solid #494949;
    transition: all .3s;
    text-decoration: none !important;
}
.button {
    grid-column-gap: .5px;
    color: white;
    background-color: #fff;
    border-radius: .5rem;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    transition: all .2s cubic-bezier(.165, .84, .44, 1);
    display: flex;
}
.button:hover{
    background: #b1b1b1;
    transition: all .3s;
}
.w-nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
}
.navbar-brand-logo {
    aspect-ratio: auto;
    color: white;
    vertical-align: baseline;
    object-fit: fill;
    width: auto;
    max-width: 100%;
    height: 3rem;
    max-height: none;
    line-height: 20px;
    display: inline-block;
}
.text-block-5{
    text-decoration: none;
}
.text-block-4 {
    color: black;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}


.container{
    max-width: 1350px !important;
    margin-left: auto; !important;
    margin-right: auto !important;
}

/*..glass-card {
    position: relative;
    border-radius: var(--radius);
    border: 0.4px solid var(--glass-border);
    box-shadow:
            0 8px 32px var(--shadow-dark),
            inset 0 0 2px var(--shadow-light);
    overflow: hidden;
    background: transparent;
}*/

.glass-card{
    position: relative;
    background: rgba(20,24,28,0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
}

/*.glass-card::before {
    content: "";
    position: absolute; inset: 0;
    z-index: 0;
    background-image:
            radial-gradient(circle at top left, rgba(255,255,255,0.10) 0%, transparent 70%),
            radial-gradient(circle at bottom right, rgba(255,255,255,0.15) 0%, transparent 80%),
            url("data:image/png;base64,…");
    background-repeat: no-repeat,no-repeat,repeat;
    background-position: top left,bottom right,center;
    background-size: auto,auto,50px 50px;
    background-blend-mode: screen;
}*/

.calc-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    /* Füllung */
    background-color: var(--glass-fill);
    /* blur & saturate */
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    /* Rahmen + Schatten */
    border: 1px solid var(--glass-border);
    box-shadow:
            0 8px 32px var(--shadow-dark),
            inset 0 0 2px var(--shadow-light);
}

.calc-card::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    /* drei übereinanderliegende Radial-Gradient-Flares */
    background-image:
        /* großer weicher heller Fleck oben links */
            radial-gradient(
                    circle at 25% 25%,
                    rgba(255,255,255,0.35) 0%,
                    transparent 60%
            ),
                /* mittlerer bunter Farbtonzentrum */
            radial-gradient(
                    circle at 50% 50%,
                    rgba(90,43,201,0.25) 0%,
                    transparent 70%
            ),
                /* kleiner weicher heller Fleck unten rechts */
            radial-gradient(
                    circle at 75% 75%,
                    rgba(255,255,255,0.20) 0%,
                    transparent 50%
            );

    /* optional: Gesamt-Farbverlauf darunter */
    background-color: #0b0f18;
    background-blend-mode: screen;
}

/* Jetzt stimmen die Klassennamen: */
.card-glass-effect,
.card-glass-tint,
.card-glass-shine,
.glass-card::before {
    pointer-events: none;
}

.card-glass-effect {
    position: absolute; inset: 0;
    filter: url(#glass-distortion);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: inherit;
    z-index: 1;
}

.card-glass-tint {
    position: absolute; inset: 0;
    background-color: var(--glass-tint);
    border-radius: inherit;
    z-index: 2;
}

.card-glass-shine {
    position: absolute; inset: 0;
    box-shadow:
            inset -1px -1px 1px 1px rgba(255,255,255,0.4),
            inset 2px 2px 1px rgba(255,255,255,0.2);
    border-radius: inherit;
    z-index: 3;
}

.glass-card-content {
    position: relative;
    z-index: 4;
    /* padding, Farben … wie gehabt */
}

.glass-card input.form-control,
.glass-card select.form-select {
    /*background-color: var(--field-fill);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    border: 1px solid var(--field-border);
    box-shadow:
            inset 0 1px 2px rgba(255,255,255,0.2),
            0 2px 4px var(--field-shadow);
    border-radius: var(--field-radius);*/
    background: transparent;
    border: 1px solid #424242;
    border-radius: 0.5rem;
    color: white;
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
    font-size: 0.9rem !important;
    transition:
            border-color .2s ease,
            box-shadow .2s ease;
    /* für Select-Pfeil eigenen Platz schaffen */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.form-select option:first-child {
    color: #737373;
}

/* Set normal option color */
select.form-select option:not(:first-child) {
    color: #ffffff;
}

/* Change select text color when placeholder is selected */
select.form-select.placeholder-active {
    color: #737373;
}

.glass-card select.form-select option {
    background-color: rgba(0, 0, 0, 0.85);
    color:            var(--text-light);
}

.glass-card select.form-select{
    background-image:
            url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7'><path fill='%23F4F4F8' d='M0 0l5 7 5-7z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px 7px;
}

/* Placeholder-Text etwas dezenter */
.glass-card input::placeholder {
    color: rgba(255,255,255,0.6);
}

.glass-card label {
    color: white;
}

/* Hover-Effekt */
.glass-card input.form-control:hover,
.glass-card select.form-select:hover {
    border-color: var(--field-border);
    box-shadow:
            inset 0 1px 2px rgba(255,255,255,0.3),
            0 4px 8px rgba(0,0,0,0.15);
}

/* Fokus-Ring mit Türkis-Akzent */
.glass-card input.form-control:focus,
.glass-card select.form-select:focus {
    outline: none;
    border-color: var(--focus-accent);
    box-shadow:
            0 0 0 2px var(--focus-accent),
            inset 0 1px 2px rgba(255,255,255,0.2);
}

/* Für sehr schmale Layouts: Inputs 100% Breite */
@media (max-width: 480px) {
    .glass-card input.form-control,
    .glass-card select.form-select {
        width: 100%;
    }
}

.calc-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent;
}

.sub-card {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
}

.glass-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;

    /* ==== Apple-Style Glass-Füllung ==== */
    background-color: var(--glass-fill);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);

    /* ==== Weißer Rand + weicher Schatten ==== */
    border: 1px solid var(--glass-border);
    box-shadow:
            0 8px 32px var(--shadow-dark),
            inset 0 0 2px var(--shadow-light);
}

/* ==== Die Flare-Gradients im Hintergrund ==== */
.glass-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
            radial-gradient(circle at 25% 25%, rgba(255,255,255,0.35) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(90,43,201,0.25) 0%, transparent 70%),
            radial-gradient(circle at 75% 75%, rgba(255,255,255,0.20) 0%, transparent 50%);
    background-color: #0b0f18;
    background-blend-mode: screen;
}

.glass-filter {
    position: absolute; inset: 0;
    filter: url(#glass-distortion);
    z-index: 1;
}
.glass-card,
.glass-card *:before,
.glass-card *:after {
    pointer-events: auto;
}

.glass-filter,
.glass-overlay,
.glass-specular {
    pointer-events: none !important;
}

.custom-icon,
.custom-icon-2 {
    pointer-events: none !important;
}
@supports (-webkit-touch-callout: none) {
    .glass-card {
        transform: none !important;
        overflow: visible !important;
        -webkit-overflow-scrolling: touch;
    }
}
select.form-select:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    will-change: auto;
}
@supports (-webkit-touch-callout: none) {
    select {
        transform: none !important;
        backdrop-filter: none !important;
    }
}

/* dunkle Tönung für mehr Kontrast */
.glass-overlay {
    position: absolute; inset: 0;
    background-color: rgba(0,0,0,0.1);
    z-index: 2;
}
/* Specular-Glanz innen */
.glass-specular {
    position: absolute; inset: 0;
    pointer-events: none;
    box-shadow:
            inset -1px -1px 1px rgba(255,255,255,0.6),
            inset 2px 2px 8px rgba(255,255,255,0.2);
    z-index: 3;
}

.tokenCard {
    background-color: #191919;
    border: 1px solid #424242;
}

.tokenMailInput {
    background: #191919 !important;
    border: 1px solid #424242 !important;
    color: white !important;
}
input.tokenMailInput:focus {
    background: #191919 !important;
    border: 1px solid #424242 !important;
    box-shadow: none !important;
    outline: none !important;
}

.footer-section.footer-section-padding {
    z-index: 2;
    background: rgba(20,24,28,0.85);
    backdrop-filter: blur(12px);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 24px;
    position: relative;
}

.main-container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.footer-sections-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
    display: flex;
}

.footer-main-content-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: start center;
    display: grid;
}

.footer-logo-link.w--current {
    justify-content: flex-start;
}

.footer-logo-image {
    object-fit: contain;
    width: 350px;
    height: 100px;
    margin-left: 0;
    padding-left: 0;
}

.footer-bio-text {
    color: white;
    padding-top: 18px;
    line-height: 1.4;
}

.footer-header {
    color: white;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}


.footer-link {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: color .3s;
}

.footer-link:hover{
    color: #08c6c6 !important;
}

.footer-link-wrap {
    grid-row-gap: 6px;
    flex-direction: column;
    margin-top: 16px;
    display: flex;
}

.bottom-footer-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-top: 1px solid #c2c7d080;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
}

.copyright-text {
    color: white;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
}

.social-icons-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.social-icon-link-wrap {
    background-color: #08c6c6;
    border-radius: 50%;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition-property: background-color;
    transition-duration: .3s;
    display: flex;
}

.w-inline-block {
    max-width: 100%;
}

.social-icon {
    justify-content: center;
    align-items: center;
    max-width: 50%;
    max-height: 50%;
    display: flex;
}

@media screen and (min-width: 1440px) {
    .footer-section.footer-section-padding {
        padding-top: 20px;
    }
}

@media screen and (min-width: 1440px) {
    .footer-sections-wrapper {
        grid-row-gap: 50px;
    }
}

@media screen and (max-width: 991px) {
    .footer-sections-wrapper {
        grid-row-gap: 30px;
    }
}

@media screen and (max-width: 479px) {
    .footer-bio-text {
        text-align: center;
    }
}


@media screen and (max-width: 479px) {
    .footer-link-wrap {
        grid-row-gap: 7px;
        align-items: center;
        margin-top: 15px;
    }
}
@media screen and (max-width: 767px) {
    .footer-link-wrap {
        grid-row-gap: 14px;
        margin-top: 24px;
    }
}

@media screen and (max-width: 479px) {
    .footer-main-content-grid {
        grid-row-gap: 30px;
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 767px) {
    .footer-main-content-grid {
        grid-column-gap: 50px;
        grid-row-gap: 30px;
        grid-template-columns: 1.5fr 1fr;
        align-items: stretch;
    }
}
@media screen and (max-width: 991px) {
    .footer-main-content-grid {
        grid-column-gap: 50px;
        grid-row-gap: 30px;
        grid-template-rows: auto auto;
        grid-template-columns: 1.25fr 1fr;
        grid-auto-columns: 1fr;
        grid-auto-flow: row;
        place-items: stretch stretch;
        display: grid
    ;
    }
}

@media screen and (max-width: 479px) {
    .bottom-footer-wrap {
        grid-column-gap: 14px;
        grid-row-gap: 14px;
        flex-direction: column;
    }
}
@media screen and (max-width: 767px) {
    .bottom-footer-wrap {
        grid-column-gap: 14px;
        grid-row-gap: 14px;
        flex-direction: column;
        align-items: center;
        padding-top: 18px;
        padding-bottom: 18px;
    }
}
@media screen and (max-width: 991px) {
    .bottom-footer-wrap {
        grid-column-gap: 12px;
        grid-row-gap: 12px;
        flex-direction: row;
        justify-content: space-between;
    }
}
@media screen and (max-width: 991px) {
    #w-node-e69f57ef-66f4-d046-153c-db167cf3df52-7cf3df38 {
        grid-area: span 1 / span 2 / span 1 / span 2;
    }
}
@media screen and (max-width: 479px) {
    .footer-content-column {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex
    ;
    }
}
@media screen and (max-width: 991px) {
    .footer-content-column {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 479px) {
    .copyright-text.max-width-360px {
        max-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .copyright-text.max-width-360px {
        text-align: center;
        max-width: 100%;
    }
}
@media screen and (max-width: 991px) {
    .copyright-text.max-width-360px {
        max-width: 54%;
    }
}
@media screen and (max-width: 479px) {
    .copyright-text {
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .copyright-text {
        text-align: left;
        font-size: 16px;
    }
}
@media screen and (max-width: 991px) {
    .copyright-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 479px) {
    .social-icons-wrapper {
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width: 767px) {
    .social-icons-wrapper {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 991px) {
    .social-icons-wrapper {
        align-items: center;
    }
}

@media screen and (max-width: 479px) {
    .social-icon-link-wrap {
        width: 34px;
        height: 34px;
    }
}
@media screen and (max-width: 767px) {
    .social-icon-link-wrap {
        flex: none;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        padding: 6px;
        display: flex
    ;
    }
}

@media screen and (max-width: 479px) {
    .footer-header {
        font-size: 20px;
    }
}



@media screen and (min-width: 1920px) {
    .main-container {
        max-width: 1350px;
    }
}

@media screen and (min-width: 1440px) {
    .main-container {
        max-width: 1280px;
    }
}

@media screen and (min-width: 1280px) {
    .main-container {
        max-width: 1350px;
    }
}

@media screen and (max-width: 767px) {
    .main-container {
        max-width: 630px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media screen and (max-width: 991px) {
    .main-container {
        max-width: 740px;
    }
}

@media screen and (min-width: 1440px) {
    .social-icons-wrapper {
        grid-column-gap: 12px;
        grid-row-gap: 12px;
    }
}

@media screen and (min-width: 1440px) {
    .social-icon-link-wrap {
        transition: background-color .3s;
    }
}

@media screen and (min-width: 1440px) {
    .footer-bio-text {
        max-width: 300px;
    }
}

@media screen and (max-width: 991px) {
    .w-nav[data-collapse="medium"] .w-nav-menu {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .w-nav[data-collapse="medium"] .w-nav-menu {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .navbar-menu {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        background-color: #131313;
        flex-flow: column;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        justify-content: flex-start;
        align-items: flex-start;
        height: 100vh;
        padding: 1.5rem 3.2rem 5rem 2.5rem;
        display: none;
        position: absolute;
        inset: 100% 0% 0%;
    }
}

@media screen and (max-width: 991px) {
    .navbar-menu-left {
        grid-row-gap: .5rem;
        color: #fff;
        background-color: #0000;
        flex-flow: column;
        align-items: flex-start;
        width: auto;
    }
}

@media screen and (max-width: 479px) {
    .navbar-menu-right {
        background-color: black;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 991px) {
    .navbar-menu-right {
        z-index: 99999999;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        text-align: left;
        background-color: #0000;
        border: 0 #000;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        margin-top: 1.5rem;
        padding: 0 0 7rem;
    }
}

@media screen and (max-width: 991px) {
    .navbar-button-wrapper {
        flex-flow: row-reverse;
        justify-content: center;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .hero-header-component {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        text-align: left;
        flex-flow: column;
        flex: 0 auto;
        justify-content: flex-start;
        align-self: auto;
        align-items: center;
        padding-right: 0;
        display: flex
    ;
        position: relative;
    }
}

@media screen and (max-width: 991px) {
    .hero-text-wrapper {
        justify-content: flex-start;
        align-self: auto;
        align-items: flex-start;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        left: auto;
    }
}

@media screen and (max-width: 991px) {
    .w-nav[data-collapse="medium"] .w-nav-button {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .menu-icon-component {
        flex-flow: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        margin-right: -.5rem;
        padding-bottom: 0;
        padding-right: 0;
        display: flex
    ;
    }
}

@media screen and (max-width: 991px) {
    .menu-icon-line-top {
        background-color: #fff;
        border-radius: 1rem;
        width: 24px;
        height: 2px;
        padding-bottom: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 991px) {
    .menu-icon-line-middle {
        background-color: #fff;
        border-radius: 1rem;
        flex: 0 auto;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 2px;
        margin-top: 6px;
        margin-bottom: 6px;
        padding-bottom: 0;
        padding-right: 0;
        display: flex
    ;
    }
}

@media screen and (max-width: 991px) {
    .menu-icon-middle-line {
        width: 4px;
        height: 0;
        padding-bottom: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 991px) {
    .menu-icon {
        background-color: #fff;
        border-radius: 1rem;
        width: 24px;
        height: 2px;
        padding-bottom: 0;
        padding-right: 0;
    }
}

/* Haupt-Layout mit vertikaler Linie */
.rejection-path {
    position: relative;
    padding-left: 2rem;
}
.rejection-step {
    position: relative;
    padding-bottom: 3rem;
}
.rejection-step:last-child {
    padding-bottom: 1rem;
}
.rejection-dot {
    position: absolute;
    left: -2.0rem; /* (2rem padding + 2px border) / 2 - dot width / 2 */
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #08c6c6;
    border: 3px solid #1a1a1a;
    box-shadow: 0 0 10px rgba(8, 198, 198, 0.5);
}

/* Überarbeitete Analyse-Karten */
.factor-card-v2 {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    text-align: left;
    transition: all 0.2s ease-in-out;
}
.factor-card-v2:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}
.factor-card-v2 .factor-icon {
    font-size: 1.75rem;
    color: #6c757d;
}
.personal-note-box {
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #08c6c6; /* Use your accent color */
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
}
.personal-note-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.personal-note-box p:last-child {
    margin-bottom: 0;
}
.personal-note-box .text-accent {
    color: #08c6c6; /* Use your accent color */
}
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
}
.status-badge.stable {
    background-color: rgba(8, 198, 198, 0.15);
    color: #08c6c6;
}
.status-badge.potential {
    background-color: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

/* Disclaimer-Box */
.disclaimer-box {
    font-size: 0.8rem;
    color: #6c757d;
    padding: 1rem;
    background-color: rgba(0,0,0,0.2);
    border-radius: 0.5rem;
}

/* Aktionsplan (Unverändert, aber hier zur Vollständigkeit) */
.action-plan-box {
    background-color: #1a1a1a;
    border-left: 4px solid #08c6c6;
    padding: 1.5rem;
    border-radius: 0.5rem;
}
.action-plan-box ul {
    list-style-type: none;
    padding-left: 0;
}
.action-plan-box li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}
.action-plan-box li i {
    color: #08c6c6;
    margin-right: 0.75rem;
}

.success-message {
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #08c6c6; /* Your accent color */
}

.success-message .fa-check-circle {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message .success-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

/* Animation for the border flash on success */
@keyframes success-flash {
    0% {
        border-color: rgba(8, 198, 198, 0.2);
    }
    50% {
        border-color: #08c6c6;
        box-shadow: 0 0 15px rgba(8, 198, 198, 0.5);
    }
    100% {
        border-color: rgba(8, 198, 198, 0.2);
    }
}

.reminder-box.is-successful {
    animation: success-flash 0.8s ease-out;
}

.contact-box {
    display: block;
    text-decoration: none;
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.375rem;
    height: 100%;
    transition: background-color 0.2s ease-in-out;
}
.contact-box:hover {
    background-color: rgba(8, 198, 198, 0.2); /* Accent color on hover */
    color: white;
}

.replit-calc-card {
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 198, 198, 0.5);
    border-radius: 20px;
    padding: 32px;
    position: relative;
}

.replit-calc-card-mobile {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.replit-calc-content {
    position: relative;
    z-index: 2;
}

.calculator-header {
    margin-bottom: 32px;
}

.calculator-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.calculator-sliders {
    margin-bottom: 32px;
}

.slider-group {
    margin-bottom: 28px;
}

.slider-group:last-child {
    margin-bottom: 0;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.slider-label {
    font-size: 14px;
    font-weight: 500;
    color: #e9edf2;
    margin: 0;
}

/* Editable input field styling */
.slider-value-input {
    background: rgba(8, 198, 198, 0.15);
    border: 1px solid rgba(8, 198, 198, 0.3);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    min-width: 140px;
    cursor: text;
    transition: all 0.2s;
}

.slider-value-input:hover {
    background: rgba(8, 198, 198, 0.2);
    border-color: rgba(8, 198, 198, 0.5);
}

.slider-value-input:focus {
    outline: none;
    background: rgba(8, 198, 198, 0.25);
    border-color: rgba(8, 198, 198, 0.6);
    box-shadow: 0 0 0 3px rgba(8, 198, 198, 0.1);
}

.slider-range {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #9aa3ad;
}

/* Replit Slider Styles */
.replit-slider-wrap {
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
}

.replit-slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.replit-slider-range {
    position: absolute;
    height: 6px;
    background: linear-gradient(90deg, #08c6c6, #06a8a8);
    box-shadow: 0 0 20px rgba(8, 198, 198, 0.5);
    border-radius: 3px;
    width: var(--percent, 0%);
    pointer-events: none;
    transition: width 0.15s ease;
    top: 50%;
    transform: translateY(-50%);
}

.replit-slider-input {
    position: absolute;
    width: 100%;
    height: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.replit-slider-input::-webkit-slider-track {
    background: transparent;
    border: none;
    height: 20px;
}

.replit-slider-input::-moz-range-track {
    background: transparent;
    border: none;
    height: 20px;
}

.replit-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #08c6c6;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(8, 198, 198, 0.6);
    cursor: pointer;
}

.replit-slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #08c6c6;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(8, 198, 198, 0.6);
    cursor: pointer;
}

.replit-slider-input:focus {
    outline: none;
}

.replit-slider-input:hover::-webkit-slider-thumb {
    box-shadow: 0 2px 12px rgba(8, 198, 198, 0.8);
}

.calculator-result {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
}

.info-btn-replit {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa3ad;
    cursor: pointer;
    transition: all 0.2s;
}

.info-btn-replit:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.info-btn-replit:hover + .replit-popover {
    opacity: 1;
    visibility: visible;
}

.replit-popover {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    max-width: 320px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.replit-popover:hover {
    opacity: 1;
    visibility: visible;
}

.popover-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.popover-rate {
    font-size: 14px;
    color: #08c6c6;
    margin: 0 0 8px 0;
}

.popover-pangv {
    font-size: 12px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.monthly-rate-value {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.burden-section {
    margin-bottom: 24px;
}

.burden-label {
    display: block;
    font-size: 14px;
    color: #e9edf2;
    margin-bottom: 8px;
}

.burden-progress-wrapper {
    margin-bottom: 8px;
}

.burden-progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 28px;
    overflow: hidden;
    position: relative;
}

.burden-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease;
    border-radius: 12px;
}

.burden-fill.warning {
    background: linear-gradient(90deg, #f59e0b, #d97706) !important;
}

.burden-fill.danger {
    background: linear-gradient(90deg, #ef4444, #dc2626) !important;
}

.burden-percentage {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}

.burden-hint {
    font-size: 12px;
    color: #9aa3ad;
    display: block;
}

.trust-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.result-label {
    color:#08c6c6;
    font-weight:600;
    text-decoration:none;
    transition:color .2s;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9aa3ad;
}

.badge-item svg {
    color: #08c6c6;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .replit-calc-card {
        padding: 24px;
    }

    .calculator-title {
        font-size: 18px;
    }

    .slider-label {
        font-size: 13px;
    }

    .slider-value-input {
        font-size: 14px;
        min-width: 120px;
        padding: 5px 10px;
    }

    .monthly-rate-value {
        font-size: 36px;
    }

    .result-label {
        color:#08c6c6;
        font-weight:600;
        text-decoration:none;
        transition:color .2s;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 12px;
    }

    .badge-item {
        font-size: 11px;
    }
}

/* Header Container */
.smafina-header {
    position: relative;
    z-index: 50;
    background: transparent;
}

.smafina-container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.smafina-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
}

/* Logo */
.smafina-logo {
    display: flex;
    align-items: center;
    z-index: 50;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.smafina-logo:hover {
    transform: scale(1.05);
}

.smafina-logo-img {
    height: 48px;
    width: auto;
}

@media (min-width: 640px) {
    .smafina-logo-img {
        height: 56px;
    }
}

/* Desktop Navigation */
.smafina-nav-desktop {
    display: none;
    align-items: center;
    gap: var(--space-xl);
    margin-left: 48px;
}

@media (min-width: 1024px) {
    .smafina-nav-desktop {
        display: flex;
    }
}

/* Dropdown Container */
.smafina-dropdown {
    position: relative;
}

.smafina-nav-button {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: #ffffff;
    background: none;
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.smafina-nav-button:hover {
    color: var(--brand);
}

/* Dropdown Menu */
.smafina-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -1px;
    z-index: 50;
    padding: 16px;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


.smafina-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: -1;
    pointer-events: none;

    width: calc(100vw * (100vw - var(--container-max)));
    max-width: var(--container-max);
}
/* On smaller screens, extend to viewport edges minus container padding */
@media (max-width: 1400px) {
    .smafina-dropdown-menu::before {
        margin-left: calc(-1 * var(--space-lg) - (100vw - 100%) / 2);
        margin-right: calc(-1 * var(--space-lg) - (100vw - 100%) / 2);
        width: calc(100vw - var(--space-lg) * 2);
    }
}

.smafina-dropdown:hover .smafina-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.smafina-dropdown-content {
    display: flex;
    gap: var(--space-xl);
    white-space: nowrap;
}

.smafina-dropdown-category {
    min-width: 200px;
}

.smafina-dropdown-title {
    font-size: 18px;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: var(--space-lg);
}

.smafina-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.smafina-dropdown-link {
    display: block;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    padding: var(--space-xs) 0;
    transition: color 0.2s;
}

.smafina-dropdown-link:hover {
    color: var(--brand);
}

/* Desktop Header Actions */
.smafina-header-actions {
    display: none;
    align-items: center;
    gap: var(--space-md);
    margin-left: auto;
}

@media (min-width: 1024px) {
    .smafina-header-actions {
        display: flex;
    }
}

.smafina-link-secondary {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    margin-right: 40px;
    transition: color 0.2s;
}

.smafina-link-secondary:hover {
    color: var(--brand);
}

/* Primary Button */
.smafina-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    background: var(--brand);
    color: #001416;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.smafina-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.smafina-button-primary:hover::before {
    left: 100%;
}

.smafina-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 198, 198, 0.3);
}

.smafina-button-primary:active {
    transform: translateY(0);
}

.smafina-button-primary span {
    position: relative;
    z-index: 10;
}

/* Mobile Menu Toggle */
.smafina-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    z-index: 50;
    transition: background 0.2s;
}

@media (min-width: 1024px) {
    .smafina-mobile-toggle {
        display: none;
    }
}

.smafina-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.smafina-menu-icon {
    display: block;
    color: #ffffff;
}

.smafina-close-icon {
    display: none;
    color: #ffffff;
}

.smafina-mobile-toggle.active .smafina-menu-icon {
    display: none;
}

.smafina-mobile-toggle.active .smafina-close-icon {
    display: block;
}

/* Mobile Menu Overlay */
.smafina-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 40;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.smafina-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .smafina-mobile-menu {
        display: none;
    }
}

.smafina-mobile-menu-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.smafina-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.smafina-mobile-logo {
    height: 40px;
    width: auto;
}

.smafina-mobile-close-btn {
    padding: 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s;
}

.smafina-mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Featured CTA */
.smafina-mobile-featured {
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.smafina-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: linear-gradient(90deg, rgba(8, 198, 198, 0.2), rgba(8, 198, 198, 0.1));
    border: 1px solid rgba(8, 198, 198, 0.3);
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.2s;
}

.smafina-mobile-cta:hover {
    border-color: rgba(8, 198, 198, 0.5);
}

.smafina-mobile-cta-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.smafina-mobile-cta-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.smafina-mobile-cta svg {
    color: var(--brand);
    transition: transform 0.2s;
}

.smafina-mobile-cta:hover svg {
    transform: translateX(4px);
}

/* Mobile Navigation */
.smafina-mobile-nav {
    flex: 1;
    padding: 0 var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.smafina-mobile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-lg);
    background: transparent;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.smafina-mobile-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.smafina-mobile-item span {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.smafina-mobile-item svg {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
}

.smafina-mobile-item:hover svg {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(4px);
}

.smafina-mobile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: var(--space-lg) 0;
}

/* Mobile Expandable Menu */
.smafina-mobile-expandable {
    display: flex;
    flex-direction: column;
}

.smafina-mobile-expand-btn .smafina-chevron {
    transition: transform 0.2s;
}

.smafina-mobile-expand-btn.active .smafina-chevron {
    transform: rotate(90deg);
}

.smafina-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.smafina-mobile-submenu.active {
    max-height: 500px;
}

.smafina-mobile-subitem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    margin-left: var(--space-lg);
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.smafina-mobile-subitem:hover {
    background: rgba(255, 255, 255, 0.05);
}

.smafina-mobile-subitem span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.smafina-mobile-subitem:hover span {
    color: #ffffff;
}

.smafina-mobile-subitem svg {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.smafina-mobile-subitem:hover svg {
    color: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}
/* Footer button styling */
.footer-link-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
}
/* Contact info styling */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.contact-hours p {
    margin: 0;
}
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
.footer-contact-link:hover {
    color: #08c6c6; /* Brand color */
}
.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
/* Bottom footer - flexbox for desktop */
.bottom-footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.made-in-germany {
    margin: 0;
}
/* Mobile adjustments */
@media (max-width: 768px) {
    .bottom-footer-wrap {
        flex-direction: column;
        text-align: center;
    }
}

.info-btn-transfer {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #08c6c6;
    transition: color 0.2s ease;
    font-size: 14px;
    line-height: 1;
}

.info-btn-transfer:hover {
    color: #059393;
}

.info-btn-transfer i {
    display: block;
}

.add-transfer-link {
    margin: 0;
    color: #08c6c6;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.add-transfer-link:hover {
    color: #059393;
}
