.footer {
    color: #e0e0e0;
    padding: 40px 0 0 0;
    font-family: var(--inter-regular-font-family, 'Inter', Helvetica, Arial, sans-serif);
    border-top: 1px solid var(--border-color);
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 28%), #090c17;
}

.footer-upper-container{
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    margin-bottom: 24px;
}

.footer-brand {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-copy{
    max-width: 640px;
}

.footer-logo {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    font-family: "Poly", Helvetica, sans-serif;
    font-style: italic;
    font-weight: normal;
    color: #ffffff;
}

.footer-newsletter {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #c8c8c8;
    margin: 0;
}

.footer-actions{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-cta{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--scompersian-orange, #f59e0b);
    color: #0b0f1a;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-cta,
.footer-cta:visited{
    color: #0b0f1a;
}

.footer-cta:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.45);
}
.footer-cta:active,
.footer-cta:focus-visible{
    color: #0b0f1a;
    outline: 2px solid rgba(245, 158, 11, 0.5);
    outline-offset: 2px;
}

.footer-cta--ghost{
    background: transparent;
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}
.footer-cta--ghost,
.footer-cta--ghost:visited{
    color: #f5f5f5;
}

.footer-cta--ghost:hover{
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
}
.footer-cta--ghost:active,
.footer-cta--ghost:focus-visible{
    color: #f5f5f5;
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

.footer-links-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    margin-bottom: 16px;
    gap: 24px;
}

.footer-links-col {
    min-width: 180px;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: block;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 12px;
}

.footer-links-col li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--scompersian-orange, #f59e0b);
    border-radius: 50%;
    opacity: 0.7;
}

.footer-links-col a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links-col a:hover {
    color: var(--scompersian-orange, #f59e0b);
}

.footer-item img {
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.95rem;
    padding: 18px 0 8px 0;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 800px) {
    .footer-links-row {
        flex-direction: column;
        gap: 24px;
    }
    .footer-container {
        padding: 0 12px;
    }
    .footer-brand{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-actions{
        width: 100%;
    }
}
