/* ============================================================
   Design System – Warm Teal Theme
   ============================================================ */
:root {
    --brand-deep:   #064e3b;
    --brand-dark:   #047857;
    --brand-mid:    #059669;
    --brand-light:  #34d399;
    --brand-pale:   #ecfdf5;
    --brand-glow:   rgba(52,211,153,0.12);

    --accent:       #f59e0b;
    --accent-pale:  #fffbeb;

    --good:         #059669;
    --good-bg:      #ecfdf5;
    --good-border:  #6ee7b7;
    --good-light:   #d1fae5;

    --warn:         #d97706;
    --warn-bg:      #fffbeb;
    --warn-border:  #fcd34d;
    --warn-light:   #fef3c7;

    --danger:       #dc2626;
    --danger-bg:    #fef2f2;
    --danger-border:#fca5a5;
    --danger-light: #fee2e2;

    --neutral:      #6b7280;
    --neutral-bg:   #fafaf9;
    --neutral-light:#f5f5f4;

    --text-1:       #1c1917;
    --text:         #1c1917;
    --text-2:       #44403c;
    --muted:        #78716c;
    --subtle:       #a8a29e;

    --surface:      #ffffff;
    --bg:           #faf9f7;
    --bg-warm:      #f5f3ef;
    --border:       #e7e5e4;
    --border-dark:  #d6d3d1;

    --star:         #f59e0b;

    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  16px;
    --r-xl:  24px;
    --r-2xl: 32px;

    --shadow-xs: 0 1px 2px rgba(28,25,23,0.04);
    --shadow-sm: 0 1px 3px rgba(28,25,23,0.06), 0 1px 2px rgba(28,25,23,0.04);
    --shadow-md: 0 4px 14px rgba(28,25,23,0.07), 0 2px 4px rgba(28,25,23,0.04);
    --shadow-lg: 0 12px 28px rgba(28,25,23,0.1), 0 4px 8px rgba(28,25,23,0.04);
    --shadow-glow: 0 0 0 3px var(--brand-glow);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; color: var(--text-1); }
p  { margin: 0; }

a { color: var(--brand-mid); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--brand-dark); text-decoration: underline; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--brand-light); color: var(--brand-deep); }

/* ============================================================
   Layout
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-wrap {
    padding-top: 32px;
    padding-bottom: 72px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
    background: var(--brand-deep);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(6,78,59,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 56px;
}

.site-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand:hover { text-decoration: none; opacity: 0.9; }

.brand-logo {
    height: 30px;
    width: auto;
    display: block;
}

.site-nav {
    display: flex;
    gap: 4px;
}

.site-nav a {
    color: rgba(255,255,255,0.78);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--r-md);
    transition: background 0.15s, color 0.15s;
}

.site-nav a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   Mobile Navigation (burger + drawer)
   ============================================================ */
.mob-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.mob-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
}
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.mob-overlay.is-open {
    display: block;
    opacity: 1;
}
.mob-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--surface);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
}
.mob-drawer.is-open {
    transform: translateX(0);
}
.mob-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.brand-logo-dark {
    fill: #1c1917;
}
.mob-drawer-header .brand-logo {
    height: 26px;
}
.mob-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    cursor: pointer;
    color: var(--text-2);
    transition: background 0.15s, color 0.15s;
}
.mob-close:hover {
    background: var(--bg-2);
    color: var(--text-1);
}
.mob-close svg { width: 18px; height: 18px; }
.mob-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}
.mob-drawer-nav a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-1);
    text-decoration: none;
    transition: background 0.12s, color 0.12s;
    -webkit-tap-highlight-color: transparent;
}
.mob-drawer-nav a:hover,
.mob-drawer-nav a:active {
    background: var(--brand-pale);
    color: var(--brand-dark);
    text-decoration: none;
}
.mob-drawer-secondary a {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-2);
    padding: 11px 24px;
}
.mob-drawer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 8px 24px;
    gap: 0;
}
.mob-drawer-legal a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px 8px 0;
}
.mob-drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 0 20px;
}
.mob-drawer-cta {
    padding: 16px 20px;
    margin-top: auto;
    flex-shrink: 0;
}
.mob-drawer-cta-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: var(--brand-mid);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--r-md);
    text-decoration: none;
    transition: background 0.15s;
}
.mob-drawer-cta-btn:hover {
    background: var(--brand-dark);
    text-decoration: none;
    color: #fff;
}
body.mob-nav-open {
    overflow: hidden;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 32px 0;
    margin-top: 48px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 24px;
    margin-bottom: 0;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-1);
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 320px;
}

.footer-col-title {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-1);
    margin-bottom: 10px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-col-links a {
    font-size: 0.88rem;
    color: var(--text-2);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s;
}

.footer-col-links a:hover { color: var(--brand-mid); text-decoration: underline; }

.footer-disclaimer {
    border-top: 1px solid var(--border);
    margin-top: 20px;
    padding-top: 18px;
}
.footer-disclaimer p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 760px;
    margin: 0;
}
.footer-disclaimer a {
    color: var(--brand-mid);
    font-weight: 600;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 16px;
    padding-top: 14px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.footer-bottom a {
    color: var(--text-2);
    text-decoration: none;
    font-weight: 500;
}
.footer-bottom a:hover {
    color: var(--brand-mid);
    text-decoration: underline;
}

.site-footer p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-bottom: 6px;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-2);
    text-decoration: none;
    font-weight: 500;
}
.footer-links a:hover { color: var(--brand-mid); text-decoration: underline; }

/* ============================================================
   Page Hero
   ============================================================ */
.page-hero {
    background: var(--brand-deep);
    padding: 52px 0;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -32px;
}


.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.15;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.82;
    max-width: 600px;
    line-height: 1.65;
}

/* ============================================================
   KPI Strip
   ============================================================ */
.kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.kpi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.kpi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.kpi-label {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    margin-bottom: 8px;
}

.kpi-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.03em;
    line-height: 1;
}

.kpi-sub {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
}

/* ============================================================
   Filter / Search Bar
   ============================================================ */
.filter-bar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 22px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 220px auto;
    gap: 14px;
    align-items: end;
    box-shadow: var(--shadow-sm);
}

.filter-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-input,
.filter-select {
    width: 100%;
    height: 42px;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--r-md);
    padding: 0 14px;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text);
    background: var(--surface);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--brand-light);
    box-shadow: var(--shadow-glow);
}

.btn-filter {
    height: 42px;
    padding: 0 22px;
    border: none;
    border-radius: var(--r-md);
    background: var(--brand-mid);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
}

.btn-filter:hover {
    background: var(--brand-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* ============================================================
   Card Grid
   ============================================================ */
.card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    align-items: stretch;
}

/* ============================================================
   Centre Card
   ============================================================ */
.centre-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--border-dark);
    border-radius: var(--r-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.centre-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.centre-card.card-good   { border-top-color: var(--good); }
.centre-card.card-warn   { border-top-color: var(--warn); }
.centre-card.card-danger { border-top-color: var(--danger); }
.centre-card.card-none   { border-top-color: var(--border-dark); }

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.card-age {
    font-size: 0.76rem;
    color: var(--subtle);
    white-space: nowrap;
}

.card-name {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.3;
}

.card-address {
    font-size: 0.82rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-wait-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
}

.wait-gauge {
    height: 7px;
    background: var(--neutral-light);
    border-radius: 999px;
    overflow: hidden;
}

.wait-gauge-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.5s ease;
}

