/* ============================================================
   Goo.Reviews — Core Product Feature Sections
   Scoped styles (all classes prefixed .gr-) — safe to load
   alongside style.css / custom.css without side effects.
   ============================================================ */

/* ---------- shared ---------- */
.gr-eyebrow {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e52f37;
    background: rgba(229, 47, 55, 0.08);
    border-radius: 14px;
    padding: 6px 14px;
    margin-bottom: 14px;
}

.gr-feature-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 10px;
}

.gr-feature-list li {
    position: relative;
    padding: 6px 0 6px 34px;
    font-size: 16px;
    color: #444;
}

.gr-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(229, 47, 55, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e52f37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

.gr-cta-row { margin-top: 8px; }

.gr-cta-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #e52f37;
    margin-left: 18px;
    white-space: nowrap;
}

.gr-cta-link:hover { color: #b8232a; text-decoration: none; }

/* ---------- mockup shells ---------- */
.gr-mock {
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 16px;
    box-shadow: 0 24px 60px -18px rgba(21, 27, 38, 0.18);
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

.gr-mock-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f7f8fa;
    border-bottom: 1px solid #eceef2;
}

.gr-mock-head .gr-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.gr-dot-r { background: #ff5f57; } .gr-dot-y { background: #febc2e; } .gr-dot-g { background: #28c840; }

.gr-mock-title {
    margin-left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #6c6f76;
    letter-spacing: 0.4px;
}

.gr-mock-body { padding: 18px; }

/* KPI chips */
.gr-kpis { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.gr-kpi {
    flex: 1 1 100px;
    min-width: 100px;
    background: #f8f9fb;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 12px 14px;
}

.gr-kpi b { display: block; font-family: 'Nunito', sans-serif; font-size: 20px; color: #1c212b; line-height: 1.2; }
.gr-kpi span { font-size: 11.5px; color: #8a8f99; }
.gr-kpi .gr-up { color: #1eae5f; font-size: 12px; font-weight: 700; margin-left: 4px; }

/* review rows */
.gr-review {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #f1f2f5;
    align-items: flex-start;
}

.gr-avatar {
    width: 36px; height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
}

.gr-review p { margin: 2px 0 0; font-size: 13px; color: #555; line-height: 1.45; }
.gr-review .gr-name { font-size: 13.5px; font-weight: 700; color: #23272f; }
.gr-stars { color: #f5a623; font-size: 12px; letter-spacing: 1.5px; }

.gr-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 9px;
    margin-left: 8px;
    vertical-align: 1px;
}

.gr-tag-pos { color: #1eae5f; background: rgba(30, 174, 95, 0.12); }
.gr-tag-neu { color: #b98a00; background: rgba(245, 166, 35, 0.14); }
.gr-tag-neg { color: #d5303e; background: rgba(229, 47, 55, 0.12); }
.gr-tag-ai  { color: #5b46d8; background: rgba(101, 82, 224, 0.12); }

/* donut */
.gr-donut-wrap { display: flex; align-items: center; gap: 16px; padding: 6px 0 14px; }

.gr-donut {
    width: 92px; height: 92px; flex: 0 0 92px;
    border-radius: 50%;
    background: conic-gradient(#1eae5f 0 68%, #f5a623 68% 87%, #e52f37 87% 100%);
    position: relative;
}

.gr-donut::after {
    content: "4.6";
    position: absolute; inset: 14px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700; font-size: 20px; color: #1c212b;
}

.gr-legend { font-size: 12px; color: #6c6f76; }
.gr-legend div { margin: 3px 0; }
.gr-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 7px; }

/* google profile rows */
.gr-gbp-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid #f1f2f5;
    font-size: 13.5px;
    color: #3c4043;
}

.gr-gbp-row:first-of-type { border-top: 0; }

.gr-gbp-ico {
    width: 34px; height: 34px; flex: 0 0 34px;
    border-radius: 9px;
    background: #f2f4f7;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
}

.gr-gbp-row .gr-edit {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.08);
    border-radius: 10px;
    padding: 3px 10px;
    white-space: nowrap;
}

.gr-sync {
    display: flex; align-items: center; gap: 8px;
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(30, 174, 95, 0.08);
    border: 1px dashed rgba(30, 174, 95, 0.4);
    border-radius: 10px;
    font-size: 12.5px; font-weight: 600; color: #17864a;
}

.gr-pulse {
    width: 9px; height: 9px; border-radius: 50%;
    background: #1eae5f;
    box-shadow: 0 0 0 rgba(30,174,95,.5);
    animation: gr-pulse 1.8s infinite;
}

@keyframes gr-pulse {
    0% { box-shadow: 0 0 0 0 rgba(30,174,95,.45); }
    70% { box-shadow: 0 0 0 9px rgba(30,174,95,0); }
    100% { box-shadow: 0 0 0 0 rgba(30,174,95,0); }
}

/* health bar */
.gr-health { margin-top: 14px; }
.gr-health .gr-health-label { display: flex; justify-content: space-between; font-size: 12px; color: #6c6f76; margin-bottom: 5px; }
.gr-health .gr-health-label b { color: #1eae5f; }
.gr-bar-track { height: 8px; border-radius: 6px; background: #eef0f4; overflow: hidden; }
.gr-bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, #35c26e, #1eae5f); }

/* locations table */
.gr-loc-row {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 0;
    border-top: 1px solid #f1f2f5;
    font-size: 13px; color: #3c4043;
}

.gr-loc-row:first-of-type { border-top: 0; }

.gr-loc-pin {
    width: 32px; height: 32px; flex: 0 0 32px;
    border-radius: 50%;
    background: rgba(229, 47, 55, 0.09);
    color: #e52f37;
    font-weight: 700; font-size: 13px;
    font-family: 'Nunito', sans-serif;
    display: flex; align-items: center; justify-content: center;
}

.gr-loc-meta { min-width: 0; }
.gr-loc-meta b { display: block; font-size: 13.5px; color: #23272f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-loc-meta span { font-size: 11.5px; color: #8a8f99; }

.gr-loc-score { margin-left: auto; text-align: right; white-space: nowrap; }
.gr-loc-score b { font-family: 'Nunito', sans-serif; color: #1c212b; }
.gr-mini-track { width: 84px; height: 6px; border-radius: 4px; background: #eef0f4; margin-top: 5px; overflow: hidden; }
.gr-mini-fill { height: 100%; border-radius: 4px; background: #e52f37; }

/* post editor */
.gr-post-types { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }

.gr-post-type {
    font-size: 12px; font-weight: 700;
    color: #6c6f76;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    padding: 6px 14px;
}

.gr-post-type.gr-active { color: #fff; background: #e52f37; border-color: #e52f37; }

.gr-post-canvas {
    border: 1px solid #eef0f4;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 14px;
    font-size: 13px; color: #555;
    line-height: 1.5;
}

.gr-ai-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 700;
    color: #5b46d8;
    background: rgba(101, 82, 224, 0.1);
    border-radius: 12px;
    padding: 4px 11px;
    margin-bottom: 9px;
}

.gr-post-actions { display: flex; align-items: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

.gr-btn-mock {
    font-family: 'Nunito', sans-serif;
    font-size: 12.5px; font-weight: 700;
    border-radius: 16px;
    padding: 8px 18px;
    color: #fff; background: #e52f37;
    white-space: nowrap;
}

.gr-btn-mock.gr-ghost { color: #6c6f76; background: #f2f4f7; }
.gr-sched { font-size: 12px; color: #8a8f99; margin-left: auto; white-space: nowrap; }

/* analytics chart */
.gr-chart { width: 100%; height: auto; display: block; }

.gr-plat-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #555; margin-top: 9px; }
.gr-plat-row span:first-child { flex: 0 0 86px; }
.gr-plat-row .gr-bar-track { flex: 1; }
.gr-plat-row b { flex: 0 0 38px; text-align: right; font-family: 'Nunito', sans-serif; color: #1c212b; }
.gr-fill-g { background: linear-gradient(90deg,#4285f4,#1a73e8); }
.gr-fill-f { background: linear-gradient(90deg,#5c9bff,#3b5998); }
.gr-fill-t { background: linear-gradient(90deg,#3fd08b,#00b67a); }
.gr-fill-y { background: linear-gradient(90deg,#ff5b62,#d32323); }

/* AI replies conversation */
.gr-chat { display: flex; flex-direction: column; gap: 12px; }

.gr-bubble {
    max-width: 88%;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px; line-height: 1.5; color: #444;
    background: #f2f4f7;
    border-top-left-radius: 4px;
}

.gr-bubble.gr-reply {
    align-self: flex-end;
    background: rgba(229, 47, 55, 0.07);
    border: 1px solid rgba(229, 47, 55, 0.18);
    border-top-left-radius: 14px;
    border-top-right-radius: 4px;
}

.gr-bubble .gr-who { display: block; font-size: 11px; font-weight: 700; color: #8a8f99; margin-bottom: 4px; letter-spacing: .3px; }

.gr-tones { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 4px; }

.gr-tone {
    font-size: 11px; font-weight: 700;
    color: #6c6f76;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    padding: 4px 12px;
}

.gr-tone.gr-active { color: #e52f37; border-color: rgba(229,47,55,.45); background: rgba(229,47,55,.07); }

/* QR product mockups */
.gr-qr-stage {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    padding: 10px 0 4px;
}

.gr-standee {
    flex: 0 1 190px;
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 14px;
    box-shadow: 0 20px 45px -16px rgba(21,27,38,.25);
    padding: 18px 16px 14px;
    text-align: center;
}

.gr-standee .gr-standee-title { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13.5px; color: #1c212b; line-height: 1.3; }
.gr-standee .gr-standee-sub { font-size: 10.5px; color: #8a8f99; margin: 3px 0 10px; }
.gr-qr-svg { width: 108px; height: 108px; margin: 0 auto; display: block; }
.gr-standee .gr-standee-brand { margin-top: 10px; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #e52f37; text-transform: uppercase; }

.gr-nfc {
    flex: 0 1 150px;
    background: linear-gradient(135deg, #23272f, #3a4150);
    border-radius: 14px;
    box-shadow: 0 18px 40px -14px rgba(21,27,38,.4);
    padding: 16px 14px;
    color: #fff;
    text-align: left;
}

.gr-nfc .gr-nfc-wave { font-size: 16px; opacity: .85; }
.gr-nfc b { display: block; font-family: 'Nunito', sans-serif; font-size: 13px; margin-top: 26px; }
.gr-nfc span { font-size: 10px; color: #aeb4bf; }

.gr-tent {
    flex: 0 1 130px;
    background: #fff5f5;
    border: 1px solid rgba(229,47,55,.25);
    border-radius: 12px 12px 4px 4px;
    padding: 14px 12px;
    text-align: center;
    transform: skewY(-2deg);
    box-shadow: 0 14px 30px -12px rgba(21,27,38,.2);
}

.gr-tent b { display: block; font-family: 'Nunito', sans-serif; font-size: 12px; color: #1c212b; margin-bottom: 8px; line-height: 1.3; }
.gr-tent .gr-qr-svg { width: 74px; height: 74px; }

.gr-flow { display: flex; gap: 0; margin-top: 22px; flex-wrap: wrap; }

.gr-flow-step { flex: 1 1 0; min-width: 120px; text-align: center; position: relative; padding: 0 8px; }

.gr-flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 19px; right: -11px;
    width: 22px; height: 2px;
    background: repeating-linear-gradient(90deg, #d8dbe2 0 4px, transparent 4px 8px);
}

.gr-flow-num {
    width: 38px; height: 38px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: rgba(229,47,55,.09);
    color: #e52f37;
    font-family: 'Nunito', sans-serif;
    font-weight: 700; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}

.gr-flow-step b { display: block; font-size: 13px; color: #23272f; font-family: 'Nunito', sans-serif; }
.gr-flow-step span { font-size: 11.5px; color: #8a8f99; line-height: 1.35; display: block; margin-top: 2px; }

/* section intro banner */
.gr-intro { padding-top: 10px; }
.gr-intro h2 { margin-bottom: 12px; }
.gr-intro p { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- responsive ---------- */
@media (max-width: 991px) {
    .gr-qr-stage { flex-wrap: wrap; align-items: center; }
}

@media (max-width: 767px) {
    .gr-mock { margin: 26px 0 6px; }
    .gr-kpi b { font-size: 17px; }
    .gr-feature-list li { font-size: 15px; }
    .gr-cta-link { display: inline-block; margin: 12px 0 0; }
    .gr-flow { gap: 14px; }
    .gr-flow-step { flex: 1 1 40%; }
    .gr-flow-step:not(:last-child)::after { display: none; }
    .gr-donut { width: 78px; height: 78px; flex-basis: 78px; }
    .gr-donut::after { inset: 12px; font-size: 17px; }
    .gr-qr-stage { gap: 14px; }
    .gr-sched { margin-left: 0; flex-basis: 100%; }
}

/* ============================================================
   v2 additions — inbox, campaigns, mobile app, widgets,
   enterprise, trust strip
   ============================================================ */

/* unified inbox */
.gr-inbox-tabs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 12px; }

.gr-inbox-tab {
    font-size: 11.5px; font-weight: 700;
    color: #6c6f76;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    padding: 4px 12px;
}

.gr-inbox-tab.gr-active { color: #e52f37; background: rgba(229,47,55,.08); border-color: rgba(229,47,55,.35); }

.gr-inbox-row {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 0;
    border-top: 1px solid #f1f2f5;
    font-size: 13px; color: #444;
}

.gr-inbox-ico {
    width: 30px; height: 30px; flex: 0 0 30px;
    border-radius: 8px;
    background: #f2f4f7;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #5f6368;
}

.gr-inbox-row .gr-inbox-txt { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-inbox-row .gr-when { font-size: 11px; color: #a0a4ad; white-space: nowrap; }
.gr-inbox-row .gr-reply-link { font-size: 11.5px; font-weight: 700; color: #e52f37; white-space: nowrap; }

/* campaigns / whatsapp */
.gr-chan-tabs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 12px; }

.gr-chan {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 700;
    color: #6c6f76;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    padding: 5px 13px;
}

.gr-chan.gr-active { color: #128c4b; background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.45); }

.gr-wa-bubble {
    background: #e7f9ee;
    border: 1px solid #c9efd8;
    border-radius: 12px;
    border-top-left-radius: 4px;
    padding: 11px 14px;
    font-size: 13px; color: #1e5c3a; line-height: 1.5;
    max-width: 94%;
}

.gr-wa-bubble .gr-wa-link { color: #128c4b; font-weight: 700; text-decoration: underline; }

.gr-seq {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-top: 13px;
    font-size: 11.5px; color: #8a8f99;
}

.gr-seq b {
    font-family: 'Nunito', sans-serif; font-size: 11px;
    color: #23272f;
    background: #f2f4f7;
    border-radius: 10px;
    padding: 3px 10px;
    white-space: nowrap;
}

.gr-seq .gr-seq-arrow { color: #c3c8d1; }
.gr-seq .gr-seq-stop { color: #17864a; background: rgba(30,174,95,.1); }

/* mobile app phone */
.gr-phone-stage { display: flex; justify-content: center; }

.gr-phone {
    width: 232px;
    border: 2px solid #d8dbe2;
    border-radius: 30px;
    background: #f7f8fa;
    padding: 14px 12px 18px;
    box-shadow: 0 24px 55px -18px rgba(21,27,38,.25);
}

.gr-phone-notch { width: 64px; height: 6px; border-radius: 4px; background: #d8dbe2; margin: 0 auto 13px; }

.gr-phone-card {
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 13px;
    padding: 11px 13px;
    margin-bottom: 10px;
}

.gr-phone-card .gr-push-label { font-size: 10.5px; font-weight: 700; color: #8a8f99; letter-spacing: .4px; }
.gr-phone-card .gr-push-label .fa-bell { color: #e52f37; margin-right: 4px; }
.gr-phone-card p { margin: 5px 0 0; font-size: 12.5px; color: #444; line-height: 1.45; }
.gr-phone-card .gr-phone-cta { display: inline-block; margin-top: 7px; font-size: 11px; font-weight: 700; color: #fff; background: #e52f37; border-radius: 12px; padding: 4px 12px; }
.gr-phone-card b.gr-phone-metric { font-family: 'Nunito', sans-serif; font-size: 19px; color: #1c212b; }

.gr-store-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.gr-store-badge {
    display: inline-flex; align-items: center; gap: 9px;
    border: 1px solid #d8dbe2;
    border-radius: 10px;
    padding: 8px 16px;
    color: #23272f !important;
    background: #fff;
    transition: all .3s ease;
}

.gr-store-badge:hover { border-color: #e52f37; text-decoration: none; }
.gr-store-badge i { font-size: 21px; }
.gr-store-badge span { display: block; font-size: 9.5px; color: #8a8f99; line-height: 1.1; text-transform: uppercase; letter-spacing: .4px; }
.gr-store-badge b { display: block; font-family: 'Nunito', sans-serif; font-size: 13.5px; line-height: 1.2; }
.gr-store-badge .gr-soon { font-size: 9px; font-weight: 700; color: #b98a00; background: rgba(245,166,35,.15); border-radius: 8px; padding: 1px 7px; margin-left: 4px; vertical-align: 2px; }

/* website widget embed */
.gr-embed-bar {
    display: flex; align-items: center; gap: 7px;
    font-size: 11px; color: #8a8f99;
    background: #f2f4f7;
    border-radius: 8px;
    padding: 7px 11px;
    margin-bottom: 12px;
}

.gr-embed-cards { display: flex; gap: 10px; }

.gr-embed-card {
    flex: 1;
    background: #f8f9fb;
    border: 1px solid #eef0f4;
    border-radius: 10px;
    padding: 11px 12px;
}

.gr-embed-card .gr-stars { font-size: 11px; }
.gr-embed-card p { margin: 5px 0 0; font-size: 12px; color: #555; line-height: 1.45; }
.gr-embed-foot { font-size: 11px; color: #a0a4ad; margin-top: 11px; }
.gr-embed-foot b { color: #23272f; }

/* enterprise band */
.gr-ent-grid { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.gr-ent-card {
    flex: 1 1 200px;
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: all .3s ease;
}

.gr-ent-card:hover { box-shadow: 0 16px 38px -14px rgba(21,27,38,.18); transform: translateY(-3px); }
.gr-ent-card i { font-size: 26px; color: #e52f37; }
.gr-ent-card b { display: block; font-family: 'Nunito', sans-serif; font-size: 16px; color: #1c212b; margin: 12px 0 6px; }
.gr-ent-card span { font-size: 13px; color: #6c6f76; line-height: 1.5; }

/* trust strip */
.gr-trust-strip {
    display: flex; justify-content: center; align-items: center;
    gap: 34px; flex-wrap: wrap;
    padding: 26px 15px;
    border-top: 1px solid #f1f2f5;
}

.gr-trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: #6c6f76; }
.gr-trust-item i { font-size: 17px; color: #e52f37; }

@media (max-width: 767px) {
    .gr-phone { width: 200px; }
    .gr-trust-strip { gap: 14px 22px; padding: 20px 10px; }
    .gr-ent-card { flex-basis: 45%; padding: 18px 14px; }
    .gr-embed-cards { flex-direction: column; }
    .gr-store-badge { flex: 1 1 45%; justify-content: center; }
}

/* 5-step flow variant */
.gr-flow-5 .gr-flow-step { min-width: 74px; padding: 0 5px; }
.gr-flow-5 .gr-flow-step b { font-size: 12px; }
.gr-flow-5 .gr-flow-step span { font-size: 10.5px; }
.gr-flow-5 .gr-flow-num { width: 34px; height: 34px; font-size: 14px; }
.gr-flow-5 .gr-flow-step:not(:last-child)::after { top: 17px; right: -12px; width: 18px; }

@media (max-width: 767px) {
    .gr-flow-5 .gr-flow-step { flex: 1 1 30%; min-width: 90px; }
    .gr-flow-5 .gr-flow-step span { font-size: 11px; }
}

/* ---------- flow stepper UI fix ---------- */
.gr-flow {
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 14px;
    box-shadow: 0 14px 34px -16px rgba(21, 27, 38, 0.14);
    padding: 18px 8px 16px;
    margin-top: 26px;
    align-items: flex-start;
}

.gr-flow-step { padding: 0 6px; }

.gr-flow-num { margin-bottom: 10px; }

.gr-flow-step b {
    min-height: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.3;
}

.gr-flow-step span { margin-top: 0; }

.gr-flow-step:not(:last-child)::after {
    content: "\203A";
    background: none;
    width: auto; height: auto;
    top: 4px; right: -6px;
    font-size: 19px;
    line-height: 1;
    color: #d0d4db;
    font-family: 'Nunito', sans-serif;
}

.gr-flow-5 .gr-flow-step { flex: 1 1 0; min-width: 0; padding: 0 6px; }
.gr-flow-5 .gr-flow-num { width: 32px; height: 32px; font-size: 13.5px; }
.gr-flow-5 .gr-flow-step b { font-size: 12px; min-height: 32px; }
.gr-flow-5 .gr-flow-step span { font-size: 10.5px; line-height: 1.4; }
.gr-flow-5 .gr-flow-step:not(:last-child)::after { top: 5px; right: -5px; font-size: 17px; }

@media (max-width: 767px) {
    .gr-flow { padding: 16px 10px 6px; }
    .gr-flow-step, .gr-flow-5 .gr-flow-step { flex: 1 1 30%; min-width: 92px; margin-bottom: 12px; }
    .gr-flow-step b, .gr-flow-5 .gr-flow-step b { min-height: 0; }
    .gr-flow-step:not(:last-child)::after, .gr-flow-5 .gr-flow-step:not(:last-child)::after { display: none; }
}

/* ---------- gr-steps: rebuilt 5-step stepper ---------- */
.gr-steps {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eceef2;
    border-radius: 14px;
    box-shadow: 0 14px 34px -16px rgba(21, 27, 38, 0.14);
    padding: 22px 12px 18px;
    margin-top: 26px;
}

.gr-step {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    text-align: center;
    padding: 0 5px;
}

.gr-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 16px;
    left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 2px;
    background: rgba(229, 47, 55, 0.18);
}

.gr-step-num {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    background: #e52f37;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 12px -4px rgba(229, 47, 55, 0.5);
}

.gr-step b {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    color: #23272f;
    line-height: 1.3;
    margin: 11px 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gr-step span:not(.gr-step-num) {
    display: block;
    font-size: 11px;
    color: #8a8f99;
    line-height: 1.45;
}

@media (max-width: 767px) {
    .gr-steps { flex-wrap: wrap; padding: 18px 10px 8px; row-gap: 14px; }
    .gr-step { flex: 1 1 33%; min-width: 100px; margin-bottom: 4px; }
    .gr-step:not(:last-child)::before { display: none; }
    .gr-step b { white-space: normal; }
}

/* ============================================================
   Mobile responsive fixes for existing homepage sections
   (benefits / features / business profile / have-a-question)
   Loaded after style.css & custom.css, so these overrides win.
   ============================================================ */
@media (max-width: 767px) {

    /* stop wow slideInLeft/Right animations creating sideways scroll */
    body { overflow-x: hidden; }

    /* benefits & features lists: un-float, keep disc markers inside */
    ul.benefits { padding-left: 0; margin-bottom: 12px; }
    ul.benefits li { float: none; display: block; width: 100%; font-size: 15.5px; line-height: 1.6; }
    ul.benefits.deeps-ul { padding-left: 22px; }
    ul.benefits.deeps-ul li { margin-bottom: 10px; }

    /* video / image columns in those sections: full width, sane spacing */
    .section-white video { width: 100% !important; max-width: 100%; display: block; margin: 18px 0 6px; border-radius: 10px; }
    .section-white .margin-top-50 { margin-top: 0 !important; }
    .section-white .top-margins-images, .section-white .bottom-margins-images { margin-top: 10px; margin-bottom: 10px; }

    /* have-a-question card: icon on top, centered content */
    .red-boxed-area {
        padding: 140px 18px 1.5rem !important;
        background-position: center 26px !important;
        background-size: 96px auto !important;
        text-align: center;
    }
    .red-boxed-area h2 {
        font-size: 1.35em !important;
        line-height: 1.35;
        text-align: center;
        word-break: break-word;
    }
    .red-boxed-area p { text-align: center; margin-bottom: 0 !important; }
    .red-boxed-area .wpb_wrapper { text-align: center !important; }

    /* support avatars: horizontal centered row */
    .online-users-contact { padding-left: 0 !important; text-align: center; margin-top: 14px; }
    .online-user { max-width: 74px; margin: 0 7px 10px !important; }
    .online-user img { max-width: 64px; border-width: 5px; }
    .online-user--online, .online-user--connecting { border-width: 3px; }
    .online-user--online::after { width: 18px; height: 18px; top: -3px; right: -2px; }

    .callrow { padding: 0; }
}

@media (max-width: 480px) {
    .red-boxed-area { padding: 128px 14px 1.25rem !important; background-size: 84px auto !important; }
    .red-boxed-area h2 { font-size: 1.2em !important; }
    .online-user { max-width: 64px; }
    .online-user img { max-width: 56px; }
}

/* ============================================================
   Mobile fix v2 — wow.js leaves .wow elements visibility:hidden
   on mobile (animations disabled), hiding all mockup cards and
   creating giant blank gaps. Force them visible below 992px.
   ============================================================ */
@media (max-width: 991px) {
    .wow {
        visibility: visible !important;
        -webkit-animation: none !important;
        animation: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 767px) {
    /* restore disc markers (display:block removed them) */
    ul.benefits li { display: list-item; }
    ul.benefits.deeps-ul li { list-style: disc; }

    /* tighten hero + section rhythm on phones */
    .home-section .margin-top-120 { margin-top: 40px !important; }
    .home-section .margin-top-60 { margin-top: 20px !important; }

    /* consistent breathing room around media in old sections */
    .section-white .app-image { margin: 14px 0; }

    /* new feature sections: consistent spacing when stacked */
    .gr-mock, .gr-phone-stage, .gr-qr-stage { margin-top: 24px; margin-bottom: 4px; }
    .gr-steps { margin-top: 18px; }
    .gr-eyebrow { margin-bottom: 10px; }
    .gr-cta-row { margin-top: 4px; }
    .gr-ent-grid { margin-top: 18px; }
}

/* ---------- bulletproof list fix (all widths) ---------- */
ul.benefits.deeps-ul {
    padding-left: 24px !important;
    margin-left: 0 !important;
    list-style-position: outside;
}

ul.benefits.deeps-ul li {
    float: none !important;
    display: list-item !important;
    list-style: disc !important;
    width: auto !important;
    margin-bottom: 8px;
}
