/*
  Bikeley UI (Airbnb-inspired)
  - No external assets
  - Static site images: use .webp
  - Static site videos: use .webm
  - Icons: upload your own (SVG recommended) to /assets/icons/

  Font:
  Upload your preferred font as WOFF2 to /assets/fonts/ and keep the names below.
  If you don't upload fonts, the site falls back to system fonts.
  NOTE: Commented out to prevent 404 errors – uncomment once font files exist.
*/

/*
@font-face{
  font-family:"Bikeley Sans";
  src: local("Bikeley Sans"), url("/assets/fonts/BikeleySans-Regular.woff2") format("woff2");
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Bikeley Sans";
  src: local("Bikeley Sans"), url("/assets/fonts/BikeleySans-Medium.woff2") format("woff2");
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Bikeley Sans";
  src: local("Bikeley Sans"), url("/assets/fonts/BikeleySans-Semibold.woff2") format("woff2");
  font-weight:600; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Bikeley Sans";
  src: local("Bikeley Sans"), url("/assets/fonts/BikeleySans-Bold.woff2") format("woff2");
  font-weight:700; font-style:normal; font-display:swap;
}
*/

:root{
  /* Layout */
  /* Slightly wider on desktop to use the available screen real estate better (landing pages especially) */
  --container:1360px;
  --header-h:72px;

  /* Core */
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#F6F7F9;
  --text:#111827;
  --muted:#6B7280;
  --border:rgba(17,24,39,0.10);

  /* Shadows */
  --shadow:0 10px 30px rgba(0,0,0,0.12);
  --shadow-sm:0 6px 18px rgba(0,0,0,0.10);

  /* Radius (Airbnb-ish) */
  --radius-xl:24px;
  --radius-lg:16px;
  --radius-md:12px;
  --radius-sm:10px;

  /* Brand */
  --primary:#0B0B0F;
  --primary-rgb: 11, 11, 15;
  --primary-contrast:#ffffff;
  /* Brand accent (Bikeley) – primary CTA color */
  /* Bikeley brand accent (Option C: warm copper) */
  /* Brand accent (Option B): warm + energetic (orange → violet)
     Distinct from Airbnb pink, but still very "CTA"-like. */
  --accent: #C62828;
  --accent-rgb: 198, 40, 40;
  /* Slightly deeper violet to avoid an "Instagram"-like pink/purple feel */
  --accent-2: #6D1B1B;
  --accent-2-rgb: 109, 27, 27;
  /* Keep it 2-tone (orange → violet) */
  --accent-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --focus:rgba(17,24,39,0.16);
  
    /* CTA (premium, no “social gradient”) */
  /* Charcoal satin (NOT pure black) + subtle “metal edge” */
  --cta-fill: linear-gradient(180deg, #242833 0%, #141821 100%);
  --cta-border: linear-gradient(135deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.08) 55%,
    rgba(255,255,255,0.18) 100%);
  --cta-focus: rgba(17,24,39,0.20);


  /* Status */
  --ok:#22C55E;
  --warn:#FF6B35;
  --danger:#EF4444;
  --promo:#FF6B35;
  --success:#22C55E;
  --featured:#0B0B0F;
  --favorite:#00C2A8;

  /* Links */
  --link:#2563eb;
  --link-hover:#1d4ed8;

  /* Typography */
  --font-sans:"Bikeley Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  accent-color:#111827;
}

button, a, input, select, textarea{ -webkit-tap-highlight-color: rgba(0,0,0,0); }

*{box-sizing:border-box}
html,body{height:100%; overflow-x:hidden}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-sans);
  line-height:1.35;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Prevent horizontal scroll caused by full-bleed sections */
body{overflow-x:hidden}

/* -----------------------------
   HOME (Airbnb x BikeExchange)
   Keep selectors scoped to avoid breaking other pages.
------------------------------*/

.hero--full{width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}
.hero--home{position:relative;min-height:min(720px, 78vh);display:flex;align-items:flex-end;}
.hero--home.is-behind-header{margin-top:-72px;padding-top:72px}

.hero--home{background:
  linear-gradient(180deg, rgba(15,23,42,0.18), rgba(15,23,42,0.58) 42%, rgba(15,23,42,0.78) 100%),
  var(--hero-image);
  background-size:cover;
  background-position:center;
}

.hero__video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero--home .hero__content{position:relative;z-index:1;width:100%;max-width:1120px;margin:0 auto;padding:76px 16px 34px 16px}

.hero--home .hero__kicker{display:flex;gap:10px;align-items:center;color:rgba(255,255,255,0.92);font-weight:800;font-size:13px;letter-spacing:-0.01em}
.hero--home .hero__kicker-icon{width:18px;height:18px;flex:0 0 18px;opacity:0.92}

.hero--home .hero__title{color:#fff;margin:12px 0 8px 0;letter-spacing:-0.04em;font-size:52px;line-height:1.02;max-width:18ch}
.hero--home .hero__lead{color:rgba(255,255,255,0.86);margin:0;max-width:62ch;font-size:16px}

/* Airbnb-like searchbar */
.hero-search{margin-top:18px}
.searchbar{display:flex;align-items:stretch;gap:0;background:rgba(255,255,255,0.96);border:1px solid rgba(230,231,234,0.92);border-radius:999px;box-shadow:0 18px 46px rgba(15,23,42,0.20);overflow:visible;transition:box-shadow 180ms cubic-bezier(0.2,0,0,1),transform 180ms cubic-bezier(0.2,0,0,1),background 180ms cubic-bezier(0.2,0,0,1)}
.searchbar__field{position:relative;flex:1;min-width:0;padding:14px 18px 14px 18px;border-radius:999px;cursor:pointer;transition:background 180ms cubic-bezier(0.2,0,0,1),box-shadow 180ms cubic-bezier(0.2,0,0,1)}
.searchbar__field.is-active{background:#fff;box-shadow:0 14px 38px rgba(15,23,42,0.14)}
.searchbar__label{font-size:11px;letter-spacing:0.08em;text-transform:uppercase;color:rgba(15,23,42,0.72);font-weight:900;margin-bottom:4px}
.searchbar__control{width:100%;border:0;outline:none;background:transparent;font-size:15px;font-weight:800;color:var(--text);padding:0;margin:0}
.searchbar__control::placeholder{color:rgba(102,112,133,0.9);font-weight:750}
.searchbar__divider{width:1px;background:rgba(230,231,234,0.9);margin:10px 0}
.searchbar__control--btn{display:flex;align-items:center;justify-content:space-between;gap:10px;cursor:pointer}
.searchbar__chev{opacity:0.6;font-weight:900}

.hero--home .searchbar__btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
  padding:0 18px;
  margin:8px 8px 8px 0;
  border:1px solid transparent;
  border-radius:999px;
  background:
    var(--cta-fill) padding-box,
    var(--cta-border) border-box;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  transition: transform .12s ease, box-shadow .18s ease;
}
.hero--home .searchbar__btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(260px 90px at 20% 0%, rgba(255,255,255,0.16), transparent 65%);
  opacity:0.50;
  transition: opacity .18s ease;
  pointer-events:none;
}
.hero--home .searchbar__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}
.hero--home .searchbar__btn:hover::before{
  opacity:0.90;
}

.searchbar__btn-icon{width:18px;height:18px;flex:0 0 18px;filter:invert(1)}

/* Dropdown panels */
.dd-panel{position:absolute;top:calc(100% + 10px);left:0;right:0;min-width:320px;max-width:520px;background:#fff;border:1px solid rgba(230,231,234,0.95);border-radius:22px;box-shadow:0 24px 60px rgba(15,23,42,0.18);padding:10px;z-index:40}
.dd-panel.is-right{left:auto;right:0}
.dd-item{width:100%;display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 12px;border-radius:16px;border:0;background:transparent;cursor:pointer;text-align:left}
.dd-item:hover{background:rgba(17,24,39,0.06)}
.dd-item__left{display:flex;align-items:center;gap:12px}
.dd-item__icon{width:32px;height:32px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(17,24,39,0.06);border:1px solid rgba(17,24,39,0.10);font-size:16px;flex:0 0 32px}
.dd-item__meta{color:rgba(102,112,133,0.9);font-size:12px;font-weight:750}

/* Trust pills under hero */
.hero--home .hero__trust{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.hero--home .pill{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.20);color:rgba(255,255,255,0.95)}
.hero--home .pill img{width:18px;height:18px;flex:0 0 18px;filter:invert(1)}

/* Filters below search (after type selected) */
.hero-filters{margin-top:12px;background:rgba(255,255,255,0.10);border:1px solid rgba(255,255,255,0.16);border-radius:22px;padding:12px 12px 10px 12px;backdrop-filter:blur(8px)}
.hero-filters__row{display:flex;gap:12px;align-items:flex-start;margin-top:10px}
.hero-filters__row:first-child{margin-top:0}
.hero-filters__label{min-width:110px;color:rgba(255,255,255,0.86);font-weight:900;font-size:13px}
.hero-filters__chips{display:flex;gap:10px;flex-wrap:wrap}
.hero-filters__chips.is-scroll{overflow:auto;flex-wrap:nowrap;padding-bottom:6px}

.chip--check{position:relative;padding:9px 12px;border-radius:999px;background:rgba(255,255,255,0.12);border:1px solid rgba(255,255,255,0.18);color:rgba(255,255,255,0.96);font-weight:850;font-size:13px;cursor:pointer}
.chip--check input{position:absolute;opacity:0;pointer-events:none}
.chip--check:has(input:checked){background:rgba(255,255,255,0.22);border-color:rgba(255,255,255,0.26)}

/* Sections on home */
.home-strip{display:flex;gap:14px;overflow:auto;scroll-snap-type:x mandatory;padding-bottom:6px}
.home-strip > *{scroll-snap-align:start;flex:0 0 auto}
.home-card{border-radius:22px;border:1px solid rgba(230,231,234,0.95);background:#fff;box-shadow:0 10px 28px rgba(15,23,42,0.08)}

.story-card{width:320px;overflow:hidden;text-decoration:none;display:block}
.story-card__media{aspect-ratio:16/10;background:linear-gradient(135deg, rgba(17,24,39,0.10), rgba(14,165,233,0.14))}
.story-card__media img{width:100%;height:100%;object-fit:cover}
.story-card__body{padding:14px 14px 16px 14px}
.story-card__title{margin:0;font-weight:950;letter-spacing:-0.02em}
.story-card__meta{margin:6px 0 0 0;color:var(--muted);font-size:13px}

.steps-grid{display:grid;grid-template-columns:repeat(4, minmax(0,1fr));gap:14px}
.step-mini{padding:16px;border-radius:22px;border:1px solid rgba(230,231,234,0.95);background:#fff;box-shadow:0 10px 26px rgba(15,23,42,0.06)}
.step-mini__icon{width:44px;height:44px;border-radius:16px;background:rgba(17,24,39,0.06);border:1px solid rgba(17,24,39,0.12);display:flex;align-items:center;justify-content:center;font-weight:900}
.step-mini__title{margin:10px 0 0 0;font-weight:950;letter-spacing:-0.02em}
.step-mini__text{margin:6px 0 0 0;color:var(--muted);font-size:13px;line-height:1.45}

.stats-strip{display:grid;grid-template-columns:repeat(4, minmax(0,1fr));gap:14px}
.stat{padding:18px;border-radius:22px;border:1px solid rgba(230,231,234,0.95);background:#fff;box-shadow:0 10px 26px rgba(15,23,42,0.06)}
.stat__num{font-weight:980;letter-spacing:-0.03em;font-size:30px;line-height:1}
.stat__lbl{margin-top:6px;color:var(--muted);font-size:13px;font-weight:750}

/* Featured / Community highlights */
.badge--featured{background:rgba(17,24,39,0.92);border-color:rgba(17,24,39,0.92);color:#fff}
.badge--favorite{background:rgba(var(--accent-rgb),0.14);border-color:rgba(var(--accent-rgb),0.30);color:rgba(0,0,0,0.80)}

.provider-card.is-featured{outline:2px solid rgba(17,24,39,0.18)}
.provider-card.is-community{outline:2px solid rgba(var(--accent-rgb),0.26)}

@media (max-width: 980px){
  .hero--home .hero__title{font-size:44px}
  .steps-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .stats-strip{grid-template-columns:repeat(2, minmax(0,1fr))}
}

@media (max-width: 720px){
  .hero--home{min-height:min(720px, 84vh)}
  .hero--home .hero__content{padding:64px 16px 22px 16px}
  .hero--home .hero__title{font-size:34px;max-width:22ch}
  .searchbar{flex-direction:column;border-radius:28px}
  .searchbar__divider{display:none}
  .searchbar__field{padding:12px 14px 10px 14px}
  .searchbar__btn{width:calc(100% - 16px);justify-content:center;margin:0 8px 8px 8px;padding:14px 18px}
  .dd-panel{position:fixed;left:12px;right:12px;top:auto;bottom:12px;max-width:none;min-width:0;border-radius:24px;max-height:70vh;overflow:auto}
  .dd-panel.is-right{left:12px;right:12px}
  .hero-filters{border-radius:24px}
  .hero-filters__row{flex-direction:column;gap:10px}
  .hero-filters__label{min-width:0}
  .hero-filters__chips.is-scroll{padding-bottom:10px}
}

/* Links: brand-consistent (no browser-blue) */
a{
  color:inherit;
  text-decoration:underline;
  text-decoration-color:rgba(var(--accent-rgb),0.45);
  text-underline-offset:2px;
}
a:hover{
  color:var(--accent);
  text-decoration-color:rgba(var(--accent-rgb),0.70);
}
a:focus{outline:none}a:focus-visible{outline:2px solid rgba(0,0,0,.1);outline-offset:2px}
img{max-width:100%; display:block}

.wrap{max-width:var(--container); margin:0 auto; padding:0 24px;}

/* Wider container for search/map layouts */
.wrap--wide{
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 720px){
  .wrap--wide{
    padding-left: 16px;
    padding-right: 16px;
  }
}


@media (max-width: 720px){
  .wrap{padding:0 16px;}
}
@media (max-width: 420px){
  .wrap{padding:0 14px;}
}

.container{width:100%; min-width:0;}

/* Public Bike Jobs pages: wide on desktop, simple on mobile */
body.is-jobs-home,
body.is-jobs-list,
body.is-jobs-provider,
body.is-job-detail{
  --jobs-page-shell:min(1600px, calc(100vw - 40px));
}
body.is-jobs-home .wrap,
body.is-jobs-list .wrap,
body.is-jobs-provider .wrap,
body.is-job-detail .wrap{
  max-width:none;
  padding-left:20px;
  padding-right:20px;
}
body.is-jobs-home .container,
body.is-jobs-list .container,
body.is-jobs-provider .container,
body.is-job-detail .container{
  width:min(100%, var(--jobs-page-shell));
  max-width:none;
  margin:0 auto;
  min-width:0;
}
@media (max-width: 900px){
  body.is-jobs-home,
  body.is-jobs-list,
  body.is-jobs-provider,
  body.is-job-detail{
    --jobs-page-shell:min(100%, calc(100vw - 32px));
  }
  body.is-jobs-home .wrap,
  body.is-jobs-list .wrap,
  body.is-jobs-provider .wrap,
  body.is-job-detail .wrap{
    padding-left:16px;
    padding-right:16px;
  }
}
@media (max-width: 420px){
  body.is-jobs-home .wrap,
  body.is-jobs-list .wrap,
  body.is-jobs-provider .wrap,
  body.is-job-detail .wrap{
    padding-left:14px;
    padding-right:14px;
  }
}

/* Provider portal uses much more horizontal space on desktop */
.wrap--portal{max-width:1800px}
@media (max-width: 720px){
  .wrap--portal{max-width:none;}
}

/* Header */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  /*
    IMPORTANT:
    Map libraries use high z-index values for controls.
    If the header stays low, the map can overlap dropdown panels.
    Keep header above map UI; modals still sit above (z-index 10000+).
  */
  z-index:1000;
  background:rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.site-header--search{background:rgba(255,255,255,0.96)}
.site-header--search .nav{min-height:92px;gap:16px}
.site-header--search .wrap--wide{padding:0 18px}
.site-header--overlay{
  background:transparent;
  border-bottom:1px solid transparent;
}
.site-header--overlay .nav__brand,
.site-header--overlay .nav__links a,
.site-header--overlay .nav__pill{color:#fff;}
.site-header--overlay .nav__brand img{box-shadow:none}
.site-header--overlay .nav__pill{
  background:rgba(255,255,255,0.14);
  border-color:rgba(255,255,255,0.22);
}
.site-header.is-solid{
  background:rgba(255,255,255,0.92);
  border-bottom:1px solid var(--border);
}
.site-header.is-solid .nav__brand,
.site-header.is-solid .nav__links a{color:var(--text);}
.site-header.is-solid .nav__pill{
  background:var(--surface);
  border-color:var(--border);
  color:var(--text);
}

.nav{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  gap:14px;
}

.nav__brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:-0.01em;
}
.nav__brand img{
  width:34px;
  height:34px;
  border-radius:10px;
}

.nav__grow{flex:1}

/* Airbnb-like compact pill in header (optional) */
.nav__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--surface);
  box-shadow:var(--shadow-sm);
  text-decoration:none;
  font-weight:600;
  color:var(--text);
}
.nav__pill:hover{box-shadow:var(--shadow)}
.nav__pill .dot{width:2px; height:2px; border-radius:999px; background:currentColor; opacity:0.5}

.nav__links{display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.nav__links a{opacity:0.92; text-decoration:none; font-weight:600; font-size:14px}
.nav__links a:hover{opacity:1}

.nav__divider{width:1px; height:18px; background:rgba(0,0,0,0.10); margin:0 2px}

/* Header mini-search (shown on non-/search/ pages) */
.nav__search{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}
.nav__search input[type="search"]{
  width: min(420px, 46vw);
  max-width: 520px;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  font-weight:650;
  outline:none;
}
.nav__search input[type="search"]:focus{ outline:3px solid rgba(var(--primary-rgb), 0.10); outline-offset:2px; }
@media (max-width: 680px){
  .nav__search{ width:100%; }
  .nav__search input[type="search"]{ flex:1; width:100%; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
}
.btn:hover{box-shadow:var(--shadow-sm)}
.btn:focus{outline:none}.btn:focus-visible{outline:2px solid rgba(0,0,0,.1);outline-offset:2px}
.btn-primary,
.btn-accent{
  position:relative;
  overflow:hidden;
  color:#fff;
  border:1px solid transparent;
  background:
    var(--cta-fill) padding-box,
    var(--cta-border) border-box;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  transition: box-shadow .18s ease, filter .18s ease;
}

.btn-primary::before,
.btn-accent::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(260px 90px at 20% 0%, rgba(255,255,255,0.18), transparent 65%);
  opacity:0.22;
  transition: opacity .18s ease;
  pointer-events:none;
}

.btn-primary:hover,
.btn-accent:hover{
  filter: brightness(1.05);
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}
.btn-primary:hover::before,
.btn-accent:hover::before{
  opacity:0.34;
}

.btn-primary:active,
.btn-accent:active{
  filter: brightness(1.00);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.btn-primary:focus,
.btn-accent:focus{
  outline:3px solid var(--cta-focus);
  outline-offset:2px;
}

.btn-primary.is-loading:after{border-color: rgba(255,255,255,.45); border-top-color:#fff}

/* Brand CTA — premium charcoal core + subtle edge (no orange/purple fill) */
.btn-brand{
  position:relative;
  overflow:hidden;
  color:#fff;
  border:1px solid transparent;
  background:
    var(--cta-fill) padding-box,
    var(--cta-border) border-box;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.22);
  transition: box-shadow .18s ease, filter .18s ease;
}
.btn-brand::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(260px 90px at 18% 0%, rgba(255,255,255,0.16), transparent 68%);
  opacity:0.20;
  transition: opacity .18s ease;
  pointer-events:none;
}
.btn-brand:hover{
  filter: brightness(1.05);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.26);
}
.btn-brand:hover::before{
  opacity:0.32;
}
.btn-brand:active{
  filter: brightness(1.00);
}
.btn-brand:focus{
  outline:3px solid var(--cta-focus);
  outline-offset:2px;
}

/* Legacy alias used in some templates (keep consistent with the new premium CTA) */
.btn-dark{
  position:relative;
  overflow:hidden;
  color:#fff;
  border:1px solid transparent;
  background:
    var(--cta-fill) padding-box,
    var(--cta-border) border-box;
}
.btn-dark:hover{filter:brightness(1.05)}
.btn-ghost{background:transparent}
.btn-ghost:hover{background:rgba(255,255,255,0.12)}
.btn-small{padding:8px 12px; font-size:13px}

.btn[disabled],
.btn:disabled{
  opacity:0.55;
  cursor:not-allowed;
  box-shadow:none;
}

/* Sections */
.section{margin:34px 0}
.section--tight{margin:20px 0}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:14px}
.section__title{font-size:22px; letter-spacing:-0.02em; margin:0; font-weight:600}
.section__sub{color:var(--muted); margin:6px 0 0 0; font-size:14px}

/* Home hero */
.hero{
  border-radius:var(--radius-xl);
  overflow:visible;
  position:relative;
}

.hero--full{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  border-radius:0;
}

.hero--home{
  position:relative;
  min-height:min(720px, 78vh);
  display:flex;
  align-items:flex-end;
  color:#fff;
  background:
    radial-gradient(1200px 680px at 20% 20%, rgba(0,0,0,0.25), transparent 60%),
    radial-gradient(900px 620px at 90% 10%, rgba(0,0,0,0.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.50));
}

/* Pull hero behind overlay header (header stays in flow) */
.hero--home.is-behind-header{margin-top:calc(var(--header-h) * -1); padding-top:var(--header-h)}

.hero--home::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background-image:
    linear-gradient(90deg,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.52) 38%,
      rgba(0,0,0,0.18) 70%,
      rgba(0,0,0,0.06) 100%
    ),
    var(--hero-image);
  background-size:cover;
  background-position:center;
  filter:saturate(1.05);
}

.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero__content{
  position:relative;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:92px 24px 56px 24px;
  z-index:2;
}

.hero__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:600;
  opacity:0.92;
}
.hero__kicker-icon{
  width:18px;
  height:18px;
  flex:0 0 auto;
  display:block;
}

.searchbar__btn-icon{
  width:18px;
  height:18px;
  flex:0 0 auto;
  display:block;
}

.pill img{
  width:16px;
  height:16px;
  flex:0 0 auto;
  display:block;
}

.cat-pill__icon{
  width:20px;
  height:20px;
  flex:0 0 auto;
  display:block;
}

.dd-item__icon img{
  width:18px;
  height:18px;
  display:block;
}

.hero__title{
  font-size:52px;
  line-height:1.02;
  letter-spacing:-0.03em;
  margin:12px 0 10px 0;
  font-weight:650;
  text-wrap:balance;
}

.hero__lead{
  margin:0;
  font-size:16px;
  opacity:0.92;
  max-width:56ch;
}

.hero__meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.20);
  color:rgba(255,255,255,0.95);
  font-weight:600;
  font-size:13px;
  white-space:nowrap;
}

/* Airbnb-like search bar */
.searchbar{
  margin-top:22px;
  width:min(840px, 100%);
  background:rgba(255,255,255,0.94);
  border:1px solid rgba(255,255,255,0.70);
  border-radius:999px;
  box-shadow:0 12px 40px rgba(0,0,0,0.28);
  display:flex;
  align-items:stretch;
  overflow:visible;
}
.searchbar__field{
  position:relative;
  flex:1;
  padding:12px 16px;
  min-width:180px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
}
.searchbar__field:hover{background:rgba(0,0,0,0.04)}
.searchbar__label{font-size:11px; letter-spacing:0.02em; font-weight:700; color:rgba(0,0,0,0.85); text-transform:uppercase}
.searchbar__control{
  border:0;
  outline:none;
  background:transparent;
  padding:0;
  margin:0;
  font-size:15px;
  font-weight:600;
  color:var(--text);
}
.searchbar__control::placeholder{color:rgba(113,113,113,0.95); font-weight:500}
.searchbar__divider{width:1px; background:rgba(0,0,0,0.10); margin:10px 0}

.searchbar__btn{
  position:relative;
  overflow:hidden;
  min-width:66px;
  padding:0 18px;
  border:1px solid transparent;
  background:
    var(--cta-fill) padding-box,
    var(--cta-border) border-box;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  transition: box-shadow .18s ease, filter .18s ease;
}
.searchbar__btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(260px 90px at 20% 0%, rgba(255,255,255,0.16), transparent 65%);
  opacity:0.18;
  transition: opacity .18s ease;
  pointer-events:none;
}
.searchbar__btn:hover{
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}
.searchbar__btn:hover::before{
  opacity:0.28;
}
.searchbar__btn:active{
  filter: brightness(1.00);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.searchbar__btn:focus{outline:3px solid var(--cta-focus); outline-offset:-3px}

.searchbar__btn img{width:18px; height:18px}

/* Searchbar variant for normal pages */
.searchbar--page{
  margin-top:18px;
  background:var(--surface);
  border:1px solid rgba(0,0,0,0.10);
  box-shadow:var(--shadow-sm);
}
.searchbar--page .searchbar__field:hover{background:rgba(0,0,0,0.02)}
.searchbar--page .searchbar__btn{min-width:60px}

/* Providers page toolbars */
.providers-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.providers-bar__left{min-width:240px; flex:1}
.providers-bar__right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.providers-bar__right select{width:auto}
.filter-chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}


/* Search split view (list + map) */
.search-split{display:flex; gap:16px; align-items:flex-start}
.search-split__list{flex:1; min-width:0}
.search-split__map{flex:1; min-width:340px}
.search-split__mapInner{position:sticky; top:110px}
.search-map__toolbar{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
.search-map{
  height:calc(100vh - 170px);
  min-height:520px;
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(0,0,0,0.02);
}
.search-split[data-view="list"] .search-split__map{display:none}
.search-split[data-view="map"] .search-split__list{display:none}
.search-split[data-view="map"] .search-split__map{display:block}
@media (max-width: 980px){
  .search-split{flex-direction:column}
  .search-split__map{min-width:0}
  .search-split__mapInner{position:static; top:auto}
  .search-map{height:55vh; min-height:340px}
  .search-split[data-view="map"] .search-map{height:calc(100vh - 220px); min-height:420px}
}

/* Modal (filters) */
.modal[hidden]{display:none}
.modal{
  position:fixed;
  inset:0;
  /* Must sit above the map */
  z-index:10000;
  background:rgba(0,0,0,0.42);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:16px;
}
.modal__panel{
  width:min(720px, 100%);
  background:var(--surface);
  border-radius:var(--radius-xl);
  box-shadow:0 18px 60px rgba(0,0,0,0.25);
  border:1px solid rgba(0,0,0,0.08);
  overflow:hidden;
  max-height:86vh;
  display:flex;
  flex-direction:column;
}
.modal__panel > form{display:flex; flex-direction:column; flex:1; min-height:0}

.modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 16px 12px 16px;
  border-bottom:1px solid rgba(0,0,0,0.08);
}
.modal__title{margin:0; font-size:16px; font-weight:650}
.modal__body{padding:14px 16px; overflow:auto; flex:1; min-height:0; -webkit-overflow-scrolling:touch}
.modal__footer{padding:12px 16px 16px 16px; border-top:1px solid rgba(0,0,0,0.08); display:flex; gap:10px; justify-content:space-between; flex-wrap:wrap}

.filter-group{margin-bottom:14px}
.filter-group h4{margin:0 0 10px 0; font-size:13px; text-transform:uppercase; letter-spacing:0.02em; color:rgba(0,0,0,0.72)}
.filter-row{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 12px; border:1px solid rgba(0,0,0,0.08); border-radius:14px; background:rgba(0,0,0,0.02)}
.filter-row + .filter-row{margin-top:10px}
.filter-row label{display:flex; align-items:center; gap:10px; font-weight:600}
.filter-row input[type="checkbox"]{width:18px; height:18px}

