/* ══════════════════════════════════════════════
   BOTS Pages — Shared Base Styles (bp- prefix)
   Loaded on all rebuilt pages.
   ══════════════════════════════════════════════ */

/* ── Override WP default body padding on rebuilt pages ── */
body { padding: 0 !important; }

/* ── Reset & Page Wrapper ── */
.bp-page {
    font-family: 'Roboto', sans-serif;
    color: #282828;
    overflow-x: hidden;
}
.bp-page *, .bp-page *::before, .bp-page *::after {
    box-sizing: border-box;
}
.bp-page > * { text-align: center; }


/* ── Trust badge override inside hero ── */
.bp-hero .bots-trust-badge-wrapper {
    margin: 0 0 24px;
    padding: 20px 20px 0;
    position: static;
}

/* ── Hero Base ── */
.bp-hero {
    background: linear-gradient(180deg, #EAF6FF 0%, #fff 100%);
    padding: 64px 24px 24px;
    text-align: center;
}
.bp-hero__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.bp-hero h1 {
    font-family: 'Work Sans', sans-serif; font-weight: 900;
    font-size: clamp(30px, 5.5vw, 48px);
    line-height: 1.1; margin-bottom: 16px; color: #282828;
}
.bp-hero h1 .hl { color: #12C0C5; }
.bp-hero h1 .gradient-text {
    background: linear-gradient(135deg, #48B0F7, #12C0C5);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
p.bp-hero__sub {
    font-family: 'Lora', serif !important;
    font-size: clamp(16px, 2.2vw, 18px) !important;
    color: #707070 !important; line-height: 1.65 !important;
    max-width: 580px; margin: 16px auto 0 !important;
    text-align: center !important;
}
.bp-hero__note {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #A0A0A0;
}

/* ── Primary CTA Button (flat coral, rounded) ── */
.bp-btn {
    display: inline-block; padding: 14px 40px;
    background: #FE8B7B;
    color: #fff;
    font-family: 'Work Sans', sans-serif; font-weight: 700;
    font-size: 16px; border-radius: 10px; text-decoration: none;
    border: none; cursor: pointer;
    box-shadow: 0 4px 16px rgba(254,139,123,0.3);
    transition: all 0.25s ease;
}
.bp-btn:hover {
    background: #e87060;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254,139,123,0.4);
    color: #fff;
}
.bp-btn--lg { padding: 18px 56px; font-weight: 800; font-size: 18px; border-radius: 12px; }
.bp-btn--block { width: 100%; text-align: center; }

/* ── Inline CTA ── */
.bp-inline-cta {
    text-align: center;
    padding: 16px 24px 40px;
}
.bp-inline-cta .bp-btn { font-size: 16px; padding: 16px 44px; }
.bp-inline-cta__note {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #A0A0A0;
}

/* ── FAQ ── */
.bp-faq { padding: 64px 24px; }
.bp-faq__inner { max-width: 720px; margin: 0 auto; text-align: left; }
.bp-faq__inner h2 {
    font-family: 'Work Sans', sans-serif; font-weight: 800;
    font-size: clamp(22px, 3vw, 28px); color: #282828;
    text-align: center; margin-bottom: 36px;
}
.bp-faq__item {
    border: 1px solid #E8E8E8;
    border-radius: 14px; margin-bottom: 12px; overflow: hidden;
    background: #fff; transition: all 0.2s;
}
.bp-faq__item[open] {
    border-color: #48B0F7;
    box-shadow: 0 4px 16px rgba(72,176,247,0.1);
}
.bp-faq__q {
    display: flex; align-items: center;
    padding: 20px 24px; cursor: pointer;
    font-family: 'Work Sans', sans-serif; font-weight: 600;
    font-size: 16px; color: #282828; list-style: none;
}
.bp-faq__q::-webkit-details-marker { display: none; }
.bp-faq__q::marker { content: ''; }
.bp-faq__q:hover { color: #48B0F7; }
.bp-faq__num {
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, #48B0F7, #3A8FC8);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; flex-shrink: 0; margin-right: 14px;
}
.bp-faq__q-text { flex: 1; }
.bp-faq__q svg {
    width: 20px; height: 20px; stroke: #B8B8B8;
    flex-shrink: 0; transition: transform 0.3s ease; margin-left: 12px;
}
.bp-faq__item[open] .bp-faq__q svg { transform: rotate(180deg); stroke: #48B0F7; }
.bp-faq__chevron {
    flex-shrink: 0; margin-left: 12px;
    font-size: 14px; color: #B8B8B8;
    transition: transform 0.3s ease;
    display: inline-block;
}
.bp-faq__item[open] .bp-faq__chevron { transform: rotate(180deg); color: #48B0F7; }
.bp-faq__a { padding: 0 24px 20px 66px; font-size: 15px; color: #585858; line-height: 1.65; text-align: left; }

/* ── Bottom CTA Section ── */
.bp-cta {
    background: linear-gradient(160deg, #48B0F7 0%, #3A8FC8 60%, #2d7ab5 100%);
    padding: 80px 24px; text-align: center;
    position: relative; overflow: hidden;
}
.bp-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 20px 20px;
}
.bp-cta__inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.bp-cta__tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px; padding: 6px 16px;
    font-size: 12px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
}
.bp-cta h2 {
    font-family: 'Work Sans', sans-serif; font-weight: 900;
    font-size: clamp(26px, 4.5vw, 38px);
    color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.bp-cta__sub {
    font-family: 'Lora', serif; font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px; line-height: 1.6;
}
.bp-cta__features {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 20px; margin-bottom: 36px;
}
.bp-cta__feat {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; color: rgba(255,255,255,0.9);
}
.bp-cta .bp-btn { box-shadow: 0 6px 24px rgba(254,139,123,0.4); border-radius: 12px; }
.bp-cta .bp-btn:hover { box-shadow: 0 12px 36px rgba(254,139,123,0.5); }
.bp-cta__note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }
.bp-cta__note-pill {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px; padding: 5px 14px; margin-top: 12px;
    font-size: 12px; color: rgba(255,255,255,0.7);
}

/* ── Shared Responsive ── */
@media (max-width: 600px) {
    .bp-hero { padding: 48px 20px 36px; }
    .bp-faq { padding: 48px 20px; }
    .bp-faq__q { font-size: 15px; padding: 16px 18px; }
    .bp-faq__a { padding: 0 18px 16px 56px; font-size: 14px; }
    .bp-cta { padding: 56px 20px; }
    .bp-cta .bp-btn { width: 100%; text-align: center; padding: 16px 40px; font-size: 16px; }
    .bp-cta__features { flex-direction: column; align-items: center; gap: 8px; }
    .bp-inline-cta { padding: 32px 20px; }
}
