/* =========================================================
   Universal Review & Rating Platform - Main Stylesheet
   Colorful, responsive, normal human-readable font
========================================================= */

:root{
    --primary:#0E9F6E;
    --primary-dark:#0B7A54;
    --primary-light:#E6F8F1;
    --navy:#1A2B4C;
    --navy-light:#2C406B;
    --accent:#F5A623;
    --accent-soft:#FFF3DE;
    --danger:#E5484D;
    --bg:#F6F8FA;
    --surface:#FFFFFF;
    --text:#1A2B4C;
    --muted:#6B7280;
    --border:#E7EAF0;
    --radius:5px;
    --radius-sm:5px;
    --shadow-sm:0 2px 8px rgba(26,43,76,.06);
    --shadow-md:0 8px 28px rgba(26,43,76,.10);
}

*{box-sizing:border-box;}
html, body{overflow-x:hidden; max-width:100%;}
body{
    margin:0;
    font-family:'Roboto', Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.65;
    font-size:15px;
    -webkit-font-smoothing:antialiased;
    word-wrap:break-word;
    overflow-wrap:break-word;
}
p, h1, h2, h3, .review-card, .card{word-wrap:break-word; overflow-wrap:break-word; word-break:break-word;}
a{text-decoration:none; color:var(--primary-dark);}
img{max-width:100%;}
h1,h2,h3{font-weight:700; letter-spacing:-.01em;}

