/* ================================
   GLOBAL THEME TOKENS
=================================== */
:root {
  --primary: #6f48eb;
  --primary-hover: #5a36d4;
  --border: #e2e8f0;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --text: #1a202c;
  --bg: #ffffff;
  --font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }

/* Button Styles */
.Btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.Btn--primary {
  background: var(--primary);
  color: white;
}
/* Ensure primary buttons always have white text */
.Btn--primary,
.Btn.Btn--primary,
a.Btn--primary,
button.Btn--primary,
.Plan .Plan__btn.Btn--primary {
  color: #fff !important;
}


.Btn--primary:hover {
  background: var(--primary-hover);
}

.Btn--wide {
  width: 100%;
}
/* ================================
   AUTH PAGE STYLES (final, clean)
=================================== */
.AuthPage{
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h, 72px);        /* matches fixed navbar height */
  font-family: var(--font-family);
  background: transparent;                /* no old image */
}

/* Layered mesh gradients */
.AuthPage::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60rem 30rem at 10% -10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(50rem 25rem at 120% 0%,  rgba(99,102,241,.18), transparent 60%),
    radial-gradient(70rem 35rem at -10% 120%, rgba(14,165,233,.14), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6ff 35%, #eef4ff 100%);
}

/* Soft dot pattern with masks so it stays subtle */
.AuthPage::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(15,23,42,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image:
    radial-gradient(60rem 60rem at 80% 10%, black 0%, transparent 60%),
    radial-gradient(40rem 40rem at 10% 90%, black 0%, transparent 65%);
  mask-image:
    radial-gradient(60rem 60rem at 80% 10%, black 0%, transparent 60%),
    radial-gradient(40rem 40rem at 10% 90%, black 0%, transparent 65%);
  opacity: .45;
}

