/* ============================================================
   BestDigitalCard — self-contained sales landing page styles
   Everything scoped .gmp-* — no reliance on the site's style.css.
   Mobile-first with progressive enhancement at 640, 900, 1100.
   ============================================================ */

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body.gmp-body {
    margin: 0;
    font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #0f172a;
    background: #fff;
    line-height: 1.55;
    overflow-x: hidden;
    padding-bottom: 80px; /* space for sticky mobile CTA */
    -webkit-font-smoothing: antialiased;
}
body.gmp-body img, body.gmp-body svg { max-width: 100%; }
body.gmp-body a { color: inherit; text-decoration: none; }
body.gmp-body h1, body.gmp-body h2, body.gmp-body h3, body.gmp-body h4 {
    font-family: 'Bricolage Grotesque', 'Nunito', sans-serif;
    letter-spacing: -0.01em; margin: 0;
    color: #0f172a;
}
body.gmp-body p { margin: 0; }
body.gmp-body ul { margin: 0; padding: 0; list-style: none; }
body.gmp-body button { font-family: inherit; }

@media (min-width: 900px) {
    body.gmp-body { padding-bottom: 0; } /* sticky CTA is mobile-only */
}

/* Design tokens */
.gmp-body {
    --gmp-primary: #2563eb;
    --gmp-primary-2: #3b82f6;
    --gmp-accent: #10b981;
    --gmp-accent-2: #34d399;
    --gmp-pink: #f97316;
    --gmp-ink: #0f172a;
    --gmp-sub: #64748b;
    --gmp-line: #e2e8f0;
    --gmp-soft: #f8fafc;
    --gmp-dark: #0b1220;
    --gmp-r-lg: 22px;
    --gmp-r-md: 14px;
    --gmp-r-sm: 10px;
}

.gmp-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 900px) { .gmp-container { padding: 0 32px; } }

.gmp-center { justify-content: center; }
.gmp-hide-xs { display: none; }
.gmp-show-xs { display: inline; }
@media (min-width: 480px) {
    .gmp-hide-xs { display: inline; }
    .gmp-show-xs { display: none; }
}

/* ---------- Shared bits ---------- */
.gmp-grad {
    background: linear-gradient(90deg, #2563eb, #f97316 60%, #10b981);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    background-size: 200% auto; animation: gmpGrad 8s linear infinite;
}
@keyframes gmpGrad { to { background-position: 200% center; } }

.gmp-under { position: relative; display: inline-block; color: #2563eb; }
.gmp-under::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 10px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'><path d='M2 7 Q30 -2 60 5 T118 5' stroke='%232563eb' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
    animation: gmpDrawLine 1.4s ease .3s both;
}
@keyframes gmpDrawLine { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); } }

.gmp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 13px; border-radius: 999px;
    background: rgba(37,99,235,.08); color: #2563eb;
    font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 16px;
}
.gmp-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,.6);
    animation: gmpPulseDot 1.8s infinite;
}
@keyframes gmpPulseDot {
    0%{box-shadow:0 0 0 0 rgba(16,185,129,.6)}
    70%{box-shadow:0 0 0 12px rgba(16,185,129,0)}
    100%{box-shadow:0 0 0 0 rgba(16,185,129,0)}
}

.gmp-tag {
    display: inline-block; padding: 6px 12px; border-radius: 999px;
    background: rgba(37,99,235,.08); color: #2563eb;
    font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 14px;
}
.gmp-tag-light { background: rgba(255,255,255,.06); color: #93c5fd; border: 1px solid rgba(255,255,255,.15); }

/* ---------- Buttons ---------- */
.gmp-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 13px 20px; border-radius: 12px;
    font-weight: 800; font-size: 15px;
    border: 2px solid transparent; cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    line-height: 1; position: relative; overflow: hidden;
    text-decoration: none; white-space: nowrap;
    min-height: 48px; /* mobile tap target */
}
.gmp-btn i { font-size: 15px; }
.gmp-btn-sm { padding: 10px 16px; font-size: 13px; min-height: 40px; border-radius: 10px; }
.gmp-btn-lg { padding: 17px 28px; font-size: 16px; border-radius: 14px; min-height: 56px; }
.gmp-btn-xl { padding: 20px 34px; font-size: 18px; border-radius: 16px; min-height: 64px; font-weight: 900; }
.gmp-btn-full { width: 100%; }

.gmp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #f97316);
    box-shadow: 0 14px 30px -12px rgba(37,99,235,.55);
}
.gmp-btn-primary:hover, .gmp-btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(37,99,235,.65);
}
.gmp-btn-primary::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
    transform: translateX(-100%);
    animation: gmpShine 3.4s infinite;
}
@keyframes gmpShine {
    0%,65% { transform: translateX(-100%); }
    100%   { transform: translateX(100%); }
}

.gmp-btn-ghost {
    color: #2563eb; background: #fff; border-color: #e2e8f0;
}
.gmp-btn-ghost:hover { border-color: #2563eb; transform: translateY(-2px); }

.gmp-btn-white { color: #2563eb; background: #fff; }
.gmp-btn-white:hover { transform: translateY(-2px); }
.gmp-btn-outline-white {
    color: #fff; background: transparent; border-color: rgba(255,255,255,.55);
}
.gmp-btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.gmp-cta-row {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; align-items: center;
}
@media (max-width: 480px) {
    .gmp-cta-row { flex-direction: column; align-items: stretch; }
    .gmp-cta-row .gmp-btn { width: 100%; }
}
.gmp-cta-caption {
    margin-top: 14px; font-size: 13px; color: #64748b;
    display: inline-flex; align-items: center; gap: 8px;
}
.gmp-cta-caption i { color: #10b981; }

/* ============ URGENCY BAR ============ */
.gmp-urgent {
    background: linear-gradient(90deg, #0f172a, #1e3a8a 50%, #0f172a);
    color: #fff;
    font-size: 12px; font-weight: 700;
    text-align: center;
    padding: 8px 12px;
    letter-spacing: .02em;
    position: relative; z-index: 30;
}
.gmp-urgent-inner { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.gmp-urgent b { color: #fbbf24; }
.gmp-urgent-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,.7);
    animation: gmpPulseDot 1.6s infinite;
}
.gmp-urgent-text { line-height: 1.4; }

@media (min-width: 640px) { .gmp-urgent { font-size: 13px; padding: 10px 16px; } }

/* ============ TOP BAR (logo + one CTA) ============ */
.gmp-topbar {
    position: sticky; top: 0; z-index: 25;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid rgba(226,232,240,.7);
}
.gmp-topbar-inner {
    max-width: 1180px; margin: 0 auto;
    padding: 12px 20px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
}
@media (min-width: 900px) { .gmp-topbar-inner { padding: 14px 32px; } }
.gmp-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.gmp-brand-mark {
    width: 34px; height: 34px; border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #f97316);
    color: #fff; font-weight: 900; font-size: 18px;
    display: grid; place-items: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    box-shadow: 0 8px 20px -8px rgba(37,99,235,.6);
}
.gmp-brand-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 17px; color: #0f172a;
    letter-spacing: -0.01em;
}
@media (max-width: 380px) { .gmp-brand-name { font-size: 15px; } }

/* ============ HERO ============ */
.gmp-hero {
    position: relative;
    padding: 40px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 70%);
    overflow: hidden;
}
@media (min-width: 900px) { .gmp-hero { padding: 70px 0 90px; } }

.gmp-hero-glow {
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(37,99,235,.16), transparent 60%);
    filter: blur(30px); pointer-events: none;
    animation: gmpFloatGlow 12s ease-in-out infinite alternate;
}
@keyframes gmpFloatGlow {
    from { transform: translate(-50%, 0) scale(1); }
    to   { transform: translate(-50%, -30px) scale(1.08); }
}
.gmp-hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 65%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 65%);
    pointer-events: none;
}
.gmp-hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr;
    gap: 40px; align-items: center;
}
@media (min-width: 900px) {
    .gmp-hero-inner { grid-template-columns: 1.1fr .9fr; gap: 60px; }
}
.gmp-hero-copy { animation: gmpFadeUp .8s ease both; }
@keyframes gmpFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gmp-h1 {
    font-size: clamp(30px, 8vw, 60px);
    line-height: 1.06;
    font-weight: 800;
    margin: 0 0 20px;
}
.gmp-lead {
    font-size: clamp(15px, 2.2vw, 18px);
    color: #334155; line-height: 1.7; max-width: 560px;
}

