/* Marketing — cookie banner + exit-intent popup */

/* Ensure [hidden] attribute wins over display:flex */
.cookie-banner[hidden],
.exit-popup[hidden],
.cookie-banner.is-hidden,
.exit-popup.is-hidden {
    display: none !important;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 80;
    background: #111;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    padding: 14px 16px;
    animation: cookieIn .3s ease;
}
@keyframes cookieIn { from { transform: translateY(100%); opacity: 0; } }
.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.cookie-banner__text {
    flex: 1 1 280px;
    font-size: .88rem;
    line-height: 1.5;
}
.cookie-banner__text a { color: #FDC800; text-decoration: underline; }
.cookie-banner__btn {
    padding: 10px 22px;
    background: #FDC800;
    color: #111;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s;
}
.cookie-banner__btn:hover { background: #FFD83B; }

/* Exit-intent popup */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: popIn .25s ease;
}
@keyframes popIn { from { opacity: 0; } to { opacity: 1; } }
.exit-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.exit-popup__box {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 44px 34px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
    animation: popBoxIn .4s cubic-bezier(.2,.8,.2,1);
}
@keyframes popBoxIn { from { transform: scale(.9) translateY(20px); opacity: 0; } }
.exit-popup__close {
    position: absolute;
    top: 10px; right: 14px;
    background: transparent;
    border: 0;
    font-size: 2rem;
    color: #6a7280;
    cursor: pointer;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 50%;
    transition: background .15s;
}
.exit-popup__close:hover { background: #f5f6f9; }
.exit-popup__badge {
    display: inline-block;
    background: #FDC800;
    color: #111;
    font-weight: 800;
    font-size: .75rem;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.exit-popup__box h3 {
    margin: 0 0 12px;
    font-size: 1.4rem;
    color: #111;
}
.exit-popup__box p {
    color: #5a616b;
    margin: 0 0 22px;
    font-size: .98rem;
    line-height: 1.55;
}
.exit-popup__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #FDC800;
    color: #111;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(253,200,0,.45);
    transition: background .15s, transform .15s;
}
.exit-popup__btn:hover {
    background: #FFD83B;
    transform: translateY(-2px);
}
.exit-popup__note {
    margin-top: 14px;
    font-size: .8rem;
    color: #6a7280;
}

@media (max-width: 560px) {
    .cookie-banner__inner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-banner__btn { width: 100%; padding: 12px; }
    .exit-popup__box { padding: 36px 20px 24px; }
}

/* ============================================================
   Services Overview block (home page SEO intro)
   ============================================================ */
.services-overview {
    padding: clamp(40px, 5vw, 70px) 0;
    position: relative;
}
.services-overview__title {
    font-size: clamp(1.5rem, 2vw + .6rem, 2.25rem);
    line-height: 1.25;
    font-weight: 800;
    text-align: center;
    margin: 0 0 18px;
    letter-spacing: -.015em;
}
.services-overview__lead {
    color: var(--c-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}
.services-overview__lead a {
    color: var(--c-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(253,200,0,.55);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color var(--t);
}
.services-overview__lead a:hover { color: var(--c-yellow-600, #f7b500); }

.services-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
}
.services-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid var(--c-line);
    border-radius: 999px;
    color: var(--c-dark);
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: all var(--t);
}
.services-chip__ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: var(--c-yellow);
    border-radius: 8px;
    font-size: .95rem;
}
.services-chip:hover {
    border-color: var(--c-yellow);
    background: #fffdf2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253,200,0,.18);
}
.services-chip--primary {
    background: var(--c-dark);
    color: #fff;
    border-color: var(--c-dark);
}
.services-chip--primary:hover { background: #000; color: var(--c-yellow); }

/* ============================================================
   Band (phone CTA) — trust badges
   ============================================================ */
.band__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
}
.band__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.band__badge b { color: var(--c-yellow); font-weight: 800; }

.band__subtitle {
    color: #c0c3ca;
    font-size: 1.05rem;
    margin: 4px 0 8px;
    max-width: 560px;
}

/* Animated pulse ring */
@keyframes ctaPulse {
    0%   { transform: scale(1);   opacity: .6; }
    70%  { transform: scale(1.25); opacity: 0;  }
    100% { transform: scale(1.25); opacity: 0;  }
}
.phone-cta::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid var(--c-yellow);
    animation: ctaPulse 2s ease-out infinite;
}