/* Search filters: collapsible dropdown groups */
.filter-dd{
  margin-top:12px;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  background:rgba(0,0,0,0.02);
  padding:10px 12px;
}
.filter-dd > summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-weight:900;
}
.filter-dd > summary::-webkit-details-marker{display:none}
.filter-dd[open]{background:rgba(0,0,0,0.01)}
.filter-dd__options{margin-top:10px}
.filter-dd:not([open]) .filter-dd__options{display:none}
.filter-dd[open] .filter-dd__options{display:grid; gap:10px}
.filter-dd__options .filter-row{background:transparent}

@media (min-width: 720px){
  .modal{align-items:center}
}

/* Category strip (Airbnb-like) */
.cat-strip{
  display:flex;
  align-items:flex-start;
  gap:12px;
  overflow:auto;
  padding:14px 0 2px 0;
  scroll-snap-type:x mandatory;
}
.cat-strip::-webkit-scrollbar{height:8px}
.cat-strip::-webkit-scrollbar-thumb{background:rgba(0,0,0,0.10); border-radius:999px}

.cat-pill{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(255,255,255,0.90);
  text-decoration:none;
  color:var(--text);
  font-weight:650;
  white-space:nowrap;
}
.cat-pill:hover{background:rgba(0,0,0,0.02)}
.cat-pill.is-active{
  background:#222;
  border-color:#222;
  color:#fff;
  box-shadow:var(--shadow-sm);
}
.cat-pill.is-active:hover{filter:brightness(1.03)}
.cat-pill__label{font-size:14px; font-weight:650}

.cat{
  flex:0 0 auto;
  min-width:66px;
  scroll-snap-align:start;
  text-decoration:none;
  color:var(--muted);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:4px 2px 12px 2px;
  border-bottom:2px solid transparent;
}
.cat:hover{color:var(--text)}
.cat.is-active{color:var(--text); border-bottom-color:var(--text)}
.cat__icon{width:20px; height:20px; opacity:0.88}
.cat__icon--placeholder{opacity:1; background:rgba(0,0,0,0.10); border-radius:8px; display:block}
.cat__label{font-size:11px; font-weight:650; white-space:nowrap}

/* Grids */
.grid{display:grid; gap:18px}
.grid--sm{gap:12px}
.grid--tight{gap:14px}
.grid--xs{gap:10px}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4, minmax(0,1fr))}

/* Simple split layout (used in provider portal) */
.split{display:grid; grid-template-columns:1.2fr 0.8fr; gap:18px; align-items:start}
@media (max-width: 980px){
  .split{grid-template-columns:1fr}
}

/* Reusable page header (title + subtitle + actions) */
.page-header{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
.page-header__left{min-width:0}
.page-header__title{margin:0; font-weight:950; letter-spacing:-0.02em; font-size:26px; line-height:1.1}
.page-header__subtitle{margin:8px 0 0 0; color:var(--muted); font-size:14px; line-height:1.45}
.page-header__actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap}

/* Divider line inside cards/sections */
.divider{height:1px; width:100%; background:rgba(0,0,0,0.08); margin:16px 0}

/* Form rows */
.row{margin-top:14px}
.row:first-child{margin-top:0}
.row label{display:block; margin-bottom:6px; font-weight:800}
.row .hint{margin-top:6px; color:var(--muted); font-size:13px}

/* Multi-column form grid (used in some provider subpages) */
.form-grid-3{display:grid; grid-template-columns:190px minmax(0,1.6fr) minmax(0,1fr); gap:12px; align-items:end}
.form-grid-3 .span-2{grid-column:2 / -1}
.form-grid-3 .span-all{grid-column:1 / -1}
.form-grid-3 small{display:block; margin-top:6px; color:var(--muted); font-size:12px; font-weight:700}
@media (max-width: 980px){
  .form-grid-3{grid-template-columns:1fr}
  .form-grid-3 .span-2, .form-grid-3 .span-all{grid-column:auto}
}

/* Tables */
.table{width:100%; border-collapse:separate; border-spacing:0; font-size:14px}
.table th,.table td{padding:12px 12px; border-bottom:1px solid rgba(0,0,0,0.08); vertical-align:top; text-align:left}
.table thead th{font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(0,0,0,0.55); font-weight:900; background:rgba(0,0,0,0.02)}
.table tbody tr:hover{background:rgba(0,0,0,0.02)}
.table code{font-size:12px}

.h-scroll{display:flex; gap:16px; overflow:auto; scroll-snap-type:x mandatory; padding-bottom:8px}
.h-scroll > *{flex:0 0 auto; scroll-snap-align:start}

/* Tiles (regions, etc.) */
.tile{
  text-decoration:none;
  color:inherit;
}
.tile__media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
  border:1px solid rgba(0,0,0,0.06);
}
.tile__media img{width:100%; height:100%; object-fit:cover}
.tile__media--square{aspect-ratio:1/1}
.tile__media--wide{aspect-ratio:16/10}
.tile__body{padding-top:10px}
.tile__title{margin:0; font-weight:650; letter-spacing:-0.01em}
.tile__meta{margin:4px 0 0 0; color:var(--muted); font-size:14px}

/* Cards */
.card{
  background:var(--surface);
  border:1px solid rgba(0,0,0,0.08);
  border-radius:var(--radius-lg);
  padding:18px;
}
.card--elevated{box-shadow:var(--shadow-sm)}
.card--tight{padding:14px}