.fill-good   { background: var(--good); }
.fill-warn   { background: var(--warn); }
.fill-danger { background: var(--danger); }
.fill-none   { background: var(--subtle); }

.wait-row-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.wait-weeks {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-1);
}

.wait-weeks-none {
    font-size: 0.85rem;
    color: var(--subtle);
    font-style: italic;
}

.trend {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--r-sm);
}

.trend-up   { color: var(--danger); background: var(--danger-bg); }
.trend-down { color: var(--good);   background: var(--good-bg);   }
.trend-flat { color: var(--muted);  background: var(--neutral-light); }

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

/* ============================================================
   Stars
   ============================================================ */
.stars {
    color: var(--star);
    font-size: 0.9rem;
    letter-spacing: -1px;
}

.rating-val {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-2);
}

.rating-count {
    font-size: 0.78rem;
    color: var(--muted);
}

.no-rating {
    font-size: 0.78rem;
    color: var(--subtle);
}

/* ============================================================
   Open / Closed Status Pill
   ============================================================ */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
}

.status-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pill-open   { background: var(--good-bg);    color: var(--good);   border: 1px solid var(--good-border);   }
.pill-open::before  { background: var(--good);   }
.pill-closed { background: var(--danger-bg);  color: var(--danger); border: 1px solid var(--danger-border); }
.pill-closed::before { background: var(--danger); }
.pill-allday { background: var(--brand-pale); color: var(--brand-mid); border: 1px solid #a7f3d0; }
.pill-allday::before { background: var(--brand-light); }

/* ============================================================
   Card action link
   ============================================================ */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-mid);
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: var(--r-md);
    background: var(--brand-pale);
    transition: background 0.15s, color 0.15s, transform 0.1s;
}

.card-link:hover {
    background: var(--good-light);
    color: var(--brand-dark);
    text-decoration: none;
    transform: translateX(2px);
}

/* ============================================================
   Empty State
   ============================================================ */
.empty-state {
    background: var(--surface);
    border: 2px dashed var(--border-dark);
    border-radius: var(--r-xl);
    padding: 48px 24px;
    text-align: center;
    color: var(--muted);
}

.empty-state h2 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-2); }

/* ============================================================
   Buttons (shared)
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding: 0 22px;
    border: none;
    border-radius: var(--r-md);
    background: var(--brand-mid);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
    background: var(--brand-dark);
    text-decoration: none;
    color: #fff;
    transform: translateY(-1px);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 44px;
    padding: 0 24px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.btn-book:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.8);
    text-decoration: none;
    color: #fff;
    transform: translateY(-1px);
}

.hero-cancel-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.15s;
}
.hero-cancel-link:hover { color: #fff; text-decoration: underline; }

.btn-sm {
    height: 30px;
    padding: 0 12px;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--r-sm);
    background: var(--surface);
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.btn-sm:hover { border-color: var(--brand-light); color: var(--brand-mid); }

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 16px;
    padding: 6px 0;
}
.breadcrumb a { color: var(--brand-mid); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep, .bc-sep { color: var(--subtle); }
.breadcrumb-current { color: var(--text-2); font-weight: 500; }

.hero-breadcrumb {
    margin-bottom: 14px;
    padding: 0;
    font-size: 0.82rem;
}
.hero-breadcrumb, .hero-breadcrumb .breadcrumb-current, .hero-breadcrumb span { color: rgba(255,255,255,0.55); }
.hero-breadcrumb a { color: rgba(255,255,255,0.7); }
.hero-breadcrumb a:hover { color: #fff; }
.hero-breadcrumb .breadcrumb-sep, .hero-breadcrumb .bc-sep { color: rgba(255,255,255,0.35); }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 16px;
    padding: 6px 0;
}

.back-link:hover { color: var(--brand-mid); text-decoration: none; }

/* ============================================================
   Detail Hero
   ============================================================ */
.detail-hero {
    background: var(--brand-deep);
    padding: 36px 0;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -32px;
}


.detail-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
}

.detail-hero-left { flex: 1; min-width: 0; }

.detail-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    flex-shrink: 0;
}

.detail-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    color: #fff;
}

.detail-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.7;
    margin: -2px 0 6px;
}
.detail-address {
    font-size: 0.92rem;
    opacity: 0.82;
    margin-bottom: 12px;
}
.seo-intro {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 72ch;
}

.detail-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.meta-item {
    font-size: 0.88rem;
    opacity: 0.88;
}

.meta-sep { opacity: 0.35; }

.detail-hero a,
.detail-hero a:hover { color: #fff; }
.detail-hero .muted { color: rgba(255,255,255,0.7); }
.detail-hero .meta-item.muted { opacity: 1; color: rgba(255,255,255,0.65); }
.detail-hero .status-pill { color: #fff; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.detail-hero .status-pill::before { background: rgba(255,255,255,0.7); }

.wait-badge-hero {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 22px;
    border-radius: var(--r-lg);
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    min-width: 115px;
    text-align: center;
}

.wait-badge-hero .wait-num {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.wait-badge-hero .wait-unit {
    font-size: 0.78rem;
    opacity: 0.8;
    margin-top: 3px;
    font-weight: 500;
}

.wait-badge-hero .wait-trend-hero {
    font-size: 0.88rem;
    font-weight: 700;
    margin-top: 8px;
    padding: 3px 10px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.15);
}

.trend-hero-up   { color: #fca5a5; }
.trend-hero-down { color: #86efac; }
.trend-hero-flat { color: rgba(255,255,255,0.6); }

/* ============================================================
   Facts Bar (detail page)
   ============================================================ */
.facts-bar {
    display: flex;
    flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.facts-item {
    flex: 1;
    min-width: 140px;
    padding: 16px 22px;
    border-right: 1px solid var(--border);
}

.facts-item:last-child { border-right: none; }

.facts-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--subtle);
    margin-bottom: 6px;
}

.facts-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-1);
}

/* ============================================================
   Content Grid (60/40 layout)
   ============================================================ */
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

/* ============================================================
   Section Panel
   ============================================================ */
.section-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
    min-width: 0;
}

.section-panel:last-child { margin-bottom: 0; }

.section-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* ============================================================
   Mini Stats Strip (chart context)
   ============================================================ */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 18px;
}

.mini-stat {
    background: var(--surface);
    padding: 14px 16px;
    text-align: center;
}

.mini-stat label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--subtle);
    margin-bottom: 4px;
}

.mini-stat span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
}
.mini-stat-highlight {
    background: var(--brand-pale);
    border-radius: var(--r-sm);
}

/* ============================================================
   Chart
   ============================================================ */
.chart-container {
    position: relative;
    height: 240px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 4px;
}

/* ============================================================
   History Timeline
   ============================================================ */
.history-timeline {
    display: flex;
    flex-direction: column;
}

.history-entry {
    display: flex;
    align-items: stretch;
}

.history-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    flex-shrink: 0;
}

.history-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
    border: 2px solid var(--border);
    background: var(--surface);
}

.history-dot.dot-good   { background: var(--good);   border-color: var(--good); }
.history-dot.dot-warn   { background: var(--warn);   border-color: var(--warn); }
.history-dot.dot-danger { background: var(--danger); border-color: var(--danger); }
.history-dot.dot-none   { background: var(--subtle); border-color: var(--subtle); }

