:root {
    --navy: #0B1B3A;
    --navy-2: #102A5C;
    --ink: #0E1525;
    --muted: #566074;
    --line: rgba(16, 42, 92, 0.14);
    --bg-alt: #F7F9FC;
    --card: #FFFFFF;
    --shadow: 0 10px 30px rgba(11, 27, 58, 0.08);
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--ink);
    background: #fff;
}

a {
    color: var(--navy-2);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.fineprint {
    font-size: 0.92rem;
    color: var(--muted);
}

/* Topbar */
.topbar {
    background: linear-gradient(90deg, rgba(11, 27, 58, 1) 0%, rgba(16, 42, 92, 1) 100%);
    color: #fff;
    font-size: 0.95rem;
}

.topbar__inner {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    flex-wrap: wrap;
}

.topbar__badge {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 600;
    /* Align dot and text */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar__text {
    opacity: 0.92;
}

/* Green pulsing status dot */
.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    /* Tailwind green-500 */
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

/* Pulsing glow ring */
.status-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

/* Pulse animation */
@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Navbar */
.nav-clean {
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid var(--line);

    /* Fix für iOS sticky blur */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Logo-spezifische Fixes */
.brand-logo {
    /* Eigene Rendering-Ebene erzwingen */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    /* Crisp rendering */
    image-rendering: -webkit-optimize-contrast;

    /* Verhindert Subpixel-Probleme */
    -webkit-font-smoothing: antialiased;
}


.brand-mark {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    box-shadow: 0 6px 18px rgba(16, 42, 92, 0.25);
}

.brand-mark--small {
    width: 14px;
    height: 14px;
    border-radius: 5px;
}

.brand-name {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.navbar .nav-link {
    color: rgba(14, 21, 37, 0.78);
    font-weight: 600;
}

.navbar .nav-link:hover {
    color: var(--navy-2);
}

/* New, serious "art placeholder" style (not dashed) */
.quote-panel {
    max-width: 920px;
    /* a bit bigger & more premium */
    margin: 0 auto;
    padding: 32px 28px;
    text-align: center;

    background: linear-gradient(180deg, rgba(16, 42, 92, 0.06) 0%, #ffffff 100%);
    border: 1px solid rgba(16, 42, 92, 0.14);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(11, 27, 58, 0.08);
}

/* Optional: if you later add a logo/portrait */
.quote-panel__media {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin: 0 auto 14px auto;
    display: grid;
    place-items: center;
    font-weight: 800;

    background: rgba(16, 42, 92, 0.06);
    border: 1px solid rgba(16, 42, 92, 0.14);
    color: rgba(11, 27, 58, 0.85);
}

.quote-panel__headline {
    margin: 0;
    font-size: clamp(1.15rem, 2.1vw, 1.45rem);
    line-height: 1.35;
    letter-spacing: -0.02em;

    font-style: italic;
    font-weight: 750;
    /* slightly smaller than the previous 850/900 */
    color: rgba(11, 27, 58, 0.92);
}

/* Optional attribution line */
.quote-panel__meta {
    margin-top: 12px;
    color: var(--muted);
    font-weight: 650;
    font-size: 0.95rem;
}

/* Keep your old placeholder-wide if used elsewhere; no need to delete it */

/* Buttons */
.btn-navy {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.btn-navy:hover {
    background: var(--navy-2);
    border-color: var(--navy-2);
    color: #fff;
}

.btn-outline-navy {
    border-color: rgba(11, 27, 58, 0.35);
    color: var(--navy);
    background: #fff;
}

.btn-outline-navy:hover {
    background: rgba(11, 27, 58, 0.06);
    border-color: rgba(11, 27, 58, 0.45);
    color: var(--navy);
}

/* Sections */
.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid rgba(16, 42, 92, 0.10);
    border-bottom: 1px solid rgba(16, 42, 92, 0.10);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 28px auto;
    text-align: center;
}

.section-title {
    font-weight: 850;
    letter-spacing: -0.03em;
    margin: 0 0 8px 0;
}

.section-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

/* Hero */
.hero {
    padding: 70px 0 64px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -200px -200px auto -200px;
    height: 520px;
    /* background:
        radial-gradient(closest-side, rgba(16, 42, 92, 0.14), rgba(255, 255, 255, 0) 70%),
        radial-gradient(closest-side, rgba(11, 27, 58, 0.10), rgba(255, 255, 255, 0) 70%); */
    pointer-events: none;
}

.eyebrow {
    display: inline-block;
    border: 1px solid var(--line);
    background: rgba(16, 42, 92, 0.04);
    color: var(--navy-2);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.hero__title {
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.06;
    margin: 0 0 12px 0;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
}

.hero__subtitle {
    color: var(--muted);
    font-size: 1.12rem;
    margin: 0 0 18px 0;
    max-width: 52ch;
}

.hero__meta {
    display: grid;
    gap: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(14, 21, 37, 0.82);
    font-weight: 600;
}

.meta-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(16, 42, 92, 0.25);
    border: 1px solid rgba(16, 42, 92, 0.18);
}

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-chip {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 7px 10px;
    font-weight: 700;
    color: rgba(14, 21, 37, 0.75);
}

/* Hero visual */
.hero__visual {
    position: relative;
}

.mockup-pic{
    height: 40rem;
    border-radius: 18px;
    border: 1px dashed rgba(16, 42, 92, 0.35);
    background: linear-gradient(180deg, rgba(16, 42, 92, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.placeholder-media {
    box-shadow: var(--shadow);
    width: fit-content;
    display: grid;
    place-items: center;
}

.placeholder-media__inner {
    text-align: center;
    padding: 26px;
    max-width: 380px;
}

.placeholder-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
    color: rgba(11, 27, 58, 0.92);
}

.placeholder-sub {
    margin: 0;
    color: var(--muted);
}

.floating-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(16, 42, 92, 0.12);
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(11, 27, 58, 0.14);
    padding: 12px 14px;
    width: 220px;
}

.floating-card__title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.floating-card__text {
    color: var(--muted);
    font-weight: 650;
    font-size: 0.95rem;
}

.floating-card--one {
    top: 18px;
    left: -10px;
}

.floating-card--two {
    bottom: 18px;
    right: -10px;
}

@media (max-width: 991px) {
    .floating-card {
        display: none;
    }
}

/* Cards */
.card-clean {
    background: var(--card);
    border: 1px solid rgba(16, 42, 92, 0.12);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 22px rgba(11, 27, 58, 0.06);
    height: 100%;
}

.card-clean__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(16, 42, 92, 0.14);
    background: rgba(16, 42, 92, 0.05);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.card-clean__title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 10px 0;
}

.card-clean__foot {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.list-clean {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(14, 21, 37, 0.86);
}

.list-clean li {
    margin-bottom: 8px;
}

/* Wide placeholder */
.placeholder-wide {
    border: 1px dashed rgba(16, 42, 92, 0.30);
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
}

/* Steps */
.step-card {
    background: #fff;
    border: 1px solid rgba(16, 42, 92, 0.12);
    border-radius: 18px;
    padding: 18px 18px 16px 18px;
    height: 100%;
}

.step-card__num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(11, 27, 58, 0.06);
    border: 1px solid rgba(11, 27, 58, 0.12);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-card__title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}

.step-card__text {
    margin: 0;
    color: var(--muted);
}

.divider {
    height: 1px;
    background: rgba(16, 42, 92, 0.14);
    margin: 22px 0;
}

/* Features */
.feature-card {
    background: #fff;
    border: 1px solid rgba(16, 42, 92, 0.12);
    border-radius: 18px;
    padding: 18px;
    height: 100%;
}

.feature-card__title {
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}

.feature-card__text {
    margin: 0;
    color: var(--muted);
}

/* Check list */
.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.list-check li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(14, 21, 37, 0.86);
    font-weight: 650;
}

.list-check li::before {
    content: "✓";
    color: var(--navy-2);
    font-weight: 900;
    margin-top: 1px;
}

/* Segmented toggle */
.segmented {
    margin-top: 16px;
    display: inline-flex;
    padding: 4px;
    border-radius: 14px;
    border: 1px solid rgba(16, 42, 92, 0.16);
    background: rgba(255, 255, 255, 0.75);
    gap: 4px;
}

.segmented__btn {
    border: 0;
    background: transparent;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 850;
    color: rgba(14, 21, 37, 0.70);
}

.segmented__btn.is-active {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 10px 25px rgba(11, 27, 58, 0.10);
    border: 1px solid rgba(16, 42, 92, 0.10);
}

.mini-points {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(14, 21, 37, 0.76);
    font-weight: 650;
}

.mini-point {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(16, 42, 92, 0.24);
    border: 1px solid rgba(16, 42, 92, 0.20);
}

/* Forms */
.form-clean {
    background: #fff;
    border: 1px solid rgba(16, 42, 92, 0.12);
    border-radius: 18px;
    padding: 18px;
}

.form-label {
    font-weight: 800;
    color: rgba(14, 21, 37, 0.82);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(16, 42, 92, 0.14);
    padding: 42px 0 24px 0;
    background: #fff;
}

.footer__text {
    color: var(--muted);
    margin: 0;
    max-width: 56ch;
}

.footer__links {
    margin-top: 12px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer__link {
    color: rgba(14, 21, 37, 0.72);
    font-weight: 700;
}

.footer__link:hover {
    color: var(--navy-2);
}

.footer__box {
    border: 1px solid rgba(16, 42, 92, 0.12);
    background: rgba(16, 42, 92, 0.03);
    border-radius: 18px;
    padding: 18px;
}

.footer__box-title {
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.footer__box-text {
    color: var(--muted);
    margin: 0;
}

.footer__bottom {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 42, 92, 0.12);
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(14, 21, 37, 0.62);
    font-weight: 650;
}

.footer__bottom-sep {
    opacity: 0.55;
}

/* Bootstrap small tweak */
.accordion-item {
    border: 1px solid rgba(16, 42, 92, 0.12) !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
}

.accordion-button {
    font-weight: 850;
    color: rgba(14, 21, 37, 0.86);
}

.accordion-button:not(.collapsed) {
    background: rgba(16, 42, 92, 0.05);
    color: var(--navy);
}

/* ============================================
   Stories Carousel (Instagram-Style)
   ============================================ */

.stories-carousel {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 27, 58, 0.05) 0%, rgba(16, 42, 92, 0.10) 100%);
    border: 1px solid rgba(16, 42, 92, 0.12);
    box-shadow: 0 20px 60px rgba(11, 27, 58, 0.15);
    aspect-ratio: 9 / 16;
}

/* Progress Bars Container */
.stories-progress {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.stories-progress__bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 3px;
    overflow: hidden;
}

.stories-progress__fill {
    width: 0%;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.stories-progress__bar.is-complete .stories-progress__fill {
    width: 100%;
}

.stories-progress__bar.is-active .stories-progress__fill {
    animation: progress-fill 4s linear forwards;
}

@keyframes progress-fill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Track */
.stories-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slide */
.stories-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 24px 16px;
}

.stories-slide__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stories-slide__caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 27, 58, 0.85);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

/* Navigation Arrows */
.stories-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s, transform 0.2s;
    z-index: 10;
}

.stories-carousel:hover .stories-nav {
    opacity: 1;
}

.stories-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

/* .stories-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
} */

.stories-nav--prev {
    left: 10px;
}

.stories-nav--next {
    right: 10px;
}

/* Touch Areas (Mobile) */
.stories-touch {
    position: absolute;
    top: 50px;
    bottom: 60px;
    width: 30%;
    z-index: 5;
    cursor: pointer;
}

.stories-touch--left {
    left: 0;
}

.stories-touch--right {
    right: 0;
}

/* Pause indicator */
.stories-carousel.is-paused .stories-progress__bar.is-active .stories-progress__fill {
    animation-play-state: paused;
}

/* Hide arrows on mobile */
/* @media (max-width: 768px) {
    .stories-nav {
        display: none;
    }
} */

/* Larger carousel on bigger screens */
@media (min-width: 768px) {
    .stories-carousel {
        max-width: 380px;
    }
}

/* Dots indicator (alternative/additional) */
.stories-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.stories-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.3s, transform 0.3s;
}