/* ---------- Header ---------- */
.site-header{
    background:#fff;
    color:var(--navy);
    position:sticky; top:0; z-index:999;
    box-shadow:0 2px 12px rgba(26,43,76,.06);
    border-bottom:1px solid var(--border);
}
.header-inner{
    max-width:1240px; margin:0 auto; padding:14px 20px;
    display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.site-logo{
    display:flex; align-items:center; gap:10px;
    font-size:20px; font-weight:800; color:var(--navy);
    flex-shrink:0; white-space:nowrap;
}
.site-logo img{height:34px;}

.menu-toggle{
    background:var(--bg); border:1px solid var(--border); border-radius:var(--radius-sm);
    width:42px; height:42px; cursor:pointer; display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:5px; transition:.2s; flex-shrink:0;
}
.menu-toggle:hover{background:var(--primary-light);}
.menu-toggle span{width:20px; height:2.5px; background:var(--navy); border-radius:2px;}

.main-nav{ display:flex; align-items:center; gap:4px; flex:1; justify-content:flex-end; min-width:0; overflow-x:auto; scrollbar-width:none; }
.main-nav::-webkit-scrollbar{ display:none; }
.main-nav a{
    padding:9px 12px; color:var(--navy); font-weight:500; display:flex; gap:6px; align-items:center;
    font-size:13.5px; border-radius:8px; white-space:nowrap; flex-shrink:0;
}
.main-nav a:hover{background:var(--primary-light); color:var(--primary-dark);}
.main-nav hr{border:none; border-top:1px solid var(--border); margin:6px 0; width:100%;}
.main-nav .nav-cta-outline{ border:1.5px solid var(--primary); color:var(--primary); font-weight:600; margin-left:6px; }
.main-nav .nav-cta-outline:hover{ background:var(--primary-light); }
.main-nav .nav-cta-solid{ background:var(--primary); color:#fff; font-weight:600; }
.main-nav .nav-cta-solid:hover{ background:var(--primary-dark); color:#fff; }
.nav-mobile-icon{ display:none; }
.nav-mobile-only{ display:none; }

@keyframes fadeDown{from{opacity:0; transform:translateY(-8px);} to{opacity:1; transform:translateY(0);}}

@media (max-width:1024px){
    .menu-toggle{ display:flex; }
    .main-nav{
        position:absolute; top:100%; left:0; right:0; background:#fff; color:var(--text);
        box-shadow:0 12px 30px rgba(26,43,76,.12);
        padding:10px 16px 16px; display:none; flex-direction:column; align-items:stretch;
        animation:fadeDown .2s ease; border-bottom:1px solid var(--border);
    }
    .main-nav.open{display:flex;}
    .main-nav a{ padding:12px 10px; font-size:15px; }
    .main-nav hr{ display:block; }
    .nav-mobile-icon{ display:inline-block; width:18px; }
    .nav-mobile-only{ display:block; }
    .main-nav .nav-cta-outline, .main-nav .nav-cta-solid{ margin-left:0; justify-content:center; }
}
@media (min-width:1025px){
    .menu-toggle{ display:none; }
}

/* ---------- Premium Hero ---------- */
.hero-premium{
    position:relative; overflow:hidden; text-align:center; color:#fff;
    padding:78px 20px 96px;
    background:linear-gradient(135deg, #101b32 0%, var(--navy) 45%, #223559 100%);
}
.hero-premium::before{
    content:''; position:absolute; inset:0; pointer-events:none; opacity:.5;
    background-image:radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size:24px 24px;
}
.hero-decor{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.hero-orb{ position:absolute; border-radius:50%; filter:blur(70px); }
.hero-orb-1{ width:420px; height:420px; background:radial-gradient(circle, rgba(245,166,35,.35), transparent 70%); top:-170px; right:-110px; animation:heroOrbFloat1 14s ease-in-out infinite; }
.hero-orb-2{ width:380px; height:380px; background:radial-gradient(circle, rgba(14,165,196,.3), transparent 70%); bottom:-160px; left:-100px; animation:heroOrbFloat2 17s ease-in-out infinite; }
.hero-orb-3{ width:260px; height:260px; background:radial-gradient(circle, rgba(124,58,237,.25), transparent 70%); top:40%; left:50%; margin-left:-130px; animation:heroOrbFloat3 20s ease-in-out infinite; }
@keyframes heroOrbFloat1{
    0%,100%{ transform:translate(0,0) scale(1); }
    50%{ transform:translate(-30px,25px) scale(1.08); }
}
@keyframes heroOrbFloat2{
    0%,100%{ transform:translate(0,0) scale(1); }
    50%{ transform:translate(35px,-20px) scale(1.06); }
}
@keyframes heroOrbFloat3{
    0%,100%{ transform:translate(-50%,0) scale(1); opacity:.7; }
    50%{ transform:translate(-50%,-30px) scale(1.15); opacity:1; }
}
.hero-anim{ opacity:0; animation:heroFadeUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes heroFadeUp{
    from{ opacity:0; transform:translateY(18px); }
    to{ opacity:1; transform:translateY(0); }
}
.hero-badge{
    position:relative; overflow:hidden;
    display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.12);
    padding:7px 16px; border-radius:30px; font-size:13px; margin-bottom:18px;
    border:1px solid rgba(255,255,255,.15);
}
.hero-badge::after{
    content:''; position:absolute; top:0; left:-60%; width:40%; height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    animation:heroBadgeShine 3.5s ease-in-out infinite; animation-delay:1.2s;
}
@keyframes heroBadgeShine{
    0%{ left:-60%; }
    35%,100%{ left:130%; }
}
.hero-premium h1{ font-size:38px; margin:0 0 14px; font-weight:800; letter-spacing:-.01em; }
.hero-premium .hero-lead{ font-size:16px; opacity:.88; max-width:620px; margin:0 auto; }
.hero-search-form{
    max-width:600px; margin:30px auto 0; display:flex; flex-wrap:nowrap; gap:8px;
    background:#fff; padding:6px; border-radius:12px;
    box-shadow:0 16px 40px rgba(0,0,0,.25), 0 0 0 0 rgba(245,166,35,.4);
    animation:heroFadeUp .7s cubic-bezier(.2,.7,.2,1) forwards, heroSearchPulse 3.5s ease-in-out infinite;
    animation-delay:.35s, 1.7s;
}
@keyframes heroSearchPulse{
    0%,100%{ box-shadow:0 16px 40px rgba(0,0,0,.25), 0 0 0 0 rgba(245,166,35,.25); }
    50%{ box-shadow:0 16px 40px rgba(0,0,0,.25), 0 0 0 8px rgba(245,166,35,0); }
}
@media (max-width:480px){
    .hero-premium h1{ font-size:28px; }
    .hero-search-form{ padding:5px !important; gap:5px !important; }
    .hero-search-btn{ padding:11px 14px !important; }
    .hero-search-btn-text{ display:none; }
}
@media (prefers-reduced-motion: reduce){
    .hero-orb, .hero-badge::after, .hero-search-form, .hero-anim{ animation:none !important; opacity:1 !important; transform:none !important; }
}

/* ---------- Buttons ---------- */
.btn{
    display:inline-block; padding:11px 24px; border-radius:var(--radius-sm); font-weight:600;
    cursor:pointer; border:none; font-size:14px; transition:.2s;
}
.btn-primary{background:var(--primary); color:#fff;}
.btn-primary:hover{background:var(--primary-dark); transform:translateY(-1px);}
.btn-outline{background:transparent; border:1.5px solid rgba(255,255,255,.5); color:#fff;}

/* ---------- Cards / Containers ---------- */
.container{max-width:1200px; margin:0 auto; padding:0 20px;}
.card{
    background:var(--surface); border-radius:var(--radius); padding:22px;
    box-shadow:var(--shadow-sm); border:1px solid var(--border);
}

/* ---------- Category Grid (Premium Cards) ---------- */
.category-grid{
    display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:20px; margin:30px 0;
}
.biz-grid{
    display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:20px; margin:24px 0;
}
.category-card{
    position:relative; overflow:hidden;
    background:var(--card-bg, var(--surface)); border-radius:14px; padding:26px 22px; text-align:center;
    box-shadow:0 2px 10px rgba(26,43,76,.05); transition:.28s cubic-bezier(.2,.8,.2,1);
    border:1px solid rgba(0,0,0,.04);
}
.category-card:hover{
    transform:translateY(-6px) scale(1.015);
    box-shadow:0 18px 34px -12px rgba(26,43,76,.2);
}
.category-card .icon{
    font-size:24px; margin-bottom:14px;
    width:58px; height:58px; border-radius:14px;
    display:flex; align-items:center; justify-content:center; margin-left:auto; margin-right:auto;
    box-shadow:0 6px 14px -6px rgba(0,0,0,.15);
    transition:.28s;
}
.category-card:hover .icon{ transform:scale(1.08) rotate(-3deg); }
.rating-badge{ box-shadow:0 2px 6px rgba(0,0,0,.06); }
.featured-tag{
    position:absolute; top:10px; right:10px; z-index:2;
    background:linear-gradient(135deg, #F5A623, #E8890C); color:#fff;
    font-size:10px; font-weight:800; letter-spacing:.3px; text-transform:uppercase;
    padding:3px 9px; border-radius:999px; box-shadow:0 3px 8px -2px rgba(0,0,0,.25);
}

/* ---------- Stars ---------- */
.stars{color:var(--accent); font-size:16px; letter-spacing:1px;}
.rating-badge{
    display:inline-flex; align-items:center; gap:5px; background:var(--primary-light);
    color:var(--primary-dark); font-weight:700; padding:4px 10px; border-radius:5px; font-size:13px;
}

/* ---------- Review Card ---------- */
.review-card{
    background:var(--surface); border-radius:5px; padding:18px 20px; margin-bottom:14px;
    box-shadow:var(--shadow-sm); border:1px solid var(--border); border-left:4px solid var(--primary);
}
.review-head{display:flex; align-items:center; gap:12px; margin-bottom:8px;}
.review-avatar{
    width:42px; height:42px; border-radius:50%; background:var(--primary); color:#fff;
    display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px;
    flex-shrink:0;
}
.review-meta{flex:1; min-width:0;}
.review-meta .rname{font-weight:600; font-size:14px; color:var(--navy);}
.review-meta .rdate{font-size:12px; color:var(--muted);}
.review-reply{
    background:var(--primary-light); padding:12px 14px; border-radius:var(--radius-sm); margin-top:10px;
}

/* ---------- Rating Breakdown Bar ---------- */
.rating-bar-row{display:flex; align-items:center; gap:10px; margin-bottom:6px; font-size:13px;}
.rating-bar-track{flex:1; height:8px; background:var(--border); border-radius:6px; overflow:hidden;}
.rating-bar-fill{height:100%; background:var(--accent); border-radius:6px;}

/* ---------- Footer ---------- */
.site-footer{
    background:var(--navy); color:#B8C2D9; margin-top:60px; padding:50px 20px 20px;
}
.footer-inner{
    max-width:1240px; margin:0 auto; display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:25px;
}
.footer-inner-v2{ grid-template-columns:1.6fr 1fr 1fr 1fr 1.3fr; }
.footer-inner h4{color:#fff; margin-bottom:14px; font-size:15.5px;}
.footer-inner a{color:#B8C2D9; display:block; margin-bottom:9px; font-size:13.5px;}
.footer-inner a:hover{color:var(--accent);}
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
    width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.08);
    display:flex; align-items:center; justify-content:center; color:#fff; font-size:14px; margin:0;
}
.footer-social a:hover{ background:var(--primary); color:#fff; }
.footer-newsletter-form{ display:flex; gap:6px; }
.footer-newsletter-form input{
    flex:1; min-width:0; padding:10px 12px; border-radius:8px; border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.06); color:#fff; font-size:13px; font-family:inherit; outline:none;
}
.footer-newsletter-form input::placeholder{ color:#8a93b3; }
.footer-newsletter-form button{
    background:var(--primary); color:#fff; border:none; border-radius:8px; width:42px; flex-shrink:0; cursor:pointer;
}
.footer-newsletter-form button:hover{ background:var(--primary-dark); }
.footer-bottom{
    text-align:center; padding-top:20px; margin-top:30px; border-top:1px solid var(--navy-light);
    font-size:13px; color:#7E8BAB;
}
@media (max-width:1024px){ .footer-inner-v2{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .footer-inner-v2{ grid-template-columns:1fr; } }

/* ---------- Captcha ---------- */
.captcha-box{
    display:flex; align-items:center; gap:10px; background:var(--primary-light); padding:10px 14px;
    border-radius:var(--radius-sm); margin:10px 0;
}
.captcha-question{font-weight:700; font-size:16px; color:var(--primary-dark);}
.captcha-refresh{cursor:pointer; font-size:18px; background:none; border:none; color:var(--primary-dark);}
.input-valid{border-color:var(--primary) !important; background:var(--primary-light);}
.input-invalid{border-color:var(--danger) !important; background:#FDECEC;}

/* ---------- Why Choose Us (Trust Section) ---------- */
.trust-grid{
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:20px; margin-top:28px;
}
@media (max-width:900px){ .trust-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .trust-grid{ grid-template-columns:1fr; } }
.trust-card{
    position:relative; overflow:hidden; padding:26px 24px; border-radius:14px;
    background:var(--surface); border:1px solid var(--border);
    box-shadow:0 2px 10px rgba(26,43,76,.05); transition:.28s;
}
.trust-card::before{
    content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
    background:var(--card-tint);
}
.trust-card > *{ position:relative; z-index:1; }
.trust-card:hover{ transform:translateY(-5px); box-shadow:0 16px 30px -12px rgba(26,43,76,.2); }
.trust-card .icon{
    font-size:22px; width:52px; height:52px; border-radius:13px;
    display:flex; align-items:center; justify-content:center; margin-bottom:14px;
    box-shadow:0 6px 14px -6px rgba(0,0,0,.18);
}
.trust-card h3{ margin:0 0 8px; font-size:16px; color:var(--navy); }
.trust-card p{ margin:0; font-size:13px; color:var(--muted); line-height:1.6; text-align:justify; }

/* ---------- Premium Stat Bar ---------- */
.stat-item{ position:relative; padding:6px 8px; }
.stat-item .num{
    font-size:26px; font-weight:800; color:var(--navy);
    display:flex; align-items:center; justify-content:center; gap:6px;
}
.stat-item .num i{ font-size:16px; }
.stat-item .lbl{ font-size:12.5px; color:var(--muted); margin-top:3px; font-weight:500; }

/* ---------- Section Heading (premium editorial style) ---------- */
.section-eyebrow{
    display:inline-block; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
    color:var(--primary-dark); background:var(--primary-light); padding:5px 14px; border-radius:20px; margin-bottom:10px;
}
.section-head{ text-align:center; max-width:640px; margin:0 auto 32px; }
.section-head h2{ margin:0 0 8px; color:var(--navy); font-size:26px; }
.section-head p{ margin:0; font-size:14px; color:var(--muted); }

/* ---------- How It Works (Step Cards) ---------- */
.step-grid{
    display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:22px; margin-top:8px;
    position:relative;
}
.step-card{
    position:relative; text-align:center; padding:30px 22px 26px; border-radius:14px;
    background:var(--surface); border:1px solid var(--border); box-shadow:0 2px 10px rgba(26,43,76,.05);
    transition:.28s;
}
.step-card:hover{ transform:translateY(-6px); box-shadow:0 18px 34px -14px rgba(26,43,76,.22); }
.step-num{
    width:44px; height:44px; border-radius:50%; margin:0 auto 16px; display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:17px; color:#fff; box-shadow:0 8px 18px -6px rgba(0,0,0,.28);
}
.step-card h3{ margin:0 0 6px; font-size:16px; color:var(--navy); }
.step-card p{ font-size:13px; color:var(--muted); margin:0; }

/* ---------- Premium Review Card ---------- */
.reviews-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
@media (max-width:900px){ .reviews-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .reviews-grid{ grid-template-columns:1fr; } }
.review-card-premium{
    position:relative; overflow:hidden; background:var(--card-bg, var(--surface)); border-radius:14px; padding:22px;
    border:1px solid rgba(0,0,0,.04); box-shadow:0 2px 10px rgba(26,43,76,.05); transition:.25s;
}
.review-card-premium:hover{ transform:translateY(-4px); box-shadow:0 16px 30px -14px rgba(26,43,76,.2); }
.review-card-premium .quote-mark{
    position:absolute; top:14px; right:18px; font-size:34px; color:rgba(26,43,76,.12); opacity:.8; line-height:1;
}

/* ---------- CTA Banner ---------- */
.cta-banner{
    position:relative; overflow:hidden; border-radius:16px; padding:46px 34px;
    background:linear-gradient(120deg, var(--navy) 0%, #253a63 55%, #1A2B4C 100%);
    display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px;
    box-shadow:0 20px 44px -18px rgba(26,43,76,.5);
}
.cta-banner::before{
    content:''; position:absolute; width:280px; height:280px; border-radius:50%;
    background:radial-gradient(circle, rgba(245,166,35,.18), transparent 70%);
    top:-90px; right:-60px; pointer-events:none;
}
.cta-banner .btn-primary{ box-shadow:0 10px 24px -8px rgba(245,166,35,.5); }

/* ---------- Newsletter Card ---------- */
.newsletter-card{
    background:linear-gradient(160deg, var(--primary-light), #fff 70%);
    border:1px solid var(--border); border-radius:16px;
}
.newsletter-icon{
    width:52px; height:52px; border-radius:50%; background:var(--primary); color:#fff;
    display:flex; align-items:center; justify-content:center; font-size:20px; margin:0 auto 12px;
    box-shadow:0 8px 18px -6px rgba(14,159,110,.5);
}

/* =========================================================
   HOMEPAGE V2 (premium, white background, reference layout)
========================================================= */
.accent-text{ color:var(--primary); }
.section-v2{ padding:56px 0; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 34px; }
.section-head h2{ margin:6px 0 0; font-size:26px; color:var(--navy); }
.section-head-row{ display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
.section-head-row h2{ margin:6px 0 0; font-size:26px; color:var(--navy); }
.section-view-all{ font-size:14px; font-weight:600; color:var(--primary); white-space:nowrap; }

/* ---------- Hero v2 ---------- */
.hero-v2{ background:#fff; padding:22px 0 36px; overflow:hidden; }
.hero-v2-inner{ display:flex; align-items:center; gap:50px; }
.hero-v2-text{ flex:1 1 480px; min-width:0; }
.hero-v2-badge{
    display:inline-flex; align-items:center; gap:7px; background:var(--primary-light); color:var(--primary-dark);
    font-size:12.5px; font-weight:700; padding:6px 14px; border-radius:20px; margin-bottom:14px;
}
.hero-v2-text h1{ font-size:40px; line-height:1.2; font-weight:800; color:var(--navy); margin:0 0 14px; letter-spacing:-.01em; }
.hero-v2-desc{ font-size:15.5px; color:var(--muted); max-width:480px; margin:0 0 22px; }
.hero-v2-search{
    display:flex; align-items:center; background:#fff; border:1px solid var(--border); border-radius:12px;
    box-shadow:0 10px 30px -12px rgba(26,43,76,.15); padding:6px; max-width:560px; flex-wrap:wrap;
}
.hvs-field{ display:flex; align-items:center; gap:8px; flex:1 1 180px; padding:10px 12px; min-width:0; }
.hvs-field i{ color:var(--muted); font-size:14px; flex-shrink:0; }
.hvs-field input{ border:none; outline:none; font-size:14px; width:100%; min-width:0; font-family:inherit; color:var(--text); }
.hvs-divider{ width:1px; align-self:stretch; background:var(--border); margin:4px 0; }
.hvs-btn{ flex-shrink:0; border-radius:8px; padding:12px 22px; }
.hero-v2-popular{ margin-top:14px; font-size:13px; color:var(--muted); display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.hero-v2-popular a{ background:var(--bg); border:1px solid var(--border); padding:4px 12px; border-radius:20px; color:var(--navy); font-weight:500; }
.hero-v2-popular a:hover{ background:var(--primary-light); color:var(--primary-dark); }

.hero-v2-media{ flex:1 1 380px; min-width:280px; max-width:520px; position:relative; }
.hero-v2-image{ border-radius:18px; overflow:hidden; box-shadow:0 20px 50px -20px rgba(26,43,76,.35); aspect-ratio:4/3; max-height:400px; }
.hero-v2-image img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-v2-image-fallback{
    width:100%; height:100%; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
    background:linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 60%, var(--primary) 130%);
}
.hero-v2-image-fallback::before{
    content:''; position:absolute; inset:0; opacity:.5;
    background-image:radial-gradient(rgba(255,255,255,.14) 1.5px, transparent 1.5px);
    background-size:22px 22px;
}
.hero-v2-image-fallback i{ position:relative; z-index:1; font-size:min(18vw,86px); color:rgba(255,255,255,.92); filter:drop-shadow(0 10px 20px rgba(0,0,0,.25)); }
.hero-v2-float-card{
    position:absolute; left:-6%; bottom:-30px; width:78%; max-width:270px; background:#fff; border-radius:14px;
    padding:16px 18px; box-shadow:0 18px 40px -14px rgba(26,43,76,.3); animation:heroFadeUp .7s cubic-bezier(.2,.7,.2,1) forwards; opacity:0; animation-delay:.4s;
}
.hvfc-top{ display:flex; justify-content:space-between; align-items:center; gap:8px; margin-bottom:4px; }
.hvfc-top strong{ font-size:13.5px; color:var(--navy); }
.hvfc-verified{ font-size:10.5px; color:var(--primary); font-weight:700; white-space:nowrap; }
.hvfc-stars{ font-size:12px; color:var(--muted); margin-bottom:6px; }
.hvfc-stars .stars{ color:var(--accent); letter-spacing:1px; }
.hvfc-quote{ font-size:12px; color:var(--text); margin:0 0 8px; font-style:italic; }
.hvfc-user{ display:flex; align-items:center; gap:8px; font-size:12px; font-weight:600; color:var(--navy); }
.hvfc-user .review-avatar{ width:26px; height:26px; font-size:11px; }

/* ---------- Stats Strip ---------- */
.stats-strip{ background:#fff; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:26px 0; }
.stats-strip-inner{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.stat-v2{ display:flex; align-items:center; justify-content:center; gap:12px; }
.stat-v2 i{ font-size:26px; flex-shrink:0; }
.stat-v2-num{ font-size:21px; font-weight:800; color:var(--navy); line-height:1.1; }
.stat-v2-lbl{ font-size:12.5px; color:var(--muted); margin-top:2px; }

/* ---------- Why Review ---------- */
.why-review-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.why-review-card{
    background:#fff; border:1px solid var(--border); border-radius:14px; padding:28px 22px; text-align:center;
    box-shadow:0 2px 10px rgba(26,43,76,.04); transition:.25s;
}
.why-review-card:hover{ transform:translateY(-6px); box-shadow:0 18px 34px -16px rgba(26,43,76,.2); }
.wrc-icon{
    width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center;
    font-size:22px; margin:0 auto 16px;
}
.why-review-card h3{ margin:0 0 8px; font-size:15.5px; color:var(--navy); }
.why-review-card p{ margin:0; font-size:13px; color:var(--muted); line-height:1.6; }

/* ---------- Business Owner Section ---------- */
.owner-section{ background:var(--bg); border-radius:24px; }
.owner-inner{ display:flex; align-items:center; gap:50px; }
.owner-media{ flex:1 1 300px; display:flex; justify-content:center; min-width:260px; }
.owner-media img{ width:100%; max-width:380px; border-radius:50%; aspect-ratio:1; object-fit:cover; box-shadow:0 20px 50px -18px rgba(26,43,76,.3); }
.owner-media-fallback{
    width:300px; height:300px; border-radius:50%; position:relative;
    background:linear-gradient(150deg, var(--primary-light) 0%, #fff 75%);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 20px 50px -18px rgba(26,43,76,.25);
}
.owner-media-fallback::before{
    content:''; position:absolute; inset:16px; border-radius:50%; border:2px dashed var(--primary);
    opacity:.35;
}
.owner-media-fallback .omf-icon{
    width:150px; height:150px; border-radius:50%;
    background:linear-gradient(150deg, var(--primary), var(--primary-dark));
    display:flex; align-items:center; justify-content:center;
    font-size:58px; color:#fff; box-shadow:0 14px 30px -10px rgba(14,159,110,.5);
}
.owner-media-fallback .omf-badge{
    position:absolute; right:14px; bottom:22px; width:52px; height:52px; border-radius:50%;
    background:#fff; color:var(--accent); display:flex; align-items:center; justify-content:center;
    font-size:22px; box-shadow:0 8px 18px -6px rgba(0,0,0,.25); border:3px solid var(--bg);
}
.owner-text{ flex:1 1 420px; min-width:0; }
.owner-text h2{ margin:6px 0 18px; font-size:26px; color:var(--navy); }
.owner-points{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-bottom:26px; }
.owner-point{ display:flex; gap:12px; }
.op-icon{
    width:36px; height:36px; border-radius:9px; background:var(--primary-light); color:var(--primary);
    display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0;
}
.owner-point strong{ font-size:13.5px; color:var(--navy); display:block; margin-bottom:2px; }
.owner-point p{ margin:0; font-size:12.5px; color:var(--muted); line-height:1.5; }

/* ---------- Categories v2 ---------- */
.category-grid-v2{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
.category-card-v2{
    background:#fff; border:1px solid var(--border); border-radius:14px; padding:24px 18px; text-align:center;
    box-shadow:0 2px 8px rgba(26,43,76,.04); transition:.25s;
}
.category-card-v2:hover{ transform:translateY(-5px); box-shadow:0 16px 30px -16px rgba(26,43,76,.2); border-color:transparent; }
.ccv2-icon{ width:50px; height:50px; border-radius:13px; display:flex; align-items:center; justify-content:center; font-size:20px; margin:0 auto 12px; }
.ccv2-name{ font-weight:700; font-size:14px; color:var(--navy); margin-bottom:4px; }
.ccv2-count{ font-size:11.5px; color:var(--muted); }
.ccv2-more{ background:var(--bg); border-style:dashed; }

/* ---------- Featured Businesses ---------- */
.featured-scroll{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.featured-card{
    position:relative; background:#fff; border:1px solid rgba(26,43,76,.07); border-radius:18px; overflow:hidden;
    box-shadow:0 4px 16px -6px rgba(26,43,76,.10); transition:transform .3s ease, box-shadow .3s ease; display:block;
}
.featured-card:hover{ transform:translateY(-7px); box-shadow:0 26px 42px -18px rgba(26,43,76,.28); border-color:transparent; }
.featured-card-ribbon{
    display:block; text-align:center;
    background:linear-gradient(90deg, #F5A623, #E8890C); color:#fff;
    font-size:10.5px; font-weight:800; letter-spacing:.6px; text-transform:uppercase;
    padding:6px 8px;
}
.featured-card-img{
    position:relative; aspect-ratio:4/3; display:flex; align-items:center; justify-content:center;
    overflow:hidden; isolation:isolate;
}
.featured-card-img:not(.has-logo)::before{
    /* soft diagonal sheen for a premium finish on icon placeholders */
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(120% 140% at 15% 0%, rgba(255,255,255,.30), transparent 55%),
        radial-gradient(90% 110% at 100% 100%, rgba(0,0,0,.16), transparent 60%);
    z-index:1;
}
.featured-card-img:not(.has-logo)::after{
    /* subtle dot texture so flat-color tiles don't look empty */
    content:''; position:absolute; inset:0; opacity:.15; z-index:1;
    background-image:radial-gradient(rgba(255,255,255,.9) 1px, transparent 1px);
    background-size:14px 14px;
}
.featured-card-img.has-logo{ background:#f4f6fa; }
.featured-card-img.has-logo img{
    width:100%; height:100%; object-fit:contain; object-position:center;
    padding:20px; box-sizing:border-box; position:relative; z-index:0;
}
.featured-card-img i{
    position:relative; z-index:2; width:64px; height:64px; border-radius:50%;
    background:rgba(255,255,255,.16); backdrop-filter:blur(2px);
    border:1.5px solid rgba(255,255,255,.5);
    display:flex; align-items:center; justify-content:center;
    font-size:24px; color:#fff;
    box-shadow:0 8px 20px -6px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.featured-card-badge{
    position:absolute; top:12px; right:12px; z-index:3;
    display:flex; align-items:center; gap:4px;
    background:rgba(255,255,255,.94); backdrop-filter:blur(4px);
    border-radius:999px; padding:4px 10px 4px 8px;
    font-size:11.5px; font-weight:700; color:var(--navy);
    box-shadow:0 4px 10px -3px rgba(0,0,0,.25);
}
.featured-card-badge .stars{ color:var(--accent); font-size:11px; }
.featured-card-verified{
    position:absolute; top:12px; left:12px; z-index:3;
    display:flex; align-items:center; gap:4px;
    background:rgba(255,255,255,.94); backdrop-filter:blur(4px);
    border-radius:999px; padding:4px 10px 4px 6px;
    font-size:11px; font-weight:700; color:#2563eb;
    box-shadow:0 4px 10px -3px rgba(0,0,0,.25);
}
.featured-card-verified .verified-seal-icon{ display:block; }
.featured-card-body{ padding:16px 18px 20px; }
.featured-card-body strong{
    display:block; font-size:15px; font-weight:700; color:var(--navy); margin-bottom:6px;
    line-height:1.3; letter-spacing:-.1px;
}
.fcb-cat{
    display:inline-block; font-size:11px; font-weight:600; color:var(--primary);
    background:var(--primary-light); border-radius:999px; padding:3px 10px; margin-bottom:10px;
}
.fcb-rating{ display:flex; align-items:center; gap:6px; font-size:12px; color:var(--muted); margin-top:2px; }
.fcb-rating .stars{ color:var(--accent); letter-spacing:1px; }
.fcb-verified{ font-size:11px; font-weight:700; color:var(--primary); }

/* ---------- Testimonials ---------- */
.testimonial-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testimonial-card{
    position:relative; background:#fff; border:1px solid var(--border); border-radius:14px; padding:26px;
    box-shadow:0 2px 10px rgba(26,43,76,.04); transition:.25s;
}
.testimonial-card:hover{ transform:translateY(-5px); box-shadow:0 16px 30px -16px rgba(26,43,76,.2); }
.testimonial-card .quote-mark{ position:absolute; top:16px; right:18px; font-size:28px; color:var(--border); }
.testimonial-stars{ margin-bottom:10px; }
.testimonial-stars .stars{ color:var(--accent); }
.testimonial-card p{ font-size:13.5px; color:var(--text); line-height:1.65; margin:0 0 18px; }
.testimonial-user{ display:flex; align-items:center; gap:10px; }
.testimonial-user strong{ display:block; font-size:13.5px; color:var(--navy); }
.testimonial-user span{ font-size:12px; color:var(--muted); }

/* ---------- Mobile App Section ---------- */
.app-section{
    background:var(--primary-light); border-radius:22px; padding:44px; display:flex; align-items:center;
    justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.app-section-text{ flex:1 1 320px; min-width:260px; }
.app-section-text h2{ margin:0 0 10px; font-size:25px; color:var(--navy); }
.app-section-text p{ margin:0 0 22px; font-size:14px; color:var(--muted); max-width:400px; }
.app-badges{ display:flex; gap:12px; flex-wrap:wrap; }
.app-badge{
    display:flex; align-items:center; gap:10px; background:var(--navy); color:#fff; padding:9px 16px;
    border-radius:10px; font-size:10px; line-height:1.3;
}
.app-badge i{ font-size:22px; }
.app-badge strong{ font-size:13px; }
.app-section-media{ display:flex; align-items:center; gap:26px; flex-shrink:0; }
.app-phone{
    width:170px; height:340px; border-radius:30px; background:var(--navy);
    box-shadow:0 24px 50px -18px rgba(26,43,76,.4); padding:8px; position:relative;
}
.app-phone::before{
    content:''; position:absolute; top:8px; left:50%; transform:translateX(-50%);
    width:56px; height:16px; background:var(--navy); border-radius:0 0 10px 10px; z-index:3;
}
.app-phone-screen{
    width:100%; height:100%; background:#fff; border-radius:22px; overflow:hidden;
    display:flex; flex-direction:column; position:relative;
}
.aps-status{ display:flex; justify-content:space-between; align-items:center; padding:9px 12px 4px; font-size:8px; font-weight:700; color:var(--navy); }
.aps-status i{ font-size:7px; }
.aps-header{ display:flex; align-items:center; gap:5px; padding:6px 12px 8px; border-bottom:1px solid var(--border); }
.aps-header .aps-dot{ width:14px; height:14px; border-radius:5px; background:var(--navy); color:var(--accent); display:flex; align-items:center; justify-content:center; font-size:7px; }
.aps-header span{ font-size:9px; font-weight:800; color:var(--navy); }
.aps-hero{
    margin:10px 12px 0; border-radius:8px; padding:12px 10px;
    background:linear-gradient(135deg, var(--navy), var(--primary-dark));
}
.aps-hero .aps-line{ height:5px; border-radius:3px; background:rgba(255,255,255,.9); margin-bottom:5px; }
.aps-hero .aps-line.short{ width:55%; background:var(--accent); }
.aps-search{
    margin:9px 12px 0; height:16px; border-radius:8px; background:var(--bg); border:1px solid var(--border);
    display:flex; align-items:center; padding:0 7px; gap:4px;
}
.aps-search i{ font-size:6px; color:var(--muted); }
.aps-search .aps-sline{ flex:1; height:3px; border-radius:2px; background:var(--border); }
.aps-stats{ display:flex; gap:6px; margin:9px 12px 0; }
.aps-stats div{ flex:1; background:var(--bg); border-radius:6px; padding:5px 4px; text-align:center; }
.aps-stats .aps-num{ font-size:9px; font-weight:800; color:var(--navy); display:block; }
.aps-stats .aps-lbl{ font-size:5px; color:var(--muted); }
.aps-cards{ display:flex; gap:6px; margin:9px 12px 0; }
.aps-cards div{ flex:1; height:34px; border-radius:6px; }
.aps-cards div:nth-child(1){ background:linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.aps-cards div:nth-child(2){ background:linear-gradient(135deg, var(--accent), #c9860f); }
.aps-cards div:nth-child(3){ background:linear-gradient(135deg, #7C3AED, #5b21b6); }
.aps-list{ margin:9px 12px 0; display:flex; flex-direction:column; gap:6px; }
.aps-row{ display:flex; align-items:center; gap:6px; }
.aps-row .aps-avatar{ width:14px; height:14px; border-radius:50%; background:var(--primary-light); flex-shrink:0; }
.aps-row .aps-rline{ flex:1; height:4px; border-radius:2px; background:var(--bg); }
.aps-navbar{
    margin-top:auto; display:flex; justify-content:space-around; padding:8px 0; border-top:1px solid var(--border);
}
.aps-navbar i{ font-size:9px; color:var(--muted); }
.aps-navbar i:first-child{ color:var(--primary); }
.app-qr{ text-align:center; background:#fff; padding:12px; border-radius:12px; box-shadow:0 10px 24px -10px rgba(26,43,76,.25); }
.app-qr img{ display:block; width:110px; height:110px; }
.app-qr span{ display:block; font-size:11px; color:var(--muted); margin-top:6px; font-weight:600; }

/* ---------- Business CTA v2 ---------- */
.cta-v2{
    background:var(--accent-soft); border-radius:22px; padding:36px 40px; display:flex; align-items:center;
    gap:26px; flex-wrap:wrap;
}
.cta-v2-icon{
    width:64px; height:64px; border-radius:16px; background:#fff; color:var(--accent);
    display:flex; align-items:center; justify-content:center; font-size:28px; flex-shrink:0;
    box-shadow:0 8px 20px -8px rgba(0,0,0,.15);
}
.cta-v2-text{ flex:1 1 300px; min-width:220px; }
.cta-v2-text h2{ margin:0 0 6px; font-size:22px; color:var(--navy); }
.cta-v2-text p{ margin:0; font-size:13.5px; color:var(--muted); }
.cta-v2-btn{ background:var(--accent); color:#fff; white-space:nowrap; flex-shrink:0; }
.cta-v2-btn:hover{ background:#D6910F; }

/* ---------- Latest Articles ---------- */
.article-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.article-card{
    background:#fff; border:1px solid var(--border); border-radius:14px; overflow:hidden;
    box-shadow:0 2px 10px rgba(26,43,76,.04); transition:.25s; display:block; text-decoration:none; color:inherit;
}
.article-card:hover{ transform:translateY(-5px); box-shadow:0 16px 30px -16px rgba(26,43,76,.2); }
.article-card-img{ aspect-ratio:16/10; display:flex; align-items:center; justify-content:center; font-size:28px; color:#fff; }
.article-card-body{ padding:14px 16px 18px; }
.article-card-body strong{ display:block; font-size:14px; color:var(--navy); line-height:1.4; margin-bottom:8px; }
.article-meta{ font-size:11.5px; color:var(--muted); }

@media (prefers-reduced-motion: reduce){
    .hero-v2-float-card, .hero-anim{ animation:none !important; opacity:1 !important; transform:none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
    .category-grid-v2{ grid-template-columns:repeat(3,1fr); }
    .featured-scroll{ grid-template-columns:repeat(3,1fr); }
    .article-grid{ grid-template-columns:repeat(2,1fr); }
    .testimonial-grid{ grid-template-columns:repeat(2,1fr); }
    .why-review-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px){
    .hero-v2-inner, .owner-inner{ flex-direction:column; gap:26px; align-items:stretch; }
    .hero-v2-text, .hero-v2-media, .owner-text, .owner-media{ flex:none; width:100%; max-width:none; min-width:0; }
    .hero-v2-media{ order:-1; }
    .hero-v2-float-card{ position:static; width:100%; max-width:none; margin-top:16px; }
    .owner-media{ order:-1; display:flex; justify-content:center; }
    .stats-strip-inner{ grid-template-columns:repeat(2,1fr); row-gap:18px; }
    .section-v2{ padding:38px 0; }
    .section-head{ margin-bottom:24px; }
}
@media (max-width:768px){
    .header-inner{padding:12px 15px;}
    .category-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));}
    .category-grid-v2{ grid-template-columns:repeat(2,1fr); }
    .featured-scroll{ grid-template-columns:repeat(2,1fr); }
    .article-grid{ grid-template-columns:1fr; }
    .testimonial-grid{ grid-template-columns:1fr; }
    .why-review-grid{ grid-template-columns:1fr; }
    .owner-points{ grid-template-columns:1fr; }
    .hero-v2-text h1{ font-size:30px; }
    .app-section{ padding:28px; justify-content:center; text-align:center; }
    .app-section-text p{ margin-left:auto; margin-right:auto; }
    .app-badges{ justify-content:center; }
    .cta-v2{ justify-content:center; text-align:center; }
}
@media (max-width:480px){
    .category-grid-v2{ grid-template-columns:1fr 1fr; }
    .featured-scroll{ grid-template-columns:1fr; }
    .hvs-divider{ display:none; }
    .app-section-media{ flex-direction:column; }
    .owner-media-fallback{ width:220px; height:220px; }
    .owner-media-fallback .omf-icon{ width:110px; height:110px; font-size:42px; }
    .owner-media-fallback .omf-badge{ width:42px; height:42px; font-size:18px; right:6px; bottom:12px; }
    .hero-v2-image{ max-height:260px; }
    .hero-v2-text h1{ font-size:26px; }
}

/* =========================================================
   WIDGET PREVIEW DEMO (scoped, prefixed brw- to avoid any
   collision with site-wide classes like .card/.btn/.tag)
========================================================= */
.brw-card{
    max-width:1600px; margin:0 auto; background:#fdfbf5; border-radius:14px;
    box-shadow:0 4px 24px rgba(0,0,0,.06); padding:28px 32px 0 32px; position:relative;
    border:1px solid var(--border);
}
.brw-top-row{ display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.brw-verified-badge{
    display:flex; align-items:center; gap:6px; background:#e7f7ee; color:#17a35a;
    font-weight:700; font-size:13px; letter-spacing:.5px; padding:7px 14px; border-radius:20px;
}
.brw-verified-badge svg{ width:15px; height:15px; }
.widget-demo-note{
    display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted);
    background:var(--bg); border:1px solid var(--border); padding:10px 16px; border-radius:10px; margin-bottom:16px;
}
.widget-demo-note i{ color:var(--primary); }
.verified-seal-icon{ display:inline-block; }
.hvfc-top strong{ display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.fcb-cat{ margin-top:4px; }
.brw-save-link{ display:flex; align-items:center; gap:6px; color:#6b7280; font-weight:600; font-size:14px; }
.brw-save-link svg{ width:19px; height:19px; }
.brw-main-row{ display:flex; gap:26px; align-items:flex-start; flex-wrap:wrap; row-gap:22px; padding-bottom:24px; overflow:visible; }
.brw-logo-box{
    width:170px; height:170px; min-width:170px; flex:none; background:#10163a; border-radius:14px;
    display:flex; flex-direction:column; align-items:center; justify-content:center; color:#f2c14e;
}
.brw-logo-box svg{ width:50px; height:50px; margin-bottom:6px; }
.brw-logo-box .brw-lb-name{ color:#fff; font-weight:800; font-size:13px; letter-spacing:1px; }
.brw-logo-box .brw-lb-sub{ color:#f2c14e; font-weight:700; font-size:10px; letter-spacing:1px; margin-top:2px; }
.brw-info-block{ flex:1 1 300px; min-width:0; max-width:380px; }
.brw-biz-name{ display:flex; align-items:center; gap:8px; font-size:28px; font-weight:800; color:#111827; margin:6px 0 10px 0; }
.brw-biz-name svg{ width:22px; height:22px; flex-shrink:0; }
.brw-location{ display:flex; align-items:center; gap:6px; color:#6b7280; font-size:14px; margin-bottom:14px; }
.brw-location svg{ width:15px; height:15px; flex-shrink:0; }
.brw-tags{ display:flex; gap:10px; flex-wrap:wrap; }
.brw-tag{ background:#eef1fb; color:#3b4ba8; font-weight:600; font-size:13px; padding:7px 14px; border-radius:8px; }
.brw-tag.brw-gray{ background:#f1f2f4; color:#4b5563; }
.brw-rating-block{ flex:1 1 230px; min-width:0; max-width:320px; }
.brw-score-box{
    display:inline-flex; align-items:center; justify-content:center; background:#f5b400; color:#111827;
    font-weight:800; font-size:30px; width:68px; height:52px; border-radius:8px; margin-bottom:8px;
}
.brw-stars-row{ display:flex; align-items:center; gap:8px; margin-bottom:4px; flex-wrap:wrap; }
.brw-stars{ color:#f5b400; font-size:16px; letter-spacing:2px; }
.brw-review-count{ color:#374151; font-weight:600; font-size:14px; }
.brw-recommend{ font-size:14px; color:#374151; margin-top:10px; line-height:1.4; }
.brw-recommend b{ color:#16a34a; font-weight:800; }
.brw-breakdown{ flex:1 1 260px; min-width:0; max-width:340px; }
.brw-bd-row{ display:flex; align-items:center; gap:10px; margin-bottom:9px; font-size:14px; color:#374151; }
.brw-bd-star{ display:flex; align-items:center; gap:3px; width:34px; color:#111827; font-weight:600; }
.brw-bd-star svg{ width:13px; height:13px; color:#f5b400; }
.brw-bd-bar-bg{ flex:1; background:#e5e7eb; border-radius:6px; height:8px; overflow:hidden; }
.brw-bd-bar-fill{ background:#f5b400; height:100%; border-radius:6px; }
.brw-bd-count{ width:54px; text-align:right; color:#6b7280; }
.brw-review-card{ flex:1 1 220px; min-width:0; max-width:280px; padding-left:20px; border-left:1px solid #eef0f2; }
.brw-reviewer-row{ display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.brw-avatar{
    width:36px; height:36px; border-radius:50%; background:#16a34a; color:#fff; font-weight:700;
    display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0;
}
.brw-reviewer-name{ font-weight:700; color:#111827; font-size:15px; }
.brw-buyer-badge{
    display:inline-flex; align-items:center; gap:4px; background:#e7f7ee; color:#17a35a; font-size:11px;
    font-weight:700; padding:2px 8px; border-radius:10px; margin-top:2px;
}
.brw-buyer-badge svg{ width:10px; height:10px; }
.brw-review-stars{ color:#f5b400; font-size:13px; margin:6px 0 2px 0; }
.brw-review-date{ color:#9ca3af; font-size:13px; margin-left:6px; }
.brw-review-text{ font-size:14px; color:#374151; margin:6px 0 8px 0; }
.brw-view-all{ color:#2563eb; font-weight:700; font-size:14px; text-decoration:none; display:inline-flex; align-items:center; gap:4px; }
.brw-bottom-strip{ border-top:1px solid #eef0f2; display:flex; align-items:center; flex-wrap:wrap; gap:26px; padding:20px 0; }
.brw-strip-item{ display:flex; align-items:center; gap:12px; }
.brw-strip-icon{ width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; }
.brw-strip-icon.brw-blue{ background:#e8effd; color:#2563eb; }
.brw-strip-icon.brw-green{ background:#e7f7ee; color:#16a34a; }
.brw-strip-icon.brw-orange{ background:#fdeee3; color:#f97316; }
.brw-strip-icon.brw-purple{ background:#f1eafd; color:#8b5cf6; }
.brw-strip-icon svg{ width:19px; height:19px; }
.brw-strip-title{ font-weight:700; color:#111827; font-size:14px; display:flex; align-items:center; gap:6px; }
.brw-strip-sub{ color:#6b7280; font-size:12.5px; line-height:1.3; }
.brw-actions{ display:flex; gap:12px; margin-left:auto; }
.brw-btn{
    display:flex; align-items:center; gap:8px; font-weight:700; font-size:14px; padding:12px 20px;
    border-radius:10px; cursor:pointer; border:none; white-space:nowrap; font-family:inherit;
}
.brw-btn svg{ width:16px; height:16px; }
.brw-btn-primary{ background:#2054d6; color:#fff; }
.brw-btn-outline{ background:#fff; color:#2054d6; border:1.5px solid #2054d6; }

@media (max-width:1200px){
    .brw-card{ padding:24px 24px 0 24px; }
    .brw-review-card{ border-left:none; padding-left:0; border-top:1px solid #eef0f2; padding-top:18px; flex-basis:100%; max-width:none; }
}
@media (max-width:900px){
    .brw-card{ padding:20px 18px 0 18px; }
    .brw-info-block, .brw-rating-block{ flex-basis:100%; max-width:none; }
    .brw-breakdown{ flex-basis:100%; max-width:360px; }
    .brw-bottom-strip{ gap:18px; }
    .brw-actions{ margin-left:0; width:100%; }
    .brw-btn{ flex:1; justify-content:center; }
}
@media (max-width:600px){
    .brw-card{ padding:16px 14px 0 14px; border-radius:8px; }
    .brw-top-row{ flex-wrap:wrap; gap:10px; }
    .brw-main-row{ flex-direction:column; align-items:center; text-align:center; gap:20px; }
    .brw-logo-box{ margin:0 auto; }
    .brw-info-block, .brw-rating-block, .brw-breakdown, .brw-review-card{ flex-basis:auto; width:100%; max-width:360px; }
    .brw-biz-name{ justify-content:center; font-size:22px; flex-wrap:wrap; }
    .brw-location{ justify-content:center; }
    .brw-tags{ justify-content:center; flex-wrap:wrap; }
    .brw-stars-row{ justify-content:center; }
    .brw-recommend{ text-align:center; }
    .brw-breakdown{ text-align:left; }
    .brw-review-card{ text-align:left; border-top:1px solid #eef0f2; padding-top:16px; }
    .brw-reviewer-row{ justify-content:flex-start; }
    .brw-bottom-strip{ flex-direction:column; align-items:flex-start; gap:16px; }
    .brw-actions{ flex-direction:column; width:100%; gap:10px; }
    .brw-btn{ width:100%; }
}

