/* ============================================================
   GMB Review Booster — Global Marketing CSS
   Light, clean, blue-accented (LocalImpact-inspired)
   Fully responsive.
   ============================================================ */

:root {
    --gmb-blue: #2563eb;
    --gmb-blue-dark: #1d4ed8;
    --gmb-blue-soft: #eff6ff;
    --gmb-sky: #3b82f6;
    --gmb-ink: #0f172a;
    --gmb-body: #475569;
    --gmb-muted: #64748b;
    --gmb-border: #e6ebf2;
    --gmb-bg-alt: #f6f9ff;
    --gmb-card-shadow: 0 4px 24px rgba(15, 23, 42, .06);
    --gmb-card-shadow-hover: 0 16px 40px rgba(15, 23, 42, .10);
}

/* ── Override old theme body padding (was for fixed .nav-bar; new navbar is sticky) ── */
body { padding-top: 0 !important; color: var(--gmb-body); }

/* ── Shared Section Utilities ── */
.py-section { padding-top: 88px; padding-bottom: 88px; }
.mb-6 { margin-bottom: 4rem; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gmb-blue); }
.section-h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--gmb-ink); letter-spacing: -.02em; }
.section-subtitle { font-size: 1.05rem; color: var(--gmb-muted); max-width: 620px; margin: .85rem auto 0; line-height: 1.7; }
.text-gradient-primary { background: linear-gradient(120deg, var(--gmb-blue), var(--gmb-sky)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Page Hero (Services, Pricing, Contact) — light ── */
.page-hero-section {
    background: radial-gradient(ellipse 80% 90% at 50% -10%, var(--gmb-blue-soft) 0%, #ffffff 60%);
    color: var(--gmb-ink);
    padding: 96px 0 64px;
    text-align: center;
    border-bottom: 1px solid var(--gmb-border);
}
.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gmb-ink);
    line-height: 1.15;
    letter-spacing: -.02em;
}

/* ── Hero Section — light ── */
.hero-section {
    background: radial-gradient(ellipse 70% 80% at 75% -5%, var(--gmb-blue-soft) 0%, transparent 55%), #ffffff;
    color: var(--gmb-ink);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gmb-border);
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 80%, rgba(59, 130, 246, .08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gmb-blue-soft);
    border: 1px solid #dbe7fe;
    color: var(--gmb-blue-dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: gmb-pulse 2s infinite;
}
@keyframes gmb-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero-title {
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--gmb-ink);
    letter-spacing: -.025em;
}
.hero-title-gradient {
    background: linear-gradient(120deg, var(--gmb-blue), var(--gmb-sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle { font-size: 1.08rem; color: var(--gmb-muted); max-width: 540px; line-height: 1.7; }
.hero-subtitle strong { color: var(--gmb-ink); }
.hero-stats-row { gap: 28px; }
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--gmb-blue); line-height: 1; }
.hero-stat-label { font-size: .7rem; color: var(--gmb-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.btn-hero-cta {
    display: inline-flex; align-items: center;
    background: var(--gmb-blue);
    color: white; border: none;
    padding: 14px 28px; border-radius: 12px;
    font-weight: 700; font-size: 1rem;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 8px 24px rgba(37, 99, 235, .28);
}
.btn-hero-cta:hover { transform: translateY(-2px); background: var(--gmb-blue-dark); box-shadow: 0 12px 30px rgba(37, 99, 235, .38); color: white; }
.btn-hero-ghost {
    display: inline-flex; align-items: center;
    background: #fff;
    color: var(--gmb-ink); border: 1px solid var(--gmb-border);
    padding: 14px 28px; border-radius: 12px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none;
    transition: all .25s;
}
.btn-hero-ghost:hover { background: var(--gmb-blue-soft); border-color: #dbe7fe; color: var(--gmb-blue-dark); }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; color: var(--gmb-muted); font-size: .82rem; }

/* ── Hero Dashboard Card ── */
.hero-card-wrap { display: flex; justify-content: center; }
.hero-dashboard-card {
    background: white; border-radius: 20px; padding: 22px;
    width: 100%; max-width: 420px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .14);
    border: 1px solid var(--gmb-border);
    color: #1e293b;
}
.hdc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hdc-dot-live { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; animation: gmb-pulse 2s infinite; }
.bg-success-soft { background: rgba(34,197,94,.12); }
.hdc-rating { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg,#f0f9ff,#e0f2fe); border-radius: 12px; padding: 14px 16px; margin-bottom: 14px; }
.hdc-rating-num { font-size: 2.8rem; font-weight: 800; color: #0ea5e9; line-height: 1; }
.hdc-stars { color: #f59e0b; font-size: 1.1rem; }
.hdc-reviews { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.hdc-review-item { display: flex; gap: 10px; padding: 8px; background: #f8fafc; border-radius: 8px; }
.hdc-avatar { width: 30px; height: 30px; background: linear-gradient(135deg,var(--gmb-blue),var(--gmb-sky)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.hdc-review-stars { color: #f59e0b; font-size: .72rem; }
.hdc-review-text { font-size: .76rem; color: #64748b; }
.hdc-campaign { background: #f8fafc; padding: 10px 12px; border-radius: 8px; }

/* ── Pain Section — light ── */
.pain-section {
    background: var(--gmb-bg-alt);
    border-top: 1px solid var(--gmb-border);
    border-bottom: 1px solid var(--gmb-border);
}
.pain-section .section-h2 { color: var(--gmb-ink); }
.pain-card {
    background: #fff;
    border: 1px solid var(--gmb-border);
    border-radius: 16px; padding: 28px; text-align: center; height: 100%;
    box-shadow: var(--gmb-card-shadow);
    transition: transform .25s, box-shadow .25s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--gmb-card-shadow-hover); }
.pain-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.pain-num { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; }
.pain-desc { color: var(--gmb-muted); font-size: .88rem; margin: 0; }
.pain-quote-box {
    max-width: 760px; margin: 0 auto;
    background: #fff;
    border: 1px solid var(--gmb-border);
    border-left: 4px solid var(--gmb-blue);
    border-radius: 16px; padding: 36px; text-align: center;
    box-shadow: var(--gmb-card-shadow);
    position: relative;
}
.pain-quote-mark { font-size: 5rem; line-height: 1; color: rgba(37,99,235,.18); font-family: Georgia,serif; margin-bottom: -24px; }
.pain-quote-box p { font-size: 1.15rem; color: var(--gmb-ink); font-style: italic; margin-bottom: 12px; }
.pain-quote-box cite { color: var(--gmb-muted); font-size: .88rem; }

/* ── Industry pills ── */
.industry-tag-pill {
    background: #fff; border: 1px solid var(--gmb-border);
    border-radius: 100px; padding: 6px 15px;
    font-size: .82rem; color: #475569;
}

/* ── How it works ── */
.step-badge {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gmb-blue-soft);
    color: var(--gmb-blue-dark); font-size: .8rem; font-weight: 800;
    padding: 6px 14px; border-radius: 8px; letter-spacing: .04em;
    text-transform: uppercase;
}
.check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--gmb-body); }
.check-list li::before { content: '✓'; color: #16a34a; font-weight: 800; flex-shrink: 0; }
.how-mockup {
    background: white; border: 1px solid var(--gmb-border);
    border-radius: 16px; padding: 20px;
    box-shadow: var(--gmb-card-shadow);
}
.hm-search { background: #f8fafc; border: 1px solid var(--gmb-border); border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; font-size: .88rem; color: #94a3b8; margin-bottom: 12px; }
.hm-result { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; margin-bottom: 6px; }
.hm-result--active { background: var(--gmb-blue-soft); border: 1px solid #bfdbfe; }
.hm-result:not(.hm-result--active) { background: #f8fafc; }
.hm-channel { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #f8fafc; border-radius: 10px; margin-bottom: 8px; }
.hm-channel-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.hm-chart-wrap { height: 130px; display: flex; align-items: flex-end; gap: 4px; padding: 0 4px; }
.hm-chart-bars { display: flex; align-items: flex-end; gap: 3px; width: 100%; height: 100%; }
.hm-bar { flex: 1; background: linear-gradient(to top, var(--gmb-blue), var(--gmb-sky)); border-radius: 3px 3px 0 0; position: relative; transition: height 1s ease; }
.hm-bar-tip { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); background: var(--gmb-blue); color: white; font-size: .65rem; padding: 2px 5px; border-radius: 4px; white-space: nowrap; font-weight: 700; }

/* ── Feature Cards ── */
.feat-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px; background: white;
    border-radius: 16px; border: 1px solid var(--gmb-border);
    box-shadow: var(--gmb-card-shadow);
    transition: all .25s; height: 100%;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--gmb-card-shadow-hover); border-color: #dbe7fe; }
.feat-icon {
    width: 46px; height: 46px; min-width: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.feat-card h6 { color: var(--gmb-ink); }
.feat-icon-primary { background: rgba(37,99,235,.12); color: var(--gmb-blue); }
.feat-icon-success { background: rgba(34,197,94,.12); color: #16a34a; }
.feat-icon-info { background: rgba(6,182,212,.12); color: #0891b2; }
.feat-icon-warning { background: rgba(245,158,11,.12); color: #d97706; }
.feat-icon-danger { background: rgba(239,68,68,.12); color: #dc2626; }
.feat-icon-dark { background: rgba(15,23,42,.08); color: #1e293b; }
.feat-icon-secondary { background: rgba(100,116,139,.12); color: #475569; }
.feat-icon-purple { background: rgba(139,92,246,.12); color: #8b5cf6; }

/* ── Testimonials ── */
.testi-card {
    background: white; border-radius: 16px; padding: 28px;
    border: 1px solid var(--gmb-border); box-shadow: var(--gmb-card-shadow);
    display: flex; flex-direction: column; height: 100%;
    transition: all .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--gmb-card-shadow-hover); }
.testi-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.testi-text { color: #334155; font-style: italic; flex-grow: 1; line-height: 1.7; font-size: .95rem; }
.testi-result { display: inline-block; border-radius: 8px; padding: 5px 12px; font-size: .8rem; font-weight: 700; margin: 14px 0; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: .88rem; }

/* ── Pricing Cards ── */
.price-card, .price-card-full {
    background: white; border-radius: 20px; padding: 32px;
    border: 1px solid var(--gmb-border); position: relative; height: 100%;
    box-shadow: var(--gmb-card-shadow);
    transition: all .25s;
}
.price-card:hover, .price-card-full:hover { transform: translateY(-4px); box-shadow: var(--gmb-card-shadow-hover); }
.price-card--featured, .price-card-full--featured { border-color: var(--gmb-blue); border-width: 2px; box-shadow: 0 16px 40px rgba(37,99,235,.16); }
.price-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gmb-blue);
    color: white; padding: 5px 20px; border-radius: 20px;
    font-size: .78rem; font-weight: 700; white-space: nowrap;
    box-shadow: 0 6px 16px rgba(37,99,235,.3);
}
.price-plan-name { font-size: .82rem; font-weight: 700; color: var(--gmb-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.price-amount-row { display: flex; align-items: flex-start; margin-bottom: 20px; }
.price-dollar { font-size: 1.3rem; font-weight: 700; margin-top: 8px; color: var(--gmb-ink); }
.price-num { font-size: 3.4rem; font-weight: 800; color: var(--gmb-ink); line-height: 1; letter-spacing: -.02em; }
.price-mo { font-size: .88rem; color: #94a3b8; align-self: flex-end; margin-bottom: 8px; }
.price-feat-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.price-feat-list li { font-size: .88rem; color: var(--gmb-body); display: flex; align-items: flex-start; gap: 6px; }

/* ── Final CTA — blue gradient block ── */
.final-cta-section {
    background: linear-gradient(135deg, var(--gmb-blue) 0%, #1e40af 100%);
    position: relative; overflow: hidden;
}
.final-cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.16) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-stars { color: #fbbf24; font-size: 1.4rem; letter-spacing: .2em; margin-bottom: 12px; }
.final-cta-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: white; line-height: 1.2; letter-spacing: -.02em; }
.final-cta-sub { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 540px; margin: 14px auto 0; }
.final-cta-trust { color: rgba(255,255,255,.7); font-size: .82rem; }
.btn-cta-main {
    display: inline-flex; align-items: center;
    background: white; color: var(--gmb-blue-dark); border: none;
    padding: 14px 32px; border-radius: 12px;
    font-weight: 700; font-size: 1rem; text-decoration: none;
    transition: all .25s;
}
.btn-cta-main:hover { background: #eef4ff; color: var(--gmb-blue-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn-cta-ghost {
    display: inline-flex; align-items: center;
    background: transparent; color: white;
    border: 1px solid rgba(255,255,255,.45);
    padding: 14px 32px; border-radius: 12px;
    font-weight: 600; font-size: 1rem; text-decoration: none;
    transition: all .25s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.12); color: white; }

/* ── Global Utilities ── */
.bg-primary-subtle { background: rgba(37,99,235,.10) !important; }
.bg-success-subtle { background: rgba(34,197,94,.12) !important; }
.bg-warning-subtle { background: rgba(245,158,11,.12) !important; }
.bg-info-subtle { background: rgba(6,182,212,.12) !important; }
.bg-danger-subtle { background: rgba(239,68,68,.12) !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1199.98px) {
    .py-section { padding-top: 76px; padding-bottom: 76px; }
}
@media (max-width: 991.98px) {
    .py-section { padding-top: 60px; padding-bottom: 60px; }
    .mb-6 { margin-bottom: 2.75rem; }
    .hero-section { padding: 56px 0; }
    .hero-card-wrap { margin-top: 36px; }
    .hero-dashboard-card { max-width: 460px; }
    .hero-subtitle { max-width: 100%; }
    .page-hero-section { padding: 72px 0 52px; }
}
@media (max-width: 767.98px) {
    .py-section { padding-top: 52px; padding-bottom: 52px; }
    .hero-title { font-size: clamp(1.85rem, 7vw, 2.4rem); }
    .hero-stats-row { gap: 20px 28px; }
    .pain-quote-box { padding: 28px 22px; }
    .pain-quote-box p { font-size: 1.05rem; }
    .feat-card { padding: 18px; }
    .price-card, .price-card-full { padding: 26px; }
}
@media (max-width: 575.98px) {
    .py-section { padding-top: 44px; padding-bottom: 44px; }
    .hero-section { padding: 40px 0; }
    .hero-stats-row { justify-content: flex-start; }
    .hero-trust { justify-content: flex-start; gap: 10px 16px; }
    .hero-stat-num { font-size: 1.7rem; }
    .section-h2 { font-size: 1.6rem; }
    .page-hero-title { font-size: 1.85rem; }
    .page-hero-section { padding: 56px 0 40px; }
    .btn-hero-cta, .btn-hero-ghost,
    .btn-cta-main, .btn-cta-ghost { width: 100%; justify-content: center; }
    .hero-dashboard-card { padding: 18px; }
    .hdc-rating-num { font-size: 2.3rem; }
    .price-num { font-size: 2.9rem; }
}