.stories-dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

/* ============================================
   MVP Modal Overlay (umbenannt von .modal-overlay)
   ============================================ */
.mvp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 27, 58, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mvp-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   MVP Modal Box (umbenannt von .modal)
   ============================================ */
.mvp-modal {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(11, 27, 58, 0.25);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.mvp-overlay.is-open .mvp-modal {
    transform: translateY(0) scale(1);
}

/* Close Button */
.mvp-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(16, 42, 92, 0.08);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}

.mvp-modal__close:hover {
    background: rgba(16, 42, 92, 0.15);
    transform: scale(1.05);
}

/* Modal Header */
.mvp-modal__header {
    padding: 32px 32px 0 32px;
    text-align: center;
}

.mvp-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.mvp-modal__badge .status-dot {
    width: 6px;
    height: 6px;
}

.mvp-modal__badge .status-dot::before {
    display: none;
}

.mvp-modal__title {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin: 0 0 8px 0;
}

.mvp-modal__subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Modal Body */
.mvp-modal__body {
    padding: 24px 32px;
}

.mvp-modal__section {
    margin-bottom: 24px;
}

.mvp-modal__section:last-child {
    margin-bottom: 0;
}

.mvp-modal__section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mvp-modal__section-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.mvp-modal__section-icon--done {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.mvp-modal__section-icon--progress {
    background: rgba(251, 191, 36, 0.15);
    color: #d97706;
}

.mvp-modal__section-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: var(--navy);
}