/* Hero social proof pill */
.gmp-hero-social {
    display: inline-flex; align-items: center; gap: 14px;
    margin-top: 28px;
    padding: 12px 16px; background: #fff;
    border: 1px solid #e2e8f0; border-radius: 999px;
    box-shadow: 0 8px 20px -14px rgba(15,23,42,.15);
    max-width: 100%;
}
.gmp-avatars { display: flex; flex-shrink: 0; }
.gmp-avatars span {
    width: 32px; height: 32px; border-radius: 50%;
    display: grid; place-items: center;
    color: #fff; font-weight: 700; font-size: 12px;
    border: 2px solid #fff; margin-left: -8px;
}
.gmp-avatars span:first-child { margin-left: 0; }
.gmp-stars { display: inline-flex; gap: 2px; align-items: center; color: #0f172a; font-weight: 800; font-size: 14px; }
.gmp-stars i { color: #f59e0b; }
.gmp-hero-social-caption { font-size: 12px; color: #64748b; margin-top: 2px; }

/* ---- Phone mockup ---- */
.gmp-hero-visual {
    position: relative; display: grid; place-items: center;
    min-height: 500px;
    animation: gmpFadeUp .9s ease .1s both;
    padding: 20px 0;
}
@media (max-width: 480px) { .gmp-hero-visual { min-height: 460px; } }
.gmp-phone {
    position: relative;
    width: 280px; height: 570px;
    background: linear-gradient(180deg, #1e293b, #0b1220);
    border-radius: 42px; padding: 14px;
    box-shadow: 0 40px 80px -30px rgba(15,23,42,.55),
                0 0 0 2px rgba(255,255,255,.06),
                inset 0 0 0 2px rgba(255,255,255,.04);
    animation: gmpPhoneFloat 6s ease-in-out infinite;
}
@media (min-width: 900px) { .gmp-phone { width: 300px; height: 610px; } }
@keyframes gmpPhoneFloat {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50%     { transform: translateY(-14px) rotate(1deg); }
}
.gmp-phone-notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 110px; height: 22px;
    background: #0b1220; border-radius: 0 0 18px 18px; z-index: 2;
}
.gmp-phone-screen {
    height: 100%; width: 100%;
    background: linear-gradient(180deg, #eff6ff, #fff);
    border-radius: 30px; overflow: hidden; position: relative;
}
.gmp-card-hero { display: flex; flex-direction: column; height: 100%; }
.gmp-card-cover {
    height: 130px;
    background: linear-gradient(135deg, #2563eb, #f97316 70%, #10b981);
    position: relative;
}
.gmp-card-cover::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.35), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,.2), transparent 40%);
}
.gmp-card-avatar {
    position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%);
    width: 68px; height: 68px; border-radius: 50%;
    background: #fff; display: grid; place-items: center;
    font-weight: 800; font-size: 24px; color: #2563eb;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px -8px rgba(0,0,0,.25);
    font-family: 'Bricolage Grotesque', sans-serif;
}
.gmp-card-body { padding: 44px 18px 18px; text-align: center; }
.gmp-card-body h4 { margin: 0; font-size: 18px; font-weight: 800; }
.gmp-card-role { margin: 6px 0 12px; color: #64748b; font-size: 12px; }
.gmp-card-role i { color: #10b981; }
.gmp-card-actions {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 6px; margin: 12px 0;
}
.gmp-chip {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 9px 6px; border-radius: 10px;
    font-size: 11px; font-weight: 700;
    background: #f8fafc; color: #0f172a; border: 1px solid #e2e8f0;
}
.gmp-chip-wa   { background: #dcfce7; color: #16a34a; border-color: #bbf7d0; }
.gmp-chip-call { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.gmp-chip-pay  { background: #fef3c7; color: #b45309; border-color: #fde68a; }
.gmp-chip-map  { background: #fce7f3; color: #be185d; border-color: #fbcfe8; }
.gmp-card-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 6px; margin: 10px 0;
    background: #eff6ff; padding: 10px; border-radius: 10px;
}
.gmp-card-stats > div { text-align: center; }
.gmp-card-stats b { display: block; color: #2563eb; font-weight: 800; font-size: 15px; font-family: 'Bricolage Grotesque', sans-serif; }
.gmp-card-stats span { font-size: 9px; color: #64748b; text-transform: uppercase; letter-spacing: .06em; }
.gmp-card-review { padding: 8px 10px; background: #fff; border: 1px solid #f1f5f9; border-radius: 10px; text-align: left; }
.gmp-card-review p { margin: 4px 0 0; font-size: 11px; color: #475569; line-height: 1.5; font-style: italic; }

/* Floating badges */
.gmp-float {
    position: absolute;
    background: #fff; border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 20px 40px -20px rgba(15,23,42,.35), 0 0 0 1px rgba(15,23,42,.04);
    display: flex; align-items: center; gap: 10px;
    font-size: 12px;
    animation: gmpFloatCard 5s ease-in-out infinite;
    animation-delay: var(--d, 0s);
    z-index: 3;
}
.gmp-float i { color: #2563eb; font-size: 16px; }
.gmp-float b { display: block; color: #0f172a; font-size: 12px; font-weight: 700; }
.gmp-float span { color: #64748b; font-size: 11px; }
@keyframes gmpFloatCard {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}
.gmp-float-qr {
    left: -8px; top: 40px; padding: 8px 10px;
    flex-direction: column; align-items: center; text-align: center;
}
.gmp-float-qr span { color: #0f172a; font-size: 10px; font-weight: 700; }
.gmp-qr-frame {
    width: 56px; height: 56px;
    background: #fff; border-radius: 8px; padding: 5px;
    display: grid; place-items: center;
}
.gmp-qr-pattern {
    width: 100%; height: 100%;
    background: conic-gradient(from 0deg,
        #000 0 25%, transparent 25% 50%,
        #000 50% 75%, transparent 75% 100%);
    background-size: 8px 8px; background-color: #fff;
    border-radius: 4px;
    animation: gmpQrPulse 2s ease-in-out infinite;
}
@keyframes gmpQrPulse { 0%,100%{opacity:1} 50%{opacity:.6} }
.gmp-float-lead { right: -10px; top: 30%; }
.gmp-float-lead i { color: #f59e0b; }
.gmp-float-review { right: 0; bottom: 60px; }
.gmp-float-review i { color: #f59e0b; }

@media (min-width: 900px) {
    .gmp-float-qr { left: -20px; top: 60px; }
    .gmp-float-lead { right: -30px; }
    .gmp-float-review { right: -10px; }
}

/* ============ LOGO / CATEGORY STRIP ============ */
.gmp-strip {
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}
.gmp-strip-label {
    text-align: center; color: #64748b; font-size: 12px;
    font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    margin: 0 0 12px;
}
.gmp-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.gmp-marquee-track {
    display: inline-flex; gap: 34px;
    animation: gmpMarquee 42s linear infinite;
    white-space: nowrap; padding-left: 34px;
}
.gmp-marquee-track span {
    display: inline-flex; align-items: center; gap: 8px;
    color: #475569; font-weight: 700; font-size: 15px;
}
.gmp-marquee-track i { color: #f59e0b; }
@keyframes gmpMarquee { to { transform: translateX(-50%); } }

/* ============ Section base ============ */
.gmp-sect { padding: 56px 0; position: relative; }
@media (min-width: 900px) { .gmp-sect { padding: 90px 0; } }
.gmp-sect-soft { background: linear-gradient(180deg, #f8fafc, #fff); }
.gmp-sect-dark {
    background: #0b1220;
    color: #e2e8f0;
    overflow: hidden;
}
.gmp-sect-dark .gmp-head h2 { color: #fff; }
.gmp-head {
    text-align: center; max-width: 780px; margin: 0 auto 40px;
}
.gmp-head h2 {
    font-size: clamp(26px, 5vw, 44px);
    line-height: 1.15; margin: 0 0 14px;
}
.gmp-desc { color: #64748b; font-size: 16px; line-height: 1.7; max-width: 620px; margin: 0 auto; }
.gmp-sect-dark .gmp-desc { color: #cbd5e1; }
.gmp-sect-cta { text-align: center; margin-top: 40px; position: relative; z-index: 1; }

.gmp-blob {
    position: absolute; border-radius: 50%; filter: blur(80px);
    pointer-events: none; opacity: .5;
}
.gmp-blob-1 { width: 400px; height: 400px; top: -80px; left: -80px;
    background: radial-gradient(circle, #2563eb, transparent 60%); }
.gmp-blob-2 { width: 340px; height: 340px; bottom: -80px; right: -80px;
    background: radial-gradient(circle, #10b981, transparent 60%); }

/* ============ Outcomes (3 promise cards) ============ */
.gmp-outcomes {
    display: grid; grid-template-columns: 1fr; gap: 18px;
    max-width: 940px; margin: 0 auto;
}
@media (min-width: 720px) { .gmp-outcomes { grid-template-columns: repeat(3, 1fr); } }
.gmp-outcome {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 26px 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.gmp-outcome:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -25px rgba(37,99,235,.25);
    border-color: rgba(37,99,235,.4);
}
.gmp-outcome b {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(38px, 6vw, 48px); font-weight: 900;
    background: linear-gradient(135deg, #2563eb, #f97316);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; margin-bottom: 8px;
}
.gmp-outcome h3 { font-size: 17px; margin: 0 0 6px; }
.gmp-outcome p { color: #64748b; font-size: 14px; line-height: 1.55; }

/* ============ Compare ============ */
.gmp-compare {
    display: grid; grid-template-columns: 1fr; gap: 18px;
    max-width: 980px; margin: 0 auto;
}
@media (min-width: 800px) { .gmp-compare { grid-template-columns: 1fr 1fr; gap: 22px; } }
.gmp-compare-col {
    padding: 26px 24px; border-radius: 20px;
    background: #fff; border: 1px solid #e2e8f0;
}
.gmp-compare-bad { border-color: #fecaca; background: #fff5f5; }
.gmp-compare-bad h3 { color: #b91c1c; }
.gmp-compare-bad ul li::before { content: "×"; color: #b91c1c; font-size: 20px; }
.gmp-compare-good {
    border-color: rgba(37,99,235,.35);
    background: linear-gradient(180deg, #eff6ff, #fff);
    box-shadow: 0 20px 60px -30px rgba(37,99,235,.35);
}
.gmp-compare-good h3 { color: #2563eb; }
.gmp-compare-good ul li::before { content: "✓"; color: #16a34a; }
.gmp-compare-col h3 { margin: 0 0 16px; display: flex; align-items: center; gap: 10px; font-size: 18px; }
.gmp-compare-col ul { margin: 0 0 20px; }
.gmp-compare-col ul li {
    padding: 10px 0 10px 26px; position: relative;
    border-bottom: 1px dashed #e2e8f0;
    color: #334155; font-size: 15px; line-height: 1.5;
}
.gmp-compare-col ul li:last-child { border-bottom: none; }
.gmp-compare-col ul li::before {
    position: absolute; left: 0; top: 10px;
    font-weight: 800; font-size: 18px; line-height: 1;
}

/* ============ Features grid ============ */
.gmp-features {
    display: grid; grid-template-columns: 1fr; gap: 14px;
    position: relative; z-index: 1;
}
@media (min-width: 560px) { .gmp-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gmp-features { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gmp-features { grid-template-columns: repeat(4, 1fr); } }
.gmp-feat {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 22px;
    transition: .3s;
    position: relative; overflow: hidden;
}
.gmp-feat::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(37,99,235,.15), transparent 40%);
    opacity: 0; transition: opacity .3s; pointer-events: none;
}
.gmp-feat:hover::before { opacity: 1; }
.gmp-feat:hover { transform: translateY(-4px); border-color: rgba(37,99,235,.5); }
.gmp-feat i {
    font-size: 20px; color: #34d399;
    background: rgba(16,185,129,.12);
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    margin-bottom: 14px;
}
.gmp-feat h3 { color: #fff; font-size: 16px; margin: 0 0 6px; }
.gmp-feat p  { color: #94a3b8; font-size: 14px; line-height: 1.55; margin: 0; }

/* ============ Card types ============ */
.gmp-types {
    display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .gmp-types { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gmp-types { grid-template-columns: repeat(4, 1fr); } }
.gmp-type {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 26px 22px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    display: flex; flex-direction: column;
}
.gmp-type:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -30px rgba(37,99,235,.35);
    border-color: rgba(37,99,235,.35);
}
.gmp-type-badge {
    width: 50px; height: 50px; border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #2563eb, #f97316);
    color: #fff; font-size: 20px; margin-bottom: 18px;
    box-shadow: 0 10px 24px -10px rgba(37,99,235,.5);
}
.gmp-type h3 { margin: 0 0 6px; font-size: 19px; }
.gmp-type > p { color: #64748b; font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
.gmp-type ul { margin: 0 0 16px; flex: 1; }
.gmp-type ul li {
    padding: 5px 0; color: #334155; font-size: 14px;
    display: flex; align-items: center; gap: 8px;
}
.gmp-type ul li i { color: #16a34a; font-size: 12px; }
.gmp-type-cta {
    display: inline-flex; align-items: center; gap: 6px;
    color: #2563eb; font-weight: 800; font-size: 14px;
    text-decoration: none; padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: gap .2s, border-color .2s;
    align-self: flex-start;
}
.gmp-type-cta:hover { gap: 10px; border-color: #2563eb; }

/* ============ Steps ============ */
.gmp-steps {
    display: grid; grid-template-columns: 1fr; gap: 16px;
    max-width: 980px; margin: 0 auto;
}
@media (min-width: 780px) { .gmp-steps { grid-template-columns: repeat(3, 1fr); } }
.gmp-step {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 24px 26px; position: relative;
    transition: transform .3s;
}
.gmp-step:hover { transform: translateY(-4px); }
.gmp-step-num {
    position: absolute; top: -16px; right: 18px;
    background: linear-gradient(135deg, #2563eb, #f97316);
    color: #fff; padding: 6px 12px; border-radius: 8px;
    font-size: 12px; font-weight: 800; letter-spacing: .06em;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.gmp-step > i {
    display: inline-grid; place-items: center;
    width: 50px; height: 50px; border-radius: 14px;
    background: rgba(37,99,235,.1); color: #2563eb;
    font-size: 22px; margin-bottom: 12px;
}
.gmp-step h3 { margin: 0 0 6px; font-size: 18px; }
.gmp-step p { color: #64748b; margin: 0; font-size: 14px; line-height: 1.55; }

/* ============ Dashboard ============ */
.gmp-dash-grid {
    display: grid; grid-template-columns: 1fr; gap: 30px;
    align-items: center;
}
@media (min-width: 900px) { .gmp-dash-grid { grid-template-columns: 1fr 1.1fr; gap: 50px; } }
.gmp-dash-copy h2 {
    font-size: clamp(24px, 3.4vw, 38px);
    margin: 12px 0 14px; line-height: 1.15;
}
.gmp-dash-copy p { color: #64748b; font-size: 16px; line-height: 1.7; margin-bottom: 18px; }
.gmp-dash-list { margin: 0 0 22px; }
.gmp-dash-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 0; color: #334155; font-size: 15px;
}
.gmp-dash-list i {
    color: #2563eb; font-size: 15px;
    width: 34px; height: 34px; border-radius: 10px;
    background: rgba(37,99,235,.1);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.gmp-dash-mock {
    background: #0b1220; border-radius: 20px; padding: 10px;
    box-shadow: 0 40px 80px -40px rgba(15,23,42,.45);
    transform: none;
    transition: transform .4s;
}
@media (min-width: 900px) {
    .gmp-dash-mock { transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
    .gmp-dash-mock:hover { transform: perspective(1000px) rotateY(0) rotateX(0); }
}
.gmp-dash-header { display: flex; align-items: center; gap: 8px; padding: 8px 12px; }
.gmp-tri-dot { width: 10px; height: 10px; border-radius: 50%; }
.gmp-td-r { background: #ef4444; }
.gmp-td-y { background: #f59e0b; }
.gmp-td-g { background: #10b981; }
.gmp-dash-title { color: #64748b; font-size: 11px; font-family: monospace; margin-left: auto; }
.gmp-dash-body { background: #131b2f; border-radius: 14px; padding: 18px; }
.gmp-kpis {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 8px; margin-bottom: 16px;
}
@media (min-width: 560px) { .gmp-kpis { grid-template-columns: repeat(4, 1fr); } }
.gmp-kpis > div {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    padding: 10px 12px; border-radius: 10px;
}
.gmp-kpis span { color: #64748b; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.gmp-kpis b { display: block; color: #fff; font-size: 19px; font-weight: 800; margin-top: 3px; font-family: 'Bricolage Grotesque', sans-serif; }
.gmp-kpis em { font-style: normal; font-size: 10px; color: #10b981; font-weight: 700; }
.gmp-chart {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 6px; align-items: end;
    height: 120px; margin-bottom: 16px; padding: 12px 0;
    border-top: 1px dashed rgba(255,255,255,.08);
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.gmp-bar {
    background: linear-gradient(180deg, #2563eb, #f97316);
    border-radius: 6px 6px 2px 2px;
    height: 0%;
    transition: height 1.2s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 -4px 20px -4px rgba(249,115,22,.35);
}
.gmp-bar.animate { height: var(--h); }
.gmp-dash-alerts { display: flex; flex-direction: column; gap: 8px; }
.gmp-alert {
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.2);
    color: #d1fae5; font-size: 12px;
    padding: 10px 12px; border-radius: 10px;
    display: flex; align-items: center; gap: 10px;
}
.gmp-alert i { color: #10b981; }
.gmp-alert b { color: #fff; }
.gmp-alert:nth-child(2) { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.2); color: #fef3c7; }
.gmp-alert:nth-child(2) i { color: #f59e0b; }

/* ============ Pricing ============ */
.gmp-price-grid {
    display: grid; grid-template-columns: 1fr; gap: 18px;
    max-width: 1080px; margin: 0 auto;
    align-items: stretch;
}
@media (min-width: 800px) { .gmp-price-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.gmp-price {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 30px 26px;
    display: flex; flex-direction: column; position: relative;
    transition: transform .3s, box-shadow .3s;
}
.gmp-price:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(15,23,42,.2); }
.gmp-price-popular {
    border-color: #2563eb;
    box-shadow: 0 30px 80px -30px rgba(37,99,235,.5);
    background: linear-gradient(180deg, #eff6ff, #fff);
}
@media (min-width: 800px) {
    .gmp-price-popular { transform: translateY(-6px); }
    .gmp-price-popular:hover { transform: translateY(-10px); }
}
.gmp-price-ribbon {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #f97316);
    color: #fff; font-size: 11px; font-weight: 800;
    letter-spacing: .12em; padding: 6px 14px; border-radius: 999px;
    box-shadow: 0 8px 20px -8px rgba(37,99,235,.5);
    white-space: nowrap;
}
.gmp-price-name { font-size: 14px; font-weight: 800; color: #2563eb; text-transform: uppercase; letter-spacing: .08em; }
.gmp-price-cost { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 4px; }
.gmp-price-cost b { font-size: 40px; font-family: 'Bricolage Grotesque', sans-serif; }
.gmp-price-cost span { color: #64748b; font-size: 14px; }
.gmp-price-tag { color: #64748b; font-size: 13px; margin: 0 0 18px; }
.gmp-price ul { margin: 0 0 20px; flex: 1; }
.gmp-price ul li {
    padding: 7px 0; display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #334155;
}
.gmp-price ul li i { color: #16a34a; font-size: 12px; }
.gmp-price ul li.gmp-mute { color: #94a3b8; }
.gmp-price ul li.gmp-mute i { color: #cbd5e1; }
.gmp-price-note { text-align: center; font-size: 12px; color: #64748b; margin: 12px 0 0; }
.gmp-price-foot {
    text-align: center; margin-top: 22px;
    color: #64748b; font-size: 14px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    flex-wrap: wrap;
}
.gmp-price-foot i { color: #2563eb; }

/* ============ Guarantee ============ */
.gmp-guarantee {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    align-items: center;
    max-width: 960px; margin: 0 auto;
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border: 2px dashed rgba(37,99,235,.35);
    border-radius: 26px;
    padding: 30px 26px;
}
@media (min-width: 720px) { .gmp-guarantee { grid-template-columns: auto 1fr; gap: 34px; padding: 40px; } }
.gmp-guarantee-seal {
    width: 130px; height: 130px; margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #f97316);
    color: #fff; display: grid; place-items: center;
    text-align: center; font-weight: 900; font-size: 14px;
    line-height: 1.1; letter-spacing: .04em;
    box-shadow: 0 20px 40px -18px rgba(37,99,235,.55);
    position: relative;
    animation: gmpSpinSlow 20s linear infinite;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.gmp-guarantee-seal i { font-size: 26px; display: block; margin-bottom: 6px; }
.gmp-guarantee-seal::before {
    content: ""; position: absolute; inset: -6px;
    border: 2px dashed rgba(37,99,235,.4); border-radius: 50%;
}
@keyframes gmpSpinSlow { to { transform: rotate(360deg); } }
.gmp-guarantee-copy h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 10px; }
.gmp-guarantee-copy p { color: #475569; font-size: 15px; line-height: 1.65; margin: 0 0 18px; }

/* ============ Testimonials ============ */
.gmp-quotes {
    display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 640px) { .gmp-quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gmp-quotes { grid-template-columns: repeat(3, 1fr); } }
.gmp-quote {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 26px 24px;
    position: relative;
    transition: transform .3s;
}
.gmp-quote:hover { transform: translateY(-4px); }
.gmp-quote::before {
    content: "\201C"; position: absolute; top: -16px; left: 18px;
    font-size: 80px; color: #2563eb; opacity: .12;
    font-family: Georgia, serif; line-height: 1;
}
.gmp-quote p { color: #334155; font-size: 15px; line-height: 1.65; margin: 12px 0 18px; }
.gmp-quote-who { display: flex; align-items: center; gap: 12px; }
.gmp-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    color: #fff; font-weight: 800;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.gmp-quote-who b { color: #0f172a; font-size: 14px; display: block; }
.gmp-quote-who em { color: #64748b; font-size: 12px; font-style: normal; }

/* ============ 2. VIDEO SECTION ============ */
.gmp-video {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #0b1220;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 40px 80px -30px rgba(15,23,42,.5), 0 0 0 1px rgba(15,23,42,.06);
    transition: transform .3s ease;
}
.gmp-video:hover { transform: translateY(-4px); }
.gmp-video-poster,
.gmp-video-mock,
.gmp-video iframe,
.gmp-video video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    border: 0;
}
.gmp-video-poster { transition: transform .5s ease, filter .3s; }
.gmp-video:hover .gmp-video-poster { transform: scale(1.03); }
.gmp-video::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,18,32,.15) 0%, rgba(11,18,32,.55) 100%);
    pointer-events: none;
    transition: opacity .3s;
}
.gmp-video.gmp-video-playing::after { opacity: 0; }

/* Mockup shown when no video ID is set */
.gmp-video-mock {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 40%, #f97316 100%);
}
.gmp-video-mock-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.2), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(16,185,129,.3), transparent 45%),
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: auto, auto, 30px 30px, 30px 30px;
}
.gmp-video-mock-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: #fff;
    padding: 30px 20px;
    z-index: 1;
}
.gmp-video-mock-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 20px;
}
.gmp-video-mock-content h3 {
    color: #fff; font-size: clamp(20px, 3vw, 34px);
    margin: 0 0 8px; max-width: 500px;
}
.gmp-video-mock-content p {
    color: rgba(255,255,255,.85); font-size: 15px;
}

.gmp-video-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: transparent; border: none; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 2;
    padding: 0;
}
.gmp-video-play-ring {
    position: absolute; top: 32px; left: 50%; transform: translate(-50%, -50%);
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    animation: gmpRingPulse 2s ease-out infinite;
    z-index: -1;
}
@keyframes gmpRingPulse {
    0%   { transform: translate(-50%, -50%) scale(1);    opacity: .7; }
    100% { transform: translate(-50%, -50%) scale(1.8);  opacity: 0; }
}
.gmp-video-play-btn {
    width: 80px; height: 80px; border-radius: 50%;
    background: #fff; color: #2563eb;
    display: grid; place-items: center;
    font-size: 30px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,.4);
    transition: transform .2s ease, background .2s;
}
.gmp-video-play-btn i { margin-left: 5px; }
.gmp-video-play:hover .gmp-video-play-btn { transform: scale(1.08); background: #2563eb; color: #fff; }
.gmp-video-play-label {
    padding: 6px 14px; border-radius: 999px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    color: #fff; font-size: 12px; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
}
.gmp-video.gmp-video-playing .gmp-video-play { display: none; }
.gmp-video.gmp-video-playing .gmp-video-poster,
.gmp-video.gmp-video-playing .gmp-video-mock { display: none; }
@media (max-width: 480px) {
    .gmp-video-play-btn { width: 64px; height: 64px; font-size: 24px; }
    .gmp-video-play-ring { width: 80px; height: 80px; top: 26px; }
}

.gmp-video-strip {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 10px; margin: 30px auto 0;
    max-width: 700px;
    text-align: center;
}
@media (min-width: 720px) { .gmp-video-strip { grid-template-columns: repeat(4, 1fr); } }
.gmp-video-strip > div {
    padding: 14px 12px;
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.gmp-video-strip b { display: block; color: #2563eb; font-weight: 800; font-size: 15px; font-family: 'Bricolage Grotesque', sans-serif; }
.gmp-video-strip span { color: #64748b; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

/* ============ 3. BENEFITS ============ */
.gmp-benefits {
    display: grid; grid-template-columns: 1fr; gap: 16px;
    max-width: 1080px; margin: 0 auto;
}
@media (min-width: 640px) { .gmp-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gmp-benefits { grid-template-columns: repeat(3, 1fr); } }
.gmp-benefit {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 28px 24px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative; overflow: hidden;
}
.gmp-benefit::before {
    content: ""; position: absolute; top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle at top right, var(--c, #2563eb), transparent 70%);
    opacity: .12; pointer-events: none;
    transition: opacity .3s;
}
.gmp-benefit:hover::before { opacity: .22; }
.gmp-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -30px rgba(15,23,42,.18);
    border-color: rgba(37,99,235,.3);
}
.gmp-benefit-icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--c, #2563eb);
    color: #fff; font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 12px 24px -12px var(--c, rgba(37,99,235,.6));
}
.gmp-benefit h3 { margin: 0 0 8px; font-size: 18px; }
.gmp-benefit p { color: #64748b; font-size: 14px; line-height: 1.6; margin: 0; }

/* ============ 5. AUDIENCE (Who is this for) ============ */
.gmp-audience {
    display: grid; grid-template-columns: 1fr; gap: 12px;
    max-width: 1080px; margin: 0 auto;
}
@media (min-width: 560px) { .gmp-audience { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 800px) { .gmp-audience { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gmp-audience { grid-template-columns: repeat(4, 1fr); } }
.gmp-aud {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 14px; padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.gmp-aud:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
    box-shadow: 0 20px 40px -25px rgba(37,99,235,.35);
}
.gmp-aud > i {
    flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(37,99,235,.1); color: #2563eb;
    font-size: 18px;
}
.gmp-aud b { display: block; color: #0f172a; font-size: 15px; font-weight: 800; }
.gmp-aud span { color: #64748b; font-size: 12px; line-height: 1.4; }
.gmp-audience-foot {
    text-align: center; margin: 26px auto 0;
    color: #475569; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
    width: 100%; justify-content: center;
}
.gmp-audience-foot i { color: #2563eb; }
.gmp-audience-foot a {
    color: #2563eb; font-weight: 800; text-decoration: underline;
    text-decoration-thickness: 2px; text-underline-offset: 3px;
}

/* ============ 8. BUY NOW ============ */
.gmp-buynow {
    position: relative;
    padding: 70px 0 90px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 40%, #f97316 100%);
    color: #fff; text-align: center; overflow: hidden;
}
@media (min-width: 900px) { .gmp-buynow { padding: 100px 0 110px; } }
.gmp-buynow-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(16,185,129,.35), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(251,191,36,.25), transparent 40%),
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: auto, auto, 50px 50px, 50px 50px;
    pointer-events: none;
    animation: gmpBuyBg 8s ease-in-out infinite alternate;
}
@keyframes gmpBuyBg {
    from { transform: scale(1); }
    to   { transform: scale(1.05); }
}
.gmp-buynow-inner { position: relative; z-index: 1; }
.gmp-buynow .gmp-eyebrow { background: rgba(255,255,255,.15); color: #fff; }
.gmp-buynow .gmp-under { color: #fbbf24; }
.gmp-buynow .gmp-under::after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'><path d='M2 7 Q30 -2 60 5 T118 5' stroke='%23fbbf24' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}
.gmp-buynow h2 {
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1.1; margin: 0 0 14px; color: #fff;
}
.gmp-buynow > .gmp-container > p {
    color: rgba(255,255,255,.9); font-size: 16px;
    max-width: 620px; margin: 0 auto;
}
.gmp-buynow-cta {
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    margin: 34px 0 24px;
}
@media (min-width: 720px) {
    .gmp-buynow-cta { flex-direction: row; justify-content: center; gap: 26px; }
}
.gmp-buynow-price {
    display: flex; align-items: baseline; gap: 8px;
    color: #fff;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.gmp-buynow-price .gmp-strike {
    text-decoration: line-through;
    color: rgba(255,255,255,.55);
    font-size: 20px;
}
.gmp-buynow-price b {
    font-size: 40px; font-weight: 900;
    color: #fbbf24;
}
.gmp-buynow-price em {
    font-style: normal; font-size: 13px;
    color: rgba(255,255,255,.85);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-left: 6px;
}
.gmp-buynow-trust {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 8px 22px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.9);
    font-size: 13px;
}
.gmp-buynow-trust li {
    display: inline-flex; align-items: center; gap: 6px;
}
.gmp-buynow-trust i { color: #4ade80; font-size: 14px; }
.gmp-buynow-alt {
    margin-top: 32px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
@media (min-width: 720px) { .gmp-buynow-alt { flex-direction: row; justify-content: center; } }
.gmp-buynow-alt > span { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; }

/* ============ FAQ (with audio) ============ */
.gmp-faq { max-width: 860px; margin: 0 auto; }
.gmp-faq-item {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 14px; margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.gmp-faq-item.gmp-faq-open {
    border-color: #2563eb;
    box-shadow: 0 20px 40px -25px rgba(37,99,235,.35);
}
.gmp-faq-head { display: flex; align-items: stretch; gap: 4px; padding: 4px; }
.gmp-faq-q {
    flex: 1; display: flex; align-items: center; gap: 12px;
    text-align: left; padding: 14px 12px;
    background: transparent; border: none; cursor: pointer;
    font-size: 15px; font-weight: 700; color: #0f172a;
    border-radius: 10px;
    transition: background .2s;
    min-height: 52px;
}
@media (min-width: 640px) { .gmp-faq-q { padding: 16px 18px; font-size: 16px; gap: 14px; } }
.gmp-faq-q:hover { background: #f8fafc; }
.gmp-faq-num {
    color: #2563eb; font-weight: 800;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 14px; letter-spacing: .04em;
    flex-shrink: 0;
}
.gmp-faq-qtext { flex: 1; line-height: 1.4; }
.gmp-faq-caret { color: #2563eb; font-size: 13px; transition: transform .3s; flex-shrink: 0; }
.gmp-faq-open .gmp-faq-caret { transform: rotate(180deg); }
.gmp-faq-audio {
    width: 48px; flex-shrink: 0;
    display: grid; place-items: center;
    background: rgba(37,99,235,.08);
    border: none; border-radius: 10px;
    color: #2563eb; font-size: 16px; cursor: pointer;
    position: relative;
    transition: background .2s, color .2s, transform .1s;
}
.gmp-faq-audio:hover { background: #2563eb; color: #fff; }
.gmp-faq-audio:active { transform: scale(.95); }
.gmp-faq-audio.playing { background: #2563eb; color: #fff; }
.gmp-faq-audio.playing i { display: none; }
.gmp-faq-audio.playing .gmp-faq-wave { display: flex; }
.gmp-faq-wave { display: none; align-items: end; gap: 3px; height: 18px; }
.gmp-faq-wave i {
    width: 3px; background: #fff; border-radius: 2px;
    animation: gmpWave 1s ease-in-out infinite;
}
.gmp-faq-wave i:nth-child(1) { height: 40%; animation-delay: 0s; }
.gmp-faq-wave i:nth-child(2) { height: 90%; animation-delay: .15s; }
.gmp-faq-wave i:nth-child(3) { height: 60%; animation-delay: .3s; }
.gmp-faq-wave i:nth-child(4) { height: 80%; animation-delay: .45s; }
@keyframes gmpWave { 0%,100%{transform: scaleY(.4)} 50%{transform: scaleY(1)} }
.gmp-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 18px;
}
.gmp-faq-open .gmp-faq-a { max-height: 600px; padding: 0 18px 20px; }
.gmp-faq-a p {
    margin: 0; color: #475569; line-height: 1.75; font-size: 15px;
    padding-left: 28px;
}
@media (max-width: 480px) { .gmp-faq-num { display: none; } .gmp-faq-a p { padding-left: 0; } }

.gmp-faq-cta {
    text-align: center; margin-top: 36px;
    padding: 24px; background: #fff;
    border: 1px dashed #2563eb; border-radius: 16px;
}
.gmp-faq-cta p { margin: 0 0 16px; color: #0f172a; font-weight: 700; }

/* ============ Final CTA ============ */
.gmp-final {
    position: relative;
    padding: 70px 0 90px;
    background: linear-gradient(135deg, #0f172a, #172554 50%, #1e3a8a);
    color: #fff; text-align: center; overflow: hidden;
}
@media (min-width: 900px) { .gmp-final { padding: 110px 0; } }
.gmp-final-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(249,115,22,.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(16,185,129,.25), transparent 40%);
    pointer-events: none;
    animation: gmpFinalGlow 8s ease-in-out infinite alternate;
}
@keyframes gmpFinalGlow {
    from { transform: scale(1); opacity: 1; }
    to   { transform: scale(1.1); opacity: .8; }
}
.gmp-final-inner { position: relative; z-index: 1; }
.gmp-final .gmp-eyebrow { background: rgba(255,255,255,.1); color: #fff; }
.gmp-final .gmp-under { color: #fbbf24; }
.gmp-final .gmp-under::after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'><path d='M2 7 Q30 -2 60 5 T118 5' stroke='%23fbbf24' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}
.gmp-final h2 {
    font-size: clamp(28px, 5vw, 50px);
    line-height: 1.1; margin: 0 0 14px; color: #fff;
}
.gmp-final p { color: rgba(255,255,255,.85); font-size: 16px; max-width: 620px; margin: 0 auto; }
.gmp-final-trust {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 20px; margin-top: 26px;
    color: rgba(255,255,255,.75); font-size: 13px;
}
.gmp-final-trust i { color: #fbbf24; margin-right: 6px; }

/* ============ Sticky mobile bottom CTA ============ */
.gmp-sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 40;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -8px 24px -8px rgba(15,23,42,.15);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    animation: gmpSlideUp .5s ease .6s both;
}
@keyframes gmpSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.gmp-sticky-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; max-width: 500px; margin: 0 auto;
}
.gmp-sticky-text b { display: block; color: #0f172a; font-size: 14px; font-weight: 800; line-height: 1.2; }
.gmp-sticky-text span { color: #64748b; font-size: 11px; }
.gmp-sticky-cta .gmp-btn { padding: 12px 16px; font-size: 14px; min-height: 44px; }
@media (min-width: 900px) { .gmp-sticky-cta { display: none; } }

/* ============ Legal footer ============ */
.gmp-legal {
    background: #f8fafc;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
}
.gmp-legal-row {
    display: flex; flex-direction: column; align-items: center;
    gap: 14px; text-align: center;
}
@media (min-width: 720px) { .gmp-legal-row { flex-direction: row; justify-content: space-between; text-align: left; } }
.gmp-legal-copy { color: #64748b; font-size: 13px; margin: 0; }
.gmp-legal-links { display: flex; gap: 20px; }
.gmp-legal-links a {
    color: #475569; font-size: 13px; font-weight: 600;
    transition: color .2s;
}
.gmp-legal-links a:hover { color: #2563eb; }

/* ============ Scroll reveal ============ */
.gmp-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s cubic-bezier(.16,1,.3,1); }
.gmp-reveal.gmp-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .gmp-phone, .gmp-float, .gmp-hero-glow, .gmp-final-bg, .gmp-grad,
    .gmp-qr-pattern, .gmp-btn-primary::before, .gmp-marquee-track,
    .gmp-guarantee-seal, .gmp-sticky-cta, .gmp-app {
        animation: none !important;
    }
    .gmp-reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   GOOGLE MAP LEAD EXTRACTOR — page-specific additions
   Windows app mockup, screenshot showcase, columns strip
   ═══════════════════════════════════════════════════════════════ */

/* Brand mark can carry a Font Awesome icon instead of a letter */
.gmp-brand-mark i { font-size: 15px; }

/* -------- Hero visual: Windows app mockup / real screenshot -------- */
.gmp-hero-visual {
    min-height: 460px;
    max-width: 100%;
}
@media (min-width: 900px) {
    .gmp-hero-visual { min-height: 540px; }
}
.gmp-app {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: #0b1220;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 40px 80px -30px rgba(15,23,42,.55),
        0 0 0 1px rgba(255,255,255,.05);
    animation: gmpAppFloat 7s ease-in-out infinite;
    transform-origin: center;
}
@keyframes gmpAppFloat {
    0%,100% { transform: translateY(0) rotate(-0.5deg); }
    50%     { transform: translateY(-10px) rotate(0.5deg); }
}
.gmp-app-titlebar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 14px;
    background: linear-gradient(180deg, #1e293b, #0f172a);
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: #e2e8f0;
    font-size: 12px;
}
.gmp-app-title { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.gmp-app-title i { color: #10b981; }
.gmp-app-controls { display: inline-flex; gap: 12px; color: #64748b; font-size: 11px; }
.gmp-app-shot { display: block; width: 100%; height: auto; }
.gmp-app-body {
    display: grid; grid-template-columns: 190px 1fr;
    background: #f8fafc;
    min-height: 400px;
}
@media (max-width: 480px) {
    .gmp-app-body { grid-template-columns: 130px 1fr; min-height: 340px; }
}
.gmp-app-side {
    padding: 14px 12px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    display: flex; flex-direction: column; gap: 10px;
}
.gmp-app-brand {
    display: inline-flex; align-items: center; gap: 6px;
    color: #0f172a; font-weight: 800; font-size: 13px;
    padding-bottom: 8px; border-bottom: 1px solid #e2e8f0;
}
.gmp-app-brand i { color: #2563eb; }
.gmp-app-license {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 10px; border-radius: 8px;
    background: #dcfce7; color: #16a34a;
    font-size: 10px; font-weight: 800;
}
.gmp-app-field label {
    display: block; font-size: 9px; font-weight: 800;
    color: #64748b; letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 4px;
}
.gmp-app-field input,
.gmp-app-field textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 11px; font-family: inherit;
    color: #0f172a; background: #fff;
    resize: none;
    pointer-events: none;
}
.gmp-app-field textarea { height: 44px; }
.gmp-app-toggles {
    display: flex; flex-direction: column; gap: 6px;
    padding: 6px 0;
    font-size: 10px; color: #334155;
}
.gmp-app-toggles > div { display: inline-flex; align-items: center; gap: 5px; }
.gmp-app-toggles i { color: #16a34a; font-size: 12px; }
.gmp-app-pro {
    padding: 5px 8px; border-radius: 6px;
    background: #fef3c7; color: #b45309;
    font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px;
}
.gmp-app-pro i { color: #f59e0b; }
.gmp-app-pro span {
    margin-left: auto;
    background: #f59e0b; color: #fff;
    padding: 2px 6px; border-radius: 4px;
    font-size: 8px; font-weight: 800; letter-spacing: .08em;
}
.gmp-app-start {
    margin-top: 6px;
    padding: 10px;
    border: none; border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: #fff; font-weight: 800; font-size: 11px;
    cursor: default;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    box-shadow: 0 8px 16px -6px rgba(37,99,235,.4);
    font-family: inherit;
}
.gmp-app-main {
    padding: 14px 12px;
    display: flex; flex-direction: column; gap: 10px;
    overflow: hidden;
}
.gmp-app-grid {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    font-size: 10px;
}
.gmp-app-row {
    display: grid;
    grid-template-columns: 1.1fr 0.5fr 0.6fr 1.5fr 1.1fr 1fr;
    gap: 6px;
    padding: 6px 8px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
}
.gmp-app-row > span {
    overflow: hidden; text-overflow: ellipsis;
}
.gmp-app-row:last-child { border-bottom: none; }
.gmp-app-head {
    background: #f8fafc;
    color: #64748b; font-weight: 800;
    text-transform: uppercase; letter-spacing: .04em;
    font-size: 9px;
}
.gmp-e { color: #2563eb; }
.gmp-app-kpis {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.gmp-app-kpi {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}
.gmp-app-kpi b {
    display: block;
    color: #2563eb; font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800; font-size: 18px; line-height: 1;
}
.gmp-app-kpi span {
    font-size: 9px; color: #64748b;
    text-transform: uppercase; letter-spacing: .06em;
}

/* Floating badges around the app (override phone-mockup positions) */
.gmp-float-speed  { left: -12px; top: 30px; }
.gmp-float-excel  { right: -14px; top: 45%; }
.gmp-float-fresh  { right: 10px; bottom: -14px; }
.gmp-float-speed i  { color: #f59e0b; }
.gmp-float-excel i  { color: #16a34a; }
.gmp-float-fresh i  { color: #2563eb; }
@media (min-width: 900px) {
    .gmp-float-speed  { left: -30px; top: 40px; }
    .gmp-float-excel  { right: -34px; }
    .gmp-float-fresh  { right: -14px; bottom: -20px; }
}
@media (max-width: 480px) {
    .gmp-float-speed  { top: 10px; }
    .gmp-float-excel  { top: 35%; }
    .gmp-float-fresh  { bottom: -8px; }
}

/* -------- Demo section: screenshot showcase -------- */
.gmp-demo-showcase {
    display: grid; grid-template-columns: 1fr; gap: 30px;
    max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) {
    .gmp-demo-showcase { grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: start; }
}
.gmp-shot { margin: 0; }
.gmp-shot-frame {
    background: #0b1220;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 80px -40px rgba(15,23,42,.4), 0 0 0 1px rgba(15,23,42,.05);
    transition: transform .35s ease;
}
.gmp-shot-frame:hover { transform: translateY(-4px); }
.gmp-shot-tabs {
    display: flex; gap: 6px;
    padding: 10px 14px;
    background: linear-gradient(180deg, #1e293b, #0f172a);
}
.gmp-shot-tabs span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.15);
}
.gmp-shot-tabs span:nth-child(1) { background: #ef4444; }
.gmp-shot-tabs span:nth-child(2) { background: #f59e0b; }
.gmp-shot-tabs span:nth-child(3) { background: #10b981; }
.gmp-shot-frame img { display: block; width: 100%; height: auto; }
.gmp-shot figcaption {
    text-align: center; margin-top: 14px;
    color: #64748b; font-size: 14px; line-height: 1.55;
    padding: 0 10px;
}
.gmp-shot-fallback {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border: 2px dashed rgba(37,99,235,.35);
    border-radius: 16px;
    padding: 40px 24px; text-align: center;
    color: #475569;
}
.gmp-shot-fallback i { font-size: 40px; color: #2563eb; margin-bottom: 12px; display: block; }
.gmp-shot-fallback p { margin: 4px 0; }
.gmp-shot-fallback b { color: #0f172a; font-size: 16px; }
.gmp-shot-fallback-help { font-size: 13px; line-height: 1.6; }
.gmp-shot-fallback code {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 12px;
    color: #2563eb;
    font-family: monospace;
    word-break: break-all;
}

/* -------- 16 columns chip strip -------- */
.gmp-columns-strip {
    max-width: 1100px; margin: 40px auto 0;
    display: flex; flex-wrap: wrap; gap: 8px 10px;
    justify-content: center; align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}
.gmp-columns-label {
    color: #0f172a; font-weight: 800; font-size: 13px;
    padding-right: 6px;
    display: inline-flex; align-items: center;
}
.gmp-col-chip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 11px;
    background: #eff6ff; color: #1e3a8a;
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
}
.gmp-col-chip i { color: #10b981; font-size: 10px; }

/* Hide phone-mockup styles left over from the copied framework — they
   are not used on this page (we render .gmp-app instead) */
.gmp-page .gmp-phone,
.gmp-page .gmp-card-hero,
.gmp-page .gmp-phone-notch,
.gmp-page .gmp-float-qr,
.gmp-page .gmp-float-lead,
.gmp-page .gmp-float-review { display: none; }
