:root {
    --primary: #010321;
    --secondary: #0b3b66;
    --accent: #ff6b35;
    --text-light: #E5E7EB;
    --light: #f5f5f5;
    --white: #fff;
    --gray: #0f172a;
    --dark: #111111;
    --text-dark: #1f1f1f;
    --menu-light: #E7E2FF;
}

a {
    text-decoration:none;
}

body {
    font-family: 'Segoe UI', sans-serif;
}
html, body {
    margin: 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
    color: var(--dark);
}


/* === HEADER ===*/
.navbar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5px;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.navbar-brand {
    padding:8px 0; 
    margin-right: 20px;
    font-size: 18px;
}
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 20%, var(--accent), var(--secondary));
    position: relative;
    box-shadow: 0 10px 30px var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
    .brand-mark::before {
        content: "";
        position: absolute;
        inset: 16%;
        border-radius: 14px;
        border: 2px solid var(--white);
        box-shadow: inset 0 0 0 1px var(--gray);
    }
    .brand-mark::after {
        content: "";
        position: absolute;
        width: 140%;
        height: 140%;
        background: conic-gradient(from 140deg, var(--white), transparent 35%, transparent 65%, var(--gray));
        transform: translate3d(-12%, -18%, 0) rotate(8deg);
        mix-blend-mode: screen;
        opacity: 0.75;
    }
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-text-main {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1;
}
.brand-text-sub {
    font-size: 0.7rem;
    color: var( --accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding-top: 3px;
}
.brand-mark-inner {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--gray);
}
    .brand-mark-inner span {
        width: 8px;
        height: 8px;
        border-radius: 3px;
        background: var(--gray);
        box-shadow: 0 0 0 2px var(--white);
    }
.nav-item {
    margin: 10px auto;
}

.nav-item a {
    color: var(--menu-light) !important;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    transition: color .5s ease;
    transition: background .5s ease;
}

.nav-item a:hover {
    background-color: var(--white);
    color:var(--secondary) !important;
}

.navbar-toggler i {
    font-size: 30px;
    color: var(--white);
}

.navbar-toggler {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    transition: none;
}

.navbar-toggler:hover,
.navbar-toggler:active,
navbar-toggler:focus {
    border: none;
    box-shadow: none;
}
@media (max-width:991.2px){
    .navbar-collapse {
        border-top: 2px solid #fff;
    }
}

