/* This file contains styles specific to the features report page, particularly for the payment section. */
/*==================
    Payment Section Styles
/*==================*/
/* Horizontal, modern footer layout for .main-footer */
:root {
    --footer-bg: #0f1720;
    --footer-contrast: #0b1220;
    --text: #e6eef8;
    --muted: #95a3b5;
    --accent: #1fb6ff;
    --max-width: 1200px;
    --gap: 28px;
}

.main-footer {
    background: linear-gradient(180deg, var(--footer-bg), var(--footer-contrast));
    color: var(--text);
    padding: 40px 20px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    box-shadow: 0 -2px 10px rgba(2,6,23,0.35);
}

/* Container that holds all columns */
.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: var(--gap);
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Each column */
.footer-column {
    flex: 1 1 160px;
    min-width: 160px;
}


.footer-column .footer-brand img {
    display: block;
    max-width: 100%;
    height: auto;
    padding: 100px;
}

.footer-logo {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
    margin: 0 0 0.1rem 0;
    padding: 0;
    filter: brightness(1.05);
}

/* Brand column: larger and visually distinct */
.footer-brand {
    flex: 2 1 320px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 1px 1px 0 0;
/* Logo removed — consolidated into the single .footer-logo rule above */
    display: block;
    filter: brightness(1.05);
}

/* Description text */
.footer-brand p {
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
    font-size: 14px;
    max-width: 42ch;
}

/* App links area */
.footer-app-links {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.footer-app-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    transition: transform .16s ease, background .16s ease;
    box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset;
}
.footer-app-links a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.footer-app-links a:hover {
    transform: translateY(-3px);
    background: rgba(31,182,255,0.08);
    color: var(--accent);
}

/* Column headings */
.footer-column h4 {
    font-size: 15px;
    margin: 0 0 10px;
    color: #fff;
    letter-spacing: 0.2px;
}

/* Link lists */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column li {
    margin: 6px 0;
}
.footer-column a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color .14s ease, text-decoration .14s ease;
}
.footer-column a:hover {
    color: var(--text);
    text-decoration: underline;
}

/* Legal / copyright column styles */
.footer-column ul li:first-child {
    color: var(--muted);
    font-size: 13px;
}

/* Fine print / bottom row */
.main-footer .footer-bottom {
    max-width: var(--max-width);
    margin: 18px auto 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: var(--muted);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive: stack columns on small screens */
@media (max-width: 880px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 8px;
    }
    .footer-brand {
        order: -1;
        flex-basis: 100%;
    }
    .footer-column {
        flex: 1 1 45%;
        min-width: 140px;
    }
    .footer-logo {
        max-width: 54%;
    }
}

/* Mobile: vertical layout */
@media (max-width: 520px) {
    .footer-container {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .footer-brand {
        align-items: flex-start;
    }
    .footer-column {
        flex: 1 1 100%;
    }
    .footer-logo {
        max-width: 160px;
    }
    .footer-app-links a {
        font-size: 13px;
        padding: 8px 10px;
    }
    .main-footer {
        padding: 22px 12px;
    }
}