:root{
  --brand-purple:#7a1fa2;
  --brand-orange:#f37a1f;
  --ink:#0f172a;
  --muted:#64748b;
}

* { scroll-behavior:smooth; }

.grad-text{
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-orange));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.btn-primary{
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-orange));
  border:none;
}
.btn-primary:hover{ opacity:.95; }

.bg-slate-50{ background:#f8fafc; }
.bg-slate-900{ background:#0f172a; }

.hero-wrap{
  background:
    radial-gradient(1200px 500px at 20% 10%, rgba(122,31,162,.10), transparent 60%),
    radial-gradient(900px 400px at 80% 30%, rgba(243,122,31,.12), transparent 60%),
    #fff;
}

.card-soft{
  border: 1px solid rgba(2,6,23,.06);
  box-shadow: 0 12px 30px rgba(2,6,23,.06);
  border-radius: 1.25rem;
}

.section-title{
  font-weight:800;
  letter-spacing:-.02em;
}

.badge-soft{
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
}

.fab-whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  width:56px;
  height:56px;
  border-radius:999px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:white;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  box-shadow: 0 18px 40px rgba(2,6,23,.20);

  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}


/* -----------------------------
   Floating Support / Chat
----------------------------- */
.fab-support{
  
  position:relative;
  
  right:18px;
  bottom:86px;
  /*
  sits
  above
  WhatsApp
  FAB
  */
  z-index:9999;
  width:56px;
  height:56px;
  border-radius:999px;
  border:1px
  solid
  rgba(15,23,42,.10);
  display:grid;
  place-items:center;
  background:
  linear-gradient(90deg,
  #0ea5e9,
  #2563eb);
  color:white;
  font-weight:800;
  box-shadow:
  0
  18px
  40px
  rgba(2,6,23,.20);
  cursor:
  pointer;
  pointer-events:
  auto;
  touch-action:
  manipulation;
  user-select:
  none;
  
  position: fixed;
  position: relative;
}

.support-sheet{
  position:fixed;
  right:18px;
  bottom:150px;
  z-index:10000;
  width:min(320px, calc(100vw - 36px));
  display:none;

  pointer-events: auto;
}

.support-sheet.open{ display:block; }

.support-sheet-inner{
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border:1px solid rgba(15,23,42,.10);
  border-radius: 20px;
  box-shadow: 0 22px 70px rgba(2,6,23,.28);
  padding: 12px;
}

.support-sheet-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 2px 4px 10px 4px;
}

.support-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 12px 12px;
  border-radius: 16px;
  text-decoration:none;
  color: var(--ink);
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.90);
}

.support-item + .support-item{ margin-top: 10px; }

.support-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2,6,23,.12);
}

.support-chip{
  font-size:.75rem;
  font-weight:700;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  color: #1d4ed8;
}

.support-note{ padding: 0 4px; }

.navbar .nav-link.active{
  font-weight:700;
  color: var(--ink) !important;
}

.small-muted{ color: var(--muted); }

.input-hint{
  font-size:.85rem;
  color: var(--muted);
}

.hr-soft{
  border-color: rgba(255,255,255,.10);
}

/* -----------------------------
   Bottom App Navigation (PWA)
------------------------------ */
.bottom-nav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(2,6,23,.08);
}

.bottom-nav .nav-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.bottom-nav a{
  text-decoration: none;
  color: #64748b;
  display: grid;
  place-items: center;
  padding: 8px 6px;
  border-radius: 14px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  font-weight: 600;
  font-size: 12px;
}

.bottom-nav a .ico{
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 3px;
}

.bottom-nav a.active{
  color: #0f172a;
  background: rgba(122,31,162,.10);
}

.bottom-nav a.active .ico{
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-orange));
  color: #fff;
}

.bottom-nav a:active{
  transform: scale(.98);
}

/* Make room so content doesn't hide behind the nav */
.has-bottom-nav{
  padding-bottom: 90px;
}