/* === BODY === */
.hero {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 30px;
}
.hero-orbit-visual {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 200px;
    margin-left: auto;
}
.hero-orbit-core {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 36px;
    background: radial-gradient(circle at 30% 0, #ffffff, #60A5FA);
    box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.8), 0 18px 45px rgba(37, 99, 235, 0.95), 0 0 80px rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-orbit-core-inner {
    width: 70%;
    height: 68%;
    border-radius: 26px;
    border: 2px solid rgba(15, 23, 42, 0.25);
    background: radial-gradient(circle at 20% 0, #DBEAFE, #1D4ED8);
    display: grid;
    place-items: center;
    color: var(--dark);
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
@media (max-width: 991.98px) {
    .hero-orbit-visual {
        margin-top: 1.5rem;
        margin-right: auto;
    }
}
@media (max-width: 575.98px) {
    .hero-orbit-visual {
        height: 220px;
    }
    .hero-orbit-core {
        width: 120px;
        height: 120px;
    }
}
.hero-orbit-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.45);
    inset: 25px 0;
    transform-origin: center;
    animation: orbit-spin 22s linear infinite;
}
    .hero-orbit-ring:nth-child(2) {
        inset: 8px 30px;
        animation-duration: 32s;
        border-style: solid;
        border-color: rgba(129, 140, 248, 0.55);
    }
.hero-inner-text {
    padding:20px 40px;
}
.hero-inner-text div {
    font-weight: 700;
    font-size: 20px;
}
    @keyframes orbit-spin {
        100% {
            transform: rotate(360deg);
        }
    }

.main-section-wrap {
    padding: 22px;
    border-radius: 14px;
    margin-top: -50px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.main-section {
    position:relative;
    background: var(--white);
    border: 1px solid rgba(15, 33, 48, 0.06);
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    box-shadow: 0 6px 30px rgba(15, 33, 48, 0.04);
    position: relative;
    padding: 20px;
    max-width: 980px;
    margin: auto;
}
.custom-textarea {
    width: 100%;
    min-height: 88px;
    max-height: 88px;
     resize: none; 
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 33, 48, 0.08);
    background: var(--light);
    color: var(--text);
    box-shadow: inset 0 2px 8px rgba(11, 20, 40, 0.03);
    transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
    font-size: 14px;
    outline: none;
}
.custom-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(11, 115, 255, 0.08), inset 0 2px 10px rgba(11, 20, 40, 0.02);
    transform: translateY(-1px);
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 6px;
}
@media (max-width: 930px) {
    .mini-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mini-cards {
        grid-template-columns: 1fr;
    }
}
.card-stagger.show {
    opacity: 1;
    transform: translateY(0);
}
.mini-card.active {
    background: var(--accent);
    color: white;
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.14);
}
.mini-card {
    height: 100px;
    border-radius: 12px;
    background: var(--light);
    border: 1px solid rgba(15, 33, 48, 0.06);
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: transform 220ms cubic-bezier(.2, .9, .3, 1), box-shadow 220ms, background-color 220ms, border-color 220ms, color 220ms;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(11, 20, 40, 0.03);
    position: relative;
}
    .mini-card .icon {
        width: 56px;
        height: 56px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, rgba(11, 20, 40, 0.03), rgba(11, 20, 40, 0.01));
        color: var(--primary);
        font-size: 18px;
        border: 1px solid rgba(11, 20, 40, 0.03);
    }
    .mini-card .meta {
        flex: 1;
        min-width: 0;
    }
        .mini-card .meta .label {
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 2px;
        }
        .mini-card .meta .desc {
            font-size: 12px;
        }
    .mini-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
        box-shadow: 0 18px 40px rgba(11, 20, 40, 0.06);
    }
    .mini-card .icon {
        width: 56px;
        height: 56px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, rgba(11, 20, 40, 0.03), rgba(11, 20, 40, 0.01));
        color: var(--secondary);
        font-size: 18px;
        border: 1px solid rgba(11, 20, 40, 0.03);
    }
    .mini-card .icon i {
        font-size: 18px;
    }
    .mini-card.active .icon {
        background: rgba(255, 255, 255, 0.12);
        color: white;
        border-color: transparent;
    }
.badge-protected {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 7px;
    border-radius: 6px;
    white-space: nowrap;
    margin-top: 5px;
    display: inline-block;
}

.mini-card.active .badge-protected {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 930px) {
    .mini-cards {
        flex-direction: column;
    }
}
.generate-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.generate-success {
    width: 100%;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    border: 1px solid var(--secondary);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    backdrop-filter: blur(6px);
    text-align: center;
    background: var(--secondary);
}
.generated-actions {
    display: flex;
    gap: 10px;
}


