/* ════════════════════════════════════════════════════════════
   FAQ section — top header + accordion left + sticky CTA card right
   ════════════════════════════════════════════════════════════ */
.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;
}
.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: faqPing 1.8s ease-out infinite;
}
@keyframes faqPing {
    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 ─── */
.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) {
    .faq-cta { position: sticky; top: 100px; padding: 40px 36px; }
}

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

/* Animated sparkles — pure CSS, twinkle + drift */
.faq-spark {
    position: absolute;
    background: linear-gradient(135deg, #e8347a, #f472b6);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}
.faq-spark::before,
.faq-spark::after {
    content: '';
    position: absolute;
    background: inherit;
    inset: 0;
}
.faq-spark::before { transform: rotate(45deg); }
.faq-spark { clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%); }

.faq-spark-1 {
    width: 28px; height: 28px;
    top: 20px; right: 28px;
    animation: faqTwinkle 3.5s ease-in-out infinite;
}
.faq-spark-2 {
    width: 18px; height: 18px;
    top: 70px; right: 70px;
    background: linear-gradient(135deg, #cda07f, #f4c4d0);
    animation: faqTwinkle 4.2s ease-in-out 0.6s infinite;
}
.faq-spark-3 {
    width: 14px; height: 14px;
    top: 50px; right: 110px;
    animation: faqTwinkle 3s ease-in-out 1.2s infinite;
}
.faq-spark-4 {
    width: 22px; height: 22px;
    bottom: 90px; left: 30px;
    background: linear-gradient(135deg, #f4c4d0, #cda07f);
    animation: faqTwinkle 5s ease-in-out 1.8s infinite;
}
@keyframes faqTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50%      { opacity: 0.85; transform: scale(1) rotate(180deg); }
}

/* Card content sits above blobs/sparkles */
.faq-cta > *:not(.faq-blob):not(.faq-spark) {
    position: relative;
    z-index: 2;
}

.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;
}
.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: faqPingGreen 1.8s ease-out infinite;
}
@keyframes faqPingGreen {
    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); }
}

.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;
}
.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;
}
.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;
}

.faq-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}
.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);
}
.faq-cta-btn svg { width: 16px; height: 16px; transition: transform 0.22s; }

.faq-cta-btn-primary {
    background: linear-gradient(135deg, #e8347a 0%, #d0266e 100%);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 14px 30px -12px rgba(232, 52, 122, 0.5);
}
.faq-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -14px rgba(232, 52, 122, 0.65);
}
.faq-cta-btn-primary:hover svg { transform: translateX(3px); }

.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;
}
.faq-cta-btn-ghost:hover {
    background: #fff;
    color: #e8347a;
    border-color: rgba(232, 52, 122, 0.4);
}

/* Trust list — single horizontal row */
.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;
}
.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;
}
.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) {
    .faq-cta { padding: 28px 22px; border-radius: 20px; }
    .faq-cta-h { font-size: 26px; }
    .faq-spark-3 { display: none; }
}