.AuthPage__container{
  min-height: calc(100svh - var(--nav-h, 72px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
}

/* Card */
.AuthCard{
  background: rgba(255,255,255,.98);
  border: 1px solid #e6ecf5;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15,23,42,.16);
  backdrop-filter: saturate(1.1) blur(4px);
  width: 100%;
  max-width: 520px;
  padding: 28px;
}

/* Title */
.AuthTitle{
  margin: 0 0 18px;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -.01em;
}
.AuthTitle--accent{ color: var(--primary); }

/* Inputs */
.AuthRow{ display: flex; gap: 12px; }
.AuthThird{ width: 32%; }

.AuthField{
  width: 100%;
  display: block;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd8e3;
  background: #fff;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 14px;
  box-sizing: border-box;
  color: var(--text);
  outline: none;
}
.AuthField:focus{
  border-color: #cfe0ff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

/* Errors */
.AuthAlert{
  background:#ffefef;
  color:#a94442;
  border:1px solid #ebccd1;
  padding:10px 12px;
  border-radius:10px;
  font-size:.95rem;
  margin-bottom:10px;
}

/* Buttons */
.Btn--wide{ width: 100%; }

/* Make selects match inputs on older browsers */
.AuthField::-ms-expand{ display:none; }
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .AuthPage::before,
  .AuthPage::after{
    animation: none;
    transition: none;
  }
}
.AuthRemember{
  display:flex; align-items:center; gap:8px;
  font-size:.95rem; margin-bottom:10px; color: var(--text);
}
.LinkButton{
  background:none; border:0; padding:0;
  color: var(--primary); text-decoration: underline;
  cursor:pointer; font: inherit;
}
.LinkButton:hover{ color: var(--primary-hover); }
/* Login page helpers */
.AuthRemember{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#374151;
  margin:6px 0 10px;
}
.AuthRemember input{ accent-color: var(--primary); }

.LinkButton{
  background:none;
  border:none;
  color:var(--primary);
  font-weight:600;
  cursor:pointer;
  text-decoration:underline;
  padding:0;
}
.LinkButton:hover{ color: var(--primary-hover); }
/* Small helpers for Restore Password */
.AuthNote{
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
}

.OTPWrap{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 16px;
}

.OTPInput{
  width: 44px;
  height: 54px;
  text-align: center;
  font-size: 20px;
  border-radius: 12px;
  border: 1px solid #cfd8e3;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.OTPInput:focus{
  border-color:#cfe0ff;
  box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

/* If you didn't add it earlier (used on Login too) */
.LinkButton{
  background:none;
  border:none;
  color:var(--primary);
  font-weight:600;
  cursor:pointer;
  text-decoration:underline;
  padding:0;
}
.LinkButton:hover{ color: var(--primary-hover); }
/* === Sales (Unsubscribed Dashboard) — uses global tokens & components === */
.SalesHero{padding:46px 0 42px;border-radius:0;}
.SalesHero .Wrap{max-width:1100px;}
.SalesHero__content{display:grid;gap:14px;text-align:center;justify-items:center;}
.SalesTitle{margin:0;font-size:clamp(26px,4.6vw,40px);line-height:1.15;font-weight:900;letter-spacing:-.01em;}
.SalesSubtitle{max-width:780px;color:#dee8fd;opacity:.95;}
.SalesHero__ctas{display:flex;gap:10px;margin-top:6px;}
.SalesHero__cta{min-width:160px;}
.SalesStats{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px;}

.SalesGrid .Card{border-color:#dbe7ff;}

.StepsGrid .Step{display:grid;gap:8px;}
.StepsGrid .Step .Step__n{
  width:32px;height:32px;border-radius:10px;
  background:#eaf1ff;color:#0b2a7a;display:grid;place-items:center;
  font-weight:800;border:1px solid #dbe7ff;box-shadow:var(--shadow-soft);
}

@media (max-width:760px){
  .SalesHero{padding:36px 0 32px;}
  .SalesHero__ctas{flex-wrap:wrap;justify-content:center;}
  .SalesSubtitle{padding:0 10px;}
}
/* Sales-only hero logo */
.Sales .SalesLogo{
  height:56px; width:auto; opacity:.98;
  filter: drop-shadow(0 6px 14px rgba(15,23,42,.18));
}
@media (max-width:520px){ .Sales .SalesLogo{ height:48px; } }
/* ---------- Services page shell ---------- */
.Services { padding-top: var(--nav-h, 72px); }

/* Slim hero (uses same gradient background family as Sales) */
.HeroSlim {
  padding: 48px 0 56px;
  text-align: center;
}
.HeroSlim .H1 { margin-bottom: 8px; }
.Chips { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-top:12px; }

/* ---------- Pricing layout ---------- */
.Pricing .H3 { margin-bottom: 14px; }

.PlanRow{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.PlanRow::-webkit-scrollbar{ height: 8px; }
.PlanRow::-webkit-scrollbar-thumb{ background:#d9e1f6; border-radius: 999px; }

/* Each plan card */
.PlanCard{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  width: 300px;                 /* mobile width; becomes fluid on desktop */
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 16px 16px 14px;
  position: relative;
}
.PlanCard.is-rec{
  border-color: rgba(111,72,235,.45);
  box-shadow: 0 12px 28px rgba(111,72,235,.18), var(--shadow);
}
.Badge{
  position: absolute; top: -10px; left: 16px;
  background:#ffd86b; color:#2b1e02; font-weight:800;
  padding: 4px 10px; border-radius: 999px; font-size: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.PlanHeader{ margin-bottom: 10px; }
.PlanName{ font-weight: 900; letter-spacing: .2px; }
.PlanPrice{ display:flex; align-items:flex-end; gap:6px; margin: 8px 0 4px; }
.PlanPrice .amount{ font-size: 32px; font-weight: 900; line-height: 1; }
.PlanPrice .per{ color:#64748b; font-weight:600; }
.PlanTag{ color:#475569; font-size: 13px; }

/* Feature list with check marks (no icons) */
.Fea tList, .FeatList{ list-style:none; padding:0; margin:0; }
.Fea tList li, .FeatList li{
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px dashed rgba(148,163,184,.22);
  color: #111;
  font-size: 14px;
}
.Fea tList li:last-child, .FeatList li:last-child{ border-bottom: 0; }
.Fea tList li::before, .FeatList li::before{
  content:"✓";
  position:absolute; left: 6px; top: 8px;
  font-weight: 900; color: var(--primary);
}
.FeatList--dense li{ padding:6px 0 6px 24px; font-size: 13.5px; }

.PlanCta{ margin-top: 12px; width: 100%; }

/* ---------- Desktop: grid cards, no horizontal scroll ---------- */
@media (min-width: 980px){
  .PlanRow{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }
  .PlanCard{ width: auto; }
}

/* ---------- Cards & grid helpers already exist; minor tweaks ---------- */
.SalesGrid .Card{ height: 100%; }

/* Optional subtle section background (matches your hero vibe) */
.section-gradient{
  background:
    radial-gradient(60rem 30rem at 10% -10%, rgba(59,130,246,.10), transparent 60%),
    radial-gradient(50rem 25rem at 120% 0%,  rgba(99,102,241,.10), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6ff 40%, transparent 100%);
}
/* Hero text on blue gradient — enforce white */
.section-gradient .Hero__title { 
  color: #fff !important; 
}

.section-gradient .Hero__sub {
  color: #fff !important;
  opacity: .95;                /* still “small”, but readable on blue */
}

.section-gradient .Hero__note {
  color: #0a0909 !important;
  opacity: .9;
}

/* ====== Services rebrand ====== */
.Services { padding-top: var(--nav-h, 72px); }

/* Wider wrapper for pricing section */
.WrapXL{ max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* Hero */
.SVC-Hero{ padding: 56px 0 64px; text-align:center; }

/* Desktop grid: left details, right plans */
.SVC-Grid{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
  align-items: start;
  margin: 26px auto 10px;
}

/* “Included” card */
.SVC-Included{ position: sticky; top: calc(var(--nav-h,72px) + 16px); }

/* Plans container */
.SVC-Plans{ width: 100%; }

/* Desktop: 4 equal cards; Mobile: scroll-snap row */
.SVC-PlansRow{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Plan card */
.SVC-Plan{
  background:#fff; border:1px solid var(--border); border-radius:14px;
  box-shadow: var(--shadow);
  padding: 16px; position: relative; display: flex; flex-direction: column; min-height: 100%;
}
.SVC-Plan.is-rec{
  border-color: rgba(111,72,235,.45);
  box-shadow: 0 18px 36px rgba(111,72,235,.16), var(--shadow);
}
.Badge{
  position:absolute; top:-10px; left:16px;
  background:#ffd86b; color:#2b1e02; font-weight:800; padding:4px 10px;
  border-radius:999px; font-size:12px; box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.SVC-PlanHead{ margin-bottom: 10px; }
.PlanName{ font-weight:900; letter-spacing:.2px; }
.PlanPrice{ display:flex; align-items:flex-end; gap:6px; margin:8px 0 4px; }
.PlanPrice .amount{ font-size:34px; font-weight:900; line-height:1; }
.PlanPrice .per{ color:#64748b; font-weight:600; }
.PlanTag{ color:#475569; font-size:13px; }

/* Feature checklist (no icons) */
.Fea tList, .FeatList{ list-style:none; padding:0; margin:0; }
.Fea tList li, .FeatList li{
  padding:8px 0 8px 26px; position:relative;
  border-bottom:1px dashed rgba(148,163,184,.22);
  color:#111; font-size:14px;
}
.Fea tList li:last-child, .FeatList li:last-child{ border-bottom:0; }
.Fea tList li::before, .FeatList li::before{
  content:"✓"; position:absolute; left:6px; top:8px; font-weight:900; color:var(--primary);
}
.FeatList--dense li{ padding:6px 0 6px 24px; font-size:13.5px; }

.SVC-PlanCta{ margin-top: 12px; width: 100%; }

/* Info blocks */
.SVC-Info{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px auto 30px;
}

/* Mobile & small tablets */
@media (max-width: 980px){
  .SVC-Grid{
    grid-template-columns: 1fr;
  }
  .SVC-Included{ position: static; }
  .SVC-PlansRow{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-snap-type: x mandatory;
  }
  .SVC-Plan{
    min-width: 80%;
    scroll-snap-align: start;
  }
  .SVC-Info{
    grid-template-columns: 1fr;
  }
}

/* Optional: the same soft gradient background you used elsewhere */
.section-gradient{
  background:
    radial-gradient(60rem 30rem at 10% -10%, rgba(59,130,246,.10), transparent 60%),
    radial-gradient(50rem 25rem at 120% 0%,  rgba(99,102,241,.10), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6ff 40%, transparent 100%);
}
/* ===== Services – comparison table (desktop + mobile) ===== */
.Services{ padding-top: var(--nav-h,72px); }

/* Hero */
.SVC-Hero{ padding: 48px 0 56px; text-align:center; }

/* Scroll container for the grid on small screens */
.CmpScroller{ overflow-x:auto; -webkit-overflow-scrolling:touch; }

/* Grid */
.Cmp{ min-width: 960px; display:grid; grid-template-rows:auto 1fr; gap: 8px; }
.CmpHeader{
  display:grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 8px;
  align-items: stretch;
}
.CmpBody{ display:block; }

.CmpCol{
  background:#fff; border:1px solid var(--border); border-radius:12px;
  box-shadow: var(--shadow); padding:12px 14px; position:relative;
}

/* Left feature header */
.CmpCol--feature{
  display:flex; flex-direction:column; justify-content:center;
}
.CmpTitle{ font-weight:800; text-align:center; }
.CmpHint{ text-align:center; font-size:12px; color:#64748b; }

/* Plan headers */
.CmpPlan{ text-align:center; cursor:pointer; user-select:none; }
.CmpPlan.is-rec{ border-color: rgba(111,72,235,.45); box-shadow:0 12px 30px rgba(111,72,235,.12), var(--shadow); }
.CmpPlan.is-active{ outline:2px solid rgba(111,72,235,.5); }
.CmpBadge{
  position:absolute; top:-10px; left:12px;
  background:#ffd86b; color:#2b1e02; font-weight:800; font-size:12px;
  padding:4px 10px; border-radius:999px; box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.CmpPlanName{ font-weight:900; letter-spacing:.2px; }
.CmpPrice{ display:flex; align-items:flex-end; gap:6px; justify-content:center; }
.CmpPrice .amount{ font-size:26px; font-weight:900; line-height:1; }
.CmpPrice .per{ color:#64748b; font-weight:600; }

/* Body rows */
.CmpRow{
  display:grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  align-items:center;
  gap: 8px;
  margin: 8px 0;
}
.CmpFeature{
  background:#fff; border:1px solid var(--border); border-radius:12px;
  box-shadow: var(--shadow); padding:12px 14px; text-align:left; width:100%;
  display:flex; align-items:center; gap:10px; position:relative; cursor:pointer;
}
.CmpBullet{ width:8px; height:8px; border-radius:50%; background:var(--primary); display:inline-block; }
.CmpInfo{
  margin-left:auto; width:18px; height:18px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:800; font-size:12px; color:#1e293b; background:#e2e8f0;
}
.CmpCell{
  background:#fff; border:1px solid var(--border); border-radius:12px;
  box-shadow: var(--shadow); padding:10px; display:flex; justify-content:center; align-items:center;
  cursor:pointer;
}

/* Checkmark */
.CmpCheck{
  width:22px; height:22px; border-radius:999px; background:#16a34a; color:#fff;
  display:inline-flex; align-items:center; justify-content:center; font-weight:900;
}
.CmpCheck::after{ content:"✓"; font-size:14px; line-height:1; }
.CmpDash{ color:#94a3b8; }

/* Modal */
.ModalOverlay{
  position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:9999;
  display:flex; align-items:center; justify-content:center; padding:16px;
}
.Modal{
  background:#fff; border:1px solid var(--border); border-radius:16px;
  box-shadow:0 18px 36px rgba(0,0,0,.2); padding:22px; max-width:520px; width:100%;
}

/* Responsive tweaks */
@media (max-width: 980px){
  .Cmp{ min-width: 760px; }
}
@media (max-width: 680px){
  .Cmp{ min-width: 620px; }
}
/* ========== SERVICES – FINAL POLISH OVERRIDES ========== */

/* 1) Kill the white gap under the blue bar */
.SVC-Hero{ padding-bottom: 8px !important; }
.Services > .WrapXL:first-of-type{
  margin-top: 0 !important;
}
.CmpScroller{ padding-top: 0 !important; margin-top: 0 !important; }

/* 2) Make the “Recommended” pill always visible (and inside the card) */
.CmpPlan{ position: relative; }                /* anchor for badge */
.CmpBadge{
  position: absolute !important;
  top: 6px;                                    /* inside the card, not outside */
  right: 6px;
  transform: none !important;
  background: linear-gradient(90deg,#ffd86b,#ffb347) !important;
  color:#231803 !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  line-height: 1;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.08) !important;
  z-index: 3;
}
/* Give the recommended plan a gentle highlight ring */
.CmpPlan.is-rec{
  box-shadow: 0 0 0 3px rgba(111,72,235,.18) inset !important;
  background: #fff !important;
}

/* 3) Replace hard shadow with smooth drop-shadow (no banding) */
.Cmp{
  border: 1px solid #e9eef6 !important;
  border-radius: 18px !important;
  background: #fff !important;
  /* remove any previous “halo” tricks */
  box-shadow: none !important;
  /* smooth, long falloff shadow */
  filter:
    drop-shadow(0 24px 44px rgba(2,6,23,.14))
    drop-shadow(0 6px 12px rgba(2,6,23,.08)) !important;
  position: relative;
}
.Cmp::after, .Cmp::before{ display:none !important; } /* kill older halo pseudos */

/* Header shouldn’t push the table away when it sticks */
.CmpHeader{ top: 6px !important; }

/* Desktop: fit to container (no horizontal scrollbar) */
@media (min-width:1024px){
  .CmpScroller{
    overflow: clip !important;
    padding-bottom: 0 !important;
    scrollbar-width: none;
  }
  .CmpScroller::-webkit-scrollbar{ display:none; }

  .CmpHeader, .CmpRow{
    grid-template-columns: 230px repeat(4, 1fr) !important;
    gap: 8px !important;
    padding: 10px 12px !important;
  }
  .CmpPlan{ padding: 6px !important; border-radius: 10px !important; }
  .CmpPlanName{ font-size: .92rem !important; }
  .CmpPrice .amount{ font-size: 18px !important; }
  .CmpPrice .per{ font-size: .80rem !important; }
  .CmpFeature{ padding: 10px !important; border-radius: 10px !important; }
  .CmpCell{ min-height: 34px !important; border-radius: 10px !important; }
  .CmpCheck{ width: 18px !important; height: 18px !important; }
  .CmpCheck::after{ font-size: 12px !important; }
}

/* Mobile: comfy touch targets and clean scroll when needed */
@media (max-width: 768px){
  .CmpScroller{ padding: 0 10px 16px !important; }
  .CmpHeader, .CmpRow{ grid-template-columns: 200px repeat(4,160px) !important; }
  .CmpFeature{ padding: 10px 12px !important; }
  .CmpCell{ padding: 8px !important; }
}

/* ---------- Services hero: black tagline + no white strip ---------- */
.SVC-Hero .Muted,
.SVC-Hero p.sub { color:#0b1320 !important; opacity:.92; }

.SVC-Hero {                 /* pull hero right up under the navbar */
  margin-top: 0 !important;
  padding-top: clamp(24px, 4.5vh, 56px);
}
.SVC-Hero.section-gradient,
.section-gradient.SVC-Hero {
  border-top-left-radius: 0;   /* no rounded top = no white corners showing */
  border-top-right-radius: 0;
}

/* In case any header/navbar component adds spacing */
header, .Navbar { margin-bottom: 0 !important; }

/* ---------- Compare table: softer outer shadow (no harsh edges) ---------- */
.Cmp {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
}
.Cmp::before {
  content: "";
  position: absolute;
  inset: -30px -34px -40px;        /* extends outside so it "feathers" out */
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(120% 80px at 50% 0,    rgba(2,6,23,.10), transparent 70%),
    radial-gradient(120% 80px at 50% 100%, rgba(2,6,23,.10), transparent 70%),
    radial-gradient(80px 120% at 0 50%,    rgba(2,6,23,.06), transparent 65%),
    radial-gradient(80px 120% at 100% 50%, rgba(2,6,23,.06), transparent 65%);
  filter: blur(12px);
}

/* ---------- Recommended plan styling ---------- */
.CmpPlan.is-rec {
  background: #fff8e6;                     /* very soft amber */
  border-color: #ffd9a1;
  box-shadow:
    0 10px 28px rgba(111,72,235,.15),
    0 0 0 3px rgba(111,72,235,.22) inset;   /* subtle inner ring */
}
.CmpPlan.is-rec .CmpBadge {
  position: absolute;
  top: -10px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #ffd86b, #ffb347);
  color: #1f1300;
  border: 1px solid rgba(255,183,77,.75);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .70rem;
  line-height: 1;
  letter-spacing: .2px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.CmpPlan.is-rec .CmpPrice .amount { text-shadow: 0 1px 0 #fff; }

/* Keep columns tidy on desktop (no horizontal scrollbar) */
@media (min-width: 1024px){
  .CmpHeader, .CmpRow { grid-template-columns: 230px repeat(4, 1fr); gap: 8px; }
  .CmpHeader { padding: 10px 12px; }
  .CmpRow    { padding:  8px 12px; }
}

/* Mobile padding so everything breathes without crowding */
@media (max-width: 768px){
  .Cmp { border-radius: 16px; }
}
/* =========================
   Subscription page polish
   ========================= */

/* Plan card: soft lift + crisp edges */
.PlanCard{
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, outline-color .15s ease;
  text-align: left;
}
.PlanCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15,23,42,.12);
}
.PlanCard .H3{ margin-bottom: 4px; }
.PlanCard .Muted{ font-size: .95rem; }

/* Highlight box inside each plan */
.PlanCard .Card{
  background: #fafbff;
  border: 1px dashed #e6ecf5;
  border-radius: 12px;
}

/* Recommended glow + active outline (when preselected from Services) */
.PlanCard.is-rec{
  border-color: rgba(111,72,235,.35);
  box-shadow: 0 8px 32px rgba(111,72,235,.15), var(--shadow);
}
.PlanCard.is-active{
  outline: 2px solid rgba(111,72,235,.6);
  outline-offset: 0;
}

/* Buttons: disabled state */
.Btn[disabled]{
  cursor: not-allowed;
  opacity: .6;
}

/* Modal (phone number popup) */
.ModalOverlay{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(2,6,23,.55);
  z-index: 9999;
}
.Modal{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(2,6,23,.18);
  padding: 22px;
  max-width: 460px;
  width: 100%;
  text-align: center;
}

/* Terms link */
.LinkButton{
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
}
.LinkButton:hover{ color: var(--primary-hover); }

/* Hero subtitle — keep it black as requested */
.SVC-Hero .Muted{
  color: #0b1320;
  opacity: .9;
}

/* Chips: tidy spacing on hero */
.Chips{ display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.Chip{
  background: #fff;
  border: 1px solid #e6ecf5;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(37,99,235,.08);
  font-weight: 600;
  font-size: .85rem;
}
.RecPill{
  position:absolute; top:10px; right:10px; z-index:2;
  background: linear-gradient(90deg,#ffd86b,#ffb347);
  color:#231803; padding:6px 10px; font-weight:800;
  font-size:.72rem; border-radius:999px;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}
/* =========================
   Subscribed Dashboard
   ========================= */

.Dash { padding-top: var(--nav-h, 72px); }

/* HERO */
.DashHero {
  padding: clamp(28px, 6vh, 56px) 0 clamp(16px, 4vh, 24px);
}
.DashHero__top{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
}
.DashHero__cta { display:flex; flex-direction:column; align-items:flex-end; }

.Kpis{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px; margin-top:14px;
}
.Kpi{
  background:#fff; border:1px solid var(--border); border-radius:12px; box-shadow: var(--shadow);
  padding:12px 14px;
}
.Kpi__label{ color:#677086; font-weight:600; font-size:.9rem; }
.Kpi__value{ font-weight:900; font-size:1.4rem; line-height:1; margin-top:6px; }

/* Progress */
.PlanBar{ margin-top:12px; }
.PlanBar__label{ color:#677086; font-weight:600; margin-bottom:6px; }
.Bar{ height:10px; border-radius:999px; background:#e9eef6; overflow:hidden; }
.Fill{
  height:100%; border-radius:999px;
  background: linear-gradient(90deg, #6f48eb, #b09ef7);
  transition: width .35s ease;
}

/* Panels */
.Panel{
  background:#fff; border:1px solid var(--border); border-radius:16px; box-shadow: var(--shadow);
  padding:18px;
}
.Panels{
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px;
}
.Panel--calendar{
  display:grid; grid-template-columns: 1.1fr 1fr; gap:16px;
}
.Panel__left .Note,
.Panel__right .Note,
.Note{
  background:#f8fbff; border:1px solid #e6ecf5; color:#0b1320; border-radius:10px; padding:8px 10px; font-weight:600;
}

.Panel--notice{ display:flex; align-items:center; justify-content:space-between; }
.Panel--list .List{ list-style:none; margin:0; padding:0; }
.Panel--list .List li{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:10px 0; border-bottom:1px solid #eef2f8;
}
.Panel--list .List li:last-child{ border-bottom:0; }

.Panel--tip{ background: linear-gradient(180deg,#ffffff,#fbfdff); }

/* Badges for statuses */
.Badge{
  display:inline-flex; align-items:center; justify-content:center;
  padding:4px 10px; border-radius:999px; font-size:.82rem; font-weight:800;
  border:1px solid #e6ecf5; background:#fff; color:#0b1320;
}
.Badge.confirmed{ background:#e8fff1; border-color:#bbf7d0; color:#065f46; }
.Badge.pending{ background:#fff7ed; border-color:#fed7aa; color:#9a3412; }
.Badge.completed{ background:#eef2ff; border-color:#c7d2fe; color:#1e1b4b; }
.Badge.canceled, .Badge.cancelled{ background:#fef2f2; border-color:#fecaca; color:#7f1d1d; }

/* Inputs */
.Field{
  width:100%; padding:10px 12px; border-radius:10px; border:1px solid #cfd8e3; background:#fff;
  font-size:16px; margin:8px 0;
}

/* Chips */
.Chip--gold{
  background:linear-gradient(180deg,#f7e08d,#f3cd52);
  color:#231803; border:1px solid #efd26a;
}

/* Modal re-use (already used on other pages) */
.ModalOverlay{ position:fixed; inset:0; display:flex; align-items:center; justify-content:center; padding:16px; background:rgba(2,6,23,.55); z-index:9999; }
.Modal{ background:#fff; border:1px solid var(--border); border-radius:var(--radius); box-shadow:0 20px 40px rgba(2,6,23,.18); padding:22px; max-width:460px; width:100%; text-align:center; }

/* Responsive */
@media (max-width: 960px){
  .DashHero__top{ flex-direction:column; align-items:flex-start; }
  .Kpis{ grid-template-columns: 1fr; }
  .Panel--calendar{ grid-template-columns: 1fr; }
  .Panels{ grid-template-columns: 1fr; }
}
/* =========================
   Subscribed Dashboard (site.css)
   ========================= */
.Dash{
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h,72px);
  background: transparent;
}

/* soft, bright gradient background like Auth/Services */
.Dash::before{
  content:"";
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(60rem 30rem at 12% -10%, rgba(59,130,246,.16), transparent 60%),
    radial-gradient(50rem 25rem at 120% 0%,  rgba(99,102,241,.16), transparent 60%),
    radial-gradient(70rem 35rem at -10% 110%, rgba(14,165,233,.12), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6ff 35%, #eef4ff 100%);
}

/* Cards on dashboard: white, high-contrast */
.DashCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  color: var(--text);
}

/* Two-column booking area (stacks on mobile) */
.DashGrid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px){
  .DashGrid{ grid-template-columns: 1fr; }
}

/* Progress bar */
.Progress{ width: 100%; }
.Progress__top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:6px;
}
.Progress__bar{
  height: 10px; border-radius: 999px; overflow: hidden;
  background: #e9effa; border:1px solid #dae3f3;
}
.Progress__fill{
  height:100%;
  background: linear-gradient(90deg, var(--primary), #b09ef7);
  transition: width .35s ease;
}

/* Status chips */
.StatusChip{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px; border-radius:999px; font-weight:700; font-size:.82rem;
  border:1px solid transparent;
}
.StatusChip.is-confirmed{ background:#e8fff3; color:#0f6b3c; border-color:#bfead2; }
.StatusChip.is-pending{   background:#fff7e8; color:#8a5b00; border-color:#f2d49a; }
.StatusChip.is-completed{ background:#eef6ff; color:#124d94; border-color:#cfe2ff; }
.StatusChip.is-cancelled{ background:#ffedf0; color:#8a1427; border-color:#f8c2cb; }

/* Little label cards */
.Note{
  background:#f7fafc; border:1px solid #e6ecf5; border-radius:10px;
  padding:10px 12px; color:#0b1320;
}
.Note--accent{ background:#eef5ff; border-color:#cfe0ff; }
.Note--success{ background:#eafff5; border-color:#c6f3e2; }

/* Inputs unified with your theme */
.Field{
  width:100%; padding:12px 12px; border-radius:10px;
  border:1px solid var(--border); background:#fff; color:var(--text);
  margin:8px 0 12px; font-size:16px; line-height:1.2; outline:none;
}
.Field:focus{
  border-color:#cfe0ff; box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

/* Gold badge (for Elite) */
.Badge{ display:inline-flex; align-items:center; padding:4px 8px; border-radius:999px; font-size:.78rem; font-weight:800; }
.Badge--gold{
  background: linear-gradient(180deg,#ffe08c,#f1c24b);
  color:#231803; border:1px solid rgba(161,98,7,.25);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.55), 0 6px 14px rgba(0,0,0,.08);
}

/* Buttons (reusing your Btn system; add danger) */
.Btn--ghost{
  background: transparent; border:1px solid var(--border); color: var(--text);
}
.Btn--ghost:hover{ background:#f7f9ff; }

.Btn--danger{ background:#dc3545; color:#fff; }
.Btn--danger:hover{ background:#b02a37; }

/* Modal (reuse across the app) */
.ModalOverlay{
  position:fixed; inset:0; display:flex; align-items:center; justify-content:center;
  background: rgba(2,6,23,.55); z-index: 9999; padding: 16px;
}
.Modal{
  background:#fff; border:1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(2,6,23,.18); padding: 22px; max-width: 460px; width:100%;
}

/* Lists */
.List{ list-style:none; margin: 8px 0 0; padding:0; }
.List__item{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid #eef2f8;
}
.List__item:last-child{ border-bottom:0; }
/* ===== Dashboard (subscribed) ===== */
.Dash{
  min-height: 100vh;
  background:
    radial-gradient(120% 200px at 50% -40px, rgba(99,102,241,.12), transparent 70%),
    #f7f9ff;
  color:#0b1320;
}

.DashHeader{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:22px 0;
}

.DashGrid{
  display:grid; gap:16px;
  grid-template-columns: 1fr 1fr 1fr;   /* plan / copy / calendar */
}
@media (max-width: 1024px){
  .DashGrid{ grid-template-columns: 1fr; }
}

/* Cards already exist, but ensure text is high-contrast */
.Card { color:#0b1320; }

/* Inputs */
.Input{
  background:#fff; border:1px solid var(--border); border-radius:12px;
  padding:10px 12px; min-height:44px; width:100%; box-shadow:var(--shadow-soft);
}

/* Chips for statuses */
.Chip{ display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px; border-radius:999px; font-weight:700; font-size:.82rem; }
.Chip--ok   { background:#e8fff3; color:#0f7a3e; border:1px solid #baf0d0; }
.Chip--done { background:#eef6ff; color:#0b5ed7; border:1px solid #cfe2ff; }
.Chip--warn { background:#fff7e6; color:#a66300; border:1px solid #ffe3b3; }
.Chip--bad  { background:#fff0f0; color:#b42318; border:1px solid #ffd3d3; }
.Chip--gold { background:linear-gradient(90deg,#ffd86b,#ffb347); color:#1f1300; }

/* Progress */
.Progress{ height:10px; background:#edf2ff; border-radius:999px; overflow:hidden; }
.Progress__fill{
  height:100%; background:linear-gradient(90deg,#6f48eb,#7c5cff);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.4);
}

/* Info pills */
.Info{
  border:1px solid var(--border); background:#fff; border-radius:12px;
  padding:10px 12px; box-shadow:var(--shadow-soft);
}
.Info--ok{ background:#f6fff9; border-color:#baf0d0; }
.Info--bad{ background:#fff7f7; border-color:#ffd3d3; }
.Info--primary{ background:#f3f6ff; border-color:#dfe6ff; }

/* Buttons */
.Btn--outline{ background:#fff; color:#0b1320; border:1px solid var(--border); }
.Btn--danger { background:#e03131; }
.Btn--danger:hover{ background:#c12727; }

/* Lists */
.List{ list-style:none; padding:0; margin:0; }
.List--spaced li{ padding:10px 0; border-bottom:1px dashed #eef1f6; }
.List--spaced li:last-child{ border-bottom:0; }

/* Modal (if not already present from subscription page) */
.ModalOverlay{
  position:fixed; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(2,6,23,.55); z-index:9999; padding:16px;
}
.Modal{
  background:#fff; border:1px solid var(--border); border-radius:16px;
  padding:22px; max-width:520px; width:100%; box-shadow:var(--shadow);
}

/* Utility shadows (soft) */
:root{
  --shadow-soft: 0 6px 18px rgba(2,6,23,.06);
}
/* ===== Dashboard (subscribed) ===== */
.DashHero { padding: clamp(24px, 5vh, 48px) 0 18px; }
.DashHero__row { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.DashHero__text .H2 { margin: 0 0 8px; }
.DashHero__cta { flex-shrink:0; }

.Progress { margin-top:14px; }
.Progress__meta { display:flex; justify-content:space-between; font-size:.95rem; color:#0b1320; }
.Progress__bar {
  height:10px; border-radius:999px; background:#eef2f7; overflow:hidden; margin-top:8px;
  border:1px solid #e6ecf5;
}
.Progress__fill {
  display:block; height:100%; background:linear-gradient(90deg,#4f46e5,#3b82f6);
  box-shadow:0 4px 10px rgba(59,130,246,.35);
}

.DashGrid { display:grid; gap:16px; grid-template-columns:1fr; }
.CalendarCard { display:flex; flex-direction:column; }
.Info { margin-top:10px; font-weight:700; color:var(--primary); }

.List { list-style:none; margin:0; padding:0; }
.List--history li {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px dashed #edf1f7;
}
.List--history li:last-child { border-bottom:0; }
.List__main { display:flex; flex-direction:column; gap:2px; }

.StatusPill {
  font-weight:800; font-size:.78rem; padding:6px 10px; border-radius:999px;
  border:1px solid #e9eef6; background:#fff; color:#0b1320;
}
.StatusPill.is-confirmed { background:#e6fbef; border-color:#b6f7d4; color:#137a3a; }
.StatusPill.is-pending   { background:#fff7e6; border-color:#ffdca3; color:#9a6509; }
.StatusPill.is-completed { background:#e8f1ff; border-color:#cfe1ff; color:#1f4dd8; }
.StatusPill.is-canceled  { background:#ffecec; border-color:#ffc9c9; color:#b42318; }

.FormRow { display:flex; gap:10px; margin-top:8px; }
.Input {
  flex:1; padding:10px 12px; border:1px solid #e3e8f1; background:#fff; border-radius:10px;
  font:inherit; color:#0b1320;
}
.Text--success { color:#15803d; }
.Text--danger  { color:#b91c1c; }

/* Gold chip for Elite */
.Chip--gold {
  background:linear-gradient(90deg,#ffd86b,#ffb347);
  color:#231803; border:0; box-shadow:0 6px 14px rgba(0,0,0,.08);
}

/* Responsive */
@media (min-width: 900px){
  .DashGrid { grid-template-columns: 1.1fr .9fr; }
}
@media (max-width: 600px){
  .DashHero__row { flex-direction:column; align-items:flex-start; gap:10px; }
  .Progress__meta { flex-direction:column; gap:4px; }
}
/* === Schedule page — mobile-first centering & polish === */
.SchedulePage {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--page-bg, #ffffff);
}

.ScheduleMain {
  flex: 1;
  display: flex;
}

.ScheduleContainer {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
}

.ScheduleHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ScheduleHelper {
  margin-top: 6px;
}

.UploadZone {
  padding: 12px;
  border: 1px dashed var(--border, #cbd5e1);
  background: #fafafa;
  border-radius: 12px;
}

.PreviewGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.PreviewItem {
  width: 92px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 10px;
}

.PreviewThumb {
  width: 100%;
  height: 66px;
  overflow: hidden;
  border-radius: 6px;
  background: #f8fafc;
}

.ActionBar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Tighten cards slightly for mobile */
@media (max-width: 740px) {
  .ScheduleMain {
    align-items: center;
    justify-content: center;
  }
  .ScheduleContainer {
    padding: 12px;
  }
  .ScheduleHeader {
    justify-content: center;
    text-align: center;
  }
  .ScheduleHeader .Chip {
    margin-top: 6px;
  }

  .MobileCenter { text-align: center; }
  .MobileCenter .Row { justify-content: center; }
  .MobileCenter .Card,
  .MobileCenter form { width: 100%; }
  .MobileCenter .Btn--wide { width: 100%; }
}

/* === About page — mobile-first, centered === */
.AboutPage {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--page-bg, #fff);
}

.AboutMain {
  flex: 1;
  display: flex;
}

.AboutContainer {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px;
}

/* Hero stats grid */
.AboutStats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.AboutStats > .Card {
  flex: 1 1 200px;
  min-width: 200px;
  padding: 12px;
}

/* Section spacing */
.AboutSection {
  margin-top: 18px;
}
.AboutSection .Card { padding: 18px; }

/* Table wrapper for horizontal scroll on small screens */
.TableWrap {
  overflow-x: auto;
}

/* FAQ details polish */
details.Card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
details.Card > summary {
  cursor: pointer;
  list-style: none;
}
details.Card > summary::-webkit-details-marker { display: none; }
details.Card > summary::after {
  content: "▾";
  float: right;
  transform: rotate(0deg);
  transition: transform .2s ease;
}
details[open].Card > summary::after {
  transform: rotate(180deg);
}

/* ---- MOBILE CENTERING ---- */
@media (max-width: 740px) {
  .AboutMain {
    align-items: center;
    justify-content: center;
  }
  .AboutContainer {
    padding: 12px;
    text-align: center;
  }
  .AboutContainer .Row { justify-content: center; }
  .AboutContainer .Btn--wide,
  .AboutContainer .Btn { width: 100%; }

  /* Keep long lists readable while still centered */
  .AboutContainer ul {
    display: inline-block;
    text-align: left;
    padding-left: 18px;
    margin-inline: auto;
  }

  /* Center table headers/cells on mobile */
  .AboutContainer table th,
  .AboutContainer table td { text-align: center; }
}
/* === About page bullet fix (mobile-safe) === */
.AboutPage .Card ul{
  list-style: none;        /* kill native bullets (which bleed outside rounded cards) */
  margin: 8px auto 0;
  padding: 0;
}
.AboutPage .Card li{
  position: relative;
  padding-left: 18px;      /* room for custom dot */
  margin: 6px 0;
  text-align: left;        /* keep items readable even when section is centered */
}
.AboutPage .Card li::before{
  content: "";
  position: absolute;
  left: 4px;
  top: 0.72em;             /* vertically centers the dot next to first line */
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64748b;     /* slate-500; matches your muted text */
  box-shadow: 0 0 0 2px #fff; /* keeps dot off the card border on light bg */
}

/* Optional: remove dots completely by adding .no-dots to the page wrapper */
.AboutPage.no-dots .Card li::before { display: none; }
.AboutPage.no-dots .Card li { padding-left: 0; }

/* Keep things centered on phones */
@media (max-width: 740px){
  .AboutMain{ align-items:center; justify-content:center; }
  .AboutContainer{ text-align:center; }
  .AboutContainer .Row{ justify-content:center; }
  .AboutContainer .Btn--wide, .AboutContainer .Btn{ width:100%; }
  .AboutPage .Card ul{ margin-left:auto; margin-right:auto; }
}
/* === Admin page — mobile-first using existing system tokens === */
.AdminPage { min-height: 100dvh; padding-bottom: 20px; }
.AdminBar { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-top:16px; }
.AdminBar .Btn { flex:0 0 auto; }

.AdminHeader { text-align:center; margin:14px 0 6px; }
.AdminCounts { text-align:center; font-weight:600; margin:6px 0; }

.AdminTabs { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin:10px 0; }
.AdminTabs .Tab { padding:8px 14px; border:1px solid var(--border,#e5e7eb); border-radius:10px; background:#fff; cursor:pointer; }
.AdminTabs .Tab.active { background: var(--primary-ghost,#eef2ff); border-color: var(--primary,#6f48eb); color: var(--primary,#6f48eb); }

.AdminFilters { position:sticky; top:56px; z-index:2; background:var(--page-bg,#fff); padding:10px; border-radius:12px; border:1px solid #e5e7eb; margin:0 auto 10px; max-width:1000px; }
.AdminFilters .Row { gap:8px; }
.AdminFilters .Input, .AdminFilters select { min-width:180px; }

.TableWrap { overflow:auto; width:100%; }
.Table { width:100%; border-collapse:collapse; border-radius:12px; overflow:hidden; background:#fff; }
.Table th, .Table td { padding:10px; border-bottom:1px solid #eef2f7; text-align:left; vertical-align:top; }
.Table thead th { background: var(--primary,#6f48eb); color:#fff; position:sticky; top:0; z-index:1; }

.CellActions { display:flex; gap:6px; flex-wrap:wrap; align-items:center; }
.Btn--micro { padding:4px 8px; font-size:12px; border-radius:8px; }
.IconBtn { padding:4px 8px; border:1px solid #e5e7eb; background:#fff; border-radius:8px; cursor:pointer; }
.IconBtn:hover { background:#f8fafc; }
.CopyOk { color:#16a34a; font-weight:600; }

.Badge { display:inline-block; padding:2px 8px; border-radius:999px; background:#f1f5f9; font-size:12px; }
.Badge--danger { background:#fee2e2; color:#991b1b; }
.Badge--ok { background:#dcfce7; color:#166534; }

.SimpleCalendar { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin:10px 0; }
.SimpleCalendar .Day { padding:6px 10px; border:1px solid #e5e7eb; border-radius:8px; background:#fff; cursor:pointer; }
.SimpleCalendar .Day.today { border-color: var(--primary,#6f48eb); font-weight:700; }
.SimpleCalendar .Day.selected { background: var(--primary,#6f48eb); color:#fff; }

@media (max-width:740px){
  .AdminHeader, .AdminCounts { text-align:center; }
  .Table th, .Table td { font-size: 13px; }
  .AdminFilters .Row { justify-content:center; }
  .AdminBar .Btn, .AdminTabs .Tab { width:100%; }
}
/* === Admin narrow layout (centered, comfy on mobile) === */
.AdminNarrow { max-width: 760px; margin: 0 auto; }
@media (max-width: 900px){ .AdminNarrow { max-width: 680px; } }
@media (max-width: 740px){
  .AdminNarrow { max-width: 540px; padding-inline: 8px; }
  .AdminPage .Card { border-radius: 14px; }
  .AdminPage .H2 { font-size: 1.35rem; }
  .AdminPage .H3 { font-size: 1.05rem; }
  .AdminPage .Btn, .AdminTabs .Tab { width: 100%; }
}

/* Optional: compact density toggle */
.AdminPage.is-compact .Table th,
.AdminPage.is-compact .Table td { padding: 8px; font-size: 13px; }
.AdminPage.is-compact .AdminFilters { padding: 8px; }
.AdminPage.is-compact .AdminBar .Btn,
.AdminPage.is-compact .AdminTabs .Tab { padding: 6px 10px; }

:root{
  --color-primary:#6f48eb;
  --color-text:#111827;
  --color-muted:#6b7280;
  --card-border:#eef2f7;
}

/* Layout shells */
.Page--auth { background:#f8fafc; min-height:100vh; }
.WrapM { max-width: 960px; margin: 0 auto; padding: 16px; }
.AuthShell { min-height: calc(100vh - 64px); display:flex; align-items:center; justify-content:center; }
.Card { background:#fff; border:1px solid var(--card-border); border-radius:12px; box-shadow:0 8px 24px rgba(0,0,0,.08); padding:24px; }
.AuthCard { width:100%; max-width:460px; }

/* Typography helpers */
.H2{ font-size:1.6rem; line-height:1.2; color:var(--color-text); }
.H3{ font-size:1.25rem; line-height:1.25; color:var(--color-text); }
.Muted{ color:var(--color-muted); }

/* Forms */
.Form{ display:grid; gap:12px; }
.Input{
  width:100%; padding:12px 12px; border:1px solid #d1d5db; border-radius:8px;
  font-size:.95rem; background:#fff; color:var(--color-text);
}
.Input:focus{
  outline:0; border-color:var(--color-primary);
  box-shadow:0 0 0 3px rgba(111,72,235,.15);
}

/* Buttons */
.Btn{
  --btn-bg:#f3f4f6; --btn-fg:#111827; --btn-bd:#e5e7eb;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 14px; border-radius:10px; border:1px solid var(--btn-bd);
  background:var(--btn-bg); color:var(--btn-fg); font-weight:600; cursor:pointer;
  text-decoration:none; user-select:none; transition:transform .02s ease, background .15s ease, border-color .15s ease;
}
.Btn:active{ transform:translateY(1px); }
.Btn--block{ width:100%; }
.Btn--primary{ --btn-bg:var(--color-primary); --btn-fg:#fff; --btn-bd:var(--color-primary); }
.Btn--ghost{ --btn-bg:#fff; --btn-fg:#111827; --btn-bd:#e5e7eb; }
.Btn[disabled]{ opacity:.6; cursor:not-allowed; }

/* Alerts */
.Alert{
  padding:10px 12px; border-radius:8px; font-size:.9rem; line-height:1.35;
  border:1px solid transparent;
}
.Alert--error{ background:#ffefef; color:#a94442; border-color:#ebccd1; }
.Alert--info{ background:#eef7ff; color:#0b5cab; border-color:#b7dafb; }

/* Images */
.SuccessImg{ display:block; margin:0 auto 8px; }

/* --- Force white text on all primary CTAs --- */
.Btn--primary,
.Btn.Btn--primary,
a.Btn--primary,
a.Btn--primary:visited,
button.Btn--primary,
.Plan .Plan__btn.Btn--primary {
  color: #fff !important;
}
/* --- Make each Plan card a column + push the button to the bottom --- */
.Plans .Plan {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.Plans .Plan .Plan__btn {
  margin-top: auto;         /* pushes button to bottom */
  align-self: flex-start;   /* keeps button aligned nicely on left */
}

/* --- Promo strip (multi-address & referrals) --- */
.PromoBar {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
}

.PromoBar .PromoItem {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.04);
  font-size: 15px;
  line-height: 1.45;
}

.PromoBar .LinkArrow {
  margin-left: 8px;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

.BreakOnMobile { white-space: nowrap; }
@media (max-width: 840px) {
  .PromoBar { flex-direction: column; }
  .BreakOnMobile { white-space: normal; }
}

/* Hero in blue gradient = white text */
.section-gradient .Hero__title { color: #fff !important; }
.section-gradient .Hero__sub   { color: #fff !important; opacity: .95; }
.section-gradient .Hero__note  { color: #060505 !important; opacity: .9; }
/* Force black for membership note */

.MembershipNote, 
.MembershipNote p {
  color: #000 !important;
}

/* Force white for free trial subtext */
.FreeTrialNote, 
.FreeTrialNote p {
  color: #010101 !important;
}
.HighlightBox {
  border: 2px solid #007bff;
  border-radius: 14px;
  padding: 20px;
  background: #f8fbff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
/* ===== MOBILE HOTFIX: hero gap + 15px spacing before plans ===== */

/* 1) Kill the thin white line under the navbar on the blue hero */
@media (max-width: 820px){
  /* make page account for fixed navbar and remove any stray margins */
  .Services,
  .SchedulePage { padding-top: var(--nav-h,72px) !important; }

  /* ensure the blue hero touches the navbar with no rounded corners showing */
  .SVC-Hero,
  .HeroSlim,
  .SalesHero,
  .section-gradient.SVC-Hero,
  .section-gradient.HeroSlim {
    margin-top: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    padding-top: clamp(24px, 5vh, 56px); /* keeps hero comfy on phones */
  }

  /* if the line is coming from navbar styling, nuke it */
  header, .Navbar {
    margin-bottom: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  /* 2) Add 15px of space between the blue hero and the plans/cards */
  .SVC-Hero + .SVC-Grid,
  .HeroSlim + .Pricing,
  .SalesHero + .Wrap,
  .section-gradient + .WrapXL {
    margin-top: 15px !important;
  }
}
/* ===== Fix 1: kill the thin white line under the navbar ===== */
header, .Navbar {
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Pull the hero to touch the navbar; if a 1px seam appears, overlap it */
.Services .section-gradient:first-child,
.Services .SVC-Hero:first-child,
.Services .HeroSlim:first-child,
.Sales .SalesHero:first-child,
.SchedulePage .SVC-Hero:first-child {
  margin-top: -1px !important;                 /* overlap by 1px to hide seam */
  padding-top: clamp(24px, 5vh, 56px) !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/* ===== Fix 2: add 15px gap below the blue hero before plans/cards ===== */
.SVC-Hero + .SVC-Grid,
.HeroSlim + .Pricing,
.SalesHero + .Wrap,
.section-gradient + .WrapXL {
  margin-top: 15px !important;
}
/* ===== Kill the white strip between navbar and blue hero ===== */
.Services .section-gradient:first-child,
.SchedulePage .section-gradient:first-child,
.SalesHero,
.HeroSlim,
.SVC-Hero {
  margin-top: 0 !important;
  background-color: transparent !important;   /* stop it from painting white */
}

body, .Services, .SchedulePage {
  background-color: transparent !important;   /* also nuke body bg in that zone */
}
/* === Fix Services white strip === */
.Services {
  background: transparent !important;   /* kill the white/gray fill */
  padding-top: 0 !important;            /* remove any top spacing */
  margin-top: 0 !important;
}

/* Ensure hero section itself is the background */
.Services .section-gradient:first-child,
.Services .SVC-Hero:first-child,
.Services .HeroSlim:first-child {
  margin-top: 0 !important;
  padding-top: clamp(24px, 5vh, 56px) !important;
  background: linear-gradient(180deg,#2563eb,#1d4ed8) !important; /* your blue gradient */
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
/* ── Global mobile helpers ─────────────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Respect phone notches + avoid hidden content under fixed headers */
:root { padding-top: env(safe-area-inset-top); }

/* Make room for your fixed navbar (Navbar.jsx already writes --nav-h) */
body { padding-top: var(--nav-h, 64px); }

/* iOS tap highlight off */
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }
/* ── Global mobile helpers ─────────────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
:root { padding-top: env(safe-area-inset-top); }
body { padding-top: var(--nav-h, 64px); }
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* Show/hide per breakpoint */
.only-mobile { display: block; }
.only-desktop { display: none; }
@media (min-width: 768px) {
  .only-mobile { display: none; }
  .only-desktop { display: block; }
}

/* ── Services Mobile ───────────────────────────────── */
@media (max-width: 767.98px) {
  .svc-m { display: block; }
  .svc-m__pills {
    position: sticky; top: calc(env(safe-area-inset-top) + 64px);
    z-index: 30; background: rgba(255,255,255,.9);
    backdrop-filter: blur(6px); border-bottom: 1px solid #e5e7eb;
  }
  .svc-m__pillrow { display: flex; gap: 8px; padding: 10px 12px; overflow-x: auto; }
  .svc-m__pill {
    padding: 8px 14px; border-radius: 999px; font-weight: 600; border: 0;
    background: #f1f5f9; color:#334155;
  }
  .svc-m__pill.is-active { background: #306EEC; color: #fff; box-shadow: 0 6px 18px rgba(48,110,236,.35); }
  .svc-m__list { padding: 12px 12px 96px; display: grid; gap: 10px; }
  .svc-m__item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; border-radius: 14px; background: #fff;
    border: 1px solid #e5e7eb; box-shadow: 0 1px 2px rgba(0,0,0,.03);
  }
  .svc-m__left { display: flex; align-items: center; gap: 10px; }
  .svc-m__left .dot { width: 10px; height: 10px; border-radius: 50%; background: #306EEC; }
  .svc-m__left .label { font-weight: 600; }
  .badge { width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; font-weight: 700; }
  .badge.ok { background: #eaffea; color: #11933d; }
  .badge.no { color: #94a3b8; }
  .svc-m__cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: rgba(255,255,255,.96); border-top: 1px solid #e5e7eb;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }
  .svc-m__btn {
    width: 100%; height: 48px; border-radius: 12px; border: 0; font-weight: 700;
    color:#fff; background:#306EEC; box-shadow: 0 8px 24px rgba(48,110,236,.35);
  }
}
/* Pills */
.svc-m__pillrow { display:flex; gap:8px; overflow-x:auto; padding:6px 2px; }
.svc-m__pillrow.no-scrollbar::-webkit-scrollbar { display:none; }
.svc-m__pill { border:1px solid #e5e7eb; border-radius:999px; padding:8px 12px; background:#fff; font-weight:700; }
.svc-m__pill.is-active { box-shadow:0 0 0 2px #7aa2ff inset; }

/* List */
.svc-m__list { display:flex; flex-direction:column; gap:12px; margin-top:10px; list-style:none; padding-left:0; }

/* Row */
.svc-m__item {
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px; background:#fff; border:1px solid #e5e7eb; border-radius:14px;
  box-shadow:0 6px 24px rgba(0,0,0,.04); text-align:left; overflow:visible;
}
.svc-m__left { display:flex; align-items:center; gap:10px; }
.svc-m__left .label { font-weight:600; }

/* Info pill — now on left */
.svc-m__item .info {
  display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px; border-radius:999px;
  font-weight:800; font-size:13px;
  color:#475569; background:#f1f5f9; border:1px solid #e2e8f0;
}
.svc-m__item:hover .info, .svc-m__item:active .info { background:#e2e8f0; }

/* Badge */
.badge { width:28px; height:28px; border-radius:999px; border:1px solid #e5e7eb; background:#f8fafc; display:inline-flex; align-items:center; justify-content:center; font-weight:800; }
.badge.ok { background:#ecfdf5; border-color:#34d399; color:#059669; }

/* CTA */
.svc-m__cta { margin:16px 0 6px; text-align:center; }
.svc-m__btn { padding:10px 14px; border-radius:12px; background:#111827; color:#fff; font-weight:800; border:1px solid #334155; }
.PW {
  position: relative;
}

.PW .PW__toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
}

.PW .PW__toggle:hover {
  background: rgba(100,116,139,.12);
}

.PW > input {
  padding-right: 44px; /* leave space for the button */
}