.loader-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(2, 6, 23, 0.46);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
    z-index: 30;
    padding: 28px;
}
.loader-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}
.loader-rings {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 6px solid transparent;
    animation: spin 1.6s linear infinite;
    box-sizing: border-box;
}
    .ring.r1 {
        width: 88px;
        height: 88px;
        border-top-color: var(--accent);
        border-right-color: rgba(255, 255, 255, 0.04);
        border-bottom-color: rgba(255, 255, 255, 0.02);
        animation-direction: normal;
    }
    .ring.r2 {
        width: 62px;
        height: 62px;
        border-top-color: var(--secondary);
        border-left-color: rgba(255, 255, 255, 0.04);
        border-bottom-color: rgba(255, 255, 255, 0.02);
        animation-duration: 1s;
        animation-direction: reverse;
    }
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

    .loader-info {
        color: var(--white);
        font-size: 18px;
        font-weight: 600;
    }

    

    /* === BUTTONS === */
    .btn-accent {
        background: linear-gradient(90deg, var(--accent), #ff8a60);
        border: none;
        color: white;
        padding: 12px 18px;
        border-radius: 12px;
        font-weight: 700;
        display: inline-flex;
        gap: 10px;
        align-items: center;
        box-shadow: 0 8px 26px rgba(255, 107, 53, 0.12);
        transform: translateZ(0);
        animation: btnPulse 2.6s infinite;
        transition: transform 180ms ease, box-shadow 180ms ease, filter 160ms ease;
        font-size: 15px;
    }

    .btn-accent:hover {
        filter: brightness(1.06);
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(255, 107, 53, 0.16);
    }

    .btn-outline {
        border-radius: 10px;
        padding: 12px 18px;
        border: 1px solid var(--secondary);
        background: white;
        color: var(--secondary);
        font-weight: 600;
        transition: all 180ms ease;
        text-decoration:none;
        display: inline-flex;
    }

    .btn-outline:hover {
        background: var(--secondary);
        color: white;
        border-color: white;
        box-shadow: 0 10px 30px rgba(11, 115, 255, 0.08);
        transform: translateY(-4px);
    }
    .btn-tool {
        color:var(--secondary);
        background:var(--white);
        padding:5px;
        border-radius:6px;
        transition:all .3s ease;
        border:1px solid var(--secondary)
    }
    .btn-tool:hover {
        background:var(--secondary);
        color:var(--white)
    }


    @keyframes btnPulse {
        0% {
            box-shadow: 0 6px 18px rgba(255, 107, 53, 0.10);
        }

        50% {
            box-shadow: 0 12px 28px rgba(255, 107, 53, 0.14);
        }

        100% {
            box-shadow: 0 6px 18px rgba(255, 107, 53, 0.10);
        }
    }
/* === SIDEBAR MENU === */
.sidebar {
    max-width: 480px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 40px;
    border-radius: 18px;
    color: var(--text-light);
    font-size: 20px;
    font-weight: bold;
}

    .sidebar p {
        padding-bottom: 20px;
        border-bottom: 2px solid var(--text-light);
    }

    .sidebar ul {
        padding: 0 0 20px 0;
        border-bottom: 2px solid var(--text-light);
        list-style: none;
    }

        .sidebar ul li a {
            padding: 8px 10px;
            text-decoration: none;
            color: var(--text-light);
            border-radius: 12px;
            display: block;
            width: 100%;
            transition: all 0.3s ease;
        }

            .sidebar ul li a:hover {
                color: var(--secondary);
                background: var(--white);
            }


/* === TABLES === */
.wgTable {
    width: 100%;
    border-collapse: collapse;
}

    .wgTable thead {
        background: linear-gradient(135deg, var(--secondary), var(--primary));
        color: var(--white);
    }
        .wgTable thead tr.trRow th {
            color: var(--white);
        }
    .wgTable tbody tr.trRow {
        border-bottom: 1px solid var(--secondary);
        
    }

.trRow th, .trRow td {
    padding: 20px 0;
    vertical-align: middle;
    color: var(--text-dark);
}
@media (max-width: 768px) {
    .wgTable .hide-mobile {
        display: none;
    }
}

/* === FORMS === */
.wg-form .form-control {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 33, 48, 0.08);
    background: var(--light);
    color: var(--text);
    box-shadow: inset 0 2px 8px rgba(11, 20, 40, 0.03);
    transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
    font-size: 18px;
    outline: none;
}
.wg-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(11, 115, 255, 0.08), inset 0 2px 10px rgba(11, 20, 40, 0.02);
    transform: translateY(-1px);
}
.form-wrapper {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    margin: 20px auto;
}
.register-link {
    font-weight:600;
}
.register-link a{
    color:var(--accent);
}
.register-link a:hover {
    border-bottom: 1px solid var(--accent);
}

