/* Match home FAQ exactly — eyebrow + accordion + sticky CTA card */
#service-faq-section .faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(232, 52, 122, 0.08);
    border: 1px solid rgba(232, 52, 122, 0.22);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b91c5c;
}
#service-faq-section .faq-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #e8347a;
    box-shadow: 0 0 0 0 rgba(232, 52, 122, 0.7);
    animation: serviceFaqPing 1.8s ease-out infinite;
}
@keyframes serviceFaqPing {
    0%   { box-shadow: 0 0 0 0 rgba(232, 52, 122, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(232, 52, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 52, 122, 0); }
}

/* Sticky CTA card */
#service-faq-section .faq-cta {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    border-radius: 24px;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(232, 52, 122, 0.10), transparent 60%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(205, 160, 127, 0.14), transparent 65%),
        linear-gradient(160deg, #ffffff 0%, #faf6f1 60%, #fdf2f8 100%);
    border: 1px solid rgba(205, 160, 127, 0.3);
    box-shadow:
        0 30px 70px -28px rgba(42, 42, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
@media (min-width: 1024px) {
    #service-faq-section .faq-cta { position: sticky; top: 100px; padding: 40px 36px; }
}

#service-faq-section .faq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.5;
}
#service-faq-section .faq-blob-1 {
    width: 220px; height: 220px;
    top: -80px; right: -60px;
    background: radial-gradient(circle, #fdc8e0 0%, transparent 70%);
}
#service-faq-section .faq-blob-2 {
    width: 180px; height: 180px;
    bottom: -60px; left: -40px;
    background: radial-gradient(circle, #ffd9b8 0%, transparent 70%);
}

#service-faq-section .faq-spark {
    position: absolute;
    background: linear-gradient(135deg, #e8347a, #f472b6);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}
#service-faq-section .faq-spark-1 { width: 28px; height: 28px; top: 20px; right: 28px; animation: serviceFaqTwinkle 3.5s ease-in-out infinite; }
#service-faq-section .faq-spark-2 { width: 18px; height: 18px; top: 70px; right: 70px; background: linear-gradient(135deg, #cda07f, #f4c4d0); animation: serviceFaqTwinkle 4.2s ease-in-out 0.6s infinite; }
#service-faq-section .faq-spark-3 { width: 14px; height: 14px; top: 50px; right: 110px; animation: serviceFaqTwinkle 3s ease-in-out 1.2s infinite; }
#service-faq-section .faq-spark-4 { width: 22px; height: 22px; bottom: 90px; left: 30px; background: linear-gradient(135deg, #f4c4d0, #cda07f); animation: serviceFaqTwinkle 5s ease-in-out 1.8s infinite; }
@keyframes serviceFaqTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50%      { opacity: 0.85; transform: scale(1) rotate(180deg); }
}

#service-faq-section .faq-cta > *:not(.faq-blob):not(.faq-spark) { position: relative; z-index: 2; }

#service-faq-section .faq-cta-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #15803d;
    margin-bottom: 22px;
}
#service-faq-section .faq-cta-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: serviceFaqPingGreen 1.8s ease-out infinite;
}
@keyframes serviceFaqPingGreen {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

#service-faq-section .faq-cta-h {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin: 0 0 14px;
}
#service-faq-section .faq-cta-h em {
    font-style: italic;
    font-weight: 400;
    font-family: "PlayfairDisplay", "Times New Roman", serif;
    background: linear-gradient(135deg, #e8347a 0%, #cda07f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
#service-faq-section .faq-cta-sub {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(42, 42, 42, 0.72);
    margin: 0 0 22px;
    font-weight: 300;
}

#service-faq-section .faq-cta-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
#service-faq-section .faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(.2,.7,.2,1);
}
#service-faq-section .faq-cta-btn svg { width: 16px; height: 16px; transition: transform 0.22s; }
#service-faq-section .faq-cta-btn-primary {
    background: linear-gradient(135deg, #e8347a 0%, #d0266e 100%);
    color: #fff !important;
    border: 1px solid transparent;
    box-shadow: 0 14px 30px -12px rgba(232, 52, 122, 0.5);
}
#service-faq-section .faq-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -14px rgba(232, 52, 122, 0.65);
}
#service-faq-section .faq-cta-btn-primary:hover svg { transform: translateX(3px); }
#service-faq-section .faq-cta-btn-ghost {
    background: transparent;
    color: rgba(42, 42, 42, 0.78);
    border: 1px solid rgba(205, 160, 127, 0.4);
    font-size: 13.5px;
}
#service-faq-section .faq-cta-btn-ghost:hover {
    background: #fff;
    color: #e8347a;
    border-color: rgba(232, 52, 122, 0.4);
}

#service-faq-section .faq-cta-trust {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(205, 160, 127, 0.3);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
}
#service-faq-section .faq-cta-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(42, 42, 42, 0.72);
    line-height: 1.2;
    white-space: nowrap;
}
#service-faq-section .faq-cta-tick {
    width: 14px; height: 14px;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.14);
    color: #16a34a;
    font-size: 9px;
    font-weight: 700;
}

@media (max-width: 540px) {
    #service-faq-section .faq-cta { padding: 28px 22px; border-radius: 20px; }
    #service-faq-section .faq-cta-h { font-size: 26px; }
    #service-faq-section .faq-spark-3 { display: none; }
}
