/* ============================================================
   MyRooms — design system
   Light, premium, trust-focused. Teal/blue accents, soft shadows,
   rounded cards, mobile-first.
   ============================================================ */

:root {
    /* Brand */
    --brand:        #0d9488;   /* teal-600 */
    --brand-dark:   #0f766e;
    --brand-light:  #ccfbf1;
    --accent:       #2563eb;   /* blue-600 */
    --accent-light: #dbeafe;

    /* Status */
    --success:      #16a34a;
    --success-bg:   #dcfce7;
    --warning:      #d97706;
    --warning-bg:   #fef3c7;
    --danger:       #dc2626;
    --danger-bg:    #fee2e2;
    --vip:          #b8860b;
    --vip-grad:     linear-gradient(135deg, #f6c453, #d4972b);
    --info:         #0ea5e9;
    --info-bg:      #e0f2fe;

    /* Neutrals */
    --ink:          #0f172a;
    --ink-2:        #334155;
    --muted:        #64748b;
    --muted-2:      #94a3b8;
    --line:         #e2e8f0;
    --line-2:       #f1f5f9;
    --bg:           #ffffff;
    --bg-soft:      #f8fafc;
    --bg-softer:    #f1f5f9;
    --surface:      #ffffff;

    /* Effects — layered "3D" shadow system: tight contact shadow + soft ambient bloom */
    --radius:       14px;
    --radius-lg:    20px;
    --radius-sm:    10px;
    --shadow-sm:    0 1px 2px rgba(15,23,42,.05), 0 3px 10px rgba(15,23,42,.05);
    --shadow:       0 2px 6px rgba(15,23,42,.05), 0 10px 24px rgba(15,23,42,.07);
    --shadow-md:    0 4px 10px rgba(15,23,42,.06), 0 18px 40px rgba(15,23,42,.11);
    --shadow-lg:    0 10px 24px rgba(15,23,42,.10), 0 34px 80px rgba(15,23,42,.18);
    --shadow-brand: 0 3px 8px rgba(13,148,136,.22), 0 12px 28px rgba(13,148,136,.30);
    --ring:         0 0 0 4px rgba(13,148,136,.15);
    --edge:         inset 0 1px 0 rgba(255,255,255,.9);      /* top bevel — "lit from above" */
    --edge-dark:    inset 0 1px 0 rgba(255,255,255,.22);
    --grad-brand:   linear-gradient(180deg, #14b8a6, #0d9488 55%, #0b8377);
    --grad-accent:  linear-gradient(180deg, #3b82f6, #2563eb 60%, #1e50c8);
    --grad-surface: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);

    --container:    1200px;
    --hero-grad:    linear-gradient(135deg, #0d9488 0%, #0e7490 48%, #2563eb 100%);
    --font: 'Noto Sans Georgian', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: "BPG Irubaqidze", 'Noto Sans Georgian', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
    font-family: var(--font);
    color: var(--ink);
    /* faint aurora wash at the top — gives the flat white page ambient depth */
    background:
        radial-gradient(1100px 480px at 88% -120px, rgba(13,148,136,.06), transparent 60%),
        radial-gradient(900px 420px at -8% 60px, rgba(37,99,235,.05), transparent 60%),
        var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;          /* no sideways drag on mobile (clip keeps sticky header working) */
    max-width: 100%;
    /* user-generated text can be one endless "word" — let it break instead of
       spilling out of cards. break-word (NOT anywhere) so intrinsic min-widths
       stay intact and menus/buttons never crumble letter-by-letter. */
    overflow-wrap: break-word;
}
/* grid/flex tracks must be allowed to shrink below their longest word,
   otherwise a long unbroken string widens the whole column on phones */
.grid > *, .adm-grid-2 > *, .adm-grid-3 > *, .adm-stats > *,
.layout-split > *, .footer-grid > * { min-width: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
svg { width: 1.25em; height: 1.25em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section__head--left { text-align: right; margin-right: 0; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--brand); font-weight: 700; font-size: 14px;
    background: var(--brand-light); padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
h1,h2,h3,h4 { color: var(--ink); line-height: 1.25; font-weight: 800; font-family: var(--font-display); }
.section__title { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; }
.section__sub { color: var(--muted); font-size: 17px; margin-top: 12px; }

/* ── Buttons — top-lit gradients, bottom ledge, press-in active state ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
    font-weight: 700; font-size: 15px; white-space: nowrap;
    background: linear-gradient(180deg, #fff, #eef2f7); color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 1px 2px rgba(15,23,42,.08), 0 4px 10px rgba(15,23,42,.05);
    transition: transform .18s cubic-bezier(.2,.7,.3,1.3), box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 2px 4px rgba(15,23,42,.08), 0 10px 20px rgba(15,23,42,.10); }
.btn:active { transform: translateY(1px) scale(.985); box-shadow: inset 0 2px 5px rgba(15,23,42,.14); }
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary {
    background: var(--grad-brand); color: #fff;
    box-shadow: var(--edge-dark), inset 0 -2px 0 rgba(0,0,0,.14), var(--shadow-brand);
}
.btn--primary:hover { filter: saturate(1.1) brightness(1.05); box-shadow: var(--edge-dark), inset 0 -2px 0 rgba(0,0,0,.14), 0 6px 14px rgba(13,148,136,.3), 0 18px 36px rgba(13,148,136,.38); }
.btn--primary:active { filter: brightness(.97); box-shadow: inset 0 3px 8px rgba(0,0,0,.25); }
.btn--accent {
    background: var(--grad-accent); color: #fff;
    box-shadow: var(--edge-dark), inset 0 -2px 0 rgba(0,0,0,.16), 0 3px 8px rgba(37,99,235,.22), 0 12px 28px rgba(37,99,235,.28);
}
.btn--accent:hover { filter: saturate(1.08) brightness(1.06); }
.btn--ghost { background: rgba(255,255,255,.9); border-color: var(--line); color: var(--ink-2); box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(15,23,42,.05); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); box-shadow: inset 0 1px 0 #fff, 0 6px 16px rgba(13,148,136,.14); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(6px); box-shadow: var(--edge-dark), 0 6px 16px rgba(0,0,0,.14); }
.btn--light:hover { background: rgba(255,255,255,.26); }
.btn--success { background: linear-gradient(180deg,#22b45e,#16a34a 60%,#128a3e); color: #fff; box-shadow: var(--edge-dark), inset 0 -2px 0 rgba(0,0,0,.15), 0 8px 20px rgba(22,163,74,.3); }
.btn--danger { background: linear-gradient(180deg,#ef4444,#dc2626 60%,#c21f1f); color: #fff; box-shadow: var(--edge-dark), inset 0 -2px 0 rgba(0,0,0,.15), 0 8px 20px rgba(220,38,38,.28); }
.btn--whatsapp { background: linear-gradient(180deg,#34e075,#25d366 60%,#1eb956); color: #fff; box-shadow: var(--edge-dark), inset 0 -2px 0 rgba(0,0,0,.14), 0 8px 20px rgba(37,211,102,.3); }
.btn--block { width: 100%; white-space: normal; }  /* full-width buttons may wrap on narrow phones */
.btn--lg { padding: 15px 28px; font-size: 16px; border-radius: var(--radius); }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ── Badges ────────────────────────────────────────────── */
.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
    background: var(--bg-softer); color: var(--ink-2);
}
.badge svg { width: 1em; height: 1em; }
.badge--verified { background: var(--success-bg); color: var(--success); }
.badge--vip { background: var(--vip-grad); color: #5a3d00; box-shadow: 0 2px 8px rgba(184,134,11,.3); }
.badge--sponsored { background: #f1f5f9; color: var(--muted); border: 1px dashed var(--muted-2); }
.badge--success { background: var(--success-bg); color: var(--success); }
.badge--warning { background: var(--warning-bg); color: var(--warning); }
.badge--danger { background: var(--danger-bg); color: var(--danger); }
.badge--info { background: var(--info-bg); color: var(--info); }
.badge--primary { background: var(--brand-light); color: var(--brand-dark); }
.badge--muted { background: var(--bg-softer); color: var(--muted); }

/* ── Header — frosted glass ────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.78);
    backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid rgba(226,232,240,.75);
    box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 30px rgba(15,23,42,.05);
}
/* ALWAYS one row: items shrink fluidly; below 1240px the nav folds into the
   hamburger drawer instead of ever wrapping to a second line */
.header__inner { display: flex; align-items: center; gap: 0 16px; min-height: 72px; flex-wrap: nowrap; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: clamp(18px, 1.2vw + 4px, 22px); letter-spacing: -.02em; flex: none; }
.logo__mark {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: var(--hero-grad); color: #fff;
    box-shadow: var(--edge-dark), inset 0 -3px 6px rgba(0,0,0,.18), 0 6px 16px rgba(13,148,136,.35);
    transition: transform .25s cubic-bezier(.2,.7,.3,1.4), box-shadow .25s;
}
.logo:hover .logo__mark { transform: translateY(-2px) rotate(-6deg) scale(1.05); box-shadow: var(--edge-dark), inset 0 -3px 6px rgba(0,0,0,.18), 0 12px 26px rgba(13,148,136,.45); }
.logo__mark svg { width: 22px; height: 22px; }
.logo b { color: var(--brand); }
.nav { display: flex; align-items: center; gap: 1px; margin-inline-start: auto; flex-wrap: nowrap; }
.nav a {
    padding: 8px clamp(5px, .5vw, 11px); border-radius: 9px; font-weight: 600;
    font-size: clamp(12.5px, .35vw + 9.5px, 14.5px);
    color: var(--ink-2); transition: .15s; white-space: nowrap;
}
.nav a:hover, .nav a.is-active { background: var(--bg-soft); color: var(--brand); }
.header__actions { display: flex; align-items: center; gap: 8px; flex: none; }
.header__actions .btn--sm { padding: 7px 10px; font-size: 12.5px; }

/* "მეტი ▾" dropdown — overflow items live here so the bar never wraps */
.nav-more { position: relative; }
.nav-more__btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 8px clamp(5px, .5vw, 11px); border-radius: 9px; border: 0; background: transparent;
    font-family: inherit; font-weight: 600; font-size: clamp(12.5px, .35vw + 9.5px, 14.5px);
    color: var(--ink-2); cursor: pointer; transition: .15s; white-space: nowrap;
}
.nav-more__btn:hover, .nav-more__btn.is-active, .nav-more.is-open .nav-more__btn { background: var(--bg-soft); color: var(--brand); }
.nav-more__caret { font-size: .75em; opacity: .6; transition: transform .2s; }
.nav-more.is-open .nav-more__caret { transform: rotate(180deg); }
.nav-more__menu {
    position: absolute; top: calc(100% + 8px); inset-inline-end: 0; z-index: 60;
    min-width: 200px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--edge), var(--shadow-lg); padding: 6px; display: none;
}
.nav-more.is-open .nav-more__menu { display: block; }
.nav-more__menu a { display: block; padding: 9px 12px; border-radius: 8px; font-weight: 600; font-size: 14px; color: var(--ink-2); transition: .13s; }
.nav-more__menu a:hover, .nav-more__menu a.is-active { background: var(--bg-soft); color: var(--brand); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; }

/* Language switcher (flag icons) */
.lang-switch { display: inline-flex; gap: 5px; align-items: center; }
.lang-switch__opt { display: inline-flex; width: 26px; height: 18px; border-radius: 4px; overflow: hidden; opacity: .45; border: 1px solid var(--line); transition: .15s; }
.lang-switch__opt:hover { opacity: 1; transform: translateY(-1px); }
.lang-switch__opt.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--brand); border-color: var(--brand); }
.lang-switch__opt svg { width: 100%; height: 100%; }

/* ── Hero ──────────────────────────────────────────────── */
.hero { position: relative; background: var(--hero-grad); color: #fff; overflow: hidden; padding: 72px 0 96px; }
/* Readability overlay above the photo (z-index 1), content sits on z-index 2.
   Lighter at the centre so the background photo stays clearly visible, darker
   at top/bottom for text + search-bar contrast. */
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(720px 460px at 50% 42%, rgba(7,30,34,.18), transparent 70%),
        linear-gradient(180deg, rgba(7,30,34,.55) 0%, rgba(7,30,34,.32) 42%, rgba(7,30,34,.62) 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 1; transition: opacity .5s ease, background-image .4s ease; }
.hero__inner { position: relative; z-index: 2; max-width: 880px; text-align: center; margin: 0 auto; }
.hero h1 { color: #fff; font-size: clamp(30px, 5vw, 52px); letter-spacing: -.025em; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hero p { color: #fff; font-size: clamp(16px, 2vw, 20px); margin: 18px auto 0; max-width: 680px; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
/* Hero slider */
.hero__slides { min-height: 132px; }
.hero-slide { display: none; }
.hero-slide.is-active { display: block; animation: heroFade .55s ease; }
@keyframes heroFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.hero__dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: .2s; padding: 0; }
.hero__dot.is-active { background: #fff; width: 26px; border-radius: 999px; }
@media (max-width: 640px) { .hero__slides { min-height: 168px; } }

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.hero__badges .chip { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.24); }

/* Search bar — floating glass slab */
.searchbar {
    margin: 34px auto 0; background: rgba(255,255,255,.96); border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: inset 0 1px 0 #fff, 0 12px 28px rgba(4,26,30,.22), 0 42px 90px rgba(4,26,30,.38);
    padding: 10px; display: grid;
    grid-template-columns: 1.4fr 1fr auto; gap: 8px; max-width: 820px; text-align: right;
    transition: box-shadow .25s ease, transform .25s ease;
}
.searchbar:focus-within {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 #fff, 0 0 0 4px rgba(94,234,212,.35), 0 16px 34px rgba(4,26,30,.24), 0 48px 100px rgba(4,26,30,.4);
}
.searchbar .field { display: flex; align-items: center; gap: 10px; padding: 6px 14px; border-radius: var(--radius); }
.searchbar .field:not(:last-child) { border-inline-end: 1px solid var(--line); }
.searchbar .field svg { color: var(--brand); width: 20px; height: 20px; flex: none; }
.searchbar input, .searchbar select {
    border: 0; outline: 0; font-family: inherit; font-size: 15px; width: 100%;
    background: transparent; color: var(--ink); padding: 8px 0;
}
.searchbar .btn { border-radius: var(--radius); }
.search-ai-row { margin-top: 14px; display: flex; justify-content: center; }
.btn--ai {
    background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
}
.btn--ai:hover { background: rgba(255,255,255,.26); }

/* ── Stat strip — elevated 3D tiles with gradient numbers ── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: -52px; position: relative; z-index: 5; }
.stat {
    position: relative; overflow: hidden;
    background: var(--grad-surface); border: 1px solid rgba(226,232,240,.9);
    border-radius: var(--radius); box-shadow: var(--edge), var(--shadow-md);
    padding: 20px; text-align: center;
    transition: transform .25s cubic-bezier(.2,.7,.3,1.2), box-shadow .25s ease;
}
.stat::before {
    content: ""; position: absolute; top: 0; left: 14%; right: 14%; height: 3px;
    border-radius: 999px; background: var(--hero-grad); opacity: .85;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--edge), var(--shadow-lg); }
.stat b {
    display: block; font-size: 30px; letter-spacing: -.02em;
    background: linear-gradient(135deg, var(--brand) 20%, var(--accent) 90%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { color: var(--muted); font-size: 14px; }

/* ── Cards grid ────────────────────────────────────────── */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: var(--grad-surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--edge), var(--shadow-sm);
    transition: transform .25s cubic-bezier(.2,.7,.3,1.2), box-shadow .25s ease, border-color .25s ease;
}
.card:hover { box-shadow: var(--edge), var(--shadow-md); transform: translateY(-6px); border-color: rgba(13,148,136,.35); }

/* Category card — glossy 3D icon chip */
.cat-card { padding: 24px; display: block; }
.cat-card__icon {
    width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
    color: #fff; margin-bottom: 16px;
    box-shadow: inset 0 2px 3px rgba(255,255,255,.35), inset 0 -4px 8px rgba(0,0,0,.22), 0 10px 20px rgba(15,23,42,.18);
    transition: transform .3s cubic-bezier(.2,.7,.3,1.4), box-shadow .3s;
}
.cat-card:hover .cat-card__icon { transform: translateY(-4px) rotate(-5deg) scale(1.08); box-shadow: inset 0 2px 3px rgba(255,255,255,.35), inset 0 -4px 8px rgba(0,0,0,.22), 0 16px 30px rgba(15,23,42,.26); }
.cat-card__icon svg { width: 28px; height: 28px; filter: drop-shadow(0 2px 3px rgba(0,0,0,.25)); }
.cat-card__go { transition: gap .2s ease; }
.cat-card:hover .cat-card__go { gap: 9px; }
.cat-card h3 { font-size: 18px; }
.cat-card p { color: var(--muted); font-size: 14px; margin-top: 6px; min-height: 40px; }
.cat-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.cat-card__count { color: var(--ink-2); font-weight: 700; font-size: 14px; }
.cat-card__go { color: var(--brand); display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 14px; }

/* Provider card */
.provider-card { padding: 20px; position: relative; display: flex; flex-direction: column; }
.provider-card.is-vip { border-color: #f3d98b; box-shadow: 0 8px 24px rgba(184,134,11,.12); }
.provider-card__top { display: flex; gap: 14px; }
.avatar { width: 64px; height: 64px; border-radius: 14px; flex: none; overflow: hidden; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 22px; }
.avatar--lg { width: 96px; height: 96px; font-size: 32px; border-radius: 20px; }
.provider-card__id { min-width: 0; flex: 1; }
.provider-card__name { font-size: 17px; font-weight: 800; display: flex; align-items: center; gap: 6px; }
.provider-card__name .v { color: var(--success); display: inline-flex; }
.provider-card__name .v svg { width: 17px; height: 17px; }
.provider-card__cat { color: var(--muted); font-size: 14px; margin-top: 2px; }
.provider-card__loc { color: var(--muted-2); font-size: 13px; display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.provider-card__loc svg { width: 14px; height: 14px; }
.rating { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; }
.stars { display: inline-flex; }
.star { color: #d8dee9; font-size: 15px; line-height: 1; }
.star--full { color: #f5a623; }
.star--half { background: linear-gradient(90deg,#f5a623 50%, #d8dee9 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rating small { color: var(--muted); font-weight: 600; }
.provider-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.metaitem { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--ink-2); background: var(--bg-soft); padding: 5px 10px; border-radius: 8px; }
.metaitem svg { width: 14px; height: 14px; color: var(--brand); }
.provider-card__badges { display: flex; flex-wrap: wrap; gap: 6px; position: absolute; top: 16px; inset-inline-end: 16px; }
.provider-card__foot { margin-top: auto; padding-top: 14px; display: flex; gap: 8px; }
.provider-card__foot .btn { flex: 1; }
.provider-card__price { font-weight: 800; color: var(--ink); }
.provider-card__price small { color: var(--muted); font-weight: 600; }

/* ── How it works ──────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step { text-align: center; padding: 24px; position: relative; }
.step__num {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(180deg, #e9fdf9, #ccfbf1);
    color: var(--brand-dark); display: grid; place-items: center; font-weight: 800; font-size: 20px; margin: 0 auto 14px;
    box-shadow: inset 0 1px 0 #fff, inset 0 -3px 0 rgba(13,148,136,.18), 0 8px 18px rgba(13,148,136,.18);
    transition: transform .25s cubic-bezier(.2,.7,.3,1.4);
}
.step:hover .step__num { transform: translateY(-4px) scale(1.07); }
.step h3 { font-size: 17px; }
.step p { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ── AI block — deep space card with breathing aurora ──── */
.ai-block {
    background: linear-gradient(135deg, #0f172a, #134e4a); color: #fff;
    border-radius: var(--radius-lg); padding: 44px; position: relative; overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 24px 60px rgba(15,23,42,.35);
}
.ai-block::after { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(20,184,166,.55), transparent 70%); top:-80px; inset-inline-end:-60px; animation: blobFloat 9s ease-in-out infinite alternate; }
.ai-block::before { content:""; position:absolute; width:360px; height:360px; border-radius:50%; background: radial-gradient(circle, rgba(37,99,235,.35), transparent 70%); bottom:-140px; inset-inline-start:-80px; animation: blobFloat 12s ease-in-out infinite alternate-reverse; }
.ai-block__inner { position: relative; z-index: 1; max-width: 720px; }
.ai-block h2 { color: #fff; font-size: clamp(24px,3vw,32px); }
.ai-block p { color: rgba(255,255,255,.85); margin-top: 12px; font-size: 17px; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ai-chip { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: .15s; }
.ai-chip:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ── Urgent CTA ────────────────────────────────────────── */
.urgent { background: linear-gradient(135deg,#dc2626,#ea580c); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.urgent h2 { color: #fff; }
.urgent p { color: rgba(255,255,255,.9); margin-top: 8px; }

/* ── Reviews ───────────────────────────────────────────── */
.review-card { padding: 22px; }
.review-card__stars { margin-bottom: 10px; }
.review-card__body { color: var(--ink-2); font-size: 15px; }
.review-card__author { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.review-card__author .avatar { width: 40px; height: 40px; font-size: 15px; border-radius: 10px; }
.review-card__author b { font-size: 14px; }
.review-card__author span { color: var(--muted); font-size: 13px; }

/* ── Forms ─────────────────────────────────────────────── */
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--ink-2); }
.input, .select, .textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 15px; background: #fdfefe; color: var(--ink);
    box-shadow: inset 0 1.5px 3px rgba(15,23,42,.05);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.input:focus, .select:focus, .textarea:focus { outline: 0; border-color: var(--brand); background: #fff; box-shadow: inset 0 1px 2px rgba(15,23,42,.03), var(--ring); }
.textarea { resize: vertical; min-height: 110px; }
.field-error { color: var(--danger); font-size: 13px; margin-top: 5px; }
.input.has-error, .select.has-error, .textarea.has-error { border-color: var(--danger); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.help { color: var(--muted); font-size: 13px; }
.checkbox { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--brand); }

/* ── Filters (sidebar) ─────────────────────────────────── */
.layout-split { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 88px; }
.filters h3 { font-size: 16px; margin-bottom: 6px; }
.filter-group { padding: 16px 0; border-top: 1px solid var(--line-2); }
.filter-group:first-of-type { border-top: 0; }
.filter-group h4 { font-size: 14px; color: var(--ink-2); margin-bottom: 10px; }
.filter-opt { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 14px; color: var(--ink-2); }

/* ── Breadcrumb ────────────────────────────────────────── */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; color: var(--muted); font-size: 14px; padding: 18px 0; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--muted-2); }

/* ── Page header band ──────────────────────────────────── */
.page-band { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 28px 0 36px; }
.page-band h1 { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -.02em; }
.page-band p { color: var(--muted); margin-top: 8px; max-width: 720px; }
.page-band__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 14px; }
.page-band__icon svg { width: 30px; height: 30px; }

/* ── Toolbar / result count ────────────────────────────── */
.toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.toolbar .count { color: var(--muted); font-size: 14px; }
.vip-row-head { display: flex; align-items: center; gap: 8px; margin: 6px 0 14px; font-weight: 800; color: var(--vip); }

/* ── Provider profile ──────────────────────────────────── */
.profile-hero { background: var(--grad-surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--edge), var(--shadow); }
.profile-hero__row { display: flex; gap: 22px; flex-wrap: wrap; }
.profile-hero h1 { font-size: 28px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 14px; color: var(--ink-2); font-size: 14px; }
.profile-meta .m { display: flex; align-items: center; gap: 6px; }
.profile-meta .m svg { color: var(--brand); width: 17px; height: 17px; }
.profile-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery img, .gallery .ph { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.panel h2 { font-size: 20px; margin-bottom: 14px; }
.hours-table { width: 100%; font-size: 14px; }
.hours-table td { padding: 7px 0; border-bottom: 1px solid var(--line-2); }
.hours-table td:last-child { text-align: end; color: var(--ink-2); font-weight: 600; }

/* ── Banner ────────────────────────────────────────────── */
.adbanner { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: block; position: relative; }
.adbanner .ph { aspect-ratio: 8/2; }
.adbanner__tag { position: absolute; top: 8px; inset-inline-start: 8px; }

/* ── Provider CTA ──────────────────────────────────────── */
.cta-band { background: var(--hero-grad); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(24px,3vw,34px); }
.cta-band p { color: rgba(255,255,255,.9); margin: 10px auto 24px; max-width: 560px; }

/* ── Footer — aurora glow over deep navy ───────────────── */
.site-footer {
    position: relative;
    background:
        radial-gradient(900px 320px at 82% -100px, rgba(13,148,136,.24), transparent 60%),
        radial-gradient(700px 280px at 8% 110%, rgba(37,99,235,.16), transparent 60%),
        linear-gradient(180deg, #0d1526, #0b1220);
    color: #cbd5e1; padding: 56px 0 28px; margin-top: 64px;
}
.site-footer::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 5%, rgba(94,234,212,.65) 35%, rgba(59,130,246,.55) 65%, transparent 95%);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.site-footer a { color: #94a3b8; font-size: 14px; display: block; padding: 5px 0; transition: .15s; }
.site-footer a:hover { color: #fff; }
.footer-brand p { color: #94a3b8; font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #64748b; font-size: 13px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: #1e293b; display: grid; place-items: center; padding: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 3px 8px rgba(0,0,0,.3); transition: .2s; }
.socials a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 10px 20px rgba(13,148,136,.4); }

/* ── Flash messages ────────────────────────────────────── */
.flash { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px; font-weight: 600; font-size: 14px; }
.flash--success { background: var(--success-bg); color: #166534; }
.flash--error { background: var(--danger-bg); color: #991b1b; }
.flash--info { background: var(--info-bg); color: #075985; }

/* ── Pagination ────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 9px 14px; border-radius: 9px; border: 1px solid var(--line); font-weight: 600; font-size: 14px; background: #fff; color: var(--ink-2); box-shadow: 0 1px 2px rgba(15,23,42,.05); transition: .15s; }
.pagination .is-active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--edge-dark), 0 6px 14px rgba(13,148,136,.35); }
.pagination a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(13,148,136,.14); }

/* ── Tag pills / related ───────────────────────────────── */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink-2); transition: .15s; }
.pill:hover { border-color: var(--brand); color: var(--brand); }

/* ── Empty state ───────────────────────────────────────── */
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty svg { width: 54px; height: 54px; color: var(--muted-2); margin-bottom: 14px; }

/* ── Utility ───────────────────────────────────────────── */
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.text-center{text-align:center}.text-muted{color:var(--muted)}
.flex{display:flex}.items-center{align-items:center}.gap-2{gap:8px}.gap-3{gap:12px}
.between{justify-content:space-between}.wrap{flex-wrap:wrap}
.hidden{display:none}.w-full{width:100%}

/* ── Responsive ────────────────────────────────────────── */
/* The full nav needs ~1200px to sit on ONE line — below that it folds into
   the hamburger drawer (never wraps to a second row). */
@media (max-width: 1240px) {
    .nav { display: none; }
    .nav-toggle { display: inline-flex; }
    /* keep only the hamburger in the top bar; everything else lives in the drawer */
    .header__actions > *:not(.nav-toggle) { display: none; }
    .header__inner { gap: 12px; }
}
@media (max-width: 980px) {
    .grid--4 { grid-template-columns: repeat(2,1fr); }
    .grid--3 { grid-template-columns: repeat(2,1fr); }
    .steps { grid-template-columns: repeat(2,1fr); }
    .stats { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    /* !important so inline grid-template overrides (provider profile, contact,
       admin) also collapse to one column on tablet/phone */
    .layout-split { grid-template-columns: 1fr !important; }
    .adm-grid-2, .adm-grid-3 { grid-template-columns: 1fr !important; }
    .filters { position: static; }
}
@media (max-width: 640px) {
    .section { padding: 40px 0; }
    .container { padding: 0 16px; }
    .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
    /* Categories: compact 2-col tiles on phones — icon + name + count, no
       description. 8 tall cards would otherwise make the list painfully long. */
    .grid--cats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .grid--cats .cat-card { padding: 14px 14px 12px; }
    .grid--cats .cat-card__icon { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 10px; }
    .grid--cats .cat-card__icon svg { width: 21px; height: 21px; }
    .grid--cats .cat-card h3 { font-size: 14.5px; line-height: 1.3; }
    .grid--cats .cat-card p { display: none; }
    .grid--cats .cat-card .pill-row { display: none; }
    .grid--cats .cat-card__meta { margin-top: 10px; padding-top: 10px; }
    .grid--cats .cat-card__count { font-size: 12px; }
    .grid--cats .cat-card__go { font-size: 12px; }
    .steps { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .searchbar { grid-template-columns: 1fr; padding: 8px; }
    .searchbar .field:not(:last-child) { border-inline-end: 0; border-bottom: 1px solid var(--line); }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .ai-block, .urgent, .cta-band { padding: 26px 20px; }
    .profile-actions { width: 100%; }
    .profile-actions .btn { flex: 1; min-width: 130px; }
    /* tighter chrome + headings on phones */
    .hero { padding: 44px 0 56px; }
    .hero__slides { min-height: 150px; }
    .section__title { font-size: 23px; }
    .section__head { margin-bottom: 28px; }
    .profile-hero { padding: 20px; }
    .profile-hero h1 { font-size: 22px; }
    .panel { padding: 18px; }
    .page-band { padding: 22px 0 26px; }
    .profile-meta { gap: 12px; }
    .logo { font-size: 19px; }
    .logo__mark { width: 36px; height: 36px; }
}
@media (max-width: 380px) {
    .stats { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .hero h1 { font-size: 27px; }
}

/* ── AI assistant modal ────────────────────────────────── */
.ai-modal { display: none; position: fixed; inset: 0; z-index: 80; background: rgba(15,23,42,.55); backdrop-filter: blur(4px); align-items: flex-end; justify-content: center; }
.ai-modal.is-open { display: flex; }
.ai-panel { background: #fff; width: 100%; max-width: 480px; height: 86vh; max-height: 720px; border-radius: 22px 22px 0 0; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); overflow: hidden; }
@media (min-width: 700px) { .ai-modal { align-items: center; } .ai-panel { border-radius: 22px; } }
.ai-head { background: linear-gradient(135deg,#0f172a,#134e4a); color: #fff; padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.ai-head .av { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.15); display: grid; place-items: center; }
.ai-head b { display: block; font-size: 16px; }
.ai-head span { font-size: 12.5px; color: rgba(255,255,255,.7); }
.ai-head .x { margin-inline-start: auto; background: rgba(255,255,255,.15); border: 0; color: #fff; width: 34px; height: 34px; border-radius: 9px; }
.ai-log { flex: 1; overflow-y: auto; padding: 18px; background: var(--bg-soft); display: flex; flex-direction: column; gap: 12px; }
.ai-msg { max-width: 88%; padding: 12px 15px; border-radius: 16px; font-size: 14.5px; line-height: 1.55; }
.ai-msg--user { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 5px; }
.ai-msg--bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.ai-foot { padding: 14px; border-top: 1px solid var(--line); display: flex; gap: 8px; }
.ai-foot input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; font-family: inherit; font-size: 14.5px; outline: 0; }
.ai-foot input:focus { border-color: var(--brand); box-shadow: var(--ring); }
.ai-foot button { width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--brand); color: #fff; flex: none; }
.ai-recs { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.ai-rec { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; display: block; transition: .15s; }
.ai-rec:hover { border-color: var(--brand); }
.ai-rec.is-vip { border-color: #f3d98b; background: #fffbeb; }
.ai-rec__top { display: flex; align-items: center; gap: 6px; font-size: 14.5px; }
.ai-rec__meta { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.ai-rec__why { color: var(--ink-2); font-size: 12.5px; margin-top: 5px; }
.ai-typing { display: inline-flex; gap: 4px; }
.ai-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); animation: aiBlink 1.2s infinite; }
.ai-typing i:nth-child(2){ animation-delay: .2s } .ai-typing i:nth-child(3){ animation-delay: .4s }
@keyframes aiBlink { 0%,60%,100%{opacity:.3} 30%{opacity:1} }

/* Package picker (registration) */
.pkg-pick { transition: .15s; }
.pkg-pick:hover { border-color: var(--muted-2); }
.pkg-pick:has(input:checked) { border-color: var(--brand); box-shadow: var(--ring); }

/* Provider public ID code chip */
.code-chip { display: inline-flex; align-items: center; gap: 5px; font-family: ui-monospace, monospace; font-weight: 700; font-size: 13px; background: var(--brand-light); color: var(--brand-dark); padding: 3px 9px; border-radius: 7px; letter-spacing: .04em; }

/* ── Support chat (24/7) ───────────────────────────────── */
.support-fab { position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; border: 0; background: var(--grad-brand); color: #fff; box-shadow: var(--edge-dark), inset 0 -3px 6px rgba(0,0,0,.16), 0 12px 30px rgba(13,148,136,.5); display: grid; place-items: center; cursor: pointer; transition: .2s; }
.support-fab:hover { transform: translateY(-4px) scale(1.06); box-shadow: var(--edge-dark), inset 0 -3px 6px rgba(0,0,0,.16), 0 18px 40px rgba(13,148,136,.55); }
.support-fab svg { width: 26px; height: 26px; }
.support-fab__pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(13,148,136,.5); animation: supportPulse 2.2s infinite; }
@keyframes supportPulse { 0% { box-shadow: 0 0 0 0 rgba(13,148,136,.5); } 70% { box-shadow: 0 0 0 16px rgba(13,148,136,0); } 100% { box-shadow: 0 0 0 0 rgba(13,148,136,0); } }
.support-modal { display: none; position: fixed; bottom: 90px; inset-inline-end: 22px; z-index: 71; width: 370px; max-width: calc(100vw - 32px); }
.support-modal.is-open { display: block; }
.support-panel { background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column; height: 460px; max-height: calc(100vh - 130px); border: 1px solid var(--line); }
@media (max-width: 480px) { .support-modal { inset-inline: 12px; bottom: 84px; } .support-panel { height: 70vh; } }

/* mobile nav drawer */
.mobile-nav { display: none; }
.mobile-nav.is-open { display: block; position: fixed; inset: 72px 0 0; background: #fff; z-index: 49; padding: 20px; overflow-y: auto; }
.mobile-nav a { display: block; padding: 14px 12px; border-radius: 10px; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--line-2); }

/* ── Direct messaging ─────────────────────────────────────────────── */
.chat-thread { display: flex; flex-direction: column; height: 68vh; min-height: 420px; max-height: 760px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 10px 40px rgba(15,23,42,.06); }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line-2); background: #fff; }
.chat-head__av { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex: none; }
.chat-head__name { font-weight: 700; font-size: 15px; line-height: 1.2; }
.chat-head__status { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.chat-head__status.is-online { color: #16a34a; }
.chat-close { margin-left: auto; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-soft); color: var(--ink-2); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; cursor: pointer; flex: none; transition: .15s; }
.chat-close:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }
.chat-log { flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 3px; background: linear-gradient(180deg, var(--bg-soft), #fff); scroll-behavior: smooth; }
.chat-day { align-self: center; margin: 12px 0 8px; padding: 3px 12px; border-radius: 999px; background: rgba(15,23,42,.06); color: var(--muted); font-size: 11px; font-weight: 600; }
.chat-msg { display: flex; margin-top: 5px; }
.chat-msg--me { justify-content: flex-end; }
.chat-msg--them { justify-content: flex-start; }
.chat-bubble { position: relative; max-width: 76%; padding: 9px 13px 6px; border-radius: 16px; font-size: 14px; line-height: 1.45; word-wrap: break-word; box-shadow: 0 1px 1px rgba(15,23,42,.05); }
.chat-msg--them .chat-bubble { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.chat-msg--me .chat-bubble { background: var(--brand); color: #fff; border-bottom-right-radius: 5px; }
.chat-time { display: block; text-align: right; font-size: 10px; opacity: .65; margin-top: 3px; }
.chat-foot { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line-2); background: #fff; }
.chat-foot .input { flex: 1; border-radius: 999px; }
.chat-foot .chat-send { flex: none; width: 46px; height: 46px; border-radius: 50%; padding: 0; display: inline-flex; align-items: center; justify-content: center; }
.chat-list a { display: flex; gap: 12px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; background: #fff; transition: .15s; }
.chat-list a:hover { border-color: var(--brand); box-shadow: 0 6px 20px rgba(13,148,136,.08); }
.chat-list .chat-unread { margin-left: auto; background: var(--brand); color: #fff; border-radius: 999px; min-width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; padding: 0 6px; }
.online-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1; vertical-align: middle; }
.online-dot.is-online { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
@media (max-width: 640px) { .chat-thread { height: 78vh; border-radius: 14px; } .chat-bubble { max-width: 85%; } }

/* ── "Install the Android app" banner ─────────────────────────────── */
.app-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; gap: 12px;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(15,23,42,.10);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); }
.app-banner__icon { border-radius: 11px; flex: none; }
.app-banner__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.app-banner__text b { font-size: 14px; }
.app-banner__text span { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-banner__btn { margin-left: auto; flex: none; white-space: nowrap; }
.app-banner__close { flex: none; border: 0; background: transparent; color: var(--muted); font-size: 18px; line-height: 1; padding: 6px; cursor: pointer; }
/* When the install banner is visible, lift the chat FAB + window above it so they never collide. */
body.has-app-banner .support-fab { bottom: calc(122px + env(safe-area-inset-bottom)); }
body.has-app-banner .support-modal { bottom: calc(186px + env(safe-area-inset-bottom)); }
body.has-app-banner { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

/* ════════════════════════════════════════════════════════════
   3D & MOTION LAYER — depth, glow and micro-interactions.
   Everything here degrades gracefully (no JS → static page).
   ════════════════════════════════════════════════════════════ */

/* Brand-tinted text selection + thin premium scrollbar */
::selection { background: rgba(13,148,136,.22); }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-softer); }
::-webkit-scrollbar-thumb { background: #c3ccd9; border-radius: 999px; border: 3px solid var(--bg-softer); }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* Keyboard focus — visible brand ring everywhere */
:focus-visible { outline: 3px solid rgba(13,148,136,.45); outline-offset: 2px; }

/* Hero aurora — two soft light blobs drifting above the photo/gradient */
.hero::after {
    content: ""; position: absolute; inset: -40px; z-index: 1; pointer-events: none;
    background:
        radial-gradient(300px 300px at 14% 24%, rgba(94,234,212,.30), transparent 70%),
        radial-gradient(360px 360px at 86% 72%, rgba(96,165,250,.26), transparent 70%);
    filter: blur(46px);
    animation: heroAura 11s ease-in-out infinite alternate;
}
@keyframes heroAura {
    from { transform: translate3d(0,0,0) scale(1); opacity: .8; }
    to   { transform: translate3d(24px,-18px,0) scale(1.12); opacity: 1; }
}
@keyframes blobFloat {
    from { transform: translate3d(0,0,0) scale(1); }
    to   { transform: translate3d(26px,18px,0) scale(1.18); }
}

/* Section titles get a gradient accent bar */
.section__head:not(.section__head--left) .section__title::after {
    content: ""; display: block; width: 58px; height: 4px; border-radius: 999px;
    margin: 14px auto 0; background: linear-gradient(90deg, var(--brand), var(--accent));
    box-shadow: 0 2px 10px rgba(13,148,136,.4);
}

/* VIP badge — slow golden shimmer sweep */
.badge--vip { position: relative; overflow: hidden; }
.badge--vip::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.6) 47%, transparent 62%);
    transform: translateX(-130%); animation: vipShine 3.4s ease-in-out infinite;
}
@keyframes vipShine { 0% { transform: translateX(-130%); } 55%,100% { transform: translateX(130%); } }

/* Panels / filters / flash share the lit-from-above edge */
.panel, .filters { background: var(--grad-surface); box-shadow: var(--edge), var(--shadow-sm); }
.flash { box-shadow: var(--edge), var(--shadow-sm); }
.urgent { box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 20px 50px rgba(220,38,38,.28); }
.cta-band { box-shadow: inset 0 1px 0 rgba(255,255,255,.20), 0 24px 60px rgba(13,148,136,.30); }
.page-band__icon { box-shadow: inset 0 2px 3px rgba(255,255,255,.3), inset 0 -4px 8px rgba(0,0,0,.2), 0 10px 22px rgba(15,23,42,.2); }
.avatar { box-shadow: inset 0 1px 0 rgba(255,255,255,.25), inset 0 -3px 6px rgba(0,0,0,.16), 0 4px 10px rgba(15,23,42,.15); }

/* VIP provider cards get a warm glow that intensifies on hover */
.provider-card.is-vip { box-shadow: var(--edge), 0 8px 24px rgba(184,134,11,.14); }
.provider-card.is-vip:hover { box-shadow: var(--edge), 0 18px 44px rgba(184,134,11,.24); border-color: #ecc45f; }

/* Scroll-reveal: JS adds .reveal to below-the-fold elements, .is-in when they enter */
.reveal { opacity: 0; transform: translateY(26px) scale(.98); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.65,.3,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

/* ── Searchable select (combobox) — long lists get a filter box ── */
.cbx { position: relative; }
.cbx__btn {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    width: 100%; cursor: pointer; text-align: start; font-family: inherit;
}
.cbx__btn > span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.searchbar .cbx__btn { border: 0; background: transparent; font-size: 15px; color: var(--ink); padding: 8px 0; }
.cbx__panel {
    position: absolute; top: calc(100% + 6px); inset-inline: 0; z-index: 65;
    min-width: 220px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--edge), var(--shadow-lg); padding: 8px; display: none; text-align: start;
}
.cbx.is-open .cbx__panel { display: block; }
.cbx__search {
    width: 100%; padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px;
    font-family: inherit; font-size: 14px; margin-bottom: 6px; outline: 0;
    box-shadow: inset 0 1.5px 3px rgba(15,23,42,.05);
}
.cbx__search:focus { border-color: var(--brand); box-shadow: var(--ring); }
.cbx__list { max-height: 250px; overflow-y: auto; }
.cbx__opt { padding: 9px 12px; border-radius: 8px; cursor: pointer; font-size: 14.5px; color: var(--ink-2); }
.cbx__opt:hover, .cbx__opt.is-hl { background: var(--brand-light); color: var(--brand-dark); font-weight: 600; }
.cbx__empty { padding: 10px 12px; color: var(--muted); font-size: 13.5px; }

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important; animation-iteration-count: 1 !important;
        transition-duration: .01ms !important; scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