.form-wrapper input[type="checkbox"] {
    float:none;
}
/* === PREVIEW === */
#previewPage {
    transition: all 0.5s ease;
    border: none;
    overflow: hidden;
    height: calc(100% - 50px);
}

.preview-page {
    text-align: center;
    height: 100vh;
}

.preview-desktop {
    width: 100%;
    height:100vh;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.preview-tablet {
    width: 780px;
    height: 400px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}


.preview-mobile {
    width: 375px;
    height: 700px;
    margin: 0 auto;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

/* === DEVICES === */
.preview-controls {
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap:20px;
    padding: 5px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px;
    margin: 0 20px;
    color:var(--white);
}

    .icon-btn:hover {
        color: #4facfe;
    }

    .icon-btn.active {
        color: #4facfe;
    }
.btn-preview-save {
    background: none;
    border: 1px solid var(--white);
    cursor: pointer;
    padding: 6px 14px;
    margin: 0 10px;
    color: var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 200ms ease, color 200ms ease;
}

    .btn-preview-save:hover {
        background: var(--white);
        color: var(--primary);
    }
/* === VALIDATION === */
.validation-summary-errors ul {
    list-style:none;
    padding:0;
}
.error {
    display: block;
    margin: 15px auto;
    color: red;
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    display: none;
}

    .modal-overlay.active {
        display: flex;
    }

.modal-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px 32px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
}

.modal-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-box p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    border-radius: 6px;
    transition: color 180ms ease, background 180ms ease;
}

    .modal-close:hover {
        color: var(--text-dark);
        background: var(--light);
    }

/* === WHY REGISTER === */
.wr-section-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 16px;
    text-align: center;
}

.wr-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.wr-card {
    background: var(--light);
    border: 1px solid rgba(15, 33, 48, 0.06);
    border-radius: 14px;
    padding: 24px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

    .wr-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(11, 59, 102, 0.08);
    }

.wr-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 16px;
}

.wr-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.wr-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.wr-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 600px) {
    .wr-compare {
        grid-template-columns: 1fr;
    }
}

.wr-compare-col {
    border-radius: 14px;
    padding: 24px;
}

.wr-compare-bad {
    background: #fff5f5;
    border: 1px solid #fecaca;
}

.wr-compare-good {
    background: #f0faf5;
    border: 1px solid #86efac;
}

.wr-compare-col-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
}

.wr-compare-bad .wr-compare-col-title {
    color: #a32d2d;
}

.wr-compare-good .wr-compare-col-title {
    color: #0f6e56;
}

.wr-compare-item {
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.5;
}

    .wr-compare-item:last-child {
        border-bottom: none;
    }

.wr-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.wr-step {
    background: var(--light);
    border: 1px solid rgba(15, 33, 48, 0.06);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
}

.wr-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.wr-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.wr-step p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.wr-cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.wr-cta h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
}

.wr-cta p {
    font-size: 15px;
    color: #b5d4f4;
    margin: 0 0 24px;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding-top: 50px;
    margin-top: 40px;
}

.footer p {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.7;
}

.footer .contact a {
    color: #9ca3af;
}

.footer .contact a:hover {
    color: var(--accent);
}

.footer .rounded-icon {
    background: var(--secondary);
    color: var(--white);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer p.contact {
    line-height: 44px;
}

.footer .headline {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 10px;
}

.funnel-footer-menu {
    margin-top: 24px;
    padding-top: 20px;
    padding-bottom:20px;
    text-align: center;
}

    .funnel-footer-menu a {
        color: var(--white) !important;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 8px 12px;
        text-decoration: underline;
        transition: color 200ms ease;
    }

.funnel-footer-menu a:hover {
    color: var(--accent);
    text-decoration:underline;
}
.footer-cardpay {
    text-align: center;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-cardpay img {
    max-width: 100%;
    margin: auto;
    padding: 0 5px;
}