.history-line {
    width: 2px;
    flex: 1;
    background: var(--border);
}

.history-entry:last-child .history-line { display: none; }

.history-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex: 1;
    padding: 4px 0 12px 14px;
    min-width: 0;
    line-height: 1;
}

.history-weeks {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-1);
    line-height: 1;
}

.history-date {
    font-size: 0.8rem;
    color: var(--subtle);
    white-space: nowrap;
    line-height: 1;
}

.history-toggle {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 10px 0;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--neutral-bg);
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.history-toggle:hover {
    background: var(--brand-pale);
    color: var(--brand-dark);
    border-color: var(--brand-light);
}

/* Legacy data table (leaderboards etc.) */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.data-table thead th {
    position: sticky;
    top: 0;
    background: var(--neutral-light);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-dark);
}

.data-table tbody tr:nth-child(even) { background: var(--neutral-bg); }

.data-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    vertical-align: middle;
}

.data-table tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   Map
   ============================================================ */
.map-canvas {
    width: 100%;
    height: 320px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.map-caption {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 8px;
}

/* ============================================================
   Info Grid (hours/facilities/contact/pass-rate)
   ============================================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.info-grid > .section-panel {
    height: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   Opening Hours
   ============================================================ */
.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.hours-item:last-child { border-bottom: none; }

.hours-day {
    font-weight: 500;
    color: var(--text-2);
}

.hours-time { color: var(--muted); font-size: 0.85rem; }
.hours-closed { color: var(--danger); font-weight: 500; }

.hours-item.hours-today {
    background: var(--brand-pale);
    margin: 0 -14px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    border-bottom-color: transparent;
}

.hours-item.hours-today .hours-day {
    color: var(--brand-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hours-item.hours-today .hours-day::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-mid);
    flex-shrink: 0;
}

/* ============================================================
   Facility Grid
   ============================================================ */
.facility-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.facility-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    font-size: 0.85rem;
}

.facility-row.fac-yes { background: var(--good-bg); }
.facility-row.fac-no  { background: var(--neutral-light); opacity: 0.7; }

.fac-icon {
    font-size: 1rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.fac-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-2);
}

.fac-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.fac-yes .fac-status { color: var(--good);   background: var(--good-light); }
.fac-no  .fac-status { color: var(--neutral); background: var(--neutral-light); }

/* ============================================================
   Contact Block
   ============================================================ */
.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-row-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--subtle);
}

.contact-row-value {
    font-size: 0.9rem;
    color: var(--text-2);
    word-break: break-word;
}

.contact-row-value a { color: var(--brand-mid); }

/* ============================================================
   Rating Bar Breakdown
   ============================================================ */
.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.rb-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.rb-label { min-width: 22px; color: var(--muted); font-weight: 500; }

.rb-track {
    flex: 1;
    height: 8px;
    background: var(--neutral-light);
    border-radius: 999px;
    overflow: hidden;
}

.rb-fill {
    height: 100%;
    background: var(--star);
    border-radius: 999px;
}

.rb-count { min-width: 28px; text-align: right; color: var(--muted); }

/* ============================================================
   Description
   ============================================================ */
.description-panel {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.7;
    max-height: 140px;
    overflow: hidden;
    position: relative;
}

.description-panel.expanded { max-height: none; }

.description-panel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(transparent, var(--surface));
    pointer-events: none;
}

.description-panel.expanded::after { display: none; }

/* ============================================================
   Alternative Centres
   ============================================================ */
.alternatives-section { margin-top: 28px; overflow: hidden; }

.alt-callout {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--good-bg);
    border: 1.5px solid var(--good-border);
    border-radius: var(--r-lg);
    padding: 18px 22px;
    margin-bottom: 18px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.2s, transform 0.15s;
}
.alt-callout:hover {
    border-color: var(--good);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}
.alt-callout-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--good);
    color: #fff;
    border-radius: 50%;
}
.alt-callout-body { flex: 1; min-width: 0; }
.alt-callout-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--good);
    margin-bottom: 2px;
}
.alt-callout-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--text-2);
}
.alt-callout-cta {
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--good);
    white-space: nowrap;
    padding: 6px 16px;
    border: 1.5px solid var(--good);
    border-radius: 100px;
    transition: background 0.15s, color 0.15s;
}
.alt-callout:hover .alt-callout-cta {
    background: var(--good);
    color: #fff;
}

.alt-already-best {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--good);
    background: var(--good-bg);
    border: 1px solid var(--good-border);
    border-radius: 100px;
    padding: 7px 18px;
    margin-bottom: 18px;
}

.alt-compare {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) minmax(0, 2fr) auto auto auto auto;
    overflow: hidden;
}

.alt-compare-row {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: background 0.12s;
}
.alt-compare-row:last-child { border-bottom: none; }
.alt-compare-link:hover {
    background: var(--brand-pale);
    text-decoration: none;
}
.alt-compare-better:hover { background: var(--good-bg); }

.alt-compare-current {
    background: var(--neutral-bg);
    border-radius: var(--r-sm) var(--r-sm) 0 0;
    font-weight: 600;
}

.alt-compare-rank-col {
    display: flex;
    justify-content: center;
}
.alt-rank {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    background: var(--neutral-light);
    border-radius: 50%;
}
.alt-compare-better .alt-rank {
    background: var(--good-light);
    color: var(--good);
}

.alt-compare-name {
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alt-compare-bar-wrap {
    height: 10px;
    background: var(--neutral-light);
    border-radius: 5px;
    overflow: hidden;
}
.alt-compare-bar {
    height: 100%;
    border-radius: 5px;
    transition: width 0.4s ease;
    min-width: 4px;
}
.alt-bar-current { background: var(--brand-dark); }
.alt-bar-good    { background: var(--good); }
.alt-bar-neutral { background: var(--subtle); }

.alt-compare-wait {
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    min-width: 42px;
    text-align: right;
}

.alt-compare-dist-col { text-align: center; }
.alt-dist-pill {
    font-size: 0.72rem;
    color: var(--muted);
    background: var(--neutral-light);
    border-radius: 100px;
    padding: 2px 8px;
    white-space: nowrap;
}

.alt-compare-diff-col { text-align: right; }
.alt-compare-action-col { text-align: right; }
.alt-compare-btn {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand);
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 100px;
    border: 1px solid var(--brand);
    transition: background 0.12s;
}
.alt-compare-btn:hover { background: var(--brand-pale); }
.alt-diff {
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    padding: 2px 8px;
    white-space: nowrap;
}
.alt-diff-good  { color: var(--good);   background: var(--good-light); }
.alt-diff-worse { color: var(--danger); background: var(--danger-light); }
.alt-diff-same  { color: var(--muted);  background: var(--neutral-light); }

@media (max-width: 700px) {
    .alt-callout { flex-direction: column; text-align: center; gap: 10px; padding: 16px; }
    .alt-callout-cta { align-self: stretch; text-align: center; }
    .alt-compare { grid-template-columns: 24px minmax(0, 1fr) auto auto; }
    .alt-compare-row { gap: 8px; padding: 10px 12px; }
    .alt-compare-bar-wrap { display: none; }
    .alt-compare-dist-col { display: none; }
    .alt-compare-diff-col { display: none; }
    .alt-compare-action-col { display: none; }
}

/* ============================================================
   No-data / Muted helpers
   ============================================================ */
.no-data-msg {
    font-size: 0.88rem;
    color: var(--subtle);
    font-style: italic;
    padding: 8px 0;
}

.muted { color: var(--muted); }

/* ============================================================
   Cancellation CTA – Detail Page
   ============================================================ */
.cancel-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    margin-bottom: 24px;
    border-radius: var(--r-lg);
    background: var(--brand-dark);
    color: #fff;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.15s;
    box-shadow: var(--shadow-sm);
}
.cancel-cta:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}
.cancel-cta-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.cancel-cta-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 22px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.18);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.cancel-cta-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cancel-cta-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}
.cancel-cta-sub {
    font-size: 0.84rem;
    opacity: 0.85;
    line-height: 1.5;
}
.cancel-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 20px;
    border-radius: var(--r-md);
    background: #fff;
    color: var(--brand-deep);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.15s;
}
.cancel-cta:hover .cancel-cta-btn {
    background: var(--brand-pale);
}

.cancel-bottom {
    text-align: center;
    padding: 28px;
    margin-top: 28px;
    border: 2px dashed var(--border-dark);
    border-radius: var(--r-xl);
    background: var(--surface);
}
.cancel-bottom-text {
    font-size: 0.95rem;
    color: var(--text-2);
    margin: 0 0 14px;
}
.cancel-bottom-btn {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 26px;
    border-radius: var(--r-md);
    background: var(--brand-dark);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow 0.15s, transform 0.15s;
}
.cancel-bottom-btn:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

/* ============================================================
   Pass Rate – Detail Page
   ============================================================ */
.pass-rate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex: 1;
}
.pass-rate-gauge {
    position: relative;
    width: 160px;
    text-align: center;
    margin-bottom: 4px;
}
.pass-rate-arc { width: 100%; height: auto; }
.pass-rate-arc-fill { transition: stroke-dasharray 0.6s ease; }
.pass-rate-pct {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-1);
}
.pass-rate-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.pass-rate-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pass-rate-stat-val { font-size: 1.15rem; font-weight: 700; color: var(--text-1); }
.pass-rate-stat-lbl { font-size: 0.88rem; color: var(--muted); }
.pass-rate-period {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    margin-top: auto;
}

.pass-rate-gender {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pass-rate-gender-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pass-rate-gender-lbl {
    width: 52px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-2);
    flex-shrink: 0;
}
.pass-rate-gender-bar-wrap {
    flex: 1;
    height: 10px;
    border-radius: 5px;
    background: var(--neutral-light);
    overflow: hidden;
}
.pass-rate-gender-bar {
    height: 100%;
    border-radius: 5px;
    background: var(--brand-mid);
    transition: width 0.4s ease;
}
.pass-rate-gender-bar-f { background: #a855f7; }
.pass-rate-gender-val {
    width: 48px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-1);
    text-align: right;
}

/* ============================================================
   Pass Rate Pill – Homepage Cards
   ============================================================ */
.pass-rate-pill {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 9px;
    border-radius: 11px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}
.pr-good { background: var(--good-light); color: #065f46; }
.pr-mid  { background: var(--warn-light); color: #92400e; }
.pr-low  { background: var(--danger-light); color: #991b1b; }

/* ============================================================
   Cancellation Banner – Homepage
   ============================================================ */
.home-cancel-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 22px;
    margin-bottom: 24px;
    border-radius: var(--r-lg);
    background: var(--brand-dark);
    color: #fff;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.15s;
    box-shadow: var(--shadow-sm);
}
.home-cancel-banner:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}
.home-cancel-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.home-cancel-text strong {
    font-size: 0.95rem;
    font-weight: 700;
}
.home-cancel-text span {
    font-size: 0.84rem;
    opacity: 0.85;
}
.home-cancel-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 18px;
    border-radius: var(--r-md);
    background: #fff;
    color: var(--brand-deep);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.15s;
}
.home-cancel-banner:hover .home-cancel-cta {
    background: var(--brand-pale);
}

/* ============================================================
   Leaderboard Tables (aggregate pages)
   ============================================================ */
.lb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.lb-table thead th {
    text-align: left;
    padding: 12px 14px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    border-bottom: 2px solid var(--border);
}
.lb-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.12s;
}
.lb-table tbody tr:hover { background: var(--neutral-bg); }
.lb-table td { padding: 12px 14px; vertical-align: middle; }

.lb-rank {
    width: 40px;
    text-align: center;
    font-weight: 700;
    color: var(--subtle);
    font-size: 0.82rem;
}
.lb-name { min-width: 160px; }
.lb-name a {
    color: var(--text-1);
    text-decoration: none;
    font-weight: 600;
}
.lb-name a:hover { color: var(--brand-mid); text-decoration: underline; }
.lb-region {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}
.lb-stat { width: 80px; white-space: nowrap; }
.lb-pass { color: var(--text-1); }
.lb-wait { color: var(--text-1); }
.lb-muted { color: var(--muted); font-size: 0.82rem; }

.lb-bar-col { width: 120px; }
.lb-bar-wrap {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--neutral-light);
    overflow: hidden;
}
.lb-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}
.lb-bar-good { background: var(--good); }
.lb-bar-mid  { background: var(--warn); }
.lb-bar-low  { background: var(--danger); }

/* ============================================================
   Region Pills & Aggregate Page Links
   ============================================================ */
.agg-regions {
    margin-top: 36px;
}
.agg-regions h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-1);
}
.region-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.region-pill {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 17px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-2);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.region-pill-city { font-size: 0.8rem; height: 30px; }
.agg-sub-heading {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    margin: 16px 0 8px;
}
.region-pill:hover {
    border-color: var(--brand-light);
    color: var(--brand-dark);
    background: var(--brand-pale);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.agg-links {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 0.88rem;
}
.agg-links a { color: var(--brand-mid); text-decoration: none; font-weight: 500; }
.agg-links a:hover { text-decoration: underline; }
.agg-links-sep { margin: 0 10px; color: var(--subtle); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1050px) {
    .content-grid { grid-template-columns: 1fr; }
    .info-grid    { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* ── Tablet ── */
@media (max-width: 760px) {
    .container { padding: 0 16px; }
    .content-wrap { padding-top: 20px; padding-bottom: 48px; }

    .site-nav { display: none; }
    .mob-burger { display: flex; }

    .page-hero     { padding: 32px 0 28px; margin-bottom: 20px; }
    .page-hero h1  { font-size: 1.55rem; }
    .page-hero p   { font-size: 0.95rem; }
    .detail-hero   { padding: 28px 0 24px; margin-bottom: 20px; }
    .detail-title  { font-size: 1.45rem; line-height: 1.2; }
    .detail-hero-inner { flex-direction: column; gap: 18px; align-items: stretch; }
    .detail-hero-left { flex: none; }
    .detail-hero-right {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    .wait-badge-hero {
        flex-direction: row;
        gap: 10px;
        padding: 14px 18px;
        min-width: 0;
        flex: 1;
    }
    .wait-badge-hero .wait-num { font-size: 1.6rem; }
    .wait-badge-hero .wait-unit { margin-top: 0; }
    .wait-badge-hero .wait-trend-hero { margin-top: 0; }
    .hero-cancel-link { font-size: 0.82rem; }

    .kpi-strip   { grid-template-columns: 1fr 1fr; gap: 10px; }
    .kpi-card    { padding: 16px 14px; }
    .kpi-value   { font-size: 1.5rem; }
    .filter-bar  { grid-template-columns: 1fr; padding: 14px 16px; }
    .info-grid   { grid-template-columns: 1fr; }
    .mini-stats  { grid-template-columns: 1fr 1fr 1fr; }
    .facts-bar   { flex-direction: column; }
    .facts-item  { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 16px; }
    .facts-item:last-child { border-bottom: none; }

    .section-panel { padding: 16px 14px; margin-bottom: 16px; }
    .section-title { font-size: 0.95rem; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .container { padding: 0 14px; }
    .content-wrap { padding-top: 16px; padding-bottom: 40px; }
    .brand-logo { height: 24px; }

    .page-hero     { padding: 26px 0 22px; margin-bottom: 16px; }
    .page-hero h1  { font-size: 1.35rem; line-height: 1.2; }
    .page-hero p   { font-size: 0.88rem; line-height: 1.55; }
    .detail-hero   { padding: 22px 0 18px; margin-bottom: 16px; }
    .detail-title  { font-size: 1.25rem; line-height: 1.2; }
    .detail-subtitle { font-size: 0.85rem; margin: 0 0 4px; }
    .detail-address  { font-size: 0.84rem; margin-bottom: 8px; }
    .detail-hero-meta { gap: 8px; font-size: 0.82rem; }
    .detail-hero-right { flex-direction: column; align-items: stretch; }
    .wait-badge-hero {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 12px 16px;
    }
    .wait-badge-hero .wait-num { font-size: 1.5rem; }
    .btn-book { width: 100%; text-align: center; padding: 12px 16px; }
    .hero-cancel-link { text-align: center; font-size: 0.8rem; }

    .hero-eyebrow { font-size: 0.7rem; padding: 4px 10px; margin-bottom: 10px; }
    .breadcrumb    { font-size: 0.78rem; margin-bottom: 8px; }

    .kpi-strip  { grid-template-columns: 1fr 1fr; gap: 8px; }
    .kpi-card   { padding: 16px 14px; }
    .kpi-value  { font-size: 1.3rem; }
    .kpi-label  { font-size: 0.68rem; }
    .kpi-sub    { font-size: 0.75rem; }

    .card-grid { grid-template-columns: 1fr; gap: 10px; }
    .centre-card { padding: 16px 14px; gap: 8px; }
    .centre-card:hover { transform: none; }
    .card-name { font-size: 0.92rem; }
    .card-age { font-size: 0.72rem; }

    .filter-bar { padding: 12px 14px; gap: 10px; }
    .filter-label { font-size: 0.74rem; }
    .filter-input, .filter-select { font-size: 0.88rem; padding: 10px 12px; }
    .btn-filter { padding: 12px 20px; font-size: 0.88rem; width: 100%; }

    .section-panel { padding: 14px 12px; margin-bottom: 14px; overflow-x: auto; }

    .lb-hide-sm { display: none; }
    .lb-bar-col { width: 60px; }
    .lb-table { font-size: 0.82rem; }
    .lb-table td, .lb-table thead th { padding: 10px 8px; }
    .lb-table thead th { font-size: 0.68rem; }
    .lb-name   { min-width: 80px; }
    .lb-rank   { width: 32px; font-size: 0.78rem; }
    .lb-region { font-size: 0.72rem; }
    .lb-table tbody tr { -webkit-tap-highlight-color: transparent; }

    .mini-stats { grid-template-columns: 1fr 1fr; }
    .mini-stat  { padding: 16px 14px; }
    .mini-stat label { font-size: 0.68rem; }
    .mini-stat span  { font-size: 1rem; }

    .cancel-cta, .home-cancel-banner { flex-direction: column; align-items: stretch; }
    .cancel-cta-btn, .home-cancel-cta { align-self: stretch; text-align: center; }

    .region-pills { gap: 8px; }
    .region-pill { height: 38px; padding: 0 14px; font-size: 0.84rem; }
    .region-pill-city { height: 34px; font-size: 0.8rem; }

    .agg-regions { margin-top: 24px; }
    .agg-links { font-size: 0.82rem; }
    .agg-links-sep { margin: 0 6px; }

    .footer-top { grid-template-columns: 1fr; gap: 20px; }
    .footer-tagline { max-width: none; }
    .footer-disclaimer p { font-size: 0.74rem; }

    .wait-badge-hero { padding: 12px 16px; }
    .wait-badge-number { font-size: 1.8rem; }

    .alert-signup-panel { margin-top: 20px; padding: 18px 14px; }
    .alert-signup-inner { flex-direction: column; align-items: stretch; gap: 14px; }
    .alert-signup-text { min-width: 0; text-align: center; }
    .alert-signup-text strong { font-size: 0.92rem; }
    .alert-signup-text span { font-size: 0.8rem; }
    .alert-signup-form { flex-direction: column; gap: 10px; }
    .alert-email-input { width: 100%; padding: 12px 14px; font-size: 1rem; }
    .alert-target-select { width: 100%; padding: 12px 10px; font-size: 0.88rem; }
    .alert-submit-btn { width: 100%; padding: 14px 18px; font-size: 0.92rem; }

    .az-nav { gap: 4px; padding: 12px 14px; }
    a.az-letter { width: 32px; height: 32px; font-size: 0.76rem; }
    .az-group-items { grid-template-columns: 1fr; gap: 6px; }
    a.az-card { padding: 12px 14px; gap: 10px; }
    .az-card-name { font-size: 0.86rem; }
    .az-region { display: none; }

    .legal-page { padding: 0; }
    .legal-page h2 { font-size: 1rem; margin-top: 24px; }
    .legal-table { font-size: 0.78rem; }
    .legal-table th, .legal-table td { padding: 8px 6px; }
}

/* ── Touch device improvements ── */
@media (hover: none) and (pointer: coarse) {
    .centre-card:hover { transform: none; box-shadow: var(--shadow-sm); }
    .kpi-card:hover { transform: none; box-shadow: none; }
    .nearme-card:hover { transform: none; box-shadow: none; }
    .nearme-intro-card:hover { transform: none; box-shadow: none; }
    .home-cancel-banner:hover { transform: none; }
    .nearme-pick:hover { transform: none; }
    .region-pill:hover { transform: none; }

    .centre-card:active { background: var(--bg-2); }
    .nearme-card:active { background: var(--bg-2); }
    .kpi-card:active { background: var(--bg-2); }
    .region-pill:active { background: var(--brand-pale); border-color: var(--brand-light); }
    .lb-table tbody tr:active { background: var(--neutral-bg); }
}

/* ── Small mobile (very narrow) ── */
@media (max-width: 380px) {
    .container { padding: 0 12px; }
    .page-hero h1 { font-size: 1.2rem; }
    .kpi-strip { grid-template-columns: 1fr; }
    .kpi-value { font-size: 1.2rem; }
    .mini-stats { grid-template-columns: 1fr; }
    .region-pill { height: 36px; font-size: 0.82rem; }
    .lb-table { font-size: 0.78rem; }
    .lb-table td, .lb-table thead th { padding: 8px 6px; }
}

/* ============================================================
   Alert Signup
   ============================================================ */
.alert-signup-panel {
    margin: 24px 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 26px;
}
.alert-signup-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.alert-signup-text {
    flex: 1;
    min-width: 200px;
}
.alert-signup-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-1);
    margin-bottom: 2px;
}
.alert-signup-text span {
    font-size: 0.82rem;
    color: var(--muted);
}
.alert-signup-form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.alert-email-input {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    width: 200px;
    font-family: inherit;
}
.alert-target-select {
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-family: inherit;
    background: var(--surface);
}
.alert-submit-btn {
    padding: 8px 18px;
    background: var(--brand-deep);
    color: #fff;
    border: none;
    border-radius: var(--r-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.12s;
}
.alert-submit-btn:hover { background: var(--brand-dark); }
.alert-msg {
    display: block;
    width: 100%;
    font-size: 0.82rem;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    margin-top: 4px;
}
.alert-msg-success { color: var(--good); background: var(--good-light); }
.alert-msg-error   { color: var(--danger); background: var(--danger-light); }

/* ============================================================
   All Centres A-Z
   ============================================================ */
.az-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 0 0 32px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}
a.az-letter {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    color: var(--brand-deep);
    background: var(--bg-2);
    border: 1px solid var(--border);
    transition: background 0.12s, color 0.12s;
}
a.az-letter:hover {
    background: var(--brand-mid);
    color: #fff;
    text-decoration: none;
    border-color: var(--brand-mid);
}
.az-disabled { opacity: 0.25; pointer-events: none; }

.az-group {
    margin-bottom: 32px;
    scroll-margin-top: 72px;
}
.az-group-letter {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: var(--brand-mid);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    margin-bottom: 14px;
}
.az-group-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 8px;
}
a.az-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
a.az-card:hover {
    border-color: var(--brand-light);
    box-shadow: var(--shadow-sm);
    background: var(--brand-pale);
    text-decoration: none;
    color: var(--text);
}
.az-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-1);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.az-card-meta {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}
.az-wait {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    white-space: nowrap;
}
.az-wait-good   { color: var(--good); background: var(--good-light); }
.az-wait-warn   { color: var(--warn-text, #92400e); background: var(--warn-light, #fef3c7); }
.az-wait-danger { color: var(--danger); background: var(--danger-light); }
.az-pass {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--subtle);
    white-space: nowrap;
}
.az-region {
    font-size: 0.7rem;
    color: var(--muted);
    white-space: nowrap;
}
.az-card-arrow {
    font-size: 1.3rem;
    color: var(--border);
    font-weight: 300;
    flex-shrink: 0;
    transition: color 0.15s;
}
a.az-card:hover .az-card-arrow {
    color: var(--brand-mid);
}

/* ============================================================
   Near Me
   ============================================================ */
.nearme-search {
    margin: 24px 0;
    padding: 28px 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}
.nearme-search-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 4px;
}
.nearme-search-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 18px;
}
.nearme-form {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.nearme-field { display: flex; flex-direction: column; gap: 4px; }
.nearme-input { width: 200px; }
.nearme-field-btn { justify-content: flex-end; }

/* ── Intro cards (before search) ── */
.nearme-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0;
}
.nearme-intro-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    text-align: center;
    transition: box-shadow 0.18s, transform 0.18s;
}
.nearme-intro-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.nearme-intro-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}
.nearme-intro-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 6px;
}
.nearme-intro-card p {
    font-size: 0.84rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Popular searches ── */
.nearme-popular {
    margin: 28px 0;
}
.nearme-popular h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 14px;
}
.nearme-popular-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── KPIs for results ── */
.nearme-kpis {
    margin: 24px 0 18px;
}

/* ── Our pick recommendation ── */
.nearme-pick {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    margin: 0 0 18px;
    background: var(--good-bg);
    border: 2px solid var(--good-border);
    border-radius: var(--r-lg);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.18s, transform 0.18s;
}
.nearme-pick:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}
.nearme-pick-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: var(--good);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 100px;
    white-space: nowrap;
}
.nearme-pick-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.nearme-pick-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
}
.nearme-pick-reason {
    font-size: 0.84rem;
    color: var(--muted);
}
.nearme-pick-cta {
    flex-shrink: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--good);
    white-space: nowrap;
}

/* ── Result cards ── */
.nearme-results-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
}
.nearme-card {
    display: grid;
    grid-template-columns: 42px 1fr auto 24px;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}
.nearme-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    border-color: var(--brand-light);
}
.nearme-card-great {
    border-left: 4px solid var(--good);
}
.nearme-card-ok {
    border-left: 4px solid #f59e0b;
}
.nearme-card-rank {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--brand-dark);
    background: var(--brand-pale);
    border-radius: 50%;
    flex-shrink: 0;
}
.nearme-card-main {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.nearme-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nearme-card-address {
    font-size: 0.8rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nearme-card-stats {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}
.nearme-card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 60px;
}
.nearme-stat-val {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-1);
}
.nearme-stat-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    font-weight: 600;
}
.nearme-wait-great { color: var(--good) !important; }
.nearme-wait-ok    { color: #d97706 !important; }
.nearme-wait-long  { color: var(--danger) !important; }
.nearme-card-mobile-meta {
    display: none;
    font-size: 0.78rem;
    color: var(--muted);
    gap: 6px;
    font-weight: 600;
    margin-top: 2px;
}
.nearme-card-arrow {
    font-size: 1.4rem;
    color: var(--muted);
    font-weight: 300;
    transition: color 0.15s;
}
.nearme-card:hover .nearme-card-arrow {
    color: var(--brand-mid);
}

/* ── Tips section ── */
.nearme-tips {
    margin: 36px 0 12px;
}
.nearme-tips h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text-1);
}
.nearme-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.nearme-tip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px;
}
.nearme-tip strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 6px;
}
.nearme-tip p {
    font-size: 0.84rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}
.nearme-tip a {
    color: var(--brand-mid);
    font-weight: 600;
}

/* ── Near Me Responsive ── */
@media (max-width: 800px) {
    .nearme-intro-grid  { grid-template-columns: 1fr; }
    .nearme-tips-grid   { grid-template-columns: 1fr; }
    .nearme-kpis        { grid-template-columns: 1fr 1fr; }
    .nearme-pick        { flex-direction: column; align-items: flex-start; gap: 12px; }
    .nearme-pick-cta    { align-self: stretch; text-align: center; padding: 12px; background: var(--good-bg); border-radius: var(--r-md); }
    .nearme-card        { grid-template-columns: 38px 1fr auto 24px; }
    .nearme-hide-sm     { display: none; }
}
@media (max-width: 640px) {
    .nearme-search       { padding: 16px 14px; }
    .nearme-search-title { font-size: 1rem; }
    .nearme-input        { width: 100%; }
    .nearme-form         { flex-direction: column; align-items: stretch; }
    .nearme-field-btn    { align-items: stretch; }
    .nearme-card         { grid-template-columns: 32px 1fr 20px; gap: 10px; padding: 14px 12px; }
    .nearme-card-stats        { display: none; }
    .nearme-card-mobile-meta  { display: flex; }
    .nearme-card-main         { gap: 2px; }
    .nearme-card-name         { font-size: 0.88rem; white-space: normal; }
    .nearme-card-rank         { width: 32px; height: 32px; font-size: 0.8rem; }
    .nearme-card-arrow        { font-size: 1.2rem; }
    .nearme-kpis              { grid-template-columns: 1fr 1fr; gap: 8px; }
    .nearme-pick-badge        { font-size: 0.7rem; padding: 4px 10px; }
    .nearme-pick-name         { font-size: 0.92rem; }
    .nearme-intro-card        { padding: 18px 16px; }
    .nearme-popular-pills     { gap: 6px; }
    .nearme-tip               { padding: 16px 14px; }
}

/* ============================================================
   Compare
   ============================================================ */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: start;
    margin: 24px 0;
}
.compare-vs {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-top: 60px;
}
.compare-col {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.compare-header {
    padding: 20px 22px 14px;
    border-bottom: 1px solid var(--border);
}
.compare-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
}
.compare-link {
    font-size: 0.82rem;
    color: var(--brand);
    text-decoration: none;
}
.compare-link:hover { text-decoration: underline; }
.compare-cards { padding: 0; }
.compare-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
}
.compare-card:last-child { border-bottom: none; }
.compare-card-label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}
.compare-card-value {
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
}
.compare-card-small { font-size: 0.82rem; font-weight: 400; max-width: 200px; }
.compare-wait-good   { color: var(--good); }
.compare-wait-warn   { color: var(--warn-text, #92400e); }
.compare-wait-danger { color: var(--danger); }

.compare-verdict {
    margin: 20px 0;
    padding: 20px 24px;
    background: var(--good-light);
    border: 1px solid var(--good);
    border-radius: var(--r-lg);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-1);
}

@media (max-width: 700px) {
    .compare-grid { grid-template-columns: 1fr; gap: 12px; }
    .compare-vs { padding-top: 0; text-align: center; font-size: 0.9rem; }
    .compare-verdict { padding: 16px; font-size: 0.88rem; }
}

/* ============================================================
   Trends
   ============================================================ */
.trends-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}
.trends-region-list, .trends-mover-list { display: flex; flex-direction: column; }

.trends-region-row, .trends-mover-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: background 0.12s;
}
.trends-region-row:last-child, .trends-mover-row:last-child { border-bottom: none; }
.trends-region-row:hover, .trends-mover-row:hover { background: var(--brand-pale); }

.trends-region-name, .trends-mover-name { flex: 1; font-weight: 500; font-size: 0.88rem; }
.trends-region-wait {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}
.tw-good   { color: var(--good); background: var(--good-light); }
.tw-warn   { color: var(--warn-text, #92400e); background: var(--warn-light, #fef3c7); }
.tw-danger { color: var(--danger); background: var(--danger-light); }
.trends-region-count { font-size: 0.75rem; color: var(--muted); min-width: 60px; text-align: right; }

.trends-mover-diff {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
}
.mover-better { color: var(--good); background: var(--good-light); }
.mover-worse  { color: var(--danger); background: var(--danger-light); }
.trends-mover-now { font-size: 0.75rem; color: var(--muted); min-width: 70px; text-align: right; }

@media (max-width: 700px) {
    .trends-insights { grid-template-columns: 1fr; }
}

/* ============================================================
   Legal Pages (Terms, Privacy, Disclaimer)
   ============================================================ */
.legal-page {
    max-width: 740px;
    margin: 0 auto 40px;
    padding: 0 4px;
}
.legal-updated {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0 0 28px;
    font-weight: 500;
}
.legal-page h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 32px 0 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.legal-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
}
.legal-page h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-2);
    margin: 20px 0 8px;
}
.legal-page p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.72;
    margin: 0 0 14px;
}
.legal-page ul {
    margin: 0 0 14px 20px;
    padding: 0;
}
.legal-page li {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.72;
    margin-bottom: 6px;
}
.legal-page a {
    color: var(--brand-mid);
    font-weight: 600;
}
.legal-page strong {
    font-weight: 700;
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 18px;
    font-size: 0.85rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.legal-table th {
    text-align: left;
    font-weight: 700;
    color: var(--text-1);
    padding: 10px 12px;
    background: var(--bg-2);
    border-bottom: 2px solid var(--border);
}
.legal-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    line-height: 1.55;
    vertical-align: top;
}
.legal-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 640px) {
    .legal-page { padding: 0; }
    .legal-page h2 { font-size: 1rem; }
    .legal-table { font-size: 0.8rem; }
    .legal-table th, .legal-table td { padding: 8px 8px; }
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-form-wrap {
    margin-bottom: 32px;
}
.contact-form-group {
    margin-bottom: 18px;
}
.contact-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 6px;
}
.contact-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.contact-input:focus {
    outline: none;
    border-color: var(--brand-mid);
    box-shadow: 0 0 0 3px var(--brand-glow);
}
.contact-textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-submit {
    margin-top: 4px;
}
.contact-status {
    display: block;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
}
.contact-status-ok {
    background: var(--brand-pale);
    color: var(--brand-dark);
}

/* ============================================================
   Landing Pages
   ============================================================ */

/* Hero */
.lp-hero { text-align: center; }
.lp-hero h1 { font-size: 2.4rem; max-width: 700px; margin: 0 auto 14px; }
.lp-hero p { max-width: 600px; margin: 0 auto; }
.lp-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}
a.lp-hero-btn,
.lp-hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: var(--r-md);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
a.lp-hero-btn-primary {
    background: #fff;
    color: var(--brand-dark);
    box-shadow: var(--shadow-sm);
}
a.lp-hero-btn-primary:hover {
    background: var(--brand-pale);
    color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
a.lp-hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
a.lp-hero-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

/* Stats strip */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
}
.lp-stat {
    background: var(--surface);
    padding: 22px 18px;
    text-align: center;
}
.lp-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-mid);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lp-stat-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--subtle);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Section structure */
.lp-section {
    padding: 48px 0;
    scroll-margin-top: 72px;
}
.lp-section-alt {
    background: var(--bg-2);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    margin-bottom: 8px;
}
.lp-section-highlight {
    background: var(--brand-pale);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    margin-bottom: 8px;
    border: 2px solid var(--brand-light);
}
.lp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}
.lp-section-header h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 10px;
}
.lp-section-header p {
    font-size: 0.94rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}
.lp-section-header a {
    color: var(--brand-mid);
    font-weight: 600;
}

/* Badge */
.lp-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--brand-mid);
    color: #fff;
    margin-bottom: 12px;
}
.lp-badge-secondary {
    background: var(--green);
    color: #fff;
}

/* Reason grid */
.lp-reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.lp-reason {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
}
.lp-reason-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.lp-reason strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-1);
    margin-bottom: 6px;
}
.lp-reason p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}
.lp-reason a { color: var(--brand-mid); font-weight: 600; }

/* Split layout (text + visual) */
.lp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.lp-split-reverse { direction: rtl; }
.lp-split-reverse > * { direction: ltr; }
.lp-split-content h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 14px;
}
.lp-split-content p {
    font-size: 0.9rem;
    line-height: 1.72;
    color: var(--text);
    margin: 0 0 14px;
}
.lp-split-content a { color: var(--brand-mid); font-weight: 600; }
.lp-checklist {
    list-style: none;
    margin: 18px 0 24px;
    padding: 0;
}
.lp-checklist li {
    position: relative;
    padding-left: 26px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 8px;
}
.lp-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
    font-size: 0.92rem;
}
.lp-section-btn,
a.lp-section-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    border-radius: var(--r-md);
    background: var(--brand-mid);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}
a.lp-section-btn:hover {
    background: var(--brand-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
a.lp-section-btn-outline,
.lp-section-btn-outline {
    background: transparent;
    color: var(--brand-mid);
    border: 2px solid var(--brand-mid);
}
a.lp-section-btn-outline:hover {
    background: var(--brand-mid);
    color: #fff;
}
a.lp-section-btn-secondary,
.lp-section-btn-secondary {
    background: var(--brand-dark);
    color: #fff;
}
a.lp-section-btn-secondary:hover {
    background: var(--text-1);
    color: #fff;
}

/* Mock cards (visual illustration) */
.lp-split-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-mock-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lp-mock-card strong {
    font-size: 0.95rem;
    color: var(--text-1);
}
.lp-mock-meta {
    font-size: 0.8rem;
    color: var(--subtle);
}
.lp-mock-badge {
    display: inline-block;
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--r-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lp-mock-badge-great {
    background: var(--green-bg);
    color: var(--green);
}
.lp-mock-badge-long {
    background: #fef2f2;
    color: #dc2626;
}
.lp-mock-card-dim {
    opacity: 0.55;
    border-style: dashed;
}
.lp-mock-saving {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green);
    padding: 10px;
    background: var(--green-bg);
    border-radius: var(--r-md);
}

/* Mock alert */
.lp-mock-alert {
    display: flex;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 24px;
    box-shadow: var(--shadow-md);
    align-items: flex-start;
}
.lp-mock-alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.lp-mock-alert strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-1);
    margin-bottom: 4px;
}
.lp-mock-alert p {
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* Info columns */
.lp-info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lp-info-col {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px 22px;
}
.lp-info-col h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 8px;
}
.lp-info-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* Steps */
.lp-steps {
    max-width: 640px;
    margin: 0 auto 28px;
}
.lp-step {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.lp-step:last-child { border-bottom: none; }
.lp-step-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--brand-mid);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.lp-step strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-1);
    margin-bottom: 4px;
}
.lp-step p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}
.lp-step a { color: var(--brand-mid); font-weight: 600; }

/* Callout */
.lp-callout {
    max-width: 640px;
    margin: 0 auto;
    background: var(--brand-pale);
    border-left: 4px solid var(--brand-mid);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: 18px 22px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text);
}
.lp-callout strong { color: var(--brand-dark); }
.lp-callout a { color: var(--brand-mid); font-weight: 600; }
.lp-callout-warn {
    background: #fef3cd;
    border-left-color: #f59e0b;
}
.lp-callout-warn strong { color: #92400e; }

/* Features grid */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lp-feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 22px;
}
.lp-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-1);
    margin-bottom: 8px;
}
.lp-feature p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}
.lp-feature ul {
    margin: 0;
    padding: 0 0 0 18px;
}
.lp-feature li {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 4px;
}

/* Feature check sub-items (replaces ugly ul) */
.lp-feature-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-feature-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.lp-feature-check-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 2px;
}
.lp-feature-check strong {
    display: block;
    font-size: 0.84rem;
    color: var(--text-1);
    margin-bottom: 1px;
}
.lp-feature-check p {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--subtle);
    margin: 0;
}

/* Tips grid */
.lp-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lp-tip-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
}
.lp-tip-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.lp-tip-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-1);
    margin-bottom: 6px;
}
.lp-tip-card p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}
.lp-tip-card a { color: var(--brand-mid); font-weight: 600; }

/* Consider grid */
.lp-consider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.lp-consider {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 22px 20px;
}
.lp-consider strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-1);
    margin-bottom: 6px;
}
.lp-consider p {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

/* FAQ */
.lp-faq {
    max-width: 700px;
    margin: 0 auto;
}
.lp-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: 10px;
    background: var(--surface);
    overflow: hidden;
}
.lp-faq-item summary {
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-1);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::before {
    content: "+";
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-pale);
    color: var(--brand-mid);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.lp-faq-item[open] summary::before {
    content: "\2212";
}
.lp-faq-item p {
    padding: 0 20px 16px 56px;
    font-size: 0.88rem;
    line-height: 1.72;
    margin: 0;
    color: var(--text);
}
.lp-faq-item a { color: var(--brand-mid); font-weight: 600; }

/* Final CTAs */
.lp-final-ctas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 40px 0 8px;
    border-top: 1px solid var(--border);
    align-items: stretch;
}
.lp-final-cta {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.lp-final-cta .lp-final-btn {
    margin-top: auto;
}
.lp-final-cta h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 8px;
}
.lp-final-cta p {
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 20px;
    flex: 1;
}
.lp-final-cta-primary {
    background: var(--brand-pale);
    border-color: var(--brand-light);
}
.lp-final-cta-dark {
    background: var(--text-1);
    border-color: var(--text-1);
}
.lp-final-cta-dark h3 { color: #fff; }
.lp-final-cta-dark p { color: rgba(255,255,255,0.75); }
a.lp-final-btn,
.lp-final-btn {
    display: block;
    text-align: center;
    padding: 11px 20px;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--brand-mid);
    color: #fff;
    transition: background 0.15s;
}
a.lp-final-btn:hover {
    background: var(--brand-dark);
    color: #fff;
    text-decoration: none;
}
a.lp-final-btn-outline {
    background: transparent;
    color: var(--brand-mid);
    border: 2px solid var(--brand-mid);
}
a.lp-final-btn-outline:hover {
    background: var(--brand-mid);
    color: #fff;
}
a.lp-final-btn-white {
    background: #fff;
    color: var(--text-1);
}
a.lp-final-btn-white:hover {
    background: var(--brand-pale);
    color: var(--text-1);
}

/* ── Landing page responsive ── */
@media (max-width: 900px) {
    .lp-split { grid-template-columns: 1fr; gap: 28px; }
    .lp-split-reverse { direction: ltr; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .lp-hero h1 { font-size: 1.8rem; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); }
    .lp-section-header h2 { font-size: 1.3rem; }
    .lp-reason-grid { grid-template-columns: 1fr; }
    .lp-info-columns { grid-template-columns: 1fr; }
    .lp-consider-grid { grid-template-columns: 1fr; }
    .lp-final-ctas { grid-template-columns: 1fr; }
    .lp-section-alt, .lp-section-highlight { padding: 28px 20px; }
}
@media (max-width: 480px) {
    .lp-hero h1 { font-size: 1.5rem; }
    .lp-hero-btn { padding: 12px 22px; font-size: 0.86rem; width: 100%; justify-content: center; }
    .lp-stats { grid-template-columns: 1fr 1fr; }
    .lp-stat { padding: 16px 14px; }
    .lp-stat-value { font-size: 1.2rem; }
    .lp-tips-grid { grid-template-columns: 1fr; }
    .lp-section-header h2 { font-size: 1.15rem; }
    .lp-split-content h2 { font-size: 1.2rem; }
    .lp-step { gap: 12px; }
    .lp-step-num { width: 32px; height: 32px; font-size: 0.82rem; }
    .lp-callout { padding: 14px 16px; }
    .lp-faq-item summary { padding: 14px 16px; font-size: 0.88rem; }
    .lp-faq-item p { padding: 0 16px 14px 46px; font-size: 0.84rem; }
    .lp-section-alt, .lp-section-highlight { padding: 22px 16px; }
}