/* -----------------------------
   Desktop App Layout (Sidebar)
------------------------------ */
@media (min-width: 992px){
  body.has-app-shell{
    padding-left: 270px;
    padding-bottom: 0 !important;
  }

  .app-sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 270px;
    z-index: 9997;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(2,6,23,.08);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .app-sidebar .brand{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 16px;
  }

  .app-sidebar .brand img{
    height: 38px;
    width: auto;
  }

  .app-sidebar .brand .name{
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
  }

  .app-sidebar .brand .tag{
    font-size: 12px;
    color: var(--muted);
  }

  .app-sidebar .nav{
    display: grid;
    gap: 8px;
    margin-top: 4px;
  }

  .app-sidebar a.nav-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    text-decoration: none;
    color: #64748b;
    font-weight: 700;
    transition: background .15s ease, color .15s ease, transform .15s ease;
  }

  .app-sidebar a.nav-item:hover{
    background: rgba(2,6,23,.04);
    color: #0f172a;
  }

  .app-sidebar a.nav-item.active{
    background: rgba(122,31,162,.12);
    color: #0f172a;
  }

  .app-sidebar a.nav-item .ico{
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #0f172a;
    background: rgba(2,6,23,.04);
  }

  .app-sidebar a.nav-item.active .ico{
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-orange));
    color: #fff;
  }

  .app-sidebar .cta{
    margin-top: auto;
    display: grid;
    gap: 10px;
  }

  .app-sidebar .mini{
    font-size: 12px;
    color: var(--muted);
  }

  /* On desktop, hide top nav */
  .hide-top-nav .topnav-wrap,
  .hide-top-nav .navbar{
    display: none !important;
  }

  /* On desktop, hide bottom nav */
  .bottom-nav{
    display: none !important;
  }
}