/* Provider cards (Airbnb-ish) */
.provider-card{
  text-decoration:none;
  color:inherit;
  display:block;
}
.provider-card__media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 16/10;
  background:linear-gradient(135deg, rgba(0,0,0,0.10), rgba(0,0,0,0.04));
}
.provider-card__media img{width:100%; height:100%; object-fit:cover}
.provider-card__badges{position:absolute; left:12px; top:12px; display:flex; gap:8px; flex-wrap:wrap}
.provider-card__body{padding-top:10px}
.provider-card__top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.provider-card__name{font-weight:650; letter-spacing:-0.01em; margin:0; font-size:15px}
.provider-card__meta{color:var(--muted); font-size:14px; margin:4px 0 0 0}
.provider-card__chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  font-weight:650;
  font-size:12px;
  border:1px solid rgba(255,255,255,0.45);
  background:rgba(255,255,255,0.92);
  color:rgba(0,0,0,0.88);
}
.badge--featured{background:rgba(17,24,39,0.92); border-color:rgba(17,24,39,0.92); color:#fff}
.badge--favorite{background:rgba(14,165,233,0.14); border-color:rgba(14,165,233,0.28); color:#075985}
.badge--open{background:rgba(22,163,74,0.12); border-color:rgba(22,163,74,0.22); color:#166534}
.badge--closed{background:rgba(239,68,68,0.12); border-color:rgba(239,68,68,0.22); color:#991b1b}

.chip{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(0,0,0,0.03);
  color:rgba(0,0,0,0.88);
  font-weight:600;
  font-size:13px;
  text-decoration:none;
}

/* Flash */
.flash{border-radius:var(--radius-md); padding:12px 14px; border:1px solid rgba(0,0,0,0.10); background:rgba(255,255,255,0.96); margin:14px 0}
.flash--error{border-color:rgba(239,68,68,0.35)}
.flash--warning{border-color:rgba(245,158,11,0.4);background:rgba(245,158,11,0.06);color:#92400e}
.flash--success{border-color:rgba(22,163,74,0.30)}

/* Forms */
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius:var(--radius-md);
  border:1px solid rgba(0,0,0,0.12);
  background:var(--surface);
  font-size:14px;
  font-family:var(--font-sans);
}
input:focus, select:focus, textarea:focus{outline:3px solid var(--focus); border-color:rgba(34,34,34,0.30)}

/* Inputs like checkboxes/radios must NOT inherit the global 100% width + padding.
   This fixes broken filter layouts (e.g. search page). */
input[type="checkbox"], input[type="radio"]{
  width:18px;
  height:18px;
  padding:0;
}

.muted{color:var(--muted)}
.small{font-size:13px}

/* Footer */
.site-footer{
  color:var(--muted);
  padding:22px 0 34px 0;
  border-top:1px solid rgba(0,0,0,0.08);
  margin-top:42px;
}

.site-footer__brandbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
  padding:28px 0 10px;
}
.site-footer__brandcopy{
  max-width:620px;
}
.site-footer__brand,
.site-footer__brand:visited{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  text-decoration:none;
  font-weight:950;
  font-size:24px;
  letter-spacing:-0.03em;
}
.site-footer__brand img{
  width:40px;
  height:40px;
  border-radius:12px;
  object-fit:cover;
  box-shadow:0 10px 24px rgba(15,23,42,.10);
}
.site-footer__tagline{
  margin:12px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
  font-weight:650;
}
.site-footer__brandlinks{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.site-footer__brandlink,
.site-footer__brandlink:visited{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}
.site-footer__brandlink:hover{
  background:var(--surface);
  text-decoration:none;
}

.site-footer__top{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  padding:18px 0;
}
.site-footer__col h4{margin:0 0 10px 0; color:var(--text); font-size:13px; text-transform:uppercase; letter-spacing:0.02em}
.site-footer__links{display:flex; flex-direction:column; gap:8px}
.site-footer__links a{text-decoration:none; font-weight:600; opacity:0.92}
.site-footer__links a:hover{opacity:1; text-decoration:underline}
.site-footer__bottom{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; padding-top:16px}

/* Steps (kept for other pages) */
.steps{margin-top:12px}
.step{display:flex; gap:12px; align-items:flex-start}
.step__icon{width:44px; height:44px; border-radius:16px; background:rgba(0,0,0,0.04); border:1px solid rgba(0,0,0,0.08); display:flex; align-items:center; justify-content:center}
.step__icon img{width:20px; height:20px}
.step__title{font-weight:650; letter-spacing:-0.01em; margin:0 0 4px 0}
.step__text{margin:0; color:var(--muted); font-size:13px; line-height:1.5}

/* Responsive */
@media (max-width: 980px){
  .wrap{padding:0 18px}
  .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .hero__content{padding:82px 18px 50px 18px}
  .hero__title{font-size:42px}
}

@media (max-width: 720px){
  :root{--header-h:64px}
  .nav{min-height:var(--header-h)}
  .nav__links{gap:10px}

  .hero--home{min-height:68vh}
  .hero__content{padding:78px 18px 42px 18px}
  .hero__title{font-size:34px}

  .searchbar{border-radius:20px; flex-direction:column; align-items:stretch; overflow:visible}
  .searchbar__divider{display:none}
  .searchbar__field{min-width:unset}
  .searchbar__btn{width:100%; height:52px; border-radius:999px; margin:10px;}

  .grid-3{grid-template-columns:repeat(1, minmax(0,1fr))}
  .grid-2{grid-template-columns:repeat(1, minmax(0,1fr))}

  .site-footer__top{grid-template-columns:repeat(1, minmax(0,1fr))}
}


/* Home: improved mobile */
@media (max-width: 720px){
  .dd-panel{
    position:relative;
    top:10px;
    width:100%;
    left:0;
    right:0;
  }
  .story-grid{grid-template-columns:repeat(1, minmax(0,1fr))}
  .hero-filters__chips.is-scroll{padding-bottom:8px}
}

/* --------------------------------------------------------------------------
   Bikeley · Startseite (Airbnb‑Style UI improvements)
   - custom dropdowns ("Wo" / "Was")
   - subfilters (feature chips)
   - account menu (header)
   - editorial cards
   -------------------------------------------------------------------------- */

/* Header account menu */
.nav-menu{position:relative}
.nav-menu > summary{list-style:none}
.nav-menu > summary::-webkit-details-marker{display:none}
.nav-menu[open] > summary{box-shadow:var(--shadow-sm)}

.nav-menu__panel{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  min-width:220px;
  background:rgba(255,255,255,0.98);
  border:1px solid rgba(0,0,0,0.12);
  border-radius:18px;
  box-shadow:0 20px 70px rgba(0,0,0,0.22);
  padding:8px;
  z-index:90;
}

.nav-menu__item{
  display:block;
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:850;
  letter-spacing:-0.01em;
  color:var(--text);
}
.nav-menu__item:hover{background:rgba(17,24,39,0.06)}
.nav-menu__item--danger{color:#b42318}

/* Make sure overlay header does NOT force white text inside the account panel */
.site-header--overlay .nav-menu__panel .nav-menu__item{color:var(--text)}

/* Searchbar dropdowns */
.searchbar{overflow:visible}
.searchbar__field{position:relative}

.searchbar__control--btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
  font:inherit;
}
.searchbar__control--btn .value{font-weight:850}
.searchbar__control--btn .placeholder{color:var(--muted); font-weight:750}
.searchbar__chev{opacity:0.65; font-size:12px}

.dd-panel{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  width:min(460px, calc(100vw - 32px));
  background:rgba(255,255,255,0.98);
  border:1px solid rgba(0,0,0,0.12);
  border-radius:18px;
  box-shadow:0 20px 70px rgba(0,0,0,0.22);
  padding:8px;
  z-index:80;
  color:var(--text);
}
.dd-panel.is-right{left:auto; right:0;}

.dd-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius:14px;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
  font-weight:850;
  letter-spacing:-0.01em;
  color:var(--text);
}
.dd-item:hover{background:rgba(17,24,39,0.06)}
.dd-item:focus{outline:3px solid var(--focus)}

.dd-item__left{display:flex; align-items:center; gap:10px;}
.dd-item__icon{width:18px; height:18px; border-radius:6px; background:rgba(17,24,39,0.10); display:inline-flex; align-items:center; justify-content:center; font-size:12px;}
.dd-item__meta{font-size:12px; color:var(--muted); font-weight:700;}

/* Hero subfilters */
.hero-filters{
  margin-top:12px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(0,0,0,0.12);
  border-radius:24px;
  padding:12px;
  box-shadow:0 18px 65px rgba(0,0,0,0.18);
}
.hero-filters__row{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.hero-filters__label{font-weight:950; letter-spacing:-0.02em; font-size:13px; color:rgba(15,23,42,0.92)}
.hero-filters__chips{display:flex; gap:8px; flex-wrap:wrap}
.hero-filters__chips.is-scroll{flex-wrap:nowrap; overflow:auto; padding-bottom:4px}

.chip--check{position:relative; user-select:none}
.chip--check input{position:absolute; inset:0; opacity:0; pointer-events:none}
.chip--check.is-on{background:rgba(17,24,39,0.10); border-color:rgba(17,24,39,0.18)}

/* Story / editorial cards */
.story-grid{display:grid; gap:14px; grid-template-columns:repeat(3, minmax(0, 1fr))}
.story-card{
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.12);
  background:var(--surface);
  box-shadow:var(--shadow-sm);
  text-decoration:none;
  display:block;
}
.story-card__media{
  aspect-ratio:16/10;
  background:
    radial-gradient(800px 240px at 20% 0%, rgba(239,68,68,0.10), transparent 55%),
    radial-gradient(900px 260px at 90% 10%, rgba(14,165,233,0.12), transparent 60%),
    linear-gradient(135deg, rgba(17,24,39,0.10), rgba(255,255,255,0.0));
  background-image: var(--story-image);
  background-size:cover;
  background-position:center;
}
.story-card__body{padding:14px 14px 16px 14px}
.story-card__title{margin:0; font-weight:950; letter-spacing:-0.02em}
.story-card__meta{margin:6px 0 0 0; color:var(--muted); font-size:13px}

/* Provider cards: stronger highlight for Featured / Community */
.provider-card.is-featured{border-color:rgba(17,24,39,0.28)}
.provider-card.is-featured .provider-card__media{outline:2px solid rgba(17,24,39,0.55); outline-offset:-2px}
.provider-card.is-community{border-color:rgba(14,165,233,0.32)}
.provider-card.is-community .provider-card__media{outline:2px solid rgba(14,165,233,0.60); outline-offset:-2px}

/* Mobile tweaks */
@media (max-width: 720px){
  .nav-menu__panel{position:fixed; left:16px; right:16px; top:72px; min-width:unset}
  .dd-panel{position:relative; top:10px; width:100%; left:0; right:0}
  .story-grid{grid-template-columns:repeat(1, minmax(0,1fr))}
  .hero-filters__chips.is-scroll{padding-bottom:8px}
}

/* Horizontal provider cards (home sections) */
.provider-card--scroll{width:340px; flex:0 0 auto}
@media (max-width: 720px){
  .provider-card--scroll{width:300px}
}

/* Active state for link chips (e.g., providers under-filters) */
.chip.is-active{background:rgba(var(--accent-rgb),0.12); border-color:rgba(var(--accent-rgb),0.35)}


/* --------------------------------------------------------------------------
   Header · Mobile icon buttons + brand font
   -------------------------------------------------------------------------- */

.nav__brand-text{
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:18px;
}

.nav__icon{
  width:18px;
  height:18px;
  display:block;
}

.nav__icon-btn{
  gap:8px;
}

/* Mobile: icons only (labels remain accessible via aria-label) */
@media (max-width: 720px){
  .nav__icon-btn,
  .nav-menu__summary{
    padding:10px;
    width:42px;
    height:42px;
    justify-content:center;
  }
  .nav__icon-btn .nav__icon,
  .nav-menu__summary .nav__icon{
    width:20px;
    height:20px;
  }
  .nav__label{
    display:none;
  }
}

/* --- Search (Airbnb-inspired) --- */
.search-page.section{padding-top:24px}
.search-top{margin-bottom:14px}
.search-top__title h1{margin:0;font-size:32px;letter-spacing:-0.02em}
.search-top__bar{margin-top:14px}

.search-bar{display:flex;gap:10px;align-items:stretch;flex-wrap:wrap}
.search-bar__field{flex:1;min-width:260px;background:var(--surface);border:1px solid var(--border);border-radius:999px;padding:10px 14px;display:flex;flex-direction:column;justify-content:center}
.search-bar__label{font-size:12px;font-weight:850;color:rgba(var(--primary-rgb),0.72)}
.search-bar input[type=search]{border:0;outline:0;padding:0;margin-top:2px;font-size:15px;font-weight:700;background:transparent}
.search-bar .btn{border-radius:999px}

.select-compact{border:1px solid var(--border);border-radius:999px;padding:10px 12px;font-weight:750;background:var(--surface)}

.search-shell{display:grid;grid-template-columns:minmax(0,1fr) minmax(420px, 44%);gap:18px;align-items:start}
.search-left{min-width:0}
.search-right{position:sticky;top:92px}
.search-map{height:calc(100vh - 140px);min-height:520px;border-radius:18px;overflow:hidden;border:1px solid var(--border);background:var(--surface-2)}

/* Search meta (Airbnb-ish “Über X Ergebnisse”) */
.search-results-meta{margin:6px 0 14px 0;font-size:14px;font-weight:900;letter-spacing:-0.01em}

/* Google Maps: clean zoom controls */
.search-map .gm-bundled-control{
  margin:10px !important;
}

/* Google Maps marker wrapper */
.bk-map-marker{
  background:transparent !important;
  border:0 !important;
}
.bk-map-marker__inner{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-width:56px;
  padding:8px 10px;
  border-radius:999px;
  background:var(--surface);
  color:var(--text);
  border:1px solid rgba(var(--primary-rgb),0.14);
  font-size:13px;
  font-weight:950;
  box-shadow:0 10px 28px rgba(var(--primary-rgb),0.18);
  transform:translateZ(0);
}
.bk-map-marker.is-featured .bk-map-marker__inner{
  background:var(--primary);
  color:var(--primary-contrast);
  border-color:var(--primary);
}
.bk-map-marker.is-hover .bk-map-marker__inner{
  transform:scale(1.06);
  box-shadow:0 14px 36px rgba(var(--primary-rgb),0.22);
}
.search-shell.map-hidden{grid-template-columns:1fr}
.search-shell.map-hidden .search-right{display:none}

/* Make provider cards feel more like Airbnb */
.provider-card{border-radius:18px}
.provider-card__media{border-radius:18px;overflow:hidden}
.provider-card__media img{display:block;width:100%;height:220px;object-fit:cover}

/* Responsive */
@media (max-width: 1100px){
  .search-shell{grid-template-columns:1fr}
  .search-right{position:relative;top:auto}
  .search-map{height:360px;min-height:360px}
}

/* ------------------------------------------------------------
   Airbnb-like search pill (used on /search/ and /{area}/ landing)
   ------------------------------------------------------------ */

.search-pill{
  display:flex;
  align-items:stretch;
  gap:0;
  background:#fff;
  border:1px solid rgba(0,0,0,0.10);
  border-radius:999px;
  padding:8px;
  box-shadow:0 10px 32px rgba(0,0,0,0.10);
}
.search-pill__seg{
  flex:1;
  min-width:0;
  padding:8px 12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.search-pill__label{
  font-size:12px;
  font-weight:950;
  letter-spacing:0.02em;
  color:var(--text);
}
.search-pill__input,
.search-pill__select{
  border:0;
  outline:0;
  background:transparent;
  font-size:14px;
  font-weight:750;
  color:var(--text);
  padding:2px 0 0 0;
  width:100%;
}
.search-pill__input::placeholder{color:var(--muted);font-weight:700}
.search-pill__divider{
  width:1px;
  margin:8px 0;
  background:var(--border);
}
.search-pill__actions{
  display:flex;
  align-items:center;
  gap:8px;
  padding-left:6px;
}
.search-pill__icon{
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  border-radius:999px;
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}
.search-pill__icon:hover{box-shadow:0 10px 28px rgba(var(--primary-rgb),0.12)}
.search-pill__btn{
  border:0;
  border-radius:999px;
  padding:12px 18px;
  font-weight:950;
  color:#fff;
  cursor:pointer;
  background:var(--accent);
  box-shadow:0 12px 34px rgba(var(--primary-rgb),0.18);
}
.search-pill__btn:hover{filter:brightness(0.98)}

@media (max-width: 860px){
  .search-pill{flex-wrap:wrap;border-radius:22px}
  .search-pill__divider{display:none}
  .search-pill__actions{width:100%;justify-content:space-between;padding:10px 6px 2px}
  .search-pill__btn{flex:1}
}

/* ------------------------------------------------------------
   Selected preview (left, when clicking a map marker)
   ------------------------------------------------------------ */

.selected-preview{
  margin-top:12px;
  border:1px solid var(--border);
  border-radius:18px;
  padding:12px;
  background:var(--surface);
  box-shadow:0 12px 34px rgba(var(--primary-rgb),0.12);
  display:flex;
  gap:12px;
}
.selected-preview__img{
  width:104px;
  height:78px;
  border-radius:14px;
  object-fit:cover;
  background:var(--surface-2);
}
.selected-preview__img--empty{display:block}
.selected-preview__body{flex:1;min-width:0}
.selected-preview__top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.selected-preview__name,
.selected-preview__nameLink{font-weight:950;font-size:16px;line-height:1.15;letter-spacing:-0.01em}
.selected-preview__meta{margin-top:4px;color:#6b7280;font-weight:750;font-size:13px}
.selected-preview__types{margin-top:8px;color:#111;font-weight:750;font-size:13px}
.selected-preview__actions{margin-top:10px;display:flex;gap:8px;flex-wrap:wrap}

/* Selected card highlight */
.provider-card.is-selected{
  outline: 2px solid rgba(2, 6, 23, 0.16);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.16);
}

/* Slightly larger pinned card */
.provider-card--big .provider-card__media img{height:260px}

/* =========================
   Provider Portal (mobile + UI polish)
   ========================= */

/* Top nav inside provider portal */
.portal-nav{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin:10px 0 16px;}
.portal-nav__tabs{display:flex;align-items:center;gap:10px;flex-wrap:wrap;min-width:0}
.portal-nav__tools{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}

@media (max-width: 820px){
  .portal-nav{flex-direction:column;align-items:stretch;}
  .portal-nav__tabs{flex-wrap:nowrap;overflow-x:auto;padding-bottom:6px;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .portal-nav__tabs::-webkit-scrollbar{display:none}
  .portal-nav__tabs > a{flex:0 0 auto}
  .portal-nav__tools{justify-content:flex-end}
}

/* Provider editor layout */
.editor-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap}
.editor-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.editor-meta{margin:10px 0 0;color:#6b7280;font-weight:750}
.editor-summary{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
.editor-summary .pill{background:#fff;border:1px solid rgba(0,0,0,0.08);padding:6px 10px;border-radius:999px;font-weight:850}

.editor-section{background:#fff;border:1px solid rgba(0,0,0,0.08);border-radius:18px;padding:16px;margin:14px 0}
.editor-section summary{cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between;gap:12px;font-weight:950}
.editor-section summary::-webkit-details-marker{display:none}
.editor-section[open] summary{margin-bottom:12px}

.editor-body{padding-top:2px}
.mini-note{margin-top:6px;color:var(--muted);font-size:12px;line-height:1.45}
.hr{height:1px;background:rgba(0,0,0,0.08);margin:14px 0}

/* Make the editor grids actually responsive */
.grid2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
@media (max-width: 820px){
  .grid2{grid-template-columns:1fr}
  .editor-actions .btn{width:100%}
}

/* Make long tables usable on mobile */
.table-scroll{overflow:auto;max-width:100%;-webkit-overflow-scrolling:touch}
.table-scroll table{min-width:720px}

/* ------------------------------------------------------------
   Provider Portal Shell (sidebar navigation)
   - fixes: "too much black & white", missing hierarchy,
     wasted desktop space, confusing navigation
   ------------------------------------------------------------ */

.portal-shell{
  display:grid;
  grid-template-columns:260px minmax(0, 1fr);
  gap:18px;
  align-items:start;
}

.portal-shell__overlay{display:none}

.portal-shell__sidebar{
  position:sticky;
  top:calc(var(--header-h) + 16px);
  align-self:start;
  background:rgba(255,255,255,0.98);
  border:1px solid rgba(0,0,0,0.10);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(0,0,0,0.10);
}

.portal-shell__sidebar-top{padding:14px 14px 12px 14px;border-bottom:1px solid rgba(0,0,0,0.08)}
.portal-shell__provider-name{font-weight:950;letter-spacing:-0.02em;line-height:1.12}
.portal-shell__provider-meta{margin-top:10px;display:flex;gap:8px;flex-wrap:wrap}

.portal-shell__public{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(0,0,0,0.02);
  text-decoration:none;
  font-weight:850;
}
.portal-shell__public:hover{background:rgba(0,0,0,0.04)}

.portal-shell__close{
  display:none;
  width:100%;
  margin-top:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}

.portal-menu{padding:12px}
.portal-menu__group{margin-top:6px}
.portal-menu__title{
  margin:14px 10px 8px 10px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(0,0,0,0.55);
  font-weight:950;
}

.portal-menu__link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  text-decoration:none;
  color:rgba(0,0,0,0.88);
  font-weight:850;
  border:1px solid transparent;
}
.portal-menu__link:hover{background:rgba(0,0,0,0.04)}
.portal-menu__link.is-active{
  background:rgba(var(--accent-rgb),0.10);
  border-color:rgba(var(--accent-rgb),0.22);
}
.portal-menu__link--sub{padding-left:16px;font-weight:750}

.portal-menu__details{margin-top:8px}
.portal-menu__details-summary{
  cursor:pointer;
  list-style:none;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(0,0,0,0.02);
  font-weight:950;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.portal-menu__details-summary::-webkit-details-marker{display:none}
.portal-menu__details[open] .portal-menu__details-summary{background:rgba(0,0,0,0.03)}
.portal-menu__details-body{padding:8px 0 0 0}
.portal-menu__chev{opacity:0.70}

.portal-shell__main{min-width:0}

/* Mobile top bar (inside portal content) */
.portal-shell__mobilebar{
  display:none;
  position:sticky;
  top:calc(var(--header-h) + 8px);
  z-index:20;
  background:rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border:1px solid rgba(0,0,0,0.10);
  border-radius:18px;
  padding:10px 12px;
  margin-bottom:12px;
  box-shadow:0 12px 34px rgba(0,0,0,0.10);
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.portal-shell__menu-btn{
  border:1px solid rgba(0,0,0,0.12);
  background:#fff;
  border-radius:14px;
  width:44px;
  height:40px;
  cursor:pointer;
  font-weight:950;
}
.portal-shell__menu-btn:hover{box-shadow:0 10px 22px rgba(0,0,0,0.10)}

.portal-shell__mobile-title{font-weight:950;letter-spacing:-0.01em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.portal-shell__mobile-cta{
  text-decoration:none;
  font-weight:950;
  border-radius:999px;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(var(--accent-rgb),0.10);
}

.portal-shell__content{min-width:0}

/* Provider content link styling (give hierarchy, reduce black/white monotony) */
.portal-shell__content a{color:var(--accent)}
.portal-shell__content a.btn,
.portal-shell__content a.portal-menu__link,
.portal-shell__content a.portal-shell__public,
.portal-shell__content a.portal-shell__mobile-cta{color:inherit}

@media (max-width: 980px){
  .portal-shell{grid-template-columns:1fr}
  .portal-shell__mobilebar{display:flex}

  .portal-shell__overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(17,24,39,0.45);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease;
    z-index:1000;
  }
  .portal-shell__sidebar{
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    width:min(86vw, 340px);
    transform:translateX(-110%);
    transition:transform .18s ease;
    z-index:1001;
    border-radius:0 22px 22px 0;
    box-shadow:0 30px 90px rgba(0,0,0,0.28);
  }
  .portal-shell.is-open .portal-shell__sidebar{transform:translateX(0)}
  .portal-shell.is-open .portal-shell__overlay{opacity:1;pointer-events:auto}
  .portal-shell__close{display:block}
}

/* ------------------------------------------------------------
   Provider Page building blocks
   ------------------------------------------------------------ */

.page-header{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap}
.page-header__title{margin:0;font-weight:950;letter-spacing:-0.02em}
.page-header__subtitle{margin:6px 0 0 0;color:var(--muted);font-size:14px;line-height:1.45}
.page-header__actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}

.divider{height:1px;background:rgba(0,0,0,0.08);margin:14px 0}

/* Customer Hub: compact search row (desktop inline, mobile stacked) */
.customer-search-row{display:flex; gap:10px; flex-wrap:wrap; align-items:stretch}
.customer-search-input{width:auto !important; flex:1 1 260px; min-width:0}
@media (max-width: 720px){
  .customer-search-row{flex-direction:column; align-items:stretch}
  .customer-search-input{flex-basis:auto}
}

.split{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,360px);gap:14px;align-items:start}
@media (max-width: 980px){.split{grid-template-columns:1fr}}

/* Wider aside column for complex pages like Customer Hub (desktop), stacks on mobile */
.split--aside-lg{grid-template-columns:minmax(0,1fr) minmax(0,420px)}
@media (max-width: 980px){.split--aside-lg{grid-template-columns:1fr}}

/* KPI strip (dashboard) */
.kpi-strip{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.kpi{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;border:1px solid rgba(0,0,0,0.10);background:rgba(0,0,0,0.02);font-weight:800;font-size:13px}
.kpi__dot{width:8px;height:8px;border-radius:999px;background:rgba(0,0,0,0.35)}
.kpi.is-accent{background:rgba(var(--accent-rgb),0.10);border-color:rgba(var(--accent-rgb),0.22)}
.kpi.is-accent .kpi__dot{background:rgba(var(--accent-rgb),0.85)}
.kpi.is-ok{background:rgba(22,163,74,0.10);border-color:rgba(22,163,74,0.18)}
.kpi.is-ok .kpi__dot{background:rgba(22,163,74,0.85)}
.kpi.is-warn{background:rgba(245,158,11,0.12);border-color:rgba(245,158,11,0.22)}
.kpi.is-warn .kpi__dot{background:rgba(245,158,11,0.90)}
.kpi.is-info{background:rgba(14,165,233,0.10);border-color:rgba(14,165,233,0.20)}
.kpi.is-info .kpi__dot{background:rgba(14,165,233,0.90)}

/* Callouts & alerts */
.callout{display:flex;gap:12px;align-items:flex-start;border-radius:18px;padding:12px 14px;border:1px solid rgba(0,0,0,0.10);background:rgba(0,0,0,0.02)}
.callout__icon{width:34px;height:34px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid rgba(0,0,0,0.10);font-weight:950}
.callout--info{background:rgba(14,165,233,0.08);border-color:rgba(14,165,233,0.18)}
.callout--warn{background:rgba(245,158,11,0.10);border-color:rgba(245,158,11,0.22)}

.alert{border-radius:18px;padding:12px 14px;border:1px solid rgba(0,0,0,0.12);background:rgba(255,255,255,0.96)}
.alert-error{border-color:rgba(239,68,68,0.30);background:rgba(239,68,68,0.06)}
.alert-success{border-color:rgba(22,163,74,0.26);background:rgba(22,163,74,0.06)}

/* Tables */
.table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid rgba(0,0,0,0.08);border-radius:18px;overflow:hidden;background:#fff}
.table thead th{font-size:11px;text-transform:uppercase;letter-spacing:0.08em;color:rgba(0,0,0,0.55);font-weight:950;background:rgba(0,0,0,0.02)}
.table th,.table td{padding:12px 12px;border-bottom:1px solid rgba(0,0,0,0.06);vertical-align:top;text-align:left}
.table tbody tr:hover td{background:rgba(0,0,0,0.015)}
.table tbody tr:last-child td{border-bottom:0}

/* Form rows: label left, control right (desktop); stacked (mobile) */
.row{
  display:grid;
  grid-template-columns:180px minmax(0, 1fr);
  gap:12px;
  align-items:start;
  margin-top:12px;
}
.row:first-child{margin-top:0}
.row > label{margin:0;padding-top:10px;font-weight:900;font-size:13px;color:rgba(0,0,0,0.86)}

/* Force stacked labels inside narrow cards/columns (e.g. right sidebars). */
.form--stack .row{grid-template-columns:1fr}
.form--stack .row > label{padding-top:0}

@media (max-width: 720px){
  .row{grid-template-columns:1fr}
  .row > label{padding-top:0}
}


/* =========================
   Provider Portal Shell (sidebar + main)
   ========================= */

.provider-portal{display:grid; grid-template-columns:280px minmax(0,1fr); gap:18px; align-items:start; position:relative}
.provider-portal__overlay{display:none}

.provider-sidebar{position:sticky; top:calc(var(--header-h) + 18px); align-self:start}
.provider-sidebar__card{background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:20px; padding:14px; box-shadow:0 10px 26px rgba(15,23,42,0.06)}
.provider-sidebar__top{display:flex; gap:10px; align-items:flex-start; justify-content:space-between}
.provider-sidebar__name{font-weight:950; letter-spacing:-0.02em; line-height:1.1}
.provider-sidebar__meta{margin-top:6px; color:var(--muted); font-size:13px; font-weight:750}

.provider-nav{display:flex; flex-direction:column; gap:6px; margin-top:12px}
.provider-nav__group{margin-top:12px}
.provider-nav__label{margin:14px 10px 6px; font-size:11px; letter-spacing:0.10em; text-transform:uppercase; color:rgba(0,0,0,0.55); font-weight:950}
.provider-nav__link{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:10px 12px; border-radius:14px; text-decoration:none; color:var(--text); font-weight:900; border:1px solid transparent}

/* Spacing between nav items */
.provider-nav__items .provider-nav__link + .provider-nav__link{margin-top:6px}
.provider-nav__link:hover{background:rgba(0,0,0,0.04)}
.provider-nav__link.is-active{background:rgba(var(--accent-rgb),0.12); border-color:rgba(var(--accent-rgb),0.22)}

/* Slightly more breathing room between nav links (only in the main groups).
   Keeps the sidebar scannable without feeling "cramped". */
.provider-nav__left{display:flex; align-items:center; gap:10px; min-width:0}
.provider-nav__icon{width:18px; height:18px; flex:0 0 18px; opacity:0.85}
.provider-nav__text{min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
.provider-nav__right{display:flex; align-items:center; gap:8px}
.provider-nav__hint{font-size:12px; color:var(--muted); font-weight:800}

.provider-nav details > summary{list-style:none}
.provider-nav details > summary::-webkit-details-marker{display:none}


/* Provider nav: collapsible groups on mobile (accordion) */
.provider-nav__group-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 10px 6px;
  cursor:pointer;
}
.provider-nav__group-summary .provider-nav__label{margin:0}
.provider-nav__chev{
  font-size:12px;
  opacity:0.55;
  transition:transform 160ms ease;
}
.provider-nav__group[open] .provider-nav__chev{transform:rotate(180deg)}

.provider-nav__items{
  margin-top:6px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.provider-nav__items--sub{gap:6px}
.provider-nav__link--sub{padding-left:36px}

button.provider-nav__link{
  width:100%;
  text-align:left;
  appearance:none;
  -webkit-appearance:none;
}

/* Desktop: keep groups visually expanded (no extra clicks) */
@media (min-width: 981px){
  .provider-nav__group-summary{cursor:default}
  .provider-nav__group-summary .provider-nav__chev{display:none}
  details.provider-nav__group:not([open]) > .provider-nav__items{display:flex !important}
}

.provider-main{min-width:0}
.provider-topbar{display:none; align-items:center; justify-content:space-between; gap:10px; padding:10px 12px; border:1px solid rgba(0,0,0,0.08); border-radius:16px; background:#fff; box-shadow:0 10px 26px rgba(15,23,42,0.06)}
.provider-topbar__left{display:flex; align-items:center; gap:10px; min-width:0}
.provider-topbar__title{font-weight:950; letter-spacing:-0.02em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.provider-topbar__subtitle{display:none}
.provider-topbar__actions{display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:flex-end}

.icon-btn{display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:999px; border:1px solid rgba(0,0,0,0.10); background:#fff; cursor:pointer; text-decoration:none; color:var(--text)}
.icon-btn:hover{box-shadow:0 10px 28px rgba(0,0,0,0.12)}

.provider-content{margin-top:14px}

@media (max-width: 980px){
  .provider-portal{grid-template-columns:1fr}
  .provider-topbar{display:flex; position:sticky; top:12px; z-index:10005}

  /* Off-canvas sidebar */
  .provider-sidebar{
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    width:min(86vw, 340px);
    transform:translateX(-110%);
    transition:transform 180ms ease;
    z-index:10020;
    padding:14px;
    background:rgba(255,255,255,0.98);
    backdrop-filter:saturate(180%) blur(12px);
    border-right:1px solid rgba(0,0,0,0.10);
    overflow:auto;
  }
  .provider-sidebar__card{box-shadow:none}

  .provider-portal__overlay{display:block; position:fixed; inset:0; background:rgba(17,24,39,0.45); opacity:0; pointer-events:none; transition:opacity 180ms ease; z-index:10010}

  .provider-portal.is-nav-open .provider-sidebar{transform:translateX(0)}
  .provider-portal.is-nav-open .provider-portal__overlay{opacity:1; pointer-events:auto}
}

/* =========================
   Provider Portal Components
   ========================= */

.kpi-strip{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px}
@media (max-width: 980px){.kpi-strip{grid-template-columns:repeat(2, minmax(0,1fr))}}
@media (max-width: 560px){.kpi-strip{grid-template-columns:1fr}}

.kpi{border:1px solid rgba(0,0,0,0.08); border-radius:18px; padding:14px; background:#fff; box-shadow:0 10px 26px rgba(15,23,42,0.06)}
.kpi__l{color:var(--muted); font-size:12px; font-weight:900; letter-spacing:0.08em; text-transform:uppercase}
.kpi__v{margin-top:8px; font-weight:980; font-size:24px; letter-spacing:-0.02em}

.callout{display:flex; gap:12px; align-items:flex-start; padding:14px; border-radius:18px; border:1px solid rgba(var(--accent-rgb),0.24); background:rgba(var(--accent-rgb),0.08)}
.callout__icon{width:42px; height:42px; border-radius:16px; border:1px solid rgba(var(--accent-rgb),0.18); background:rgba(var(--accent-rgb),0.12); display:flex; align-items:center; justify-content:center; font-weight:950}
.callout__title{font-weight:950; letter-spacing:-0.01em}
.callout__text{margin-top:6px; color:rgba(0,0,0,0.70)}

.seg-tabs{display:flex; gap:10px; flex-wrap:wrap}
.seg-tabs a{display:inline-flex; align-items:center; gap:8px; padding:9px 12px; border-radius:999px; border:1px solid rgba(0,0,0,0.10); background:#fff; text-decoration:none; color:var(--text); font-weight:900}
.seg-tabs a:hover{box-shadow:0 10px 26px rgba(15,23,42,0.08)}
.seg-tabs a.is-active{background:var(--primary); border-color:var(--primary); color:#fff}

/* =========================
   Confirm Modal
   ========================= */
body.bk-modal-open{overflow:hidden}
body.bk-nav-open{overflow:hidden}
.bk-modal{position:fixed;inset:0;z-index:10000;display:flex;align-items:center;justify-content:center;padding:18px}
.bk-modal[hidden]{display:none}
.bk-modal__overlay{position:absolute;inset:0;background:rgba(17,24,39,0.45)}
.bk-modal__dialog{position:relative;width:100%;max-width:520px;background:#fff;border-radius:20px;box-shadow:0 30px 90px rgba(0,0,0,0.30);overflow:hidden;border:1px solid rgba(255,255,255,0.12)}
.bk-modal__header{padding:14px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px;border-bottom:1px solid rgba(0,0,0,0.08)}
.bk-modal__title{font-weight:950;letter-spacing:-0.01em}
.bk-modal__x{appearance:none;border:0;background:transparent;font-size:22px;line-height:1;cursor:pointer;color:#111;padding:6px 10px;border-radius:10px}
.bk-modal__x:hover{background:rgba(0,0,0,0.06)}
.bk-modal__body{padding:14px 16px;color:#374151;line-height:1.4}
.bk-modal__actions{padding:14px 16px;display:flex;gap:10px;justify-content:flex-end;border-top:1px solid rgba(0,0,0,0.08)}
@media (max-width: 520px){
  .bk-modal__actions{flex-direction:column-reverse}
  .bk-modal__actions .btn{width:100%}
}




/* ============================================================
   Bikeley Brand & UX polish (2026-02-22)
   - consistent typography (brand header uses same font as headings)
   - links are NOT browser-blue
   - only real buttons look like buttons
   - split layouts don't collapse side columns
   ============================================================ */

:root{
  /* Keep link styling consistent across the whole site */
  --link: var(--accent);
  --link-hover: rgba(var(--accent-rgb),0.88);

  /* Slightly stronger, on-brand focus ring */
  --focus: rgba(var(--accent-rgb),0.18);
}

h1,h2,h3{
  font-weight:950;
  letter-spacing:-0.02em;
}

a{
  color:inherit;
  overflow-wrap:anywhere;
  text-decoration:underline;
  text-decoration-color:rgba(var(--accent-rgb),0.42);
  text-underline-offset:2px;
}
a:hover{
  color:var(--accent);
  text-decoration-color:rgba(var(--accent-rgb),0.78);
}
a:visited{color:inherit}

/* Exceptions: navigation/buttons/chips should NOT look like plain text links */
a.btn,
a.nav__brand,
.nav__links a,
a.nav__pill,
a.provider-nav__link,
a.portal-menu__link,
a.provider-card,
a.tile,
a.icon-btn,
a.chip{
  text-decoration:none;
}

.nav__brand-text{
  font-family:var(--font-sans);
  font-weight:950;
  letter-spacing:-0.02em;
  text-transform:none;
}

/* Split layouts: keep the right column a real column (not min-content sized) */
.split{
  grid-template-columns:minmax(0,1fr) 360px;
}
@media (max-width: 980px){
  .split{grid-template-columns:1fr}
}

/* KPI cards (non-clickable information) */
.kpi-strip{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px}
@media (max-width: 980px){.kpi-strip{grid-template-columns:repeat(2, minmax(0,1fr))}}
@media (max-width: 560px){.kpi-strip{grid-template-columns:1fr}}

.kpi{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  min-width:0;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:18px;
  padding:14px;
  background:#fff;
  box-shadow:0 10px 26px rgba(15,23,42,0.06);
}
.kpi__l{
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.kpi__v{
  margin-top:8px;
  font-weight:980;
  font-size:22px;
  letter-spacing:-0.02em;
  line-height:1.15;
  overflow-wrap:normal;
  word-break:normal;
  /* prevent ugly mid-word breaks like "Testphas e" on narrow screens */
  hyphens:none;
  word-break:keep-all;
}
.kpi__s{
  margin-top:8px;
  color:var(--muted);
  font-size:12px;
  font-weight:750;
}

/* KPI accent variants */
.kpi--accent{border-color:rgba(var(--accent-rgb),0.22); background:rgba(var(--accent-rgb),0.04)}
.kpi--warn{border-color:rgba(245,158,11,0.26); background:rgba(245,158,11,0.06)}
.kpi--ok{border-color:rgba(22,163,74,0.22); background:rgba(22,163,74,0.05)}
.kpi--info{border-color:rgba(14,165,233,0.22); background:rgba(14,165,233,0.05)}

/* Badges are labels (not buttons) */
.badge{cursor:default}
.badge--req{background:rgba(var(--accent-rgb),0.10); border-color:rgba(var(--accent-rgb),0.22); color:rgba(0,0,0,0.80)}
.badge--opt{background:rgba(14,165,233,0.10); border-color:rgba(14,165,233,0.22); color:#075985}
.badge--lock{background:rgba(245,158,11,0.12); border-color:rgba(245,158,11,0.26); color:#92400e}

/* Chips: look like pills ONLY when clickable */
.chip{
  cursor:default;
  /* non-clickable chips are labels (not buttons) */
  border-radius:12px;
  padding:5px 8px;
  font-size:12px;
  font-weight:850;
}
a.chip, button.chip{
  cursor:pointer;
  border-radius:999px;
  padding:7px 10px;
  font-weight:750;
}


/* --- KPI layout fix (avoid breaking words like "Testphase" and adapt to narrow columns) --- */
.kpi-strip{grid-template-columns:repeat(auto-fit, minmax(190px, 1fr)) !important}
.kpi__v{overflow-wrap:normal !important; word-break:normal !important; hyphens:none}
@media (max-width: 520px){
  .kpi-strip{grid-template-columns:repeat(2, minmax(0, 1fr)) !important}
  .kpi__s{display:none}
}
@media (max-width: 380px){
  .kpi-strip{grid-template-columns:1fr !important}
}


/* =========================
   Auth (Login/Register) Shell
   ========================= */

.btn-block{width:100%; justify-content:center}

.auth-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  background:#fff;
}

.auth-hero{
  position:relative;
  background-image:url('/assets/media/hero-home.webp');
  background-size:cover;
  background-position:center;
  color:#fff;
}

.auth-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(2,6,23,0.82) 0%, rgba(2,6,23,0.62) 55%, rgba(2,6,23,0.20) 100%);
}

.auth-hero__inner{
  position:relative;
  padding:56px 56px;
  max-width:720px;
}

.auth-hero__brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#fff;
}

.auth-hero__brand img{
  width:34px;
  height:34px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.auth-hero__brand span{
  font-weight:950;
  letter-spacing:-0.02em;
  font-size:18px;
}

.auth-hero__headline{
  margin-top:96px;
  font-size:44px;
  line-height:1.08;
  font-weight:980;
  letter-spacing:-0.03em;
}

.auth-hero__sub{
  margin-top:16px;
  max-width:38ch;
  font-size:18px;
  line-height:1.5;
  color:rgba(255,255,255,0.84);
}

.auth-panel{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:56px 40px;
  background:#fff;
}

.auth-card{
  width:100%;
  max-width:420px;
}

.auth-title{
  margin:0 0 12px 0;
  font-size:30px;
}

.auth-links{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  font-size:14px;
}

.auth-links a{
  text-decoration:none;
  font-weight:850;
  color:var(--accent);
}

.auth-form .row{margin-top:12px}
.auth-form input{width:100%}

@media (max-width: 980px){
  .auth-shell{grid-template-columns: 1fr}
  .auth-hero{min-height:38vh}
  .auth-hero__inner{padding:34px 22px}
  .auth-hero__headline{margin-top:44px; font-size:32px}
  .auth-panel{padding:24px 18px}
  .auth-title{font-size:26px}
}

@media (max-width: 420px){
  .auth-hero{min-height:34vh}
  .auth-hero__headline{font-size:28px}
}

/* =========================================================
   Bikeley – Final UI polish (clean, minimal, premium)
   - No dark mode
   - Reduce "non-button" pill look
   - Fix mobile KPI wrapping + tighten spacing
   - Improve auth/login spacing and hero asset placeholder
   ========================================================= */

/* Brand colors (keep subtle, no blue-heavy backgrounds) */
:root{
  --bg: #f6f7f9;
  --surface: #ffffff;
  --text: #0b0b0f;
  --muted: rgba(0,0,0,0.58);
  --border: rgba(0,0,0,0.10);
  --primary: #0B0B0F;
  --primary-rgb: 11, 11, 15;
  --primary-contrast: #ffffff;
	  /* Brand accent (Option B): warm + energetic (orange → violet) */
	  --accent: #C62828;
  --accent-rgb: 198, 40, 40;
	  /* Slightly deeper violet to avoid an "Instagram"-like pink/purple feel */
	  --accent-2: #6D1B1B;
	  --accent-2-rgb: 109, 27, 27;
	  /* Keep it 2-tone (orange → violet) */
	  --accent-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

/* Links: always branded, never default blue */
a{ color: var(--accent); text-decoration:none; }
a:hover{ text-decoration:none; opacity:.92; }

/* Optional badges should be neutral (not blue) */
.badge--opt{
  background: rgba(17,24,39,0.06) !important;
  border-color: rgba(17,24,39,0.14) !important;
  color: rgba(17,24,39,0.75) !important;
}

/* Provider sidebar meta: plain text (not pill-like) */
.provider-sidebar__meta{
  margin-top:6px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  color: var(--muted);
  font-size:12px;
  font-weight:650;
}
.provider-sidebar__meta strong{
  color: rgba(0,0,0,0.86);
  font-weight:900;
}
.provider-sidebar__meta .dot{
  opacity:.55;
}

/* KPI cards: make values responsive to avoid weird word breaks on mobile */
.kpi__v{
  font-size: clamp(18px, 4.2vw, 22px) !important;
  line-height: 1.08;
  letter-spacing: -0.02em;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none;
}

/* Make KPI cards slightly tighter on small screens */
@media (max-width: 520px){
  .kpi{ padding:12px 12px; }
  .kpi__k{ font-size:10px; }
  .kpi__v{ font-size:18px !important; }
}

/* Provider forms: stacked labels on mobile (cleaner + less cramped) */
@media (max-width: 720px){
  /* Keep the provider navigation always reachable */
  .provider-topbar{
    position:sticky;
    top:calc(var(--header-h) + 6px);
    z-index:55;
    margin-bottom:10px;
  }

  /* Slightly tighter rhythm on mobile */
  .provider-content{margin-top:10px}
  .provider-content .card{padding:16px}
  .provider-content .card.card--tight{padding:14px}

  /* Page header: actions as horizontal scroll (no ugly multi-line wrap) */
  .provider-content .page-header{gap:10px}
  .provider-content .page-header__title{font-size:22px}
  .provider-content .page-header__actions{
    width:100%;
    flex-wrap:nowrap;
    overflow-x:auto; overflow-y:hidden;
    padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
  }
  .provider-content .page-header__actions .btn{flex:0 0 auto}

  /* Segmented tabs (cases/documents etc.) as horizontal scroll */
  .provider-content .seg-tabs{
    flex-wrap:nowrap;
    overflow-x:auto; overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    padding-bottom:6px;
  }
  .provider-content .seg-tabs a{flex:0 0 auto}

  .provider-content .row{
    grid-template-columns: 1fr !important;
    gap:6px !important;
  }
  .provider-content .row label{
    margin-bottom:0 !important;
  }
}

/* Auth pages: use placeholder hero asset and improve spacing */
.auth-hero{
  background-image:url('/assets/media/auth-hero.webp') !important;
}

.auth-form .row{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  gap:6px !important;
  margin-top:12px !important;
}
.auth-form label.small{
  font-size:13px;
  font-weight:750;
  color: rgba(0,0,0,0.76);
}
.auth-form input{
  height:46px;
}
.auth-form .btn{
  margin-top:14px;
}

/* Auth card: slightly tighter and more premium */
.auth-card{
  padding:22px 22px !important;
}
.auth-title{
  font-size:28px !important;
  margin-bottom:14px !important;
}

/* Reduce "floating" empty space on small screens */
@media (max-width: 980px){
  .auth-hero__headline{ margin-top:36px !important; }
  .auth-panel{ padding:18px 16px !important; }
  .auth-card{ padding:20px 18px !important; }
}

/* Insights: chart container + legend (kept minimal) */
.chart-wrap{position:relative; height:260px;}
.chart-wrap canvas{width:100%; height:100%; display:block;}
.chart-legend{display:flex; gap:12px; align-items:center; flex-wrap:wrap; font-size:12px; color:var(--muted); font-weight:850}
.chart-legend span{display:inline-flex; align-items:center; gap:6px}
.legend-dot{width:10px; height:10px; border-radius:999px; display:inline-block}
.legend-dot--accent{background:var(--accent)}
.legend-dot--mid{background:rgba(15,23,42,0.35)}
.legend-dot--low{background:rgba(15,23,42,0.18)}


/* =========================================================
   Footer (Airbnb‑inspired)
   - discover grid + classic multi-column links
   - premium, neutral look (no blue backgrounds)
   ========================================================= */

.site-footer{
  margin-top:56px;
  padding:0;
  background:var(--surface-2);
  border-top:1px solid var(--border);
  color:var(--muted);
}

.site-footer__discover{
  padding:32px 0 26px 0;
  border-bottom:1px solid var(--border);
}
.site-footer__discover-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.site-footer__discover-title{
  font-weight:950;
  color:var(--text);
  font-size:14px;
  letter-spacing:-0.01em;
}
.site-footer__discover-sub{
  font-size:13px;
  color:var(--muted);
  font-weight:650;
}

.site-footer__discover-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:18px 26px;
}
.site-footer__tile{
  display:block;
  text-decoration:none;
  color:inherit;
  padding:4px 0;
}
.site-footer__tile-title{
  font-weight:850;
  color:var(--text);
  font-size:14px;
  letter-spacing:-0.01em;
}
.site-footer__tile-sub{
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
  font-weight:650;
}

.site-footer__top{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px 26px;
  padding:28px 0;
}

.site-footer__col{
  border:0;
  padding:0;
  margin:0;
}
.site-footer__col summary{
  list-style:none;
  font-weight:900;
  color:var(--text);
  font-size:13px;
  letter-spacing:0.01em;
}
.site-footer__col summary::-webkit-details-marker{display:none;}
.site-footer__col[open] summary{margin-bottom:12px;}

.site-footer__links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.site-footer__links a{
  color:rgba(0,0,0,0.78);
  font-weight:650;
  font-size:14px;
  text-decoration:none;
}
.site-footer__links a:hover{
  color:var(--text);
  text-decoration:underline;
  text-decoration-color:rgba(0,0,0,0.35);
  text-underline-offset:2px;
}
.site-footer__links a[aria-disabled="true"]{
  pointer-events:none;
  opacity:0.55;
  text-decoration:none;
}

.site-footer__bottom{
  border-top:1px solid var(--border);
  padding:18px 0 26px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.site-footer__meta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-size:13px;
  font-weight:650;
  color:rgba(0,0,0,0.70);
}
.site-footer__meta a{
  color:inherit;
  text-decoration:none;
}
.site-footer__meta a:hover{
  text-decoration:underline;
  text-decoration-color:rgba(0,0,0,0.35);
  text-underline-offset:2px;
}
.site-footer__meta .sep{opacity:0.6}

.site-footer__prefs{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:13px;
  color:rgba(0,0,0,0.76);
  font-weight:750;
}
.site-footer__pref{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 0;
}
.site-footer__pref svg{
  width:16px;
  height:16px;
  opacity:0.88;
}

/* Responsive */
@media (max-width: 980px){
  .site-footer__discover-grid{grid-template-columns:repeat(3, minmax(0, 1fr));}
  .site-footer__top{grid-template-columns:repeat(2, minmax(0, 1fr));}
}

@media (max-width: 720px){
  .site-footer__discover-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
  .site-footer__top{grid-template-columns:repeat(1, minmax(0, 1fr));}
  .site-footer__discover{padding:26px 0 20px 0;}
  .site-footer__top{padding:22px 0;}
}

@media (max-width: 420px){
  .site-footer__discover-grid{grid-template-columns:1fr;}
}


/* =========================
   Mobile polish
   ========================= */

@media (max-width: 560px){
  /* Keep the header minimal on mobile: show icon/logo only */
  .nav__brand-text{display:none;}
}

/* Provider area: on mobile we use the provider topbar + drawer nav,
   so the global site header would be redundant noise. */
@media (max-width: 980px){
  body.is-provider-area .site-header{display:none;}
  body.is-provider-area{--header-h:0px;}
}


/* KPI values: keep words intact and readable on small screens */
@media (max-width: 560px){
  .kpi__v{font-size:20px; line-height:1.12;}
}


/* ============================================================
   Footer: desktop expanded, mobile accordion (Airbnb-ish)
   ============================================================ */
@media (min-width: 821px){
  .site-footer__col > summary{
    pointer-events: none;
    cursor: default;
  }
  .site-footer__col > summary::-webkit-details-marker{ display: none; }
  /* Force-open look on desktop even without the open attribute */
  .site-footer__col > *:not(summary){ display: block !important; }
}

@media (max-width: 820px){
  .site-footer__discover{ display: none; }
  .site-footer__brandbar{
    padding:22px 0 6px;
    align-items:flex-start;
  }
  .site-footer__brand{font-size:21px;}
  .site-footer__tagline{font-size:14px;}
  .site-footer__brandlinks{width:100%;}

  .site-footer__cols{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__col{
    border-top: 1px solid rgba(15,23,42,0.08);
    padding-top: 6px;
  }
  .site-footer__col:first-child{
    border-top: 0;
    padding-top: 0;
  }

  .site-footer__col > summary{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
  }
  .site-footer__col > summary::-webkit-details-marker{ display: none; }
  .site-footer__col > summary:after{
    content: '›';
    opacity: .6;
    transform: rotate(90deg);
    transition: transform 160ms ease, opacity 160ms ease;
  }
  .site-footer__col[open] > summary:after{
    opacity: .9;
    transform: rotate(-90deg);
  }

  .site-footer__links{
    padding: 0 0 12px;
  }

  .site-footer__meta{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* -------------------------------------------------------------
   Search/Regions polish (requested)
   - 4-up grid on region pages
   - use accent (pink) for favorites/community highlights
------------------------------------------------------------- */

.providers-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1000px){
  .providers-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .providers-grid{ grid-template-columns: 1fr; }
}

/* Accent cleanup: remove leftover "clinic blue/green" highlights */
.badge--favorite{
  background: rgba(var(--accent-rgb),0.12) !important;
  color: var(--accent) !important;
  border-color: rgba(var(--accent-rgb),0.22) !important;
}
.provider-card.is-community{
  border-color: rgba(var(--accent-rgb),0.26) !important;
  outline: 2px solid rgba(var(--accent-rgb),0.18) !important;
}
.provider-card.is-community .provider-card__media{
  outline: 2px solid rgba(var(--accent-rgb),0.50) !important;
  outline-offset: -2px;
}

/* =========================================================
   Header · Brand override support (provider microsites)
   ========================================================= */

.nav__brand-logo{
  width:34px;
  height:34px;
  border-radius:10px;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background:rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.10);
}

.nav__brand-logo img{
  width:100% !important;
  height:100% !important;
  object-fit:contain;
  border-radius:0 !important;
  display:block;
}

.nav__brand-initials{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  letter-spacing:-0.02em;
  font-size:13px;
  color:rgba(0,0,0,0.72);
}

.nav__brand-sub{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(0,0,0,0.03);
  color:var(--muted);
  font-size:11px;
  font-weight:850;
  letter-spacing:-0.01em;
}

.site-header--overlay .nav__brand-logo{
  background:rgba(255,255,255,0.14);
  border-color:rgba(255,255,255,0.22);
}
.site-header--overlay .nav__brand-initials{color:rgba(255,255,255,0.92)}
.site-header--overlay .nav__brand-sub{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.22);
  color:rgba(255,255,255,0.86);
}

@media (max-width: 720px){
  .nav__brand-sub{display:none;}
}


/* =========================================================
   Public Provider Microsite (provider detail page)
   - full hero
   - clean section navigation
   - desktop two-column layout with sticky sidebar
   ========================================================= */

body.is-provider-microsite{
  background: var(--bg);
  /* Larger content width for provider pages (desktop) */
  --ms-container: 1520px;
}

body.is-provider-microsite .nav__brand-text{
  text-transform:none;
  letter-spacing:-0.01em;
  font-weight:950;
  font-size:16px;
}

.provider-ms-hero{
  position:relative;
  min-height:min(660px, 74vh);
  display:flex;
  align-items:flex-end;
  color:#fff;
  background:
    linear-gradient(180deg, rgba(2,6,23,0.18) 0%, rgba(2,6,23,0.62) 62%, rgba(2,6,23,0.88) 100%),
    var(--provider-hero) center/cover no-repeat;
}

.provider-ms-hero.is-behind-header{
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

.provider-ms-hero__inner{
  width:100%;
  max-width:var(--ms-container, var(--container));
  margin:0 auto;
  padding: calc(var(--header-h) + 46px) 24px 34px;
}

.provider-ms-hero__kicker{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.provider-ms-hero__title{
  margin:14px 0 0 0;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height:1.04;
  letter-spacing:-0.03em;
  font-weight:980;
}

.provider-ms-hero__lead{
  margin:10px 0 0 0;
  max-width: 74ch;
  font-size:16px;
  line-height:1.5;
  color:rgba(255,255,255,0.86);
  font-weight:650;
}

.provider-ms-hero__meta{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color:rgba(255,255,255,0.84);
  font-size:13px;
  font-weight:700;
}

.provider-ms-hero__meta .dot{
  width:3px;
  height:3px;
  border-radius:999px;
  background:currentColor;
  opacity:0.6;
}

.provider-ms-hero__cta{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.provider-ms-hero__cta .btn{
  border-color:rgba(255,255,255,0.22);
}

.provider-ms-hero__cta .btn-ghost{
  color:#fff;
  background:rgba(255,255,255,0.10);
}

.provider-ms-hero__cta .btn-ghost:hover{
  background:rgba(255,255,255,0.16);
}

@media (max-width: 720px){
  .provider-ms-hero{min-height:min(560px, 74vh)}
  .provider-ms-hero__inner{padding: calc(var(--header-h) + 32px) 16px 22px;}
  .provider-ms-hero__title{font-size: clamp(28px, 7vw, 40px);}
  .provider-ms-hero__lead{font-size:15px;}
}

/* Gallery mosaic (Airbnb-ish) */
.provider-ms-gallery{
  margin-top:16px;
  max-width:var(--ms-container, var(--container));
  margin-left:auto;
  margin-right:auto;
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:10px;
  align-items:stretch;
}

.provider-ms-gallery__main,
.provider-ms-gallery__tile{
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(0,0,0,0.04);
  position:relative;
}

.provider-ms-gallery__main{height:460px;}

.provider-ms-gallery__side{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:10px;
  height:460px;
}

.provider-ms-gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: translateZ(0);
  cursor:pointer;
  transition: transform .38s cubic-bezier(.2,.8,.2,1), filter .38s cubic-bezier(.2,.8,.2,1);
}

@media (hover:hover){
  .provider-ms-gallery__main:hover img,
  .provider-ms-gallery__tile:hover img{
    transform: scale(1.02);
    filter: brightness(1.02) saturate(1.06);
  }
}

.provider-ms-gallery__btn{
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:2;
}

@media (max-width: 980px){
  .provider-ms-gallery{grid-template-columns:1fr;}
  .provider-ms-gallery__main{height:320px;}
  .provider-ms-gallery__side{height:auto; grid-template-columns:1fr 1fr; grid-template-rows:auto;}
  .provider-ms-gallery__tile{height:140px;}
}

@media (max-width: 560px){
  .provider-ms-gallery__main{height:260px;}
  .provider-ms-gallery__side{grid-template-columns:1fr;}
  .provider-ms-gallery__tile{height:180px;}
}

/* Section nav (sticky, scrollable on mobile) */
.provider-ms-nav-wrap{
  margin-top:18px;
  max-width:var(--ms-container, var(--container));
  margin-left:auto;
  margin-right:auto;
}

.provider-ms-nav{
  position:sticky;
  top: calc(var(--header-h) + 10px);
  z-index:60;
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  padding:10px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.provider-ms-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:rgba(0,0,0,0.03);
  color:rgba(0,0,0,0.86);
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.provider-ms-nav a:hover{background:rgba(0,0,0,0.05)}

.provider-ms-nav a.is-active{
  background:rgba(0,0,0,0.08);
  border-color:rgba(0,0,0,0.16);
}

@media (max-width: 720px){
  .provider-ms-nav{flex-wrap:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch;}
  .provider-ms-nav a{flex:0 0 auto;}
}

/* Main shell */
.provider-ms-shell{
  margin-top:18px;
  max-width:var(--ms-container, var(--container));
  margin-left:auto;
  margin-right:auto;
  display:grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap:18px;
  align-items:start;
}

.provider-ms-sidebar{
  position:sticky;
  top: calc(var(--header-h) + 72px);
}

@media (max-width: 980px){
  .provider-ms-shell{grid-template-columns:1fr;}
  .provider-ms-sidebar{position:static;}
}

/* Anchor offset for sticky header/nav */
.provider-ms-section[id]{scroll-margin-top: 140px;}

/* Sidebar action list */
.provider-ms-actions{display:flex; flex-direction:column; gap:10px;}

/* Mobile sticky actions (bottom bar) */
.provider-ms-mobilebar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1200;
  display:none;
  padding:10px 14px;
  background:rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-top:1px solid rgba(0,0,0,0.10);
  box-shadow: 0 -12px 30px rgba(2,6,23,0.12);
}

.provider-ms-mobilebar__inner{
  max-width:var(--ms-container, var(--container));
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 980px){
  body.is-provider-microsite{padding-bottom:92px;}
  .provider-ms-mobilebar{display:block;}
}

/* Lightbox */
.ms-lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.85);
  z-index:99999;
  padding:18px;
}

.ms-lightbox.is-open{display:flex;}

.ms-lightbox__inner{position:relative; max-width:1100px; width:100%;}

.ms-lightbox__img{
  width:100%;
  max-height:82vh;
  object-fit:contain;
  border-radius:18px;
  background:#000;
  border:1px solid rgba(255,255,255,0.12);
}

.ms-lightbox__btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(0,0,0,0.55);
  color:#fff;
  cursor:pointer;
}

.ms-lightbox__btn:hover{background:rgba(0,0,0,0.70)}

.ms-lightbox__btn--prev{left:-10px;}
.ms-lightbox__btn--next{right:-10px;}

.ms-lightbox__close{
  position:absolute;
  top:-10px;
  right:-10px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(0,0,0,0.55);
  color:#fff;
  cursor:pointer;
}

.ms-lightbox__close:hover{background:rgba(0,0,0,0.70)}

@media (max-width: 560px){
  .ms-lightbox__btn--prev{left:8px;}
  .ms-lightbox__btn--next{right:8px;}
  .ms-lightbox__close{top:8px; right:8px;}
}




/* =========================================================
   Premium provider microsite – v2 (full viewport hero + web-like navigation)
   - inspired by modern outdoor brand sites (clean, high-end, simple)
   - keeps Bikeley typography + components
   ========================================================= */

.provider-ms-hero{
  /* Full viewport hero (desktop + mobile) */
  min-height: 100vh;
  min-height: 100svh;
  align-items:center;
  justify-content:center;
}

@supports (min-height: 100dvh){
  .provider-ms-hero{min-height: 100dvh;}
}

.provider-ms-hero__inner{
  /* Centered hero content (like a real website) */
  max-width: 1040px;
  padding: 42px 24px 96px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.provider-ms-hero__kicker{
  justify-content:center;
  text-align:center;
  gap:10px;
}

.provider-ms-hero__flags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
}

.provider-ms-flag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.92);
  font-weight:850;
  font-size:12px;
  letter-spacing:-0.01em;
}

.provider-ms-flag--featured{
  background:rgba(255,255,255,0.16);
  border-color:rgba(255,255,255,0.26);
}

.provider-ms-flag--community{
  background:rgba(14,165,233,0.18);
  border-color:rgba(14,165,233,0.26);
}

.provider-ms-hero__eyebrow{
  font-weight:800;
  font-size:13px;
  color:rgba(255,255,255,0.86);
  letter-spacing:-0.01em;
}

.provider-ms-hero__lead{
  max-width: 66ch;
}

.provider-ms-hero__cta{
  justify-content:center;
}

.provider-ms-hero__scroll{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:rgba(255,255,255,0.86);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.provider-ms-hero__scroll:hover{
  background:rgba(0,0,0,0.26);
  border-color:rgba(255,255,255,0.24);
  transform:translateX(-50%) translateY(-1px);
}

.provider-ms-hero__scroll-label{
  font-size:12px;
  font-weight:850;
  letter-spacing:0.04em;
  text-transform:uppercase;
  opacity:0.85;
}

.provider-ms-hero__scroll-ic{
  animation: ms-bounce 1.6s infinite;
}

@keyframes ms-bounce{
  0%,100%{transform: translateY(0);}
  50%{transform: translateY(6px);}
}

@media (prefers-reduced-motion: reduce){
  .provider-ms-hero__scroll-ic{animation:none;}
}

@media (max-width: 720px){
  .provider-ms-hero__inner{padding: 30px 16px 88px;}
  .provider-ms-hero__scroll{bottom:14px;}
}


/* Section navigation (sticky after hero) – reduce pill look */
.provider-ms-nav-wrap{
  margin-top:0;
  max-width:none;
  position:sticky;
  top: var(--header-h);
  z-index:80;
  background:rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.provider-ms-nav{
  position:static;
  top:auto;
  z-index:auto;
  max-width:var(--ms-container, var(--container));
  margin:0 auto;
  padding:12px 24px;
  border-radius:0;
  border:none;
  background:transparent;
  box-shadow:none;
  gap:18px;
  flex-wrap:nowrap;
  overflow-x:auto; overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
}

.provider-ms-nav a{
  border:none;
  background:transparent;
  padding:10px 2px;
  border-radius:0;
  font-size:13px;
  font-weight:900;
  color:rgba(0,0,0,0.72);
  text-decoration:none;
  border-bottom:2px solid transparent;
}

.provider-ms-nav a:hover{
  background:transparent;
  color:rgba(0,0,0,0.92);
  border-bottom-color:rgba(0,0,0,0.20);
}

.provider-ms-nav a.is-active{
  background:transparent;
  border-bottom-color:rgba(0,0,0,0.55);
  color:rgba(0,0,0,0.92);
}


/* Dark “about” band (premium feel) */
.provider-ms-about{
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(255,255,255,0.10), transparent 62%),
    radial-gradient(900px 520px at 86% 12%, rgba(14,165,233,0.12), transparent 58%),
    #05060a;
  color:#fff;
  padding:72px 0;
}

.provider-ms-about__inner{
  max-width: 1040px;
  margin:0 auto;
  padding:0 24px;
  text-align:center;
}

.provider-ms-about__title{
  margin:0;
  font-size: clamp(22px, 3.2vw, 32px);
  letter-spacing:-0.02em;
  font-weight:980;
}

.provider-ms-about__tagline{
  margin-top:10px;
  font-weight:850;
  color:rgba(255,255,255,0.88);
  letter-spacing:-0.01em;
}

.provider-ms-about__text{
  margin-top:18px;
  font-size:15px;
  line-height:1.65;
  color:rgba(255,255,255,0.84);
  font-weight:650;
}

.provider-ms-facts{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}

.provider-ms-fact{
  display:block;
  text-decoration:none;
  color:inherit;
  padding:14px 14px;
  border-radius:var(--radius-xl);
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.provider-ms-fact:hover{
  background:rgba(255,255,255,0.09);
  border-color:rgba(255,255,255,0.20);
}

.provider-ms-fact__label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-weight:900;
  opacity:0.75;
}

.provider-ms-fact__value{
  margin-top:8px;
  font-weight:800;
  color:rgba(255,255,255,0.92);
  line-height:1.35;
}

.provider-ms-fact__hint{
  margin-top:10px;
  font-size:12px;
  font-weight:750;
  color:rgba(255,255,255,0.70);
}

@media (max-width: 880px){
  .provider-ms-facts{grid-template-columns:1fr;}
}


/* Gallery strip (scroll on mobile, feels like a real website section) */
.provider-ms-strip{
  display:flex;
  gap:12px;
  overflow-x:auto; overflow-y:hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.provider-ms-strip__item{
  border:0;
  padding:0;
  background:none;
  cursor:pointer;
  flex: 0 0 320px;
  height: 220px;
  border-radius: var(--radius-xl);
  overflow:hidden;
  scroll-snap-align: start;
  border:1px solid rgba(0,0,0,0.10);
  background:rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm);
  position:relative;
}

.provider-ms-strip__item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: translateZ(0);
  transition: transform .38s cubic-bezier(.2,.8,.2,1), filter .38s cubic-bezier(.2,.8,.2,1);
}

@media (hover:hover){
  .provider-ms-strip__item:hover img{
    transform: scale(1.03);
    filter: brightness(1.02) saturate(1.06);
  }
}

@media (max-width: 720px){
  .provider-ms-strip__item{flex-basis: 260px; height: 190px;}
}


/* Service/update/hour rows */
.provider-ms-item{
  border:1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  padding:14px;
  background:rgba(0,0,0,0.02);
}


/* Anchor offsets for sticky header + section nav */
.provider-ms-section[id]{scroll-margin-top: calc(var(--header-h) + 96px);}
.provider-ms-about[id]{scroll-margin-top: calc(var(--header-h) + 96px);}


/* Reveal animation (progressive enhancement: only if JS adds .has-js) */
.ms-reveal{opacity:1; transform:none;}
.has-js .ms-reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .62s ease, transform .62s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.has-js .ms-reveal.is-inview{
  opacity:1;
  transform:none;
}
@media (prefers-reduced-motion: reduce){
  .has-js .ms-reveal{opacity:1; transform:none; transition:none;}
}



/* =========================================================
   Provider public profile – Starter/basic (no huge hero)
   ========================================================= */

.provider-basic{padding:18px 0 58px}

.provider-basic__cover{
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--surface-2);
  box-shadow:var(--shadow-sm);
  aspect-ratio: 16 / 7;
}
.provider-basic__cover img{width:100%; height:100%; object-fit:cover; display:block}

.provider-basic__head{
  display:flex;
  gap:16px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top:14px;
}

.provider-basic__h1{font-size:34px; letter-spacing:-0.02em; margin:0}
.provider-basic__tagline{margin-top:6px; font-size:16px; font-weight:650; color:var(--muted)}

.provider-basic__meta{margin-top:10px; display:flex; flex-wrap:wrap; gap:8px; align-items:center; color:rgba(17,24,39,0.86); font-weight:650}
.provider-basic__meta .dot{width:4px;height:4px;border-radius:999px;background:rgba(17,24,39,0.35);display:inline-block}

.provider-basic__quick-inner{display:flex; flex-wrap:wrap; gap:10px}

.provider-basic__grid{display:grid; grid-template-columns: 1.15fr 0.85fr; gap:16px; margin-top:16px}
.provider-basic__section{padding:18px}
.provider-basic__h2{margin:0 0 10px; font-size:18px; letter-spacing:-0.01em}
.provider-basic__text{color:rgba(17,24,39,0.88); line-height:1.55; font-size:15px}

.provider-basic__thumbs{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px}
.provider-basic__thumb{border:0; padding:0; background:none; cursor:pointer; border-radius:var(--radius-md); overflow:hidden}
.provider-basic__thumb img{width:100%; height:120px; object-fit:cover; display:block}

.provider-basic__formrow{display:grid; grid-template-columns: 1fr 1fr; gap:10px}

.provider-basic__hours{display:grid; gap:10px}
.provider-basic__hours-row{display:grid; grid-template-columns: 40px 1fr; gap:10px; align-items:flex-start}
.provider-basic__hours-day{font-weight:900; color:rgba(17,24,39,0.85)}
.provider-basic__hours-time{color:rgba(17,24,39,0.88)}

@media (max-width: 980px){
  .provider-basic__grid{grid-template-columns: 1fr}
  .provider-basic__thumb img{height:140px}
}

@media (max-width: 720px){
  .provider-basic__cover{aspect-ratio: 16 / 9}
  .provider-basic__h1{font-size:28px}
  .provider-basic__formrow{grid-template-columns:1fr}
  .provider-basic__thumbs{grid-template-columns: repeat(2, 1fr)}
}


/* =========================================================
   Provider premium microsite – full-bleed website layout
   STEP09: cleaner hero, visible section nav, website-style sections
   ========================================================= */

body.is-provider-microsite{
  background:#fff;
  --provider-site-container: min(1320px, calc(100vw - 48px));
}

body.is-provider-microsite main{
  display:block;
}

body.is-provider-microsite .site-header{
  border-bottom:1px solid transparent;
}

body.is-provider-microsite .site-header--overlay{
  background:linear-gradient(180deg, rgba(3,7,18,0.34), rgba(3,7,18,0.08));
  backdrop-filter: blur(12px);
}

body.is-provider-microsite .site-header--overlay.is-solid,
body.is-provider-microsite .site-header.is-solid{
  background:rgba(255,255,255,0.92);
  border-bottom:1px solid rgba(15,23,42,0.08);
}

body.is-provider-microsite .nav__brand-text{
  font-size:17px;
  font-weight:950;
  letter-spacing:-0.02em;
}

.provider-site-container{
  width:min(1320px, calc(100vw - 48px));
  margin:0 auto;
}

.provider-site-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(0,0,0,0.52);
}

.provider-site-section,
.provider-site-band{
  position:relative;
  width:100%;
}

.provider-site-section{
  padding:88px 0;
}

.provider-site-band{
  padding:96px 0;
}

.provider-site-section-title{
  margin:0;
  font-size:clamp(32px,4vw,56px);
  line-height:0.98;
  letter-spacing:-0.04em;
  font-weight:980;
  color:#06070b;
  text-wrap:balance;
}

.provider-site-section-copy{
  max-width:44rem;
  color:rgba(0,0,0,0.62);
  font-size:16px;
  line-height:1.6;
  font-weight:650;
}

.provider-site-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-top:14px;
  margin-bottom:32px;
  flex-wrap:wrap;
}

.provider-site-hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:#030712;
  overflow:hidden;
}
@supports (min-height: 100dvh){
  .provider-site-hero{min-height:100dvh;}
}

.provider-site-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:var(--provider-site-hero);
  background-position:center center;
  background-size:cover;
  transform:scale(1.015);
}

.provider-site-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(70% 50% at 50% 46%, rgba(4,10,22,0.10), rgba(4,10,22,0.58) 72%, rgba(4,10,22,0.82) 100%),
    linear-gradient(180deg, rgba(2,6,23,0.34) 0%, rgba(2,6,23,0.44) 26%, rgba(2,6,23,0.58) 100%);
}

.provider-site-hero__inner{
  position:relative;
  z-index:1;
  width:100%;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:calc(var(--header-h) + 42px) 0 110px;
}

.provider-site-hero__eyebrow{
  font-size:13px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.76);
}

.provider-site-hero__title{
  margin:18px 0 0;
  font-size:clamp(44px,7vw,92px);
  line-height:0.92;
  letter-spacing:-0.06em;
  font-weight:980;
  text-wrap:balance;
  max-width:12ch;
}

.provider-site-hero__subline{
  margin:18px auto 0;
  max-width:38rem;
  font-size:clamp(16px,1.7vw,22px);
  line-height:1.5;
  color:rgba(255,255,255,0.82);
  font-weight:650;
  text-wrap:balance;
}

.provider-site-hero__meta{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px 18px;
  flex-wrap:wrap;
  color:rgba(255,255,255,0.82);
  font-size:14px;
  font-weight:800;
}

.provider-site-hero__meta > span{
  position:relative;
}

.provider-site-hero__meta > span + span::before{
  content:"";
  position:absolute;
  left:-10px;
  top:50%;
  width:4px;
  height:4px;
  border-radius:999px;
  background:rgba(255,255,255,0.42);
  transform:translateY(-50%);
}

.provider-site-hero__meta-muted{opacity:.72;}

.provider-site-hero__cta{
  margin-top:26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.provider-site-hero__cta .btn{
  min-height:50px;
  padding-inline:24px;
  border-radius:16px;
  font-weight:900;
}

.provider-site-hero__cta .btn-ghost{
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.24);
  color:#fff;
}
.provider-site-hero__cta .btn-ghost:hover{
  background:rgba(255,255,255,0.16);
}

.provider-site-hero__badges{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
}

.provider-site-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.88);
  font-size:12px;
  font-weight:850;
}

.provider-site-badge--featured{background:rgba(255,255,255,0.16);}
.provider-site-badge--community{background:rgba(14,165,233,0.22);}

.provider-site-scroll{
  position:absolute;
  left:50%;
  bottom:24px;
  z-index:1;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.82);
  text-decoration:none;
}

.provider-site-scroll__mouse{
  width:28px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.34);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:8px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(8px);
}

.provider-site-scroll__dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:#fff;
  animation: provider-site-scroll-dot 1.75s cubic-bezier(.2,.8,.2,1) infinite;
}

.provider-site-scroll__label{
  font-size:11px;
  font-weight:900;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

@keyframes provider-site-scroll-dot{
  0%{transform:translateY(0); opacity:.2;}
  28%{opacity:1;}
  100%{transform:translateY(18px); opacity:0;}
}

.provider-site-nav-wrap{
  position:sticky;
  top:var(--header-h);
  z-index:90;
  width:100%;
  background:rgba(255,255,255,0.94);
  border-top:1px solid rgba(15,23,42,0.05);
  border-bottom:1px solid rgba(15,23,42,0.08);
  box-shadow:0 14px 34px rgba(15,23,42,0.06);
  backdrop-filter:blur(16px);
}

.provider-site-nav{
  display:flex;
  align-items:center;
  gap:28px;
  min-height:72px;
  overflow-x:auto; overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.provider-site-nav::-webkit-scrollbar{display:none;}

.provider-site-nav a{
  position:relative;
  flex:0 0 auto;
  text-decoration:none;
  color:rgba(0,0,0,0.62);
  font-size:13px;
  font-weight:950;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:12px 0;
}

.provider-site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:transparent;
  transition:background-color .18s ease;
}
.provider-site-nav a:hover,
.provider-site-nav a.is-active{color:#05060a;}
.provider-site-nav a:hover::after,
.provider-site-nav a.is-active::after{background:#05060a;}

.provider-site-about{
  background:
    radial-gradient(900px 480px at 15% 10%, rgba(255,255,255,0.10), transparent 62%),
    radial-gradient(900px 480px at 85% 18%, rgba(56,189,248,0.12), transparent 58%),
    #05060a;
  color:#fff;
}

.provider-site-about__inner{
  text-align:center;
  max-width:980px;
}

.provider-site-about .provider-site-kicker,
.provider-site-about__tagline{color:rgba(255,255,255,0.74);}
.provider-site-about__title{color:#fff;}

.provider-site-about__tagline{
  margin-top:14px;
  font-size:15px;
  font-weight:850;
}

.provider-site-about__text{
  margin-top:18px;
  font-size:17px;
  line-height:1.8;
  color:rgba(255,255,255,0.84);
  font-weight:640;
}

.provider-site-about__facts{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.provider-site-fact{
  text-decoration:none;
  color:inherit;
  padding:20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(14px);
  text-align:left;
}
.provider-site-fact__label{
  font-size:11px;
  font-weight:900;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.62);
}
.provider-site-fact__value{
  margin-top:12px;
  font-size:22px;
  line-height:1.18;
  font-weight:900;
  letter-spacing:-0.03em;
  color:#fff;
}
.provider-site-fact__hint{
  margin-top:14px;
  font-size:13px;
  font-weight:750;
  color:rgba(255,255,255,0.70);
}

.provider-site-areas{
  background:#fff;
}

.provider-site-focus-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.provider-site-focus-card,
.provider-site-service-group,
.provider-site-highlight-card,
.provider-site-news-card,
.provider-site-panel,
.provider-site-contact-card{
  border:1px solid rgba(15,23,42,0.08);
  background:#fff;
  border-radius:24px;
  box-shadow:0 12px 30px rgba(15,23,42,0.05);
}

.provider-site-focus-card{
  padding:26px;
  background:linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.provider-site-focus-card__eyebrow,
.provider-site-service-group__kicker,
.provider-site-news-card__eyebrow{
  font-size:11px;
  font-weight:900;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(0,0,0,0.48);
}
.provider-site-focus-card h3,
.provider-site-service-group h3,
.provider-site-highlight-card h3,
.provider-site-news-card h3,
.provider-site-panel h3{
  margin:14px 0 0;
  font-size:26px;
  line-height:1.02;
  letter-spacing:-0.03em;
  font-weight:960;
  color:#05060a;
}
.provider-site-focus-card p,
.provider-site-highlight-card p,
.provider-site-news-card p,
.provider-site-rules__text,
.provider-site-service-item p,
.provider-site-section .muted,
.provider-site-empty{
  color:rgba(0,0,0,0.64);
  font-size:15px;
  line-height:1.7;
  font-weight:650;
}

.provider-site-service-groups{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}

.provider-site-service-group{
  padding:24px;
}

.provider-site-service-group__head{
  margin-bottom:18px;
}

.provider-site-service-list{
  display:grid;
  gap:12px;
}

.provider-site-service-item{
  padding:16px 0;
  border-top:1px solid rgba(15,23,42,0.08);
}
.provider-site-service-item:first-child{border-top:0; padding-top:0;}
.provider-site-service-item__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.provider-site-service-item h4{
  margin:0;
  font-size:20px;
  line-height:1.15;
  letter-spacing:-0.02em;
  font-weight:920;
  color:#05060a;
}
.provider-site-service-item__meta{
  font-size:13px;
  font-weight:850;
  color:rgba(0,0,0,0.55);
}
.provider-site-service-item p{margin:10px 0 0;}

.provider-site-highlights{
  background:#0a0a0a;
}
.provider-site-highlights .provider-site-kicker{
  color:rgba(255,255,255,.45);
}
.provider-site-highlights .provider-site-section-title{
  color:#fff;
}
.provider-site-highlights .provider-site-section-copy{
  color:rgba(255,255,255,.5);
}

.provider-site-highlight-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}

.provider-site-highlight-card{
  padding:28px 24px;
  background:rgba(255,255,255,.05);
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  transition:all .3s cubic-bezier(.22,1,.36,1);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
}
.provider-site-highlight-card:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 8px 32px rgba(0,0,0,.3);
  transform:translateY(-4px);
}

.provider-site-highlight-card__icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}
.provider-site-highlight-card__icon img{
  width:22px;
  height:22px;
  filter:brightness(0) invert(1);
}
.provider-site-highlight-card__icon span{
  font-size:20px;
  font-weight:900;
  color:#fff;
}
.provider-site-highlight-card h3{
  font-size:15px;
  font-weight:800;
  color:#fff;
  margin:0 0 8px;
  letter-spacing:-0.2px;
}
.provider-site-highlight-card p{
  font-size:13px;
  color:rgba(255,255,255,.5);
  line-height:1.55;
  margin:0;
  font-weight:400;
}

.provider-site-gallery-section{background:#fff;}

.provider-site-gallery{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  grid-auto-rows:180px;
  gap:14px;
}

.provider-site-gallery__item{
  grid-column:span 3;
  border:0;
  border-radius:24px;
  overflow:hidden;
  cursor:pointer;
  background:#e5e7eb;
  padding:0;
  box-shadow:0 12px 30px rgba(15,23,42,0.06);
}
.provider-site-gallery__item.is-main{
  grid-column:span 6;
  grid-row:span 2;
}
.provider-site-gallery__item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s cubic-bezier(.2,.8,.2,1), filter .45s cubic-bezier(.2,.8,.2,1);
}
@media (hover:hover){
  .provider-site-gallery__item:hover img{
    transform:scale(1.04);
    filter:saturate(1.08);
  }
}

.provider-site-news{background:#fff;}
.provider-site-news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.provider-site-news-card{padding:26px;}
.provider-site-news-card p{margin-top:12px;}
.provider-site-news-card .btn{margin-top:16px;}

.provider-site-info{
  background:#fafaf9;
}
.provider-site-info-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
}
.provider-site-panel{padding:26px;}

.provider-site-hours__list{
  margin-top:18px;
  display:grid;
  gap:10px;
}
.provider-site-hours__row{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:12px;
  padding:12px 0;
  border-top:1px solid rgba(15,23,42,0.08);
}
.provider-site-hours__row:first-child{border-top:0; padding-top:0;}
.provider-site-hours__day{
  font-weight:900;
  color:#05060a;
}
.provider-site-hours__value{
  font-weight:800;
  color:rgba(0,0,0,0.76);
}
.provider-site-hours__note{
  margin-top:6px;
  font-size:12px;
  font-weight:750;
  color:rgba(0,0,0,0.55);
}
.provider-site-rules__badges{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.provider-site-rules__text{
  margin-top:16px;
}
.provider-site-rules__text--muted{
  color:rgba(0,0,0,0.56);
}

.provider-site-contact{
  background:#fff;
  padding-bottom:110px;
}
.provider-site-contact__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(360px, 460px);
  gap:28px;
  align-items:start;
}
.provider-site-contact__intro .provider-site-section-copy{margin-top:14px;}
.provider-site-contact__cards{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.provider-site-contact-card{
  padding:22px;
  text-decoration:none;
  color:inherit;
}
.provider-site-contact-card__label{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(0,0,0,0.48);
}
.provider-site-contact-card__value{
  margin-top:12px;
  font-size:20px;
  line-height:1.3;
  font-weight:880;
  color:#05060a;
}
.provider-site-contact__buttons{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.provider-site-contact-form{position:sticky; top:calc(var(--header-h) + 94px);}
.provider-site-contact-form .small{font-weight:800; color:rgba(0,0,0,0.58);}
.provider-site-contact-form h3{margin-top:0;}
.provider-site-lead-form{display:grid; gap:12px; margin-top:18px;}
.provider-site-lead-form__row{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
.provider-site-lead-form__note{font-weight:650;}

/* Footer: keep desktop columns open and visually separated */
@media (min-width: 981px){
  .site-footer__col summary{pointer-events:none; cursor:default;}
  .site-footer__col summary::after{content:none;}
  .site-footer__col[open] summary{margin-bottom:14px;}
}

/* Microsite header mobile alignment */
@media (max-width: 840px){
  body.is-provider-microsite .site-header .nav{
    position:relative;
    justify-content:flex-end;
    min-height:68px;
  }
  body.is-provider-microsite .site-header .nav__grow{display:none;}
  body.is-provider-microsite .site-header .nav__brand{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    max-width:calc(100vw - 170px);
    justify-content:center;
    gap:8px;
    text-align:center;
  }
  body.is-provider-microsite .site-header .nav__brand-text{
    display:block;
    font-size:14px;
    line-height:1.1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  body.is-provider-microsite .site-header .nav__links{
    margin-left:auto;
    gap:8px;
  }
  body.is-provider-microsite .site-header .nav__pill{
    padding-inline:12px;
  }
}

@media (max-width: 980px){
  body.is-provider-microsite{
    --provider-site-container:min(100vw - 32px, 1320px);
  }
  .provider-site-container{width:min(100vw - 32px, 1320px);}
  .provider-site-section,
  .provider-site-band{padding:72px 0;}
  .provider-site-about__facts,
  .provider-site-focus-grid,
  .provider-site-highlight-grid,
  .provider-site-news-grid,
  .provider-site-service-groups,
  .provider-site-info-grid,
  .provider-site-contact__grid,
  .provider-site-contact__cards{
    grid-template-columns:1fr;
  }
  .provider-site-gallery__item{grid-column:span 6;}
  .provider-site-gallery__item.is-main{grid-column:span 12;}
  .provider-site-contact-form{position:static;}
}

@media (max-width: 720px){
  body.is-provider-microsite .site-header .wrap--wide{padding-left:14px; padding-right:14px;}
  body.is-provider-microsite .site-header .nav__brand{
    max-width:calc(100vw - 136px);
  }
  .provider-site-container{width:min(100vw - 24px, 1320px);}
  .provider-site-hero__inner{padding-top:calc(var(--header-h) + 20px); padding-bottom:104px;}
  .provider-site-hero__title{font-size:clamp(36px, 11vw, 56px); max-width:11ch;}
  .provider-site-hero__subline{font-size:16px; max-width:26rem;}
  .provider-site-hero__meta{gap:10px 16px; font-size:13px;}
  .provider-site-hero__meta > span + span::before{left:-9px;}
  .provider-site-hero__cta{flex-direction:column; width:100%; max-width:320px;}
  .provider-site-hero__cta .btn{width:100%;}
  .provider-site-scroll{bottom:18px;}
  .provider-site-nav{min-height:64px; gap:20px;}
  .provider-site-nav a{font-size:12px;}
  .provider-site-section-title{font-size:clamp(26px, 8vw, 38px);}
  .provider-site-about__text{font-size:16px; line-height:1.75;}
  .provider-site-fact__value{font-size:18px;}
  .provider-site-gallery{grid-template-columns:1fr 1fr; grid-auto-rows:160px;}
  .provider-site-gallery__item,
  .provider-site-gallery__item.is-main{grid-column:span 1; grid-row:span 1;}
  .provider-site-hours__row{grid-template-columns:1fr; gap:6px;}
  .provider-site-lead-form__row{grid-template-columns:1fr;}
}

@media (max-width: 560px){
  body.is-provider-microsite .site-header .nav__links .nav__pill span{display:none;}
  body.is-provider-microsite .site-header .nav__links .nav__pill{width:42px; height:42px; padding:0; justify-content:center;}
  body.is-provider-microsite .site-header .nav__brand-logo{width:32px; height:32px; border-radius:11px;}
  body.is-provider-microsite .site-header .nav__brand-text{font-size:13px;}
  .provider-site-kicker{font-size:11px;}
  .provider-site-focus-card,
  .provider-site-service-group,
  .provider-site-highlight-card,
  .provider-site-news-card,
  .provider-site-panel,
  .provider-site-contact-card{padding:22px 20px; border-radius:22px;}
}

@media (prefers-reduced-motion: reduce){
  .provider-site-scroll__dot{animation:none; opacity:1;}
}

.provider-site-section[id],
.provider-site-band[id],
.provider-site-contact[id]{scroll-margin-top:calc(var(--header-h) + 88px);}

/* =========================================================
   STEP10 · Provider premium polish
   - transparent header over hero
   - docked section nav replaces header on scroll
   - full-bleed sections without white side gutters
   - cleaner hero / no hero CTAs / no mobile bottom bar
   - stronger footer columns on desktop
   ========================================================= */

body.is-provider-microsite{
  --provider-site-gutter: clamp(18px, 3vw, 42px);
  --provider-site-container: min(1380px, calc(100vw - (var(--provider-site-gutter) * 2)));
  background:#fff;
}

body.is-provider-microsite,
body.is-provider-microsite main{
  overflow-x: clip;
}

body.is-provider-microsite .provider-site-hero,
body.is-provider-microsite .provider-site-band,
body.is-provider-microsite .provider-site-section,
body.is-provider-microsite .provider-site-nav-wrap{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

body.is-provider-microsite .provider-site-container{
  width:var(--provider-site-container);
  max-width:none;
}

/* Header: transparent above the hero, readable on all images */
body.is-provider-microsite .site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:120;
  transition:transform .36s cubic-bezier(.22,.61,.36,1), opacity .26s ease;
  border-bottom:1px solid transparent;
  background:transparent;
  box-shadow:none;
}

body.is-provider-microsite .site-header--overlay,
body.is-provider-microsite .site-header--overlay.is-solid,
body.is-provider-microsite .site-header.is-solid{
  background:transparent !important;
  backdrop-filter:none !important;
  border-bottom-color:transparent !important;
  box-shadow:none !important;
}

body.is-provider-microsite .site-header .nav{
  min-height:76px;
}

body.is-provider-microsite .site-header .nav__brand,
body.is-provider-microsite .site-header .nav__links a,
body.is-provider-microsite .site-header .nav-menu__summary,
body.is-provider-microsite .site-header .nav__icon-btn{
  color:#fff;
}

body.is-provider-microsite .site-header .nav__brand-logo{
  background:rgba(13,18,29,0.38);
  border-color:rgba(255,255,255,0.18);
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
}

body.is-provider-microsite .site-header .nav__icon-btn,
body.is-provider-microsite .site-header .nav-menu__summary{
  min-height:44px;
  border-radius:999px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,0.17);
  background:rgba(10,16,28,0.34);
  backdrop-filter:blur(14px);
  box-shadow:0 12px 28px rgba(0,0,0,0.14);
}

body.is-provider-microsite .site-header .nav__icon-btn:hover,
body.is-provider-microsite .site-header .nav-menu__summary:hover{
  background:rgba(10,16,28,0.48);
}

body.is-provider-microsite.provider-site-nav-docked .site-header{
  transform:translateY(calc(-100% - 6px));
  opacity:0;
  pointer-events:none;
}

/* Hero */
body.is-provider-microsite .provider-site-hero{
  min-height:100vh;
  min-height:100svh;
}
@supports (min-height:100dvh){
  body.is-provider-microsite .provider-site-hero{min-height:100dvh;}
}

body.is-provider-microsite .provider-site-hero::after{
  background:
    linear-gradient(180deg, rgba(5,9,18,0.56) 0%, rgba(5,9,18,0.38) 24%, rgba(5,9,18,0.48) 56%, rgba(5,9,18,0.76) 100%),
    radial-gradient(78% 54% at 50% 45%, rgba(4,10,22,0.06), rgba(4,10,22,0.44) 70%, rgba(4,10,22,0.82) 100%);
}

body.is-provider-microsite .provider-site-hero__inner{
  max-width:820px;
  text-align:center;
  padding:calc(var(--header-h) + 28px) 0 118px;
}

body.is-provider-microsite .provider-site-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(10,16,28,0.20);
  backdrop-filter:blur(10px);
  color:rgba(255,255,255,0.82);
}

body.is-provider-microsite .provider-site-hero__title{
  margin-top:22px;
  max-width:11ch;
  text-shadow:0 16px 40px rgba(0,0,0,0.24);
}

body.is-provider-microsite .provider-site-hero__subline{
  margin-top:16px;
  max-width:34rem;
  font-size:clamp(17px, 1.5vw, 22px);
  color:rgba(255,255,255,0.80);
}

body.is-provider-microsite .provider-site-hero__meta{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(10,16,28,0.22);
  backdrop-filter:blur(10px);
  color:rgba(255,255,255,0.82);
  font-size:12px;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

body.is-provider-microsite .provider-site-hero__meta > span + span::before,
body.is-provider-microsite .provider-site-hero__cta{
  display:none !important;
}

body.is-provider-microsite .provider-site-hero__badges{
  margin-top:22px;
}

/* Scroll cue */
body.is-provider-microsite .provider-site-scroll{
  bottom:24px;
  gap:10px;
  color:rgba(255,255,255,0.84);
}

body.is-provider-microsite .provider-site-scroll__text{
  font-size:11px;
  font-weight:900;
  letter-spacing:0.16em;
  text-transform:uppercase;
}

body.is-provider-microsite .provider-site-scroll__mouse,
body.is-provider-microsite .provider-site-scroll__label{display:none !important;}

body.is-provider-microsite .provider-site-scroll__line{
  position:relative;
  width:1px;
  height:44px;
  background:rgba(255,255,255,0.22);
  overflow:hidden;
}

body.is-provider-microsite .provider-site-scroll__line-anim{
  position:absolute;
  left:0;
  top:-18px;
  width:1px;
  height:18px;
  background:#fff;
  box-shadow:0 0 12px rgba(255,255,255,0.30);
  animation:provider-site-scroll-line 1.8s cubic-bezier(.2,.8,.2,1) infinite;
}

body.is-provider-microsite .provider-site-scroll__chevrons{
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:center;
}
body.is-provider-microsite .provider-site-scroll__chevrons span{
  width:10px;
  height:10px;
  border-right:1.5px solid rgba(255,255,255,0.92);
  border-bottom:1.5px solid rgba(255,255,255,0.92);
  transform:rotate(45deg);
  animation:provider-site-scroll-chevron 1.8s ease infinite;
}
body.is-provider-microsite .provider-site-scroll__chevrons span:last-child{animation-delay:.18s; opacity:.72;}

@keyframes provider-site-scroll-line{
  0%{transform:translateY(0); opacity:0;}
  20%{opacity:1;}
  100%{transform:translateY(62px); opacity:0;}
}
@keyframes provider-site-scroll-chevron{
  0%,100%{transform:translateY(0) rotate(45deg); opacity:.35;}
  40%{transform:translateY(4px) rotate(45deg); opacity:1;}
}

/* Section nav */
body.is-provider-microsite .provider-site-nav-wrap{
  position:sticky;
  top:var(--header-h);
  z-index:115;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(16px);
  border-top:0;
  border-bottom:1px solid rgba(15,23,42,0.08);
  box-shadow:0 14px 28px rgba(15,23,42,0.06);
}

body.is-provider-microsite.provider-site-nav-docked .provider-site-nav-wrap{
  top:0;
}

body.is-provider-microsite .provider-site-nav{
  min-height:76px;
  gap:34px;
}

body.is-provider-microsite .provider-site-nav a{
  font-size:12px;
  letter-spacing:0.14em;
  color:rgba(5,6,10,0.62);
}

body.is-provider-microsite .provider-site-nav a::after{
  height:3px;
  border-radius:999px;
  bottom:-2px;
}

body.is-provider-microsite .provider-site-nav a:hover,
body.is-provider-microsite .provider-site-nav a.is-active{
  color:#05060a;
}

/* Section flow */
body.is-provider-microsite .provider-site-section{
  padding:96px 0;
}
body.is-provider-microsite .provider-site-band{
  padding:104px 0;
}
body.is-provider-microsite .provider-site-section-head{
  margin-bottom:36px;
}

/* About */
body.is-provider-microsite .provider-site-about{
  background:
    radial-gradient(820px 460px at 18% 8%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(820px 460px at 85% 12%, rgba(56,189,248,0.11), transparent 55%),
    #05060a;
}

body.is-provider-microsite .provider-site-about__inner{
  max-width:960px;
}

body.is-provider-microsite .provider-site-about__text{
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}

/* Highlights */
body.is-provider-microsite .provider-site-highlights{
  background:#0a0a0a;
}

body.is-provider-microsite .provider-site-highlights .provider-site-kicker{
  color:rgba(255,255,255,.4);
}
body.is-provider-microsite .provider-site-highlights .provider-site-section-title{
  color:#fff;
}
body.is-provider-microsite .provider-site-highlights .provider-site-section-copy{
  color:rgba(255,255,255,.4);
}

body.is-provider-microsite .provider-site-highlight-grid{
  gap:12px;
}

body.is-provider-microsite .provider-site-highlight-grid{
  gap:10px;
  grid-template-columns:repeat(2, minmax(0,1fr));
}

@media (max-width: 640px){
  body.is-provider-microsite .provider-site-highlight-grid{
    grid-template-columns:1fr;
  }
}

body.is-provider-microsite .provider-site-highlight-card{
  min-height:0;
  padding:18px 20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
  text-align:left;
  transition:all .2s ease;
}
body.is-provider-microsite .provider-site-highlight-card:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  transform:translateY(-1px);
}

body.is-provider-microsite .provider-site-highlight-card__icon{
  width:38px;
  height:38px;
  border-radius:10px;
  margin-bottom:0;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
body.is-provider-microsite .provider-site-highlight-card__icon img{
  width:17px;
  height:17px;
  filter:brightness(0) invert(1);
  opacity:.85;
}

body.is-provider-microsite .provider-site-highlight-card h3{
  font-size:14px;
  font-weight:700;
  color:#fff;
  margin:0 0 2px;
  letter-spacing:-.01em;
}

body.is-provider-microsite .provider-site-highlight-card p{
  font-size:12px;
  color:rgba(255,255,255,.45);
  line-height:1.4;
  margin:0;
}

/* Gallery */
body.is-provider-microsite .provider-site-gallery{
  gap:16px;
}

body.is-provider-microsite .provider-site-gallery__item{
  border-radius:28px;
}

/* Contact */
body.is-provider-microsite .provider-site-contact__buttons .btn{
  min-height:48px;
  font-weight:850;
}

body.is-provider-microsite .provider-site-contact-form{
  top:calc(var(--header-h) + 24px);
}

/* No sticky bottom action bar on premium mobile */
body.is-provider-microsite{
  padding-bottom:0 !important;
}
body.is-provider-microsite .provider-ms-mobilebar{
  display:none !important;
}

/* Footer on desktop: clearer column structure and no inline flow text */
@media (min-width: 981px){
  .site-footer{
    margin-top:0;
  }

  .site-footer__top{
    grid-template-columns:repeat(4, minmax(180px, 1fr));
    gap:34px 42px;
    padding:40px 0 34px;
  }

  .site-footer__col{
    padding-right:18px;
  }

  .site-footer__col summary{
    margin-bottom:16px;
    font-size:12px;
    letter-spacing:0.14em;
    text-transform:uppercase;
  }

  .site-footer__links{
    gap:12px;
  }

  .site-footer__links a{
    display:block;
    padding:2px 0;
    line-height:1.45;
  }

  .site-footer__bottom{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    align-items:start;
    gap:18px 32px;
  }

  .site-footer__meta{
    display:grid;
    justify-items:start;
    gap:8px;
    font-size:13px;
  }

  .site-footer__meta .sep{display:none;}

  .site-footer__prefs{
    justify-self:end;
    align-self:start;
    gap:12px;
  }
}

/* Mobile premium page */
@media (max-width: 980px){
  body.is-provider-microsite{
    --provider-site-gutter: 16px;
  }

  body.is-provider-microsite .provider-site-section,
  body.is-provider-microsite .provider-site-band{
    padding:72px 0;
  }

  body.is-provider-microsite .provider-site-hero__inner{
    max-width:640px;
    padding:calc(var(--header-h) + 10px) 0 104px;
  }

  body.is-provider-microsite .provider-site-nav{
    min-height:68px;
    gap:24px;
  }
}

@media (max-width: 840px){
  body.is-provider-microsite .site-header .nav{
    justify-content:space-between;
    min-height:68px;
  }

  body.is-provider-microsite .site-header .nav__grow{
    display:block;
    flex:1;
  }

  body.is-provider-microsite .site-header .nav__brand{
    position:static !important;
    left:auto !important;
    transform:none !important;
    max-width:none !important;
    gap:0 !important;
  }

  body.is-provider-microsite .site-header .nav__brand-text,
  body.is-provider-microsite .site-header .nav__brand-sub{
    display:none !important;
  }

  body.is-provider-microsite .site-header .nav__links{
    margin-left:auto;
    gap:8px;
  }
}

@media (max-width: 720px){
  body.is-provider-microsite{
    --provider-site-gutter: 14px;
  }

  body.is-provider-microsite .site-header .wrap--wide{
    padding-left:14px;
    padding-right:14px;
  }

  body.is-provider-microsite .site-header .nav__icon-btn,
  body.is-provider-microsite .site-header .nav-menu__summary{
    width:42px;
    min-width:42px;
    height:42px;
    padding:0;
    justify-content:center;
  }

  body.is-provider-microsite .site-header .nav__icon-btn .nav__label,
  body.is-provider-microsite .site-header .nav-menu__summary .nav__label{
    display:none;
  }

  body.is-provider-microsite .provider-site-container{
    width:var(--provider-site-container);
  }

  body.is-provider-microsite .provider-site-hero__eyebrow{
    padding:9px 12px;
    font-size:11px;
    letter-spacing:0.12em;
  }

  body.is-provider-microsite .provider-site-hero__title{
    margin-top:18px;
    font-size:clamp(38px, 11vw, 58px);
    max-width:9.5ch;
  }

  body.is-provider-microsite .provider-site-hero__subline{
    margin-top:14px;
    max-width:24rem;
    font-size:15px;
    line-height:1.55;
  }

  body.is-provider-microsite .provider-site-hero__meta{
    margin-top:16px;
    padding:9px 12px;
    font-size:11px;
  }

  body.is-provider-microsite .provider-site-scroll{
    bottom:18px;
    gap:8px;
  }

  body.is-provider-microsite .provider-site-scroll__text{
    font-size:10px;
    letter-spacing:0.18em;
  }

  body.is-provider-microsite .provider-site-scroll__line{
    height:34px;
  }

  body.is-provider-microsite .provider-site-nav{
    min-height:62px;
    gap:20px;
  }

  body.is-provider-microsite .provider-site-nav a{
    font-size:11px;
    letter-spacing:0.12em;
  }

  body.is-provider-microsite .provider-site-highlight-card,
  body.is-provider-microsite .provider-site-focus-card,
  body.is-provider-microsite .provider-site-service-group,
  body.is-provider-microsite .provider-site-news-card,
  body.is-provider-microsite .provider-site-panel,
  body.is-provider-microsite .provider-site-contact-card{
    border-radius:22px;
    padding:22px 20px;
  }

  body.is-provider-microsite .provider-site-highlight-card{
    min-height:0;
    padding:14px 16px;
    gap:12px;
    border-radius:12px;
  }

  body.is-provider-microsite .provider-site-contact{
    padding-bottom:88px;
  }
}

@media (max-width: 560px){
  body.is-provider-microsite .provider-site-gallery{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:150px;
  }

  body.is-provider-microsite .provider-site-gallery__item,
  body.is-provider-microsite .provider-site-gallery__item.is-main{
    grid-column:span 1;
    grid-row:span 1;
  }

  body.is-provider-microsite .provider-site-contact__buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  body.is-provider-microsite .provider-site-contact__buttons .btn{
    width:100%;
    justify-content:center;
  }
}

/* Featured tier groundwork */
body.is-provider-tier-featured .provider-site-hero__title{
  font-size:clamp(50px, 7vw, 104px);
}

body.is-provider-tier-featured .provider-site-highlight-grid{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

@media (max-width: 1180px){
  body.is-provider-tier-featured .provider-site-highlight-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px){
  body.is-provider-tier-featured .provider-site-highlight-grid{
    grid-template-columns:1fr;
  }
}

@media (prefers-reduced-motion: reduce){
  body.is-provider-microsite .provider-site-scroll__line-anim,
  body.is-provider-microsite .provider-site-scroll__chevrons span{
    animation:none;
  }
}

/* ==========================================================
   STEP11 – provider tiers refinement / centered nav / slider
   ========================================================== */
body.is-provider-microsite .provider-site-nav{
  justify-content:center;
}

body.is-provider-microsite .provider-site-hero__inner{
  max-width:920px;
}

body.is-provider-microsite .provider-site-hero__title{
  max-width:13ch;
  margin-top:30px;
  letter-spacing:-0.055em;
  line-height:.9;
  text-wrap:balance;
}

body.is-provider-tier-featured .provider-site-hero__title{
  max-width:12.5ch;
  font-size:clamp(72px, 8.4vw, 124px);
}

body.is-provider-tier-featured .provider-site-about{
  background:
    radial-gradient(980px 480px at 12% 12%, rgba(255,255,255,0.09), transparent 58%),
    radial-gradient(980px 520px at 90% 10%, rgba(250,204,21,0.12), transparent 54%),
    #05060a;
}

.provider-site-section-head--gallery{
  align-items:flex-end;
}

.provider-site-gallery-slider{
  position:relative;
  margin-top:28px;
}

.provider-site-gallery-slider__viewport{
  overflow:hidden;
  border-radius:32px;
  background:#090b12;
  box-shadow:0 30px 72px rgba(7,10,18,0.18);
}

.provider-site-gallery-slider__track{
  display:flex;
  transform:translate3d(0,0,0);
  transition:transform .78s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

.provider-site-gallery-slide{
  position:relative;
  min-width:100%;
  aspect-ratio:16 / 9;
  border:0;
  padding:0;
  background:none;
  cursor:pointer;
}

.provider-site-gallery-slide img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.provider-site-gallery-slide::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.18) 100%);
  pointer-events:none;
}

.provider-site-gallery-slider__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(11,15,24,0.50);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:26px;
  line-height:1;
  z-index:2;
  backdrop-filter:blur(14px);
  box-shadow:0 14px 28px rgba(0,0,0,0.16);
}
.provider-site-gallery-slider__nav--prev{left:18px;}
.provider-site-gallery-slider__nav--next{right:18px;}
.provider-site-gallery-slider__nav:hover{background:rgba(11,15,24,0.68);}

.provider-site-gallery-slider__dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:18px;
}

.provider-site-gallery-slider__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  padding:0;
  background:rgba(17,24,39,0.18);
}

.provider-site-gallery-slider__dot.is-active{
  width:28px;
  background:#111827;
}

.provider-site-gallery-band{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.provider-site-gallery-slider--fullbleed{
  margin-top:28px;
}

.provider-site-gallery-slider--fullbleed .provider-site-gallery-slider__viewport{
  border-radius:0;
  box-shadow:none;
  background:#090b12;
}

.provider-site-gallery-slider--fullbleed .provider-site-gallery-slide{
  aspect-ratio:auto;
  min-height:clamp(420px, 54vw, 840px);
}

@media (max-width: 720px){
  .provider-site-gallery-slider--fullbleed .provider-site-gallery-slide{
    min-height:68svh;
  }
}

.provider-site-news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.provider-site-news-card{
  display:grid;
  align-content:start;
  gap:14px;
  min-height:240px;
  padding:26px;
  border-radius:28px;
  border:1px solid rgba(17,24,39,0.08);
  background:linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
  box-shadow:0 18px 46px rgba(15,23,42,0.06);
}

.provider-site-news-card__topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.provider-site-news-card__kind,
.provider-site-news-card__date{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

.provider-site-news-card__kind{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#eef2ff;
  color:#111827;
}

.provider-site-news-card__date{
  color:rgba(17,24,39,0.56);
}

.provider-site-news-card--offer .provider-site-news-card__kind{
  background:#fff4d4;
  color:#8a5300;
}
.provider-site-news-card--event .provider-site-news-card__kind{
  background:#dff3ff;
  color:#0f5f90;
}
.provider-site-news-card--note .provider-site-news-card__kind{
  background:#eceff3;
  color:#475569;
}
.provider-site-news-card--news .provider-site-news-card__kind{
  background:#eef2ff;
  color:#273b8a;
}

.provider-site-news-card h3{
  margin:0;
  font-size:30px;
  line-height:1.02;
  letter-spacing:-0.035em;
}

.provider-site-news-card p{
  margin:0;
  color:rgba(17,24,39,0.78);
  line-height:1.7;
}

body.is-provider-tier-featured .provider-site-news-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
body.is-provider-tier-featured .provider-site-news-card:first-child{
  grid-column:span 2;
  min-height:300px;
}

.provider-site-spotlight{
  padding:38px 0 24px;
  background:linear-gradient(180deg, rgba(250,250,248,0.9) 0%, #ffffff 100%);
}

.provider-site-spotlight__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.provider-site-spotlight__card{
  min-height:118px;
  padding:22px 24px;
  border-radius:24px;
  border:1px solid rgba(17,24,39,0.08);
  background:linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
  box-shadow:0 16px 40px rgba(15,23,42,0.05);
}

.provider-site-spotlight__label{
  font-size:11px;
  font-weight:900;
  letter-spacing:0.13em;
  text-transform:uppercase;
  color:rgba(17,24,39,0.48);
}

.provider-site-spotlight__value{
  margin-top:10px;
  font-size:20px;
  font-weight:850;
  line-height:1.3;
  letter-spacing:-0.02em;
  color:#05060a;
}

body.is-provider-tier-featured .provider-site-spotlight__card{
  background:linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,248,228,0.96) 100%);
}

.provider-site-contact-flash{
  margin-bottom:16px;
  padding:14px 16px;
  border-radius:20px;
  font-weight:750;
  line-height:1.5;
}
.provider-site-contact-flash.is-success{
  background:#edf9f1;
  border:1px solid rgba(34,197,94,0.18);
  color:#166534;
}
.provider-site-contact-flash.is-error{
  background:#fff2f2;
  border:1px solid rgba(239,68,68,0.16);
  color:#991b1b;
}

.provider-site-auth-card{
  display:grid;
  gap:18px;
}
.provider-site-auth-card p{
  margin:0;
  color:rgba(17,24,39,0.78);
  line-height:1.65;
}
.provider-site-auth-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

body.is-provider-basic .provider-basic{
  padding:28px 0 72px;
}

body.is-provider-basic .provider-basic__cover{
  aspect-ratio:21 / 8;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 22px 56px rgba(15,23,42,0.08);
}

body.is-provider-basic .provider-basic__head{
  margin-top:22px;
  align-items:flex-end;
}

body.is-provider-basic .provider-basic__h1{
  font-size:clamp(34px, 5vw, 56px);
}

body.is-provider-basic .provider-basic__tagline{
  max-width:58ch;
  line-height:1.55;
}

body.is-provider-basic .provider-basic__section{
  padding:22px;
}

body.is-provider-basic .provider-basic__login-card{
  display:grid;
  gap:14px;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(17,24,39,0.08);
  background:#f8fafc;
}

body.is-provider-basic .provider-basic__login-card p{
  margin:0;
  color:rgba(17,24,39,0.74);
  line-height:1.6;
}

@media (min-width: 981px){
  .site-footer__top{
    display:grid !important;
    grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
    gap:36px 42px !important;
  }
  .site-footer__links{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }
  .site-footer__links a{
    display:block !important;
    width:100%;
  }
  .site-footer__meta{
    display:grid !important;
    gap:10px !important;
  }
}

@media (max-width: 980px){
  .provider-site-news-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .provider-site-spotlight__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px){
  body.is-provider-microsite .provider-site-nav{
    justify-content:flex-start;
  }
}

@media (max-width: 720px){
  body.is-provider-microsite .provider-site-hero__inner{
    padding-top:calc(var(--header-h) + 18px);
    padding-bottom:112px;
  }

  body.is-provider-microsite .provider-site-hero__title{
    margin-top:24px;
    max-width:11ch;
    font-size:clamp(48px, 13vw, 74px);
  }

  .provider-site-gallery-slider__viewport{
    border-radius:22px;
  }

  .provider-site-gallery-slide{
    aspect-ratio:4 / 5;
  }

  .provider-site-gallery-slider__nav{
    width:42px;
    height:42px;
    font-size:22px;
  }
  .provider-site-gallery-slider__nav--prev{left:10px;}
  .provider-site-gallery-slider__nav--next{right:10px;}

  .provider-site-news-grid,
  .provider-site-spotlight__grid{
    grid-template-columns:1fr;
  }

  body.is-provider-tier-featured .provider-site-news-card:first-child{
    grid-column:auto;
  }

  body.is-provider-basic .provider-basic__cover{
    aspect-ratio:16 / 10;
    border-radius:22px;
  }

  .provider-site-auth-card__actions{
    flex-direction:column;
  }
}

/* ===== STEP13 dashboard / chat / microsite refinements ===== */
.provider-dash-shortcuts{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
.provider-dash-shortcut{
  display:grid;
  align-content:start;
  gap:10px;
  padding:24px;
  border-radius:26px;
  border:1px solid rgba(17,24,39,.08);
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:0 18px 40px rgba(15,23,42,.06);
}
.provider-dash-shortcut--chat{
  background:linear-gradient(135deg, #0f172a 0%, #111827 38%, #0f766e 100%);
  border-color:rgba(255,255,255,.10);
  color:#fff;
  box-shadow:0 26px 60px rgba(15,23,42,.22);
}
.provider-dash-shortcut__eyebrow{
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(100,116,139,.86);
}
.provider-dash-shortcut--chat .provider-dash-shortcut__eyebrow{color:rgba(255,255,255,.62);}
.provider-dash-shortcut__title{
  font-size:22px;
  line-height:1.04;
  letter-spacing:-.03em;
  font-weight:950;
}
.provider-dash-shortcut__copy{
  margin:0;
  line-height:1.65;
  color:#5b6678;
}
.provider-dash-shortcut--chat .provider-dash-shortcut__copy{color:rgba(255,255,255,.82);}
.provider-dash-shortcut__actions{margin-top:4px; display:flex; flex-wrap:wrap; gap:10px;}
.provider-dash-shortcut--chat .btn,
.provider-dash-shortcut__btn{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.22);
  color:#fff;
  font-weight:900;
}
.provider-dash-shortcut--chat .btn:hover,
.provider-dash-shortcut__btn:hover{background:rgba(255,255,255,.18);}
.provider-dash-chat-note{
  margin-top:12px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.06);
  color:#475569;
  line-height:1.6;
}
.provider-score__track{
  position:relative;
  height:14px;
  border-radius:999px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(15,23,42,.10) 0%, rgba(15,23,42,.05) 100%);
  box-shadow:inset 0 1px 2px rgba(15,23,42,.08);
}
.provider-score__fill{
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, #ff7a18 0%, #f59e0b 20%, #06b6d4 52%, #8b5cf6 100%);
  box-shadow:0 12px 28px rgba(99,102,241,.24);
}
.provider-score__meta{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.provider-score__pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.08);
  font-weight:900;
}
.provider-score__legend{color:#64748b; font-size:13px;}

.case-chat-note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.07);
  line-height:1.6;
  color:#475569;
}
.case-chat-note strong{color:#0f172a;}
.case-chat-live{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(34,197,94,.10);
  color:#166534;
  border:1px solid rgba(34,197,94,.16);
  font-size:12px;
  font-weight:900;
}
.case-chat-live::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 0 rgba(34,197,94,.45);
  animation:case-chat-ping 1.8s infinite;
}
@keyframes case-chat-ping{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.45);} 
  70%{box-shadow:0 0 0 8px rgba(34,197,94,0);} 
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0);} 
}

