/* FOOTER MODULE - V90 (EDITORIAL DARK SIGNATURE) */
.site-footer {
    padding: 0 var(--inner-px) 40px;
    background: #fff;
}

.footer-master-card {
    background: #000;
    border-radius: clamp(30px, 4vw, 45px);
    padding: clamp(60px, 8vw, 120px);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Technical Overlay */
.footer-master-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.footer-col-head {
    font-size: 9px;
    font-weight: 950;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.footer-link-list { list-style: none; padding: 0; margin: 0; }
.footer-link-list li { margin-bottom: 20px; }
.footer-link-list a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}
.footer-link-list a:hover { opacity: 1; color: var(--accent); padding-left: 10px; }

.f-contact-item { margin-bottom: 35px; }
.f-contact-item span { font-size: 8px; color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.f-contact-item p { font-size: 15px; font-weight: 800; color: #fff; }

.footer-big-brand {
    padding: 100px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.big-brand-text {
    font-family: 'Oswald', sans-serif;
    font-size: 15vw;
    line-height: 0.8;
    color: rgba(255,255,255,0.03);
    text-transform: uppercase;
    letter-spacing: -5px;
    user-select: none;
    margin-bottom: -0.2em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.f-copyright { font-size: 9px; color: rgba(255,255,255,0.6); letter-spacing: 2px; }
.f-socials { display: flex; gap: 40px; }
.f-socials a { color: #fff; opacity: 0.7; font-size: 9px; letter-spacing: 3px; font-weight: 900; text-decoration: none; transition: 0.3s; }
.f-socials a:hover { opacity: 1; color: var(--accent); }

/* MOBILE FIX */
@media (max-width: 1024px) {
    .site-footer { padding: 0 15px 30px; }
    .footer-master-card { padding: 60px 30px; }
    .footer-main-grid { grid-template-columns: 1fr; gap: 60px; }
    .big-brand-text { font-size: 14vw; letter-spacing: -2px; }
}

/* GLOBAL CTA CALL SECTION - V1 (POWER LIME SIGNATURE) */
.global-cta-call {
    padding: 0 var(--inner-px) 40px;
    background: #fff;
}

.cta-call-card {
    background: var(--accent);
    border-radius: clamp(30px, 4vw, 45px);
    padding: clamp(40px, 6vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(195, 229, 111, 0.15);
}

/* Background Decoration */
.cta-call-card::after {
    content: 'CONTACT';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--op-font-accent);
    font-size: 15vw;
    font-weight: 950;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -5px;
}

.cta-call-tag {
    font-size: 10px;
    font-weight: 950;
    color: #000;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.cta-call-title {
    font-family: var(--op-font-accent);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-call-title span { opacity: 0.5; }

.cta-call-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,0.6);
    max-width: 500px;
}

.cta-phone-btn {
    background: #000;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 12px 45px 12px 12px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 2;
}

.phone-btn-icon {
    width: 65px;
    height: 65px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: 0.4s;
}

.phone-btn-icon i { width: 28px; height: 28px; }

.phone-btn-label {
    display: block;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-bottom: 2px;
}

.phone-btn-val {
    display: block;
    font-size: 24px;
    font-weight: 900;
    font-family: var(--op-font-accent);
}

.cta-phone-btn:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.cta-phone-btn:hover .phone-btn-icon {
    transform: rotate(15deg);
}

/* MOBILE FIX */
@media (max-width: 1024px) {
    .cta-call-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
        gap: 50px;
    }
    
    .cta-call-card::after {
        font-size: 30vw;
        top: 80%;
    }
    
    .cta-call-desc {
        margin: 0 auto;
    }
    
    .cta-phone-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    .phone-btn-val {
        font-size: 20px;
    }
}