/* Spinner für "In Arbeit" */
.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(217, 119, 6, 0.3);
    border-top-color: #d97706;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Listen */
.mvp-modal__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.mvp-modal__list li {
    padding: 14px 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mvp-modal__list li strong {
    font-weight: 750;
    color: var(--navy);
    font-size: 0.95rem;
}

.mvp-modal__list li span {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.4;
}

.mvp-modal__list--done li {
    background: rgba(34, 197, 94, 0.08);
    border-left: 3px solid #22c55e;
}

.mvp-modal__list--progress li {
    background: rgba(251, 191, 36, 0.08);
    border-left: 3px solid #fbbf24;
}

/* Modal Footer */
.mvp-modal__footer {
    padding: 20px 32px 28px 32px;
    background: rgba(16, 42, 92, 0.04);
    border-top: 1px solid rgba(16, 42, 92, 0.08);
    text-align: center;
    border-radius: 0 0 24px 24px;
}

.mvp-modal__footer-text {
    margin: 0 0 12px 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 600px) {
    .mvp-modal {
        border-radius: 20px;
    }
    
    .mvp-modal__header {
        padding: 24px 20px 0 20px;
    }
    
    .mvp-modal__body {
        padding: 20px;
    }
    
    .mvp-modal__footer {
        padding: 16px 20px 24px 20px;
    }
    
    .mvp-modal__title {
        font-size: 1.4rem;
    }
    
    .mvp-modal__list li {
        padding: 12px 14px;
    }
}