.provider-site-gallery-slider--fullbleed .provider-site-gallery-slider__viewport{
  max-height:min(100svh, 920px);
}
.provider-site-gallery-slider--fullbleed .provider-site-gallery-slide{
  aspect-ratio:16 / 9;
  min-height:clamp(340px, 68vh, 820px);
  max-height:min(100svh, 820px);
}
@media (max-width: 720px){
  .provider-dash-shortcuts{grid-template-columns:1fr;}
  .provider-dash-shortcut{padding:20px; border-radius:22px;}
  .provider-score__meta{align-items:flex-start;}
  .provider-site-gallery-slider--fullbleed .provider-site-gallery-slide{
    min-height:clamp(260px, 54svh, 520px);
    max-height:58svh;
  }
}


/* ===== STEP14 provider offers tabs / centering / dashboard services ===== */
body.is-provider-microsite .provider-site-nav{
  justify-content:center;
  padding-inline:24px;
}
body.is-provider-microsite .provider-site-highlight-card,
body.is-provider-microsite .provider-site-focus-card,
body.is-provider-microsite .provider-site-spotlight-card,
body.is-provider-microsite .provider-site-news-card,
body.is-provider-microsite .provider-site-contact-card,
body.is-provider-microsite .provider-site-service-item--centered{
  text-align:center;
  justify-items:center;
}
body.is-provider-microsite .provider-site-service-item--centered .provider-site-service-item__top{
  width:100%;
  text-align:center;
}
body.is-provider-microsite .provider-site-area-tabs{
  display:grid;
  gap:24px;
}
body.is-provider-microsite .provider-site-area-tablist{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
body.is-provider-microsite .provider-site-area-tab{
  appearance:none;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:#0f172a;
  min-height:52px;
  padding:0 18px;
  border-radius:999px;
  font:inherit;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}
body.is-provider-microsite .provider-site-area-tab.is-active{
  background:#05060a;
  color:#fff;
  border-color:#05060a;
}
body.is-provider-microsite .provider-site-area-panel{
  display:none;
  animation:providerAreaFade .35s ease;
}
body.is-provider-microsite .provider-site-area-panel.is-active{display:grid; gap:22px;}
body.is-provider-microsite .provider-site-area-panel__intro{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  display:grid;
  gap:10px;
}
body.is-provider-microsite .provider-site-area-panel__eyebrow{
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#64748b;
}
body.is-provider-microsite .provider-site-area-panel__intro h3{
  margin:0;
  font-size:clamp(28px, 3.4vw, 40px);
  line-height:1.02;
  letter-spacing:-.04em;
}
body.is-provider-microsite .provider-site-area-panel__intro p{
  margin:0;
  color:#64748b;
  line-height:1.75;
}
body.is-provider-microsite .provider-site-area-panel__empty{
  max-width:680px;
  margin:0 auto;
  padding:26px 28px;
  border-radius:26px;
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 16px 40px rgba(15,23,42,.06);
  text-align:center;
  color:#475569;
}
@keyframes providerAreaFade{
  from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:none;}
}
.provider-site-gallery-slider--fullbleed .provider-site-gallery-slider__viewport{
  max-height:min(92svh, 760px);
}
.provider-site-gallery-slider--fullbleed .provider-site-gallery-slide{
  min-height:clamp(280px, 52vh, 640px);
  max-height:min(92svh, 760px);
}
@media (max-width: 720px){
  body.is-provider-microsite .provider-site-nav{
    justify-content:flex-start;
    padding-inline:18px;
  }
  body.is-provider-microsite .provider-site-area-tablist{
    justify-content:flex-start;
    overflow:auto;
    scrollbar-width:none;
  }
  body.is-provider-microsite .provider-site-area-tablist::-webkit-scrollbar{display:none;}
  .provider-site-gallery-slider--fullbleed .provider-site-gallery-slide{
    min-height:clamp(240px, 42svh, 420px);
    max-height:48svh;
  }
}

.provider-services-page{padding:28px;}
.provider-services-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:end;
}
.provider-services-head__eyebrow{
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#64748b;
}
.provider-services-head__actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.provider-services-status{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(15,23,42,.06);
  color:#0f172a;
  font-weight:900;
}
.provider-services-callout{
  margin-top:16px;
  padding:18px 20px;
  border-radius:24px;
  border:1px solid rgba(15,23,42,.08);
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.provider-services-callout__title{
  font-size:15px;
  font-weight:900;
  color:#0f172a;
}
.provider-services-callout p{margin:8px 0 0; color:#5b6678; line-height:1.7;}
.provider-services-tabs{display:grid; gap:20px; margin-top:20px;}
.provider-services-tablist{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.provider-services-tab{
  appearance:none;
  border:1px solid rgba(15,23,42,.09);
  background:#fff;
  min-height:64px;
  padding:10px 16px;
  border-radius:22px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  box-shadow:0 14px 34px rgba(15,23,42,.05);
  font:inherit;
}
.provider-services-tab.is-active{
  background:#0f172a;
  color:#fff;
  border-color:#0f172a;
}
.provider-services-tab__icon{
  width:38px; height:38px; border-radius:999px; display:grid; place-items:center;
  background:rgba(15,23,42,.06);
  flex:0 0 38px;
}
.provider-services-tab.is-active .provider-services-tab__icon{background:rgba(255,255,255,.12);}
.provider-services-tab__icon img{width:20px; height:20px; display:block;}
.provider-services-tab__text{font-weight:900; letter-spacing:-.01em;}
.provider-services-tab__count{
  min-width:28px; height:28px; border-radius:999px; display:grid; place-items:center;
  background:rgba(15,23,42,.07); font-size:12px; font-weight:900;
}
.provider-services-tab.is-active .provider-services-tab__count{background:rgba(255,255,255,.14);}
.provider-services-create{
  border-radius:28px;
  border:1px solid rgba(15,23,42,.08);
  background:linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.provider-services-create__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.provider-services-create__eyebrow{
  font-size:11px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; color:#64748b;
}
.provider-services-create__title{font-size:20px; font-weight:950; letter-spacing:-.03em; color:#0f172a;}
.provider-services-form{display:grid; gap:18px; margin-top:16px;}
.provider-services-form__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.provider-services-form__grid > .span2{grid-column:span 2;}
.provider-services-form__grid > .span3{grid-column:1 / -1;}
.provider-services-form__details{padding:14px 16px; border-radius:22px; background:rgba(15,23,42,.03); border:1px solid rgba(15,23,42,.06);}
.provider-services-form__details summary{cursor:pointer; font-weight:900; color:#0f172a;}
.provider-services-form__grid--nested{margin-top:14px; grid-template-columns:repeat(4,minmax(0,1fr));}
.provider-services-form__actions{display:flex; justify-content:flex-end; gap:10px;}
.provider-services-panel{display:none; gap:18px; animation:providerServicePanel .32s ease;}
.provider-services-panel.is-active{display:grid;}
.provider-services-panel__intro{
  display:flex; align-items:end; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.provider-services-panel__eyebrow{font-size:11px; font-weight:900; letter-spacing:.16em; text-transform:uppercase; color:#64748b;}
.provider-services-panel__intro h2{margin:6px 0 0; font-size:clamp(28px, 3vw, 40px); line-height:1.02; letter-spacing:-.04em; color:#0f172a;}
.provider-services-panel__intro p{margin:10px 0 0; max-width:58ch; color:#5b6678; line-height:1.7;}
.provider-services-grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px;}
.provider-services-card{
  display:grid; gap:16px; padding:22px; border-radius:26px; border:1px solid rgba(15,23,42,.08);
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); box-shadow:0 16px 38px rgba(15,23,42,.06);
}
.provider-services-card__badge{
  display:inline-flex; align-items:center; min-height:30px; padding:0 12px; border-radius:999px; background:rgba(15,23,42,.06); font-size:12px; font-weight:900; color:#0f172a;
}
.provider-services-card__title{margin-top:12px; font-size:22px; font-weight:950; letter-spacing:-.03em; color:#0f172a;}
.provider-services-card__meta{margin-top:8px; color:#0f172a; font-weight:800;}
.provider-services-card__copy{margin:12px 0 0; color:#5b6678; line-height:1.7; white-space:pre-line;}
.provider-services-card__sort{margin-top:10px; font-size:12px; font-weight:850; color:#64748b; text-transform:uppercase; letter-spacing:.12em;}
.provider-services-card__actions{display:flex; gap:10px; flex-wrap:wrap;}
.provider-services-edit{border-radius:22px;}
.provider-services-empty{
  padding:26px 28px; border-radius:24px; border:1px dashed rgba(15,23,42,.14); background:rgba(248,250,252,.8);
}
.provider-services-empty__title{font-size:18px; font-weight:900; color:#0f172a;}
.provider-services-empty p{margin:10px 0 0; color:#5b6678; line-height:1.7; max-width:62ch;}
@keyframes providerServicePanel{from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:none;}}
@media (max-width: 980px){
  .provider-services-head{grid-template-columns:1fr; align-items:start;}
  .provider-services-form__grid,
  .provider-services-form__grid--nested,
  .provider-services-grid{grid-template-columns:1fr;}
}
@media (max-width: 720px){
  .provider-services-page{padding:18px;}
  .provider-services-tablist{overflow:auto; flex-wrap:nowrap; padding-bottom:6px; scrollbar-width:none;}
  .provider-services-tablist::-webkit-scrollbar{display:none;}
  .provider-services-tab{min-width:max-content;}
  .provider-services-panel__intro{align-items:start;}
}


/* ===== STEP15 provider tier differentiation / offers polish / demo previews ===== */
body.is-provider-microsite .provider-site-section a:not(.btn),
body.is-provider-microsite .provider-site-band a:not(.btn),
body.is-provider-basic .provider-basic a:not(.btn),
body.is-provider-microsite .provider-site-section a:not(.btn):visited,
body.is-provider-microsite .provider-site-band a:not(.btn):visited,
body.is-provider-basic .provider-basic a:not(.btn):visited,
.site-footer__links a,
.site-footer__links a:visited{
  color:#0f172a;
}

body.is-provider-microsite .provider-site-area-panel__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  margin-top:8px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.07);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#475569;
}

body.is-provider-microsite .provider-site-offer-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
body.is-provider-microsite .provider-site-offer-grid.is-featured{
  grid-template-columns:repeat(3, minmax(0,1fr));
}
body.is-provider-microsite .provider-site-offer-grid.is-featured .provider-site-offer-card:first-child{
  grid-column:span 2;
}
body.is-provider-microsite .provider-site-offer-card{
  display:grid;
  align-content:start;
  gap:16px;
  min-height:220px;
  padding:26px;
  border-radius:28px;
  border:1px solid rgba(15,23,42,.08);
  background:linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
  box-shadow:0 18px 44px rgba(15,23,42,.06);
}
body.is-provider-microsite .provider-site-offer-card__topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
body.is-provider-microsite .provider-site-offer-card__pill{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(15,23,42,.05);
  border:1px solid rgba(15,23,42,.07);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#334155;
}
body.is-provider-microsite .provider-site-offer-card__meta{
  color:#0f172a;
  font-weight:900;
  font-size:14px;
}
body.is-provider-microsite .provider-site-offer-card h4{
  margin:0;
  font-size:clamp(24px, 2vw, 34px);
  line-height:1.02;
  letter-spacing:-.04em;
  color:#05060a;
}
body.is-provider-microsite .provider-site-offer-card p{
  margin:0;
  color:#5b6678;
  line-height:1.75;
}

body.is-provider-tier-featured .provider-site-spotlight{
  padding:46px 0 24px;
  background:linear-gradient(180deg, #05060a 0%, #0b1220 100%);
}
body.is-provider-tier-featured .provider-site-spotlight__card{
  background:linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.04) 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 22px 54px rgba(0,0,0,.26);
  backdrop-filter:blur(18px);
}
body.is-provider-tier-featured .provider-site-spotlight__label{
  color:rgba(255,255,255,.58);
}
body.is-provider-tier-featured .provider-site-spotlight__value{
  color:#fff;
}
body.is-provider-tier-featured .provider-site-featured-story{
  background:linear-gradient(180deg, #0b1220 0%, #111827 100%);
}
body.is-provider-tier-featured .provider-site-featured-story .provider-site-kicker,
body.is-provider-tier-featured .provider-site-featured-story .provider-site-section-copy{
  color:rgba(255,255,255,.74);
}
body.is-provider-tier-featured .provider-site-featured-story .provider-site-section-title{
  color:#fff;
}
body.is-provider-tier-featured .provider-site-featured-story__grid{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(0, .92fr);
  gap:28px;
  align-items:stretch;
}
body.is-provider-tier-featured .provider-site-featured-story__media{
  min-height:100%;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 30px 72px rgba(0,0,0,.28);
}
body.is-provider-tier-featured .provider-site-featured-story__media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
body.is-provider-tier-featured .provider-site-featured-story__content{
  display:grid;
  align-content:center;
  gap:18px;
  padding:32px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  box-shadow:0 26px 60px rgba(0,0,0,.20);
}
body.is-provider-tier-featured .provider-site-featured-story__facts{
  display:grid;
  gap:14px;
  margin-top:8px;
}
body.is-provider-tier-featured .provider-site-featured-story__fact{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}
body.is-provider-tier-featured .provider-site-featured-story__fact span{
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
}
body.is-provider-tier-featured .provider-site-featured-story__fact strong{
  color:#fff;
  font-size:18px;
  line-height:1.45;
}

.has-js body.is-provider-tier-featured .ms-reveal{
  opacity:0;
  transform:translate3d(0,34px,0) scale(.986);
  transition:opacity .88s cubic-bezier(.22,.61,.36,1), transform .95s cubic-bezier(.22,.61,.36,1);
}
.has-js body.is-provider-tier-featured .ms-reveal.is-inview{
  opacity:1;
  transform:none;
}
.has-js body.is-provider-tier-featured .ms-reveal .provider-site-spotlight__card,
.has-js body.is-provider-tier-featured .ms-reveal .provider-site-highlight-card,
.has-js body.is-provider-tier-featured .ms-reveal .provider-site-offer-card,
.has-js body.is-provider-tier-featured .ms-reveal .provider-site-news-card,
.has-js body.is-provider-tier-featured .ms-reveal .provider-site-featured-story__fact{
  opacity:0;
  transform:translate3d(0,22px,0);
  transition:opacity .72s ease, transform .78s cubic-bezier(.22,.61,.36,1);
}
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-spotlight__card,
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-highlight-card,
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-offer-card,
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-news-card,
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-featured-story__fact{
  opacity:1;
  transform:none;
}
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-spotlight__card:nth-child(1),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-highlight-card:nth-child(1),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-offer-card:nth-child(1),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-news-card:nth-child(1),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-featured-story__fact:nth-child(1){transition-delay:.05s;}
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-spotlight__card:nth-child(2),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-highlight-card:nth-child(2),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-offer-card:nth-child(2),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-news-card:nth-child(2),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-featured-story__fact:nth-child(2){transition-delay:.13s;}
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-spotlight__card:nth-child(3),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-highlight-card:nth-child(3),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-offer-card:nth-child(3),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-news-card:nth-child(3),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-featured-story__fact:nth-child(3){transition-delay:.21s;}
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-highlight-card:nth-child(4),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-offer-card:nth-child(4),
.has-js body.is-provider-tier-featured .ms-reveal.is-inview .provider-site-news-card:nth-child(4){transition-delay:.29s;}

body.is-provider-basic .provider-basic{
  padding:40px 0 88px;
}
body.is-provider-basic .provider-basic__cover{
  aspect-ratio:22 / 8;
  border-radius:34px;
  box-shadow:0 26px 64px rgba(15,23,42,.10);
}
body.is-provider-basic .provider-basic__head{
  margin-top:24px;
  align-items:flex-start;
  gap:22px;
}
body.is-provider-basic .provider-basic__tagline{
  margin-top:10px;
  max-width:62ch;
  line-height:1.7;
}
body.is-provider-basic .provider-basic__grid{
  gap:22px;
  margin-top:24px;
}
body.is-provider-basic .provider-basic__section{
  padding:24px;
}
body.is-provider-basic .provider-basic__text{
  font-size:16px;
  line-height:1.8;
}

.provider-services-head__types{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.provider-services-head__types-label{
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#64748b;
}
.provider-services-head__types-value{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.08);
  font-weight:900;
  color:#0f172a;
}
.provider-services-callout__plan{
  margin-top:12px;
  color:#334155;
  line-height:1.65;
}
.provider-services-card__sort{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(15,23,42,.05);
  border:1px solid rgba(15,23,42,.07);
}
.provider-dash-shortcut--chat.is-locked{
  background:linear-gradient(135deg, #475569 0%, #334155 100%);
}

@media (max-width: 1180px){
  body.is-provider-microsite .provider-site-offer-grid.is-featured{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  body.is-provider-tier-featured .provider-site-featured-story__grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 720px){
  body.is-provider-microsite .provider-site-offer-grid,
  body.is-provider-microsite .provider-site-offer-grid.is-featured{
    grid-template-columns:1fr;
  }
  body.is-provider-microsite .provider-site-offer-grid.is-featured .provider-site-offer-card:first-child{
    grid-column:auto;
  }
  body.is-provider-basic .provider-basic{
    padding:28px 0 72px;
  }
  body.is-provider-basic .provider-basic__cover{
    aspect-ratio:16 / 10;
    border-radius:24px;
  }
  .provider-services-head__types{
    align-items:flex-start;
  }
}

/* ===== STEP17: header/account/chat/account-hub/provider-picker polish ===== */
.site-header--overlay .nav__icon-btn,
.site-header--overlay .nav-menu__summary{
  color:#fff;
  background:rgba(8,14,24,0.28);
  border-color:rgba(255,255,255,0.18);
  backdrop-filter:blur(12px);
}
.site-header--overlay .nav__icon-btn:hover,
.site-header--overlay .nav-menu__summary:hover{
  background:rgba(8,14,24,0.40);
}
.site-header.is-solid .nav__icon-btn,
.site-header.is-solid .nav-menu__summary,
.site-header:not(.site-header--overlay) .nav__icon-btn,
.site-header:not(.site-header--overlay) .nav-menu__summary{
  color:var(--text);
  background:rgba(15,23,42,0.05);
  border-color:rgba(15,23,42,0.15);
}
.site-header.is-solid .nav__icon-btn:hover,
.site-header.is-solid .nav-menu__summary:hover,
.site-header:not(.site-header--overlay) .nav__icon-btn:hover,
.site-header:not(.site-header--overlay) .nav-menu__summary:hover{
  background:rgba(15,23,42,0.09);
}
.site-header .nav-menu__summary .nav__label,
.site-header .nav__icon-btn .nav__label{color:inherit;}
.site-header .nav-menu__panel .nav-menu__item,
.site-header .nav-menu__panel .nav-menu__item:visited{color:var(--text);}

.account-hub,
.account-hub .card,
.account-hub .table,
.account-hub .table a,
.account-hub .table a:visited,
.account-hub a:not(.btn),
.account-hub a:not(.btn):visited{
  color:#111827;
}
.account-hub .muted{color:#64748b;}
.account-hub input,
.account-hub textarea,
.account-hub select{
  color:#0f172a;
  background:#fff;
}
.account-hub .btn.btn-ghost{
  color:#0f172a;
  border-color:rgba(15,23,42,0.10);
}
.account-hub .btn.btn-primary,
.account-hub .btn.btn-primary:visited,
.account-hub a.btn.btn-primary,
.account-hub a.btn.btn-primary:visited,
.account-hub .btn.btn-brand,
.account-hub .btn.btn-brand:visited,
.account-hub a.btn.btn-brand,
.account-hub a.btn.btn-brand:visited{
  color:#fff !important;
}
.account-hub .flash a,
.account-hub .alert a{color:inherit;}

.status-pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,0.10);
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  background:#f8fafc;
  color:#0f172a;
}
.status-pill--open{background:#eff6ff; border-color:#bfdbfe; color:#1d4ed8;}
.status-pill--in_progress{background:#ecfeff; border-color:#a5f3fc; color:#0f766e;}
.status-pill--waiting_customer{background:#fff7ed; border-color:#fed7aa; color:#c2410c;}
.status-pill--done{background:#ecfdf5; border-color:#bbf7d0; color:#166534;}
.status-pill--closed{background:#f1f5f9; border-color:#cbd5e1; color:#334155;}

.provider-picker{
  position:relative;
}
.provider-picker__search{
  position:relative;
}
.provider-picker__input{
  width:100%;
}
.provider-picker__hint{
  margin-top:8px;
}
.provider-picker__selected{
  margin-top:12px;
  display:none;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,0.10);
}
.provider-picker__selected.is-visible{
  display:flex;
}
.provider-picker__selected[hidden],
.provider-picker__results[hidden]{
  display:none !important;
}
.provider-picker__results{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 8px);
  z-index:60;
  display:grid;
  gap:8px;
  padding:10px;
  border-radius:20px;
  background:rgba(255,255,255,0.98);
  border:1px solid rgba(15,23,42,0.10);
  box-shadow:0 24px 60px rgba(15,23,42,0.16);
  max-height:320px;
  overflow:auto;
}
.provider-picker__item{
  width:100%;
  display:grid;
  gap:4px;
  text-align:left;
  padding:12px 14px;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:16px;
  background:#fff;
  color:#0f172a;
  cursor:pointer;
}
.provider-picker__item:hover{
  background:#f8fafc;
  border-color:rgba(15,23,42,0.14);
}
.provider-picker__item-name{
  font-weight:850;
  letter-spacing:-.01em;
}
.provider-picker__item-meta,
.provider-picker__empty{
  color:#64748b;
  font-size:13px;
  line-height:1.5;
}
.provider-picker__empty{
  padding:12px 14px;
}

@media (max-width: 720px){
  .provider-picker__selected{
    align-items:flex-start;
    flex-direction:column;
  }
  .provider-picker__selected .btn{width:100%;}
}

.provider-dash-shortcut__btn,
.provider-dash-shortcut__btn:visited,
.provider-dash-shortcut--chat .btn,
.provider-dash-shortcut--chat .btn:visited{
  color:#fff !important;
}

/* ===== STEP20: header dropdown readability / account safety ===== */
.site-header .nav-menu__panel{
  background:rgba(255,255,255,0.98) !important;
  color:var(--text) !important;
}
.site-header .nav-menu__panel,
.site-header .nav-menu__panel a,
.site-header .nav-menu__panel a:visited,
.site-header .nav-menu__panel button,
.site-header .nav-menu__panel .nav-menu__item,
.site-header .nav-menu__panel .nav-menu__item:visited{
  color:var(--text) !important;
}
.site-header .nav-menu__panel .nav-menu__item--danger,
.site-header .nav-menu__panel .nav-menu__item--danger:visited{
  color:#b42318 !important;
}
body.is-home-page .site-footer a,
body.is-home-page .site-footer a:visited,
body.is-home-page .site-footer__links a,
body.is-home-page .site-footer__links a:visited{
  color:inherit !important;
}

/* ===== Footer refinement patch 2026-03-08 ===== */
.site-footer{
  margin-top:56px;
  padding:20px 0 34px;
  background:linear-gradient(180deg, rgba(248,250,252,.86) 0%, rgba(255,255,255,1) 100%);
}
.site-footer .wrap.wrap--wide{
  max-width:min(1380px, calc(100vw - 32px));
  padding-left:0;
  padding-right:0;
}
.site-footer__brandbar{
  padding:30px 0 14px;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.site-footer__tagline{
  max-width:58ch;
}
.site-footer__top{
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:20px;
  padding:22px 0 16px;
}
.site-footer__col{
  min-width:0;
}
.site-footer__col summary{
  list-style:none;
  cursor:default;
}
.site-footer__col summary::-webkit-details-marker{
  display:none;
}
.site-footer__links a,
.site-footer__links a:visited{
  color:var(--text);
  opacity:.84;
}
.site-footer__links a:hover{
  opacity:1;
}
.site-footer__bottom{
  border-top:1px solid rgba(15,23,42,.08);
  padding-top:18px;
}
@media (max-width: 1100px){
  .site-footer__top{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 720px){
  .site-footer{
    margin-top:40px;
    padding-bottom:26px;
  }
  .site-footer .wrap.wrap--wide{
    max-width:none;
    padding-left:0;
    padding-right:0;
  }
  .site-footer__brandbar{
    padding:24px 0 10px;
  }
  .site-footer__top{
    grid-template-columns:1fr;
    gap:10px;
    padding:16px 0 12px;
  }
  .site-footer__col{
    border-top:1px solid rgba(15,23,42,.08);
    padding-top:12px;
  }
}

/* ===== Category landing pages ===== */
body.is-category-landing .hero--category{
  position:relative;
  min-height:min(860px, 86svh);
  overflow:hidden;
  background:#0b1220;
}
body.is-category-landing .hero--category .hero__media{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
body.is-category-landing .hero--category .hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  transform:scale(1.01);
}
body.is-category-landing .hero--category::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(6,10,20,.82) 0%, rgba(6,10,20,.52) 40%, rgba(6,10,20,.18) 72%, rgba(6,10,20,.10) 100%),
    linear-gradient(180deg, rgba(6,10,20,.16) 0%, rgba(6,10,20,.22) 26%, rgba(6,10,20,.60) 76%, rgba(6,10,20,.80) 100%);
}
body.is-category-landing .category-hero__content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:min(1240px, calc(100vw - 48px));
  margin:0 auto;
  padding:120px 24px 72px 24px;
}
body.is-category-landing .hero__title{
  max-width:12ch;
}
body.is-category-landing .hero__lead{
  max-width:60ch;
  color:rgba(255,255,255,.88);
}
.category-search{
  margin-top:22px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(180px, 220px) auto;
  gap:14px;
  align-items:stretch;
  padding:14px;
  border-radius:26px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 20px 50px rgba(2,6,23,.22);
  max-width:980px;
}
.category-search__field,
.category-search__fixed{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  padding:14px 16px;
  border-radius:20px;
  background:rgba(15,23,42,.035);
  min-width:0;
}
.category-search__field label,
.category-search__fixed-label{
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(15,23,42,.56);
}
.category-search__field input{
  border:0;
  outline:0;
  background:transparent;
  font:inherit;
  color:var(--text);
  min-width:0;
  padding:0;
}
.category-search__field input::placeholder{color:rgba(15,23,42,.42)}
.category-search__fixed strong{
  font-size:16px;
  letter-spacing:-.02em;
  color:var(--text);
}
.category-search__btn{
  align-self:stretch;
  border-radius:20px;
  padding-inline:26px;
  min-width:160px;
}
body.is-category-landing .category-hero__stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
body.is-category-landing .category-hero__stats .pill,
body.is-category-landing .chip--hero{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.22);
  color:rgba(255,255,255,.95);
}
body.is-category-landing .category-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.section--landing-intro,
.section--trust-landing,
.section--seo-links,
.section--faq-landing{margin-top:0}
.category-place-grid,
.category-provider-grid,
.category-trust-grid{
  align-items:stretch;
}
.category-place-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  text-decoration:none;
  color:inherit;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 36px rgba(15,23,42,.08);
  transition:transform .22s cubic-bezier(.2,0,0,1), box-shadow .22s cubic-bezier(.2,0,0,1), border-color .22s cubic-bezier(.2,0,0,1);
}
.category-place-card:hover,
.category-provider-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 42px rgba(15,23,42,.12);
  border-color:rgba(15,23,42,.14);
}
.category-place-card__media{aspect-ratio:16/11; overflow:hidden; background:#dfe7ef}
.category-place-card__media img{width:100%; height:100%; object-fit:cover; display:block}
.category-place-card__body{padding:18px 18px 20px}
.category-place-card__title{font-weight:750; letter-spacing:-.02em; font-size:19px}
.category-place-card__meta{margin-top:6px; color:var(--muted); font-size:14px}
.category-trust-card{padding:28px}
.category-trust-card__title{margin:0 0 10px; font-size:22px; letter-spacing:-.03em}
.category-provider-card{display:flex; flex-direction:column; height:100%}
.category-provider-card .provider-card__media img{height:220px}
.category-provider-card__cta{margin-top:16px; font-weight:750; letter-spacing:-.02em}
.provider-card__rating{font-weight:700; white-space:nowrap}
.category-empty-card{padding:26px}
.category-seo-grid{align-items:stretch}
.category-seo-copy,
.category-seo-links-card{padding:28px}
.category-seo-copy p{margin:0 0 12px; line-height:1.7}
.category-seo-links{display:flex; flex-wrap:wrap; gap:10px}
.faq-list{display:grid; gap:12px}
.faq-item{padding:0}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-weight:750;
  letter-spacing:-.02em;
  padding:20px 22px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item > div{padding:0 22px 22px; line-height:1.7}
@media (max-width: 980px){
  body.is-category-landing .category-hero__content{
    max-width:calc(100vw - 32px);
    padding:98px 16px 38px 16px;
  }
  .category-search{
    grid-template-columns:1fr;
    padding:12px;
  }
  .category-search__btn{width:100%}
  .category-provider-card .provider-card__media img{height:210px}
}
@media (max-width: 720px){
  body.is-category-landing .hero--category{min-height:74svh}
  body.is-category-landing .hero__title{font-size:34px; max-width:11ch}
  body.is-category-landing .hero__lead{font-size:15px}
  .category-search{border-radius:22px}
  .category-search__field,
  .category-search__fixed,
  .category-search__btn{border-radius:18px}
  .category-place-card__body,
  .category-seo-copy,
  .category-seo-links-card,
  .category-trust-card{padding:20px}
}
body.is-category-landing .hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.95);
  font-size:12px;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
}
body.is-category-landing .section__head--split{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  flex-wrap:wrap;
}
@media (max-width: 720px){
  body.is-category-landing .section__head--split{align-items:flex-start;}
}

/* ===== STEP21: search dropdown sizing + landing page refinements ===== */
.dd-panel{
  z-index:1400;
}
.dd-item{
  min-height:64px;
  padding:14px 16px;
}
.dd-item__title,
.dd-item__left > span > div:first-child{
  font-size:15px;
  line-height:1.2;
}
.dd-item__meta{
  font-size:13px;
}
@media (max-width: 820px){
  .dd-panel{
    max-height:min(64svh, 460px);
    overflow:auto;
    -webkit-overflow-scrolling:touch;
  }
}

body.is-category-landing .hero--category{
  min-height:min(840px, 84svh);
}
body.is-category-landing .hero--category::before{
  background:
    linear-gradient(90deg, rgba(7,12,21,.68) 0%, rgba(7,12,21,.34) 42%, rgba(7,12,21,.12) 72%, rgba(7,12,21,.06) 100%),
    linear-gradient(180deg, rgba(7,12,21,.06) 0%, rgba(7,12,21,.12) 26%, rgba(7,12,21,.34) 76%, rgba(7,12,21,.52) 100%);
}
body.is-category-landing .category-hero__content{
  padding:116px 24px 64px 24px;
}
body.is-category-landing .category-search{
  max-width:1040px;
  border-radius:30px;
  padding:10px;
  background:rgba(255,255,255,.98);
}
body.is-category-landing .category-search__field,
body.is-category-landing .category-search__fixed{
  min-height:72px;
  border-radius:22px;
}
body.is-category-landing .category-search__btn{
  min-width:170px;
  border-radius:22px;
}
body.is-category-landing .category-provider-grid{align-items:stretch;}
body.is-category-landing .category-provider-card .provider-card__body{
  display:flex;
  flex-direction:column;
  gap:10px;
  height:100%;
}
body.is-category-landing .category-provider-card__cta{
  margin-top:auto;
}
@media (max-width: 980px){
  body.is-category-landing .category-hero__content{
    padding:100px 16px 38px 16px;
  }
}


/* ===== STEP24: anchor buttons keep readable CTA text ===== */
a.btn,
a.btn:visited,
a.btn:hover,
a.btn:active,
a.btn:focus,
a.btn-primary,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary:focus,
a.btn-accent,
a.btn-accent:visited,
a.btn-accent:hover,
a.btn-accent:active,
a.btn-accent:focus,
a.btn-brand,
a.btn-brand:visited,
a.btn-brand:hover,
a.btn-brand:active,
a.btn-brand:focus,
a.btn-dark,
a.btn-dark:visited,
a.btn-dark:hover,
a.btn-dark:active,
a.btn-dark:focus{
  text-decoration:none !important;
}

a.btn,
a.btn:visited,
a.btn:hover,
a.btn:active,
a.btn:focus{
  color:var(--text) !important;
}

a.btn-primary,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary:focus,
a.btn-accent,
a.btn-accent:visited,
a.btn-accent:hover,
a.btn-accent:active,
a.btn-accent:focus,
a.btn-brand,
a.btn-brand:visited,
a.btn-brand:hover,
a.btn-brand:active,
a.btn-brand:focus,
a.btn-dark,
a.btn-dark:visited,
a.btn-dark:hover,
a.btn-dark:active,
a.btn-dark:focus{
  color:#fff !important;
}

body.is-provider-microsite .provider-site-contact-form .btn,
body.is-provider-microsite .provider-site-contact-form .btn:visited,
body.is-provider-microsite .provider-site-contact-form .btn:hover,
body.is-provider-microsite .provider-site-contact-form .btn:active,
body.is-provider-microsite .provider-site-contact-form .btn:focus{
  color:inherit;
}

body.is-provider-microsite .provider-site-contact-form .btn-primary,
body.is-provider-microsite .provider-site-contact-form .btn-primary:visited,
body.is-provider-microsite .provider-site-contact-form .btn-primary:hover,
body.is-provider-microsite .provider-site-contact-form .btn-primary:active,
body.is-provider-microsite .provider-site-contact-form .btn-primary:focus,
body.is-provider-microsite .provider-site-contact-form .btn-brand,
body.is-provider-microsite .provider-site-contact-form .btn-brand:visited,
body.is-provider-microsite .provider-site-contact-form .btn-brand:hover,
body.is-provider-microsite .provider-site-contact-form .btn-brand:active,
body.is-provider-microsite .provider-site-contact-form .btn-brand:focus{
  color:#fff !important;
}


/* ===== PATCH 2026-03-09: Provider microsite overlay header readability ===== */

body.is-provider-microsite .site-header.site-header--overlay .btn.btn-ghost,
body.is-provider-microsite .site-header.site-header--overlay .nav__icon-btn,
body.is-provider-microsite .site-header.site-header--overlay .nav-menu__summary{
  color:#fff !important;
  background:rgba(8,14,24,0.32) !important;
  border-color:rgba(255,255,255,0.18) !important;
  backdrop-filter:blur(14px);
}

body.is-provider-microsite .site-header.site-header--overlay .btn.btn-ghost:hover,
body.is-provider-microsite .site-header.site-header--overlay .nav__icon-btn:hover,
body.is-provider-microsite .site-header.site-header--overlay .nav-menu__summary:hover{
  background:rgba(8,14,24,0.44) !important;
}

body.is-provider-microsite .site-header.site-header--overlay .nav__brand,
body.is-provider-microsite .site-header.site-header--overlay .nav__brand-text,
body.is-provider-microsite .site-header.site-header--overlay .nav__brand-sub{
  color:#fff !important;
}


/* ===== PATCH 2026-03-09: Account dropdown contrast safety ===== */

/* Ensure the login/account dropdown never ends up with white-on-white text */
.site-header--overlay .nav-menu__panel{
  background:rgba(255,255,255,0.98) !important;
}

.site-header--overlay .nav-menu__panel,
.site-header--overlay .nav-menu__panel a,
.site-header--overlay .nav-menu__panel a:visited,
.site-header--overlay .nav-menu__panel button,
.site-header--overlay .nav-menu__panel .nav-menu__item,
.site-header--overlay .nav-menu__panel .nav-menu__item:visited{
  color:var(--text) !important;
}

.site-header--overlay .nav-menu__panel .nav-menu__item--danger,
.site-header--overlay .nav-menu__panel .nav-menu__item--danger:visited{
  color:#b42318 !important;
}

/* ===== PATCH 2026-03-09: Footer logo without pill framing ===== */

/* Footer brand should be clean + transparent (no rounded "pill" look) */
.site-footer__brand img{
  border-radius:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}


/* ===== PATCH 2026-03-09b: footer logo should render like the header logo ===== */
.site-footer__brand img{
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
  image-rendering: auto;
  display: block;
}
/* ===== PATCH 2026-03-10: unified footer across all public pages ===== */
.site-footer{
  margin-top:56px;
  padding:28px 0 34px;
  background:linear-gradient(180deg, rgba(248,250,252,.88) 0%, rgba(255,255,255,1) 100%);
  border-top:1px solid rgba(15,23,42,.08);
}

.site-footer .wrap.wrap--wide{
  max-width:min(1460px, calc(100vw - 40px));
  padding-left:0 !important;
  padding-right:0 !important;
}

.site-footer__brandbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
  padding:30px 0 14px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.site-footer__brandcopy{
  max-width:620px;
}

.site-footer__brand,
.site-footer__brand:visited{
  color:var(--text);
  text-decoration:none;
}

.site-footer__brand img{
  width:34px !important;
  height:34px !important;
  object-fit:contain !important;
  border-radius:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}

.site-footer__tagline{
  margin-top:12px;
  max-width:58ch;
}

.site-footer__brandlinks{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.site-footer__brandlink,
.site-footer__brandlink:visited{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:var(--text) !important;
  text-decoration:none !important;
  font-weight:800;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.site-footer__brandlink:hover{
  background:var(--surface);
}

.site-footer__top{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:20px;
  padding:22px 0 16px;
}

.site-footer__bottom{
  border-top:1px solid rgba(15,23,42,.08);
  padding-top:18px;
}

@media (max-width: 1100px){
  .site-footer__top{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px){
  .site-footer{
    margin-top:40px;
    padding-bottom:26px;
  }

  .site-footer .wrap.wrap--wide{
    max-width:none;
  }

  .site-footer__brandbar{
    padding:24px 0 10px;
  }

  .site-footer__brandlinks{
    width:100%;
  }

  .site-footer__brandlink,
  .site-footer__brandlink:visited{
    flex:1 1 160px;
  }

  .site-footer__top{
    grid-template-columns:1fr;
    gap:10px;
    padding:16px 0 12px;
  }
}

/* ===== PATCH 2026-03-13: search landings + mobile provider news + footer spacing ===== */
.search-landing-quickfacts{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin:0 0 16px;
}
.search-landing-quickfact{
  display:grid;
  align-content:start;
  gap:10px;
  min-height:100%;
  padding:20px 20px 18px;
}
.search-landing-quickfact__eyebrow{
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,23,42,.52);
}
.search-landing-quickfact__title{
  margin:0;
  font-size:20px;
  line-height:1.15;
  letter-spacing:-.02em;
}
.search-landing-quickfact__text{
  margin:0;
  line-height:1.6;
}

body.search-page.search-page--area-category .provider-card__media{
  aspect-ratio:20 / 12;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
}
body.search-page.search-page--area-category .provider-card__media img{
  width:100%;
  height:100% !important;
  display:block;
  object-fit:cover;
}
body.search-page.search-page--area-category .provider-card__body{
  padding-top:12px;
}
body.search-page.search-page--area-category .provider-card__top{
  align-items:flex-start;
}
body.search-page.search-page--area-category .provider-card__rating{
  flex:0 0 auto;
  white-space:nowrap;
}

body.is-provider-microsite .provider-site-news-card{
  overflow:hidden;
}
body.is-provider-microsite .provider-site-news-card__topline{
  flex-wrap:wrap;
  align-items:flex-start;
}
body.is-provider-microsite .provider-site-news-card h3,
body.is-provider-microsite .provider-site-news-card p{
  overflow-wrap:anywhere;
  word-break:break-word;
}

@media (max-width: 900px){
  .search-landing-quickfacts{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .site-footer{
    padding:30px 0 28px;
  }
  .site-footer .wrap.wrap--wide{
    max-width:none;
    padding-left:16px !important;
    padding-right:16px !important;
  }
  .site-footer__brandbar{
    padding:24px 0 12px;
  }
  .site-footer__top{
    padding:16px 0 14px;
    gap:12px;
  }
  .site-footer__bottom{
    padding-top:16px;
  }
  .site-footer__meta{
    gap:8px;
  }
  .site-footer__brandlink,
  .site-footer__brandlink:visited{
    width:100%;
    min-width:0;
  }

  body.is-provider-microsite .provider-site-news-grid{
    grid-template-columns:1fr;
  }
  body.is-provider-tier-featured .provider-site-news-card:first-child{
    grid-column:auto;
    min-height:0;
  }
  body.is-provider-microsite .provider-site-news-card{
    min-height:0;
    gap:12px;
    padding:22px 20px;
  }
  body.is-provider-microsite .provider-site-news-card__kind{
    max-width:100%;
    min-height:0;
    padding:8px 12px;
    white-space:normal;
    line-height:1.25;
  }
  body.is-provider-microsite .provider-site-news-card__date{
    width:100%;
    text-align:left;
  }
  body.is-provider-microsite .provider-site-news-card h3{
    font-size:clamp(22px, 7vw, 28px);
    line-height:1.08;
  }
  body.is-provider-microsite .provider-site-news-card .btn{
    width:100%;
    justify-content:center;
  }
}

@media (max-width: 420px){
  .site-footer .wrap.wrap--wide{
    padding-left:14px !important;
    padding-right:14px !important;
  }
}


/* --- 2026-03-14: consent, mobile polish, footer spacing --- */
.cookie-consent{
  position:fixed;
  left:16px;
  right:16px;
  bottom:max(16px, env(safe-area-inset-bottom));
  z-index:1200;
  pointer-events:none;
}
.cookie-consent[hidden]{display:none !important;}
.cookie-consent__inner{
  pointer-events:auto;
  max-width:760px;
  margin:0 auto;
  background:rgba(249,247,243,.98);
  color:var(--text);
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  box-shadow:0 22px 60px rgba(15,23,42,.16);
  padding:14px 16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}
.cookie-consent__eyebrow{display:inline-flex; margin-bottom:6px; font-size:.73rem; font-weight:900; letter-spacing:.14em; text-transform:uppercase; color:rgba(15,23,42,.54);}
.cookie-consent__copy strong{display:block; font-size:1.04rem; font-weight:880; letter-spacing:-.02em; margin-bottom:4px;}
.cookie-consent__copy p{margin:0; color:rgba(15,23,42,.72); line-height:1.55; max-width:48rem; font-size:.95rem;}
.cookie-consent__copy a{color:var(--text); text-decoration:underline; text-underline-offset:3px;}
.cookie-consent__actions{display:flex; gap:8px; flex-wrap:wrap; align-items:center; justify-content:flex-end; flex:0 0 auto;}
.cookie-consent__actions .btn{min-height:42px;}
.cookie-modal{position:fixed; inset:0; z-index:1250; display:grid; place-items:center; padding:max(14px, env(safe-area-inset-top)) 16px max(14px, env(safe-area-inset-bottom));}
.cookie-modal[hidden]{display:none !important;}
.cookie-modal__backdrop{position:absolute; inset:0; background:rgba(15,23,42,.42); backdrop-filter:blur(5px);}
.cookie-modal__dialog{position:relative; width:min(100%, 760px); max-height:calc(100dvh - 28px); overflow:auto; background:#fff; border-radius:28px; box-shadow:0 40px 90px rgba(15,23,42,.24); padding:22px; overscroll-behavior:contain;}
.cookie-modal__head{position:sticky; top:0; z-index:2; display:flex; align-items:flex-start; justify-content:space-between; gap:18px; margin:-22px -22px 14px; padding:22px 22px 14px; background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 80%, rgba(255,255,255,0) 100%);}
.cookie-modal__eyebrow{font-size:.82rem; letter-spacing:.18em; text-transform:uppercase; font-weight:900; color:var(--muted); margin-bottom:6px;}
.cookie-modal__head h2{margin:0; font-size:clamp(1.35rem, 2vw, 1.92rem); letter-spacing:-.03em;}
.cookie-modal__intro{margin:8px 0 0; color:var(--muted); line-height:1.55; max-width:42rem;}
.cookie-modal__close{appearance:none; border:0; background:#f3f4f6; color:var(--ink); width:42px; height:42px; border-radius:999px; font-size:1.6rem; line-height:1; cursor:pointer; flex:0 0 auto;}
.cookie-modal__body{display:grid; gap:14px; margin-top:8px;}
.cookie-toggle{display:grid; grid-template-columns:minmax(0,1fr) auto; gap:18px; align-items:center; padding:18px; border:1px solid rgba(15,23,42,.08); border-radius:22px; background:#fff; min-width:0;}
.cookie-toggle > div{min-width:0;}
.cookie-toggle strong{display:block; font-size:1rem; font-weight:900; letter-spacing:-.02em; margin-bottom:5px;}
.cookie-toggle p{margin:0; color:var(--muted); line-height:1.55; font-size:.95rem; overflow-wrap:anywhere;}
.cookie-toggle.is-locked{background:rgba(15,23,42,.03);}
.cookie-switch{position:relative; display:inline-flex; align-items:center; flex:0 0 auto;}
.cookie-switch input{position:absolute; opacity:0; inset:0;}
.cookie-switch span{position:relative; width:56px; height:32px; border-radius:999px; background:#d1d5db; display:block; transition:background-color .2s ease;}
.cookie-switch span::after{content:''; position:absolute; top:4px; left:4px; width:24px; height:24px; border-radius:50%; background:#fff; box-shadow:0 2px 8px rgba(15,23,42,.14); transition:transform .2s ease;}
.cookie-switch input:checked + span{background:#111827;}
.cookie-switch input:checked + span::after{transform:translateX(24px);}
.cookie-switch input:disabled + span{background:#94a3b8; opacity:.8;}
.cookie-modal__foot{position:sticky; bottom:0; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:16px; margin:18px -22px -22px; padding:16px 22px 22px; border-top:1px solid rgba(15,23,42,.08); background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.96) 18%, rgba(255,255,255,.99) 100%);}
.cookie-modal__actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;}
.cookie-modal__links{display:flex; gap:14px; flex-wrap:wrap; align-items:center;}
.cookie-modal__link{font-weight:800; color:var(--ink); text-decoration:none;}
.cookie-modal-open{overflow:hidden;}
.cookie-fab{position:fixed; left:16px; bottom:max(16px, env(safe-area-inset-bottom)); z-index:1150; display:inline-flex; align-items:center; gap:10px; border:0; border-radius:999px; padding:11px 15px; background:rgba(15,23,42,.92); color:#fff; box-shadow:0 16px 40px rgba(15,23,42,.22); cursor:pointer;}
.cookie-fab svg{width:18px; height:18px;}
.search-map__empty--consent,
.search-map__empty{
  width:100%;
  min-height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:10px;
  padding:24px;
  color:var(--muted);
}
.search-map__empty strong{color:var(--ink); font-size:1rem; letter-spacing:-.02em;}
body.is-legal-page{background:linear-gradient(180deg, #f7f5f1 0%, #ffffff 24%); overflow-x:hidden;}
body.is-legal-page main > .wrap.wrap--wide{max-width:none; padding-left:0; padding-right:0;}
.section--legal-immersive{padding:20px 0 42px;}
.legal-shell{display:grid; gap:18px; max-width:1180px; margin:0 auto; min-width:0; width:100%;}
.legal-shell--narrow{max-width:920px;}
.legal-topbar{display:flex; align-items:center; justify-content:space-between; gap:14px; padding-top:max(4px, env(safe-area-inset-top)); min-width:0;}
.legal-topbar__brand{display:inline-flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); font-weight:900; letter-spacing:-.02em; min-width:0; max-width:100%;}
.legal-topbar__brand img{width:34px; height:34px; border-radius:10px; display:block; flex:0 0 auto;}
.legal-topbar__brand span{min-width:0; overflow-wrap:anywhere; word-break:break-word;}
.legal-topbar__actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; min-width:0;}
.legal-topbar__actions .btn{max-width:100%;}
.legal-hero{padding:30px; border-radius:30px; min-width:0; overflow:hidden;}
.legal-hero h1{margin:8px 0 10px; font-size:clamp(2rem, 4vw, 3.45rem); line-height:.96; letter-spacing:-.045em; overflow-wrap:anywhere; word-break:break-word;}
.legal-hero p{max-width:65ch; line-height:1.7;}
.legal-hero__grid{display:grid; grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr); gap:18px; align-items:stretch;}
.legal-inline-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px;}
.legal-status-card{padding:22px; border-radius:24px; border:1px solid rgba(15,23,42,.08); background:linear-gradient(180deg, #fbfaf8 0%, #ffffff 100%); box-shadow:0 18px 40px rgba(15,23,42,.06);}
.legal-status-card__eyebrow{font-size:.75rem; font-weight:900; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); margin-bottom:8px;}
.legal-status-card h2{margin:0 0 16px; font-size:1.28rem; letter-spacing:-.03em;}
.legal-status-grid{display:grid; gap:10px;}
.legal-status-row{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:11px 12px; border-radius:16px; background:rgba(15,23,42,.035);}
.legal-status-row span{font-weight:700;}
.legal-status-row strong{font-size:.94rem;}
.legal-status-row .is-on{color:#0f766e;}
.legal-status-row .is-off{color:#9f1239;}
.legal-card-grid{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:18px;}
.legal-card-grid--3{grid-template-columns:repeat(3, minmax(0,1fr));}
.legal-card{padding:24px; border-radius:26px; border:1px solid rgba(15,23,42,.08); background:#fff; box-shadow:0 14px 36px rgba(15,23,42,.06); min-width:0; overflow:hidden;}
.legal-card--soft{background:linear-gradient(180deg, #fcfbf8 0%, #ffffff 100%);}
.legal-card h3{margin:6px 0 10px; font-size:1.45rem; line-height:1.04; letter-spacing:-.04em; overflow-wrap:anywhere; word-break:break-word;}
.legal-card p{margin:0; color:var(--muted); line-height:1.7; overflow-wrap:anywhere; word-break:break-word;}
.legal-stack{display:grid; gap:14px;}
.legal-list-row{display:grid; gap:6px; padding:14px 0; border-top:1px solid rgba(15,23,42,.08);}
.legal-list-row:first-child{border-top:0; padding-top:0;}
.legal-list-row strong{font-size:1rem; letter-spacing:-.02em;}
.legal-list-row span{color:var(--muted); line-height:1.65;}
.legal-table{display:grid; gap:12px;}
.legal-table__row{display:grid; grid-template-columns:minmax(0,1fr) auto; gap:14px; padding:14px 0; border-top:1px solid rgba(15,23,42,.08);}
.legal-table__row:first-child{border-top:0; padding-top:0;}
.legal-table__row strong{display:block; margin-bottom:5px; letter-spacing:-.02em;}
.legal-table__row span{display:block; color:var(--muted); line-height:1.6;}
.legal-table__row > div:last-child{font-weight:900; white-space:nowrap; align-self:start;}
.legal-steps{display:grid; gap:12px; margin:0; padding-left:20px; color:var(--muted);}
.legal-steps li{line-height:1.65;}
.legal-page{max-width:960px; margin:24px auto 0; padding:28px;}
.legal-page__head{margin-bottom:18px;}
.legal-page__head h1{margin:0 0 8px; font-size:clamp(2rem,4vw,3.2rem); letter-spacing:-.04em;}
.legal-page__actions{margin-bottom:16px;}
.legal-richtext{display:grid; gap:16px; min-width:0;}
.legal-richtext > *{min-width:0;}
.legal-richtext h2{margin:10px 0 0; font-size:1.15rem; letter-spacing:-.02em; overflow-wrap:anywhere; word-break:break-word;}
.legal-richtext p, .legal-richtext li{line-height:1.7; color:var(--muted); overflow-wrap:anywhere; word-break:break-word;}
.legal-richtext a{overflow-wrap:anywhere; word-break:break-word;}
.legal-richtext ul{margin:0; padding-left:20px;}
.site-footer__meta a,
.site-footer__meta-btn{color:inherit; text-decoration:none; font:inherit; background:none; border:0; padding:0; cursor:pointer;}
.site-footer__meta a:hover,
.site-footer__meta-btn:hover{text-decoration:underline; text-underline-offset:3px;}
body.is-provider-microsite .provider-site-news-card{min-width:0; overflow:hidden;}
body.is-provider-microsite .provider-site-news-card h3{overflow-wrap:anywhere; hyphens:auto;}
body.is-provider-microsite .provider-site-news-card p{overflow-wrap:anywhere;}
body.is-provider-microsite .provider-site-news-card__topline{gap:10px; align-items:flex-start; flex-wrap:wrap;}
body.is-provider-microsite .provider-site-news-card__topline > *{min-width:0;}
body.is-provider-microsite .provider-site-news-card__kind,
body.is-provider-microsite .provider-site-news-card__date{overflow-wrap:anywhere; word-break:break-word; max-width:100%;}
body.is-provider-microsite .provider-site-news-card .btn{max-width:100%;}
body.is-category-landing .hero__title{color:#fff; text-shadow:0 10px 34px rgba(2,6,23,.30);}
body.is-category-landing .hero__lead{color:rgba(255,255,255,.90); text-shadow:0 4px 16px rgba(2,6,23,.22);}
@media (max-width: 980px){
  .site-footer .wrap,
  .site-footer .wrap.wrap--wide,
  .site-footer .wrap.wrap--portal{padding-left:18px !important; padding-right:18px !important;}
  .legal-hero__grid,
  .legal-card-grid,
  .legal-card-grid--3{grid-template-columns:1fr;}
}
@media (max-width: 720px){
  .nav{gap:10px;}
  .nav__search{flex:1 1 auto; min-width:0;}
  .nav__search input[type="search"]{min-width:0;}
  .nav__links{flex-wrap:nowrap; gap:8px;}
  .cookie-consent{left:12px; right:12px; bottom:max(12px, env(safe-area-inset-bottom));}
  .cookie-consent__inner{padding:14px; border-radius:20px; align-items:stretch; flex-direction:column;}
  .cookie-consent__actions{justify-content:stretch; width:100%;}
  .cookie-consent__actions .btn{flex:1 1 calc(50% - 4px); justify-content:center;}
  .cookie-modal{padding:max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom)); align-items:end;}
  .cookie-modal__dialog{width:100%; max-height:calc(100dvh - 16px); border-radius:24px 24px 18px 18px; padding:18px;}
  .cookie-modal__head{margin:-18px -18px 12px; padding:18px 18px 12px;}
  .cookie-toggle{grid-template-columns:1fr; gap:12px;}
  .cookie-modal__foot{flex-direction:column; align-items:stretch; margin:18px -18px -18px; padding:14px 18px 18px;}
  .cookie-modal__links,
  .cookie-modal__actions{width:100%;}
  .cookie-modal__actions .btn{flex:1 1 auto; justify-content:center;}
  .cookie-fab{left:12px; right:auto; bottom:max(12px, env(safe-area-inset-bottom)); padding:10px 14px;}
  .cookie-fab span{display:none;}
  .legal-page{padding:20px 16px; margin-top:18px;}
  .section--legal-immersive{padding:14px 0 34px;}
  .legal-topbar{align-items:flex-start; flex-direction:column; width:100%;}
  .legal-topbar__brand{width:100%;}
  .legal-topbar__actions{width:100%; display:grid; grid-template-columns:1fr;}
  .legal-topbar__actions .btn{flex:1 1 100%; width:100%;}
  .legal-hero{padding:22px; border-radius:24px;}
  .legal-inline-actions{display:grid;}
  .legal-status-row,
  .legal-table__row{grid-template-columns:1fr;}
  .legal-card{padding:20px; border-radius:22px;}
  .site-footer .wrap,
  .site-footer .wrap.wrap--wide,
  .site-footer .wrap.wrap--portal{padding-left:16px !important; padding-right:16px !important;}
  .site-footer__top,
  .site-footer__bottom,
  .site-footer__brandbar{gap:14px;}
  body.is-provider-microsite .provider-site-news-grid{grid-template-columns:1fr;}
  body.is-provider-tier-featured .provider-site-news-card:first-child{grid-column:auto; min-height:0;}
  body.is-provider-microsite .provider-site-news-card{min-height:0; gap:12px; padding:20px 18px;}
  body.is-provider-microsite .provider-site-news-card__topline{display:grid; grid-template-columns:1fr;}
  body.is-provider-microsite .provider-site-news-card__kind{padding:8px 12px; min-height:0; white-space:normal; line-height:1.25;}
  body.is-provider-microsite .provider-site-news-card__date{text-align:left; width:100%;}
  body.is-provider-microsite .provider-site-news-card .btn{width:100%; justify-content:center;}
}

/* ===== Provider dashboard layout refinement ===== */
.provider-dashboard-layout{
  grid-template-columns:minmax(0,1.7fr) minmax(320px,0.5fr);
  gap:24px;
  align-items:start;
}
.provider-dashboard-main,
.provider-dashboard-aside{
  padding:clamp(18px, 2vw, 26px);
}
.provider-dashboard-main .page-header{
  gap:14px;
}
.provider-dashboard-main .page-header__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.provider-dashboard-main .page-header__actions .btn{
  white-space:nowrap;
}
.provider-dashboard-main .provider-dash-shortcuts{
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.provider-dashboard-main .provider-dash-shortcut{
  min-height:100%;
}
.provider-dashboard-main .provider-dash-shortcut__title{
  font-size:clamp(20px, 1.8vw, 30px);
}
.provider-dashboard-main .provider-dash-shortcut__copy{
  font-size:15px;
}
.provider-dashboard-main .provider-dash-shortcut__actions .btn{
  width:auto;
  max-width:100%;
}
.provider-dashboard-aside{
  display:grid;
  align-content:start;
  gap:0;
}
.provider-dashboard-quicklinks{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.provider-dashboard-quicklinks .btn{
  width:100%;
  justify-content:center;
  text-align:center;
}
@media (min-width: 981px){
  .provider-dashboard-aside{
    position:sticky;
    top:calc(var(--header-h) + 18px);
  }
}
@media (max-width: 1200px){
  .provider-dashboard-layout{
    grid-template-columns:1fr;
  }
  .provider-dashboard-aside{
    position:static;
  }
}
@media (max-width: 900px){
  .provider-dashboard-main .provider-dash-shortcuts{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .provider-dashboard-main,
  .provider-dashboard-aside{
    padding:18px;
  }
  .provider-dashboard-quicklinks{
    grid-template-columns:1fr;
  }
}


.provider-basic__hubgrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:14px;}
.provider-basic__hubcard{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;border-radius:16px;border:1px solid rgba(17,24,39,0.10);background:rgba(248,250,252,0.9);color:inherit;text-decoration:none;font-weight:800;transition:transform .16s ease, border-color .16s ease, background .16s ease;}
.provider-basic__hubcard:hover{transform:translateY(-1px);background:#fff;border-color:rgba(var(--accent-rgb),0.30);}

.provider-site-discover{background:#fff;}
.provider-site-hub-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.provider-site-hub-card{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:22px 24px;border-radius:24px;border:1px solid rgba(11,15,24,0.08);background:rgba(255,255,255,0.94);box-shadow:0 22px 60px rgba(15,23,42,0.08);color:inherit;text-decoration:none;transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;}
.provider-site-hub-card:hover{transform:translateY(-2px);border-color:rgba(var(--accent-rgb),0.28);box-shadow:0 26px 72px rgba(15,23,42,0.12);}
.provider-site-hub-card__label{font-size:15px;font-weight:850;line-height:1.35;}
.provider-site-hub-card__hint{font-size:20px;font-weight:900;color:rgba(17,24,39,0.42);}

@media (max-width: 900px){
  .provider-site-hub-grid{grid-template-columns:1fr;}
}

@media (max-width: 720px){
  .provider-basic__hubgrid{grid-template-columns:1fr;}
}

/* ===== Jobs pages final width / detail layout polish ===== */
body.is-jobs-home,
body.is-jobs-list,
body.is-jobs-provider,
body.is-job-detail{
  --jobs-page-shell:min(1760px, calc(100vw - 28px));
}
body.is-jobs-home .wrap,
body.is-jobs-list .wrap,
body.is-jobs-provider .wrap,
body.is-job-detail .wrap{
  padding-left:14px;
  padding-right:14px;
}
body.is-jobs-home .container,
body.is-jobs-list .container,
body.is-jobs-provider .container,
body.is-job-detail .container{
  width:min(100%, var(--jobs-page-shell));
}
@media (max-width: 900px){
  body.is-jobs-home,
  body.is-jobs-list,
  body.is-jobs-provider,
  body.is-job-detail{
    --jobs-page-shell:min(100%, calc(100vw - 24px));
  }
}


/* ===== PATCH 2026-03-17: clearer provider score + homepage-like footer on all pages ===== */
.provider-score__breakdown{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
.provider-score__box{
  padding:14px 16px;
  border-radius:20px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.08);
}
.provider-score__box-label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#64748b;
}
.provider-score__box-value{
  margin-top:6px;
  font-size:22px;
  font-weight:950;
  line-height:1;
  letter-spacing:-.03em;
  color:#0f172a;
}
.provider-score__box-copy{
  margin-top:6px;
  color:#64748b;
  font-size:13px;
  line-height:1.55;
}
.provider-score__callout{
  margin-top:14px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.06);
  color:#475569;
  line-height:1.6;
}
.provider-score__callout.is-success{
  background:#ecfdf3;
  border-color:rgba(34,197,94,.16);
  color:#166534;
}
.provider-score__callout a,
.provider-score__callout a:visited{
  color:inherit;
  font-weight:900;
  text-decoration:none;
}
.provider-score__callout a:hover{
  text-decoration:underline;
}
.provider-score__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.provider-score__chip{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#f5f7fb;
  border:1px solid rgba(15,23,42,.07);
  font-size:12px;
  font-weight:800;
  color:#0f172a;
}

.site-footer{
  margin-top:30px !important;
  background:#fff !important;
  border-top:1px solid rgba(15,23,42,.08) !important;
}
.site-footer .wrap,
.site-footer .wrap.wrap--wide,
.site-footer .wrap.wrap--portal{
  max-width:min(1380px, calc(100vw - 32px)) !important;
  padding-left:0 !important;
  padding-right:0 !important;
}
.site-footer__brandbar{
  padding-top:28px !important;
}

@media (max-width: 720px){
  .provider-score__breakdown{grid-template-columns:1fr;}
  .site-footer{
    padding:30px 0 28px !important;
  }
  .site-footer .wrap,
  .site-footer .wrap.wrap--wide,
  .site-footer .wrap.wrap--portal{
    max-width:none !important;
    padding-left:16px !important;
    padding-right:16px !important;
  }
  .site-footer__brandbar{
    padding-top:24px !important;
  }
}


/* --- Reviews module (2026-03-19) --- */
.provider-reviews{
  position:relative;
}
.provider-reviews__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}
.provider-reviews__eyebrow{
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.provider-reviews__sub{
  color:var(--muted);
  margin:8px 0 0;
  max-width:720px;
}
.provider-reviews__score{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  font-size:28px;
  font-weight:900;
  line-height:1;
  white-space:nowrap;
}
.provider-reviews__score span{
  font-size:20px;
}
.provider-reviews__grid{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(320px,.9fr);
  gap:24px;
}
.provider-reviews__list{
  display:grid;
  gap:16px;
}
.provider-review-card,
.provider-reviews__formcard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  padding:20px 22px;
}
.provider-review-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}
.provider-review-card__author{
  font-size:16px;
  font-weight:900;
  line-height:1.15;
}
.provider-review-card__date{
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
}
.provider-review-card__stars{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border-radius:999px;
  background:#f3f5fa;
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
}
.provider-review-card__title{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.15;
}
.provider-review-card__text{
  margin:0;
  color:#263244;
  line-height:1.7;
}
.provider-review-empty{
  padding:18px 20px;
  border-radius:22px;
  background:#f7f8fb;
  border:1px dashed rgba(25,39,64,.14);
  color:#566477;
  line-height:1.65;
}
.provider-reviews__formcard h3{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.08;
}
.provider-review-form{
  display:grid;
  gap:14px;
}
.provider-review-form input[type="text"],
.provider-review-form input:not([type]),
.provider-review-form textarea,
.provider-review-form input[type="email"]{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  background:#fff;
}
.provider-review-form textarea{
  resize:vertical;
  min-height:150px;
}
.provider-review-form__stars{
  margin:0;
  padding:0;
  border:0;
}
.provider-review-form__stars .small{
  display:block;
  margin-bottom:8px;
}
.provider-review-form__starsRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.provider-review-form__starOption{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.provider-review-form__starOption input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}
.provider-review-form__starOption span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  padding:10px 14px;
  border-radius:999px;
  background:#f4f6fb;
  border:1px solid transparent;
  font-weight:900;
  color:#12203a;
  transition:all .2s ease;
}
.provider-review-form__starOption input:checked + span,
.provider-review-form__starOption:hover span{
  background:#0f1830;
  color:#fff;
  box-shadow:0 12px 24px rgba(13,24,48,.16);
}
.provider-reviews__status{
  margin-top:2px;
}
@media (max-width: 980px){
  .provider-reviews__grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 720px){
  .provider-reviews__head{
    flex-direction:column;
  }
  .provider-reviews__score{
    font-size:24px;
  }
  .provider-review-card,
  .provider-reviews__formcard{
    padding:18px;
    border-radius:20px;
  }
}


/* ===== STEP23: footer/login simplification + clean account dropdown (2026-03-19) ===== */
.site-footer__brandbar--simple{
  align-items:center;
  gap:18px;
  padding:22px 0 12px;
}
.site-footer__brandlinks--providers{
  justify-content:flex-end;
}
.site-footer__bottom--simple{
  padding-top:15px;
}
.site-footer__meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 10px;
}
.site-footer__meta .sep{
  opacity:.35;
}
.site-footer__meta a,
.site-footer__meta a:visited,
.site-footer__meta-btn,
.site-footer__meta-btn:visited{
  color:inherit !important;
}
.site-footer__meta-btn{
  text-decoration:none;
}
.site-footer__meta-btn:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}

.site-header .nav-menu__panel form,
.site-header--overlay .nav-menu__panel form{
  margin:0;
}
.site-header .nav-menu__panel .nav-menu__item,
.site-header .nav-menu__panel .nav-menu__item:visited,
.site-header .nav-menu__panel button.nav-menu__item,
.site-header .nav-menu__panel button.nav-menu__item:visited,
.site-header--overlay .nav-menu__panel .nav-menu__item,
.site-header--overlay .nav-menu__panel .nav-menu__item:visited,
.site-header--overlay .nav-menu__panel button.nav-menu__item,
.site-header--overlay .nav-menu__panel button.nav-menu__item:visited{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
  color:var(--text) !important;
}
.site-header .nav-menu__panel .nav-menu__item--danger,
.site-header .nav-menu__panel .nav-menu__item--danger:visited,
.site-header--overlay .nav-menu__panel .nav-menu__item--danger,
.site-header--overlay .nav-menu__panel .nav-menu__item--danger:visited{
  color:var(--text) !important;
}
.site-header .nav-menu__panel .nav-menu__item:hover,
.site-header--overlay .nav-menu__panel .nav-menu__item:hover{
  background:rgba(15,23,42,.06);
}

.dd-item--near-secondary{
  margin-top:6px;
  border-top:1px solid rgba(15,23,42,.08);
  padding-top:12px;
}

@media (max-width: 720px){
  .site-footer__brandbar--simple{
    align-items:flex-start;
    gap:14px;
  }
  .site-footer__brandlinks--providers{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }
  .site-footer__meta{
    gap:6px 10px;
    font-size:13px;
  }
  .site-footer__tagline{
    max-width:42ch;
    font-size:13px;
    line-height:1.55;
  }
}


/* ===== STEP23b: safer media badge placement across provider cards (2026-03-19) ===== */
.provider-card__badges{
  right:12px;
}
.provider-card__badges--split{
  width:auto;
  min-width:0;
}
@media (max-width: 760px){
  .provider-card__badges{
    left:10px;
    right:10px;
    top:10px;
  }
}


/* ===== STEP26: footer + provider contact link polish (2026-03-21) ===== */
.provider-site-contact-card__value a,
.provider-site-contact-card__value a:visited,
.provider-site-fact__value a,
.provider-site-fact__value a:visited,
.provider-site-spotlight__value a,
.provider-site-spotlight__value a:visited,
.provider-basic__section a[href^="tel:"],
.provider-basic__section a[href^="tel:"]:visited,
.provider-basic__section a[href^="mailto:"],
.provider-basic__section a[href^="mailto:"]:visited{
  color:inherit !important;
  text-decoration:none;
}
.provider-site-contact-card__value a:hover,
.provider-site-fact__value a:hover,
.provider-site-spotlight__value a:hover,
.provider-basic__section a[href^="tel:"]:hover,
.provider-basic__section a[href^="mailto:"]:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}
.provider-site-contact-link{
  color:inherit !important;
  text-decoration:none;
  display:inline-block;
}

@media (max-width: 720px){
  .site-footer{
    padding:28px 0 26px;
  }

  .site-footer__brandbar--simple{
    padding:8px 0 12px;
    align-items:center;
    text-align:center;
  }

  .site-footer__brandcopy{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  .site-footer__brand,
  .site-footer__brand:visited{
    justify-content:center;
  }

  .site-footer__tagline{
    max-width:28ch;
    margin:0 auto;
    font-size:14px;
    line-height:1.55;
  }

  .site-footer__brandlinks--providers{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }

  .site-footer__brandlink,
  .site-footer__brandlink:visited{
    width:100%;
    justify-content:center;
    min-height:56px;
    text-align:center;
  }

  .site-footer__bottom--simple{
    padding-top:16px;
    justify-content:center;
  }

  .site-footer__meta{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    justify-items:center;
    align-items:start;
    gap:12px 16px;
    text-align:center;
  }

  .site-footer__meta > span:first-child{
    grid-column:1 / -1;
    font-weight:850;
  }

  .site-footer__meta .sep{
    display:none;
  }

  .site-footer__meta a,
  .site-footer__meta a:visited,
  .site-footer__meta-btn,
  .site-footer__meta-btn:visited{
    font-size:15px;
    line-height:1.35;
  }
}


/* ===== 2026-03-28: Homepage gateway (provider search vs marketplace) ===== */
.home-entry-gateway{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  width:min(900px, 100%);
}
.home-entry-gateway__card{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:18px 20px;
  border-radius:24px;
  text-decoration:none;
  color:#fff;
  background:rgba(15,23,42,.52);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 18px 42px rgba(15,23,42,.14);
  backdrop-filter:blur(14px);
}
.home-entry-gateway__card--market{background:rgba(255,255,255,.14)}
.home-entry-gateway__eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:rgba(255,255,255,.76);
}
.home-entry-gateway__card strong{
  font-size:26px;
  line-height:1.05;
  letter-spacing:-.03em;
}
.home-entry-gateway__card small{
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.55;
}
@media (max-width: 760px){
  .home-entry-gateway{grid-template-columns:1fr; width:100%;}
  .home-entry-gateway__card{padding:16px 18px;border-radius:22px;}
  .home-entry-gateway__card strong{font-size:22px;}
}


/* ============================================================
   FIX: Header nav buttons visibility on solid white background
   Generic fix for ALL pages – stronger border + subtle gray bg
   ============================================================ */

.site-header.is-solid .nav__icon-btn,
.site-header.is-solid .nav-menu__summary{
  background:rgba(15,23,42,0.04) !important;
  border:1px solid rgba(15,23,42,0.14) !important;
  color:var(--text) !important;
}

.site-header.is-solid .nav__icon-btn:hover,
.site-header.is-solid .nav-menu__summary:hover{
  background:rgba(15,23,42,0.08) !important;
  border-color:rgba(15,23,42,0.20) !important;
}

/* ── iOS input zoom prevention ── */
@media(max-width:768px){
  input[type="text"],input[type="email"],input[type="password"],input[type="number"],input[type="tel"],input[type="search"],input[type="url"],select,textarea{
    font-size:16px !important;
  }
}

/* ── Category Landing: Trust Section Redesign ── */
.cat-trust{
  background:#0a0a0a;
  padding:64px 0;
  margin-top:0;
}
.cat-trust__card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;
  padding:32px 28px;
}
.cat-trust__icon{
  width:52px;
  height:52px;
  border-radius:14px;
  background:rgba(255,255,255,.1);
  display:grid;
  place-items:center;
  font-size:24px;
  font-weight:900;
  color:#fff;
  margin-bottom:20px;
}
.cat-trust__title{
  color:#fff;
  font-size:20px;
  font-weight:800;
  letter-spacing:-.03em;
  margin:0 0 10px;
}
.cat-trust__text{
  color:rgba(255,255,255,.55);
  font-size:15px;
  line-height:1.65;
  margin:0;
}
@media(max-width:768px){
  .cat-trust{padding:44px 0}
  .cat-trust__card{padding:24px 22px}
  .cat-trust__title{font-size:18px}
}

/* ── Fix: hidden dd-items must stay hidden ── */
.dd-item[hidden]{display:none !important}

/* ── Simple scroll lock for modals ── */
body.bk-no-scroll{
  overflow:hidden !important;
  height:100vh !important;
  height:100dvh !important;
}
