.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.65);
}

.footer-top {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Brand col */
.footer-brand .logo-text .g {
    color: var(--green-light);
}

.footer-brand .logo-text .b {
    color: var(--blue-light);
}

.footer-brand .logo-mark {
    flex-shrink: 0;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.75;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-row {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-row span {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact-row a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
    font-size: 0.83rem;
}

.footer-contact-row a:hover {
    color: var(--green-light);
}

/* Cols */
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--green-light);
    padding-left: 4px;
}

/* Newsletter */
.footer-newsletter p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    line-height: 1.65;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 0.85rem;
    font-family: var(--font);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: var(--green);
}

.newsletter-form button {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
}

.newsletter-form button:hover {
    opacity: 0.9;
}

/* Bottom bar */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-bottom p a:hover {
    color: var(--green-light);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--green-light);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