/* -----------------------------
   Desktop Content Header
------------------------------ */
@media (min-width: 992px){
  .page-header{
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(2,6,23,.08);
  }

  .page-header .wrap{
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .page-header .title{
    font-weight: 900;
    letter-spacing: -.02em;
    margin: 0;
    color: var(--ink);
    font-size: 20px;
  }

  .page-header .crumb{
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
  }

  .page-header .actions{
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .page-header .chip{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(255,255,255,.9);
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
  }

  .page-header .chip:hover{ background: rgba(2,6,23,.03); }
}

/* -----------------------------
   Header Search + Icons + Profile
------------------------------ */
@media (min-width: 992px){
  .ph-search{ width: min(520px, 40vw); position: relative; }
  .ph-searchbox{
    display:flex;
    align-items:center;
    gap:10px;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(255,255,255,.92);
    padding: 10px 12px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(2,6,23,.04);
  }
  .ph-ico{ color: #64748b; }
  .ph-input{
    border: none;
    outline: none;
    width: 100%;
    font-weight: 700;
    color: #0f172a;
    background: transparent;
  }
  .ph-clear{
    border: none;
    background: rgba(2,6,23,.06);
    color: #0f172a;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    font-weight: 900;
  }
  .ph-clear:hover{ background: rgba(2,6,23,.10); }

  .ph-results{
    position:absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(2,6,23,.10);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(2,6,23,.12);
    overflow: hidden;
  }
  .ph-results .item{
    padding: 12px 14px;
    display:flex;
    justify-content:space-between;
    gap:12px;
    text-decoration:none;
    color: #0f172a;
    font-weight: 800;
  }
  .ph-results .item small{
    color:#64748b;
    font-weight:700;
  }
  .ph-results .item:hover{ background: rgba(2,6,23,.04); }

  .icon-btn{
    position: relative;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(255,255,255,.92);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    color:#0f172a;
  }

  .badge-dot{
    position:absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-orange));
    box-shadow: 0 8px 16px rgba(2,6,23,.20);
  }

  .profile-btn{
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(255,255,255,.92);
    padding: 8px 10px;
    border-radius: 999px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#0f172a;
  }

  .avatar{
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    font-weight: 900;
    color:#fff;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-orange));
  }
}

/* -----------------------------
   Portal UI helpers
------------------------------ */
.kpi{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.kpi .num{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.02em;
}
.kpi .lab{
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}
.table-soft{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  overflow: hidden;
}
.table-soft table{ margin:0; }
.pill{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.10);
  font-weight: 800;
  font-size: 12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.pill.ok{ background: rgba(34,197,94,.08); }
.pill.warn{ background: rgba(245,158,11,.10); }
.pill.info{ background: rgba(59,130,246,.08); }


/* -----------------------------
   Mobile card wrappers (tables -> cards)
   Keep UI but make lists usable on phones
------------------------------*/
.table-desktop{ display: table; }
.mobile-cards{ display:none; }
@media (max-width: 767.98px){
  .table-desktop{ display:none !important; }
  .mobile-cards{ display:block !important; }
}

.mobile-card{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(2,6,23,.06);
  overflow:hidden;
  margin-bottom: 12px;
}

.mobile-card .mc-head{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  background: linear-gradient(90deg, rgba(122,31,162,.08), rgba(243,122,31,.08));
}

.mobile-card .mc-title{
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  font-size: 15px;
}

.mobile-card .mc-sub{
  color: var(--muted);
  margin: 2px 0 0 0;
  font-size: 13px;
}

.mobile-card .mc-body{
  padding: 12px 14px;
}

.mobile-kv{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(15,23,42,.12);
}
.mobile-kv:last-child{ border-bottom:none; }

.mobile-kv .k{ color: var(--muted); font-size: 12px; }
.mobile-kv .v{ color: var(--ink); font-size: 13px; font-weight:600; text-align:right; }

.mobile-actions{
  padding: 12px 14px;
  border-top: 1px solid rgba(15,23,42,.06);
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}


/* Native landing cards */

/* Keep layout, enhance rhythm + feel (mobile first) */
body[data-page-title="Home"],
body[data-page-title="Services"],
body[data-page-title="Pricing"],
body[data-page-title="Exams"],
body[data-page-title="About"],
body[data-page-title="Contact"]{
  background: #fff;
}

@media (max-width: 991.98px){
  /* iOS-like card feel */
  body[data-page-title="Home"] .card-soft,
  body[data-page-title="Services"] .card-soft,
  body[data-page-title="Pricing"] .card-soft,
  body[data-page-title="Exams"] .card-soft,
  body[data-page-title="About"] .card-soft,
  body[data-page-title="Contact"] .card-soft{
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(2,6,23,.08);
    border: 1px solid rgba(2,6,23,.06);
  }

  /* soft tap feedback */
  body[data-page-title="Home"] a.card-soft,
  body[data-page-title="Services"] a.card-soft,
  body[data-page-title="Pricing"] a.card-soft,
  body[data-page-title="Exams"] a.card-soft,
  body[data-page-title="About"] a.card-soft,
  body[data-page-title="Contact"] a.card-soft{
    display:block;
    color: inherit;
    text-decoration:none;
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease, box-shadow .12s ease;
  }
  body[data-page-title="Home"] a.card-soft:active,
  body[data-page-title="Services"] a.card-soft:active,
  body[data-page-title="Pricing"] a.card-soft:active,
  body[data-page-title="Exams"] a.card-soft:active,
  body[data-page-title="About"] a.card-soft:active,
  body[data-page-title="Contact"] a.card-soft:active{
    transform: scale(.99);
  }

  /* tighter vertical rhythm */
  .container .row.g-2{ row-gap: 12px !important; }
  .container .row.g-3{ row-gap: 14px !important; }
  .container .row.g-4{ row-gap: 16px !important; }

  /* page header spacing */
  .page-title{
    letter-spacing: -.02em;
  }
}

/* Landing section blocks: keep structure but normalize spacing */
.landing-section{ padding-top: 28px; padding-bottom: 28px; }
@media (max-width: 991.98px){
  .landing-section{ padding-top: 22px; padding-bottom: 22px; }
}

/* Card typography polish */
.card-soft .small-muted{ font-size: .92rem; }
.card-soft .fw-bold{ letter-spacing: -.01em; }


/* Native clickable cards (landing + portal lists) */
.is-clickable{
  cursor:pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0.08);
  position: relative;
}
.is-clickable:active{
  transform: translateY(1px);
}
.is-clickable:focus{
  outline: 2px solid rgba(122,31,162,0.35);
  outline-offset: 2px;
}


/* Ensure hero/landing soft badges are readable (fix white-on-white) */
.badge-soft{
  background: rgba(122,31,162,0.12) !important;
  color: #7a1fa2 !important;
  border: 1px solid rgba(122,31,162,0.18) !important;
}
.hero-wrap .badge-soft{
  color: #7a1fa2 !important;
}


/* --- Compact mode (global) --- */
:root{
  --compact-gap: .75rem;
  --compact-gap-sm: .5rem;
  --compact-radius: 14px;
}

/* tighter typography */
body{
  line-height: 1.35;
}
h1,.display-5{ line-height: 1.08; }
h2,.h2{ line-height: 1.12; }
h3,.h3{ line-height: 1.18; }

/* tighter container spacing */
.container, .container-fluid{
  padding-left: 14px !important;
  padding-right: 14px !important;
}
.py-5{ padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
.py-4{ padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-3{ padding-top: 1rem !important; padding-bottom: 1rem !important; }
.mt-4{ margin-top: 1.25rem !important; }
.mb-4{ margin-bottom: 1.25rem !important; }
.mt-3{ margin-top: .9rem !important; }
.mb-3{ margin-bottom: .9rem !important; }

/* tighter cards */
.card, .card-soft, .native-card{
  border-radius: var(--compact-radius) !important;
}
.card-soft.p-3{ padding: .9rem !important; }
.card .card-body{ padding: .95rem !important; }
.card-soft{ box-shadow: 0 6px 18px rgba(10,10,10,.06) !important; }

/* tighter lists + tables wrappers */
.table{ margin-bottom: .75rem !important; }
.table td, .table th{ padding: .55rem .6rem !important; }

/* tighter buttons */
.btn{
  padding: .55rem .9rem !important;
}
.btn.rounded-pill{ padding: .55rem 1.05rem !important; }
.btn-sm{ padding: .35rem .6rem !important; }

/* tighter form controls */
.form-control, .form-select{
  padding: .55rem .75rem !important;
  border-radius: 12px !important;
}
textarea.form-control{ min-height: 110px; }

/* navbar/top actions slightly tighter */
.navbar .container.py-2{ padding-top: .6rem !important; padding-bottom: .6rem !important; }
.navbar .nav-link{ padding-top: .45rem !important; padding-bottom: .45rem !important; }
.topnav-wrap .bg-slate-900 .container.py-2{ padding-top: .45rem !important; padding-bottom: .45rem !important; }

/* app shell / sidebar tighten (safe) */
.side-nav, .sidebar, .sidenav{
  gap: .35rem !important;
}
.side-nav a, .sidebar a, .sidenav a{
  padding: .55rem .7rem !important;
  border-radius: 14px !important;
}

/* compact chips / badges */
.badge, .badge-soft{
  padding: .35rem .65rem !important;
  font-size: .85rem !important;
}

/* mobile: reduce hero spacing a bit more */
@media (max-width: 992px){
  .hero-wrap .container.py-5{ padding-top: 1.75rem !important; padding-bottom: 1.75rem !important; }
  .display-5{ font-size: calc(1.7rem + 1.2vw) !important; }
}


/* --- ULTRA compact mode (more very small + highly responsive) --- */
:root{
  --uc-gap: .5rem;
  --uc-gap-sm: .35rem;
  --uc-radius: 12px;
  --uc-font: 14px;
  --uc-font-sm: 13px;
}

/* global font sizing */
html{ font-size: var(--uc-font) !important; }
@media (max-width: 480px){ html{ font-size: var(--uc-font-sm) !important; } }

body{ line-height: 1.28; }
.small, small{ font-size: .9em !important; }

/* headings tighter */
h1,.display-5{ letter-spacing: -0.02em; line-height: 1.02 !important; }
h2{ line-height: 1.06 !important; }
h3{ line-height: 1.12 !important; }

/* containers tighter */
.container, .container-fluid{
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.py-5{ padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-4{ padding-top: 1.1rem !important; padding-bottom: 1.1rem !important; }
.py-3{ padding-top: .8rem !important; padding-bottom: .8rem !important; }
.mt-4{ margin-top: .9rem !important; }
.mb-4{ margin-bottom: .9rem !important; }
.mt-3{ margin-top: .65rem !important; }
.mb-3{ margin-bottom: .65rem !important; }

/* grid gaps */
.row{ --bs-gutter-x: .75rem !important; --bs-gutter-y: .75rem !important; }
.g-4{ --bs-gutter-x: .9rem !important; --bs-gutter-y: .9rem !important; }
.g-3{ --bs-gutter-x: .75rem !important; --bs-gutter-y: .75rem !important; }
.g-2{ --bs-gutter-x: .55rem !important; --bs-gutter-y: .55rem !important; }

/* cards */
.card, .card-soft, .native-card{
  border-radius: var(--uc-radius) !important;
}
.card-soft.p-3{ padding: .7rem !important; }
.card .card-body{ padding: .75rem !important; }
.card-soft{ box-shadow: 0 5px 14px rgba(10,10,10,.055) !important; }

/* buttons */
.btn{
  padding: .42rem .7rem !important;
  font-size: .95rem !important;
}
.btn.rounded-pill{ padding: .42rem .85rem !important; }
.btn-lg{ padding: .55rem 1rem !important; font-size: 1rem !important; }

/* forms */
.form-control, .form-select{
  padding: .42rem .6rem !important;
  border-radius: 10px !important;
  font-size: .95rem !important;
}
textarea.form-control{ min-height: 96px !important; }

/* tables */
.table td, .table th{ padding: .45rem .5rem !important; font-size: .95rem !important; }

/* navbar/side actions */
.navbar .container.py-2{ padding-top: .45rem !important; padding-bottom: .45rem !important; }
.navbar .nav-link{ padding-top: .35rem !important; padding-bottom: .35rem !important; }
.topnav-wrap .bg-slate-900 .container.py-2{ padding-top: .35rem !important; padding-bottom: .35rem !important; }

/* sidebar items tighter */
.side-nav a, .sidebar a, .sidenav a{
  padding: .45rem .55rem !important;
  border-radius: 12px !important;
  font-size: .98rem !important;
}

/* badges/chips */
.badge, .badge-soft{
  padding: .28rem .5rem !important;
  font-size: .82rem !important;
}

/* responsive: force “card view” earlier + prevent overflow */
@media (max-width: 1200px){
  .table-responsive{ overflow-x: auto !important; }
}
@media (max-width: 992px){
  .has-bottom-nav{ padding-bottom: 64px !important; }
}
@media (max-width: 576px){
  .display-5{ font-size: calc(1.35rem + 1.1vw) !important; }
  .hero-wrap .container.py-5{ padding-top: 1.2rem !important; padding-bottom: 1.2rem !important; }
  .btn{ width: auto; }
}


/* ------------------------------
   ET Chat (lightweight FAQ bot)
------------------------------ */
.et-support-divider{height:1px;background:rgba(255,255,255,.12);margin:10px 0}
.et-chat-widget{
  margin-top:10px;
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  display:none;
}
.et-chat-widget.is-open{display:block}
.et-chat-head{
  display:flex;align-items:center;gap:10px;
  padding:12px 12px;
  background: rgba(0,0,0,.18);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.et-chat-dot{width:10px;height:10px;border-radius:999px;background:rgba(120,255,180,.9);box-shadow:0 0 0 6px rgba(120,255,180,.12)}
.et-chat-meta{flex:1;min-width:0}
.et-chat-name{font-weight:700;font-size:13px;letter-spacing:.2px}
.et-chat-status{font-size:11px;opacity:.85}
.et-chat-close{
  width:34px;height:34px;border-radius:12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: inherit;
  display:grid;place-items:center;
}
.et-chat-body{
  padding:12px;
  max-height: 260px;
  overflow:auto;
  scroll-behavior:smooth;
}
.et-msg{display:flex;gap:8px;margin:10px 0}
.et-msg .et-bub{
  padding:10px 12px;
  border-radius:16px;
  font-size:13px;
  line-height:1.25rem;
  border:1px solid rgba(255,255,255,.12);
  max-width: 88%;
  word-wrap:break-word;
}
.et-msg.user{justify-content:flex-end}
.et-msg.user .et-bub{
  background: rgba(255,255,255,.12);
  border-top-right-radius:8px;
}
.et-msg.bot .et-bub{
  background: rgba(0,0,0,.18);
  border-top-left-radius:8px;
}
.et-chat-quick{
  padding:0 12px 12px 12px;
  display:flex;flex-wrap:wrap;gap:8px;
}
.et-chip{
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  cursor:pointer;
  user-select:none;
}
.et-chat-form{
  display:flex;gap:8px;
  padding:10px 12px 12px 12px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
}
.et-chat-input{
  flex:1;
  border-radius:14px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: inherit;
  outline:none;
  font-size:13px;
}
.et-chat-send{
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  color: inherit;
  display:grid;place-items:center;
  font-size:14px;
}
.et-click-safe{pointer-events:auto !important;}


/* ET-chat badge (unread staff replies) */
.et-chat-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#ef4444;
  color:#fff;
  font-size:11px;
  font-weight:800;
  display:none;
  place-items:center;
  border:2px solid rgba(255,255,255,.85);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  line-height:18px;
}
.fab-support{ display:grid; place-items:center; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.fab-support{ position:fixed; }
.et-typing{
  display:flex;
  align-items:center;
  gap:8px;
  opacity:.85;
  font-size:12px;
  margin:8px 0 2px 0;
}
.et-dots{display:inline-flex;gap:4px;align-items:center}
.et-dot{width:6px;height:6px;border-radius:999px;background:rgba(255,255,255,.6);animation:etbounce 1.1s infinite}
.et-dot:nth-child(2){animation-delay:.15s}
.et-dot:nth-child(3){animation-delay:.3s}
@keyframes etbounce{0%,80%,100%{transform:translateY(0);opacity:.55}40%{transform:translateY(-4px);opacity:1}}
.et-ticks{
  font-size:11px;
  opacity:.7;
  margin-top:6px;
  text-align:right;
}