/* ==========================================================================
   MediConnect India — Design Tokens
   Palette: deep clinical teal + saffron accent + rose (urgent/video)
   Type: Fraunces (display) / Manrope (body) / IBM Plex Mono (data/utility)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  --forest:#0F3D3E;
  --forest-deep:#092827;
  --ink:#132322;
  --saffron:#E8871E;
  --saffron-deep:#C96C0C;
  --rose:#D65745;
  --marigold-tint:#FBEBD3;
  --ivory:#FBF8F3;
  --paper:#FFFFFF;
  --line:#E4DFD3;
  --muted:#6B7A78;

  --font-display:'Fraunces', serif;
  --font-body:'Manrope', sans-serif;
  --font-mono:'IBM Plex Mono', monospace;

  --radius:10px;
  --radius-lg:18px;
  --shadow-sm:0 1px 2px rgba(15,61,62,0.08);
  --shadow-md:0 8px 24px rgba(15,61,62,0.10);
  --shadow-lg:0 20px 48px rgba(15,61,62,0.16);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--ivory);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

.container{ max-width:1200px; margin:0 auto; padding:0 24px; }
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--saffron-deep);
  display:flex;
  align-items:center;
  gap:8px;
}
.eyebrow::before{
  content:'';
  width:18px; height:1px;
  background:var(--saffron-deep);
  display:inline-block;
}
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.12; color:var(--forest-deep); font-weight:600; }
p{ margin:0; color:var(--muted); line-height:1.65; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-weight:700;
  font-size:14.5px;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--saffron); color:#fff; box-shadow:0 6px 18px rgba(232,135,30,.35); }
.btn-primary:hover{ background:var(--saffron-deep); }
.btn-dark{ background:var(--forest); color:#fff; }
.btn-dark:hover{ background:var(--forest-deep); }
.btn-outline{ background:transparent; border-color:var(--line); color:var(--forest-deep); }
.btn-outline:hover{ border-color:var(--forest); }
.btn-sm{ padding:9px 18px; font-size:13px; }
.btn-block{ width:100%; }

/* ---------------- Header ---------------- */
.topbar{
  background:var(--forest-deep);
  color:#DCEAE8;
  font-family:var(--font-mono);
  font-size:12.5px;
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; height:36px; }
.topbar a{ opacity:.85; }
.topbar a:hover{ opacity:1; }
.topbar-links{ display:flex; gap:18px; }

.navbar{
  background:var(--paper);
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:50;
}
.navbar .container{ display:flex; align-items:center; justify-content:space-between; height:76px; }
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:22px; color:var(--forest-deep); }
.brand-mark{
  width:38px; height:38px; border-radius:10px;
  background:linear-gradient(155deg, var(--forest) 0%, var(--forest-deep) 100%);
  display:flex; align-items:center; justify-content:center;
  color:var(--saffron); font-size:19px; font-weight:800;
  flex-shrink:0;
}
.nav-links{ display:flex; gap:32px; align-items:center; }
.nav-links a{ font-weight:600; font-size:14.5px; color:var(--ink); padding:6px 0; border-bottom:2px solid transparent; }
.nav-links a.active, .nav-links a:hover{ color:var(--forest-deep); border-color:var(--saffron); }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-toggle{ display:none; background:none; border:none; font-size:24px; color:var(--forest-deep); }

@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .nav-cta .btn-outline{ display:none; }
}

/* ---------------- Hero ---------------- */
.hero{
  background:
    radial-gradient(ellipse at top right, rgba(232,135,30,.13), transparent 55%),
    var(--forest);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.hero .container{
  display:grid; grid-template-columns:1.05fr .95fr; gap:52px;
  padding-top:76px; padding-bottom:64px; align-items:center;
}
.hero-tag{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  padding:7px 14px; border-radius:999px;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.06em;
  color:var(--marigold-tint);
  margin-bottom:22px;
}
.hero h1{
  color:#fff; font-size:clamp(34px,4.6vw,54px); font-weight:600;
  margin-bottom:20px;
}
.hero h1 em{ font-style:italic; color:var(--saffron); }
.hero p.lead{ color:#C9D8D6; font-size:17px; max-width:480px; margin-bottom:30px; }

.search-card{
  background:var(--paper);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-lg);
  display:grid; grid-template-columns:1fr 1fr auto; gap:12px;
}
.search-field{ display:flex; flex-direction:column; gap:4px; padding:6px 14px; border-radius:10px; }
.search-field:not(:last-child){ border-right:1px solid var(--line); }
.search-field label{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); }
.search-field select, .search-field input{
  border:none; outline:none; font-size:15px; font-weight:600; color:var(--ink); background:transparent;
}
.search-card .btn{ align-self:center; }

@media (max-width:900px){
  .hero .container{ grid-template-columns:1fr; padding-top:40px; }
  .search-card{ grid-template-columns:1fr; }
  .search-field:not(:last-child){ border-right:none; border-bottom:1px solid var(--line); padding-bottom:12px; }
}

.hero-stats{ display:flex; gap:34px; margin-top:34px; }
.hero-stats div strong{ display:block; font-family:var(--font-display); font-size:26px; color:#fff; }
.hero-stats div span{ font-size:12.5px; color:#9FB6B3; }

.hero-visual{
  position:relative; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px; padding:24px; backdrop-filter:blur(2px);
}
.consult-modes{ display:flex; flex-direction:column; gap:12px; }
.mode-pill{
  display:flex; align-items:center; gap:14px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
  border-radius:14px; padding:14px 16px;
}
.mode-pill .ic{
  width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:18px; flex-shrink:0;
}
.mode-pill.chat .ic{ background:rgba(232,135,30,.2); color:var(--saffron); }
.mode-pill.call .ic{ background:rgba(214,87,69,.22); color:#F19487; }
.mode-pill.video .ic{ background:rgba(255,255,255,.16); color:#fff; }
.mode-pill h4{ color:#fff; font-size:15px; margin-bottom:2px; }
.mode-pill p{ color:#9FB6B3; font-size:12.5px; margin:0; }

/* ---------------- Section shells ---------------- */
.section{ padding:76px 0; }
.section-alt{ background:var(--marigold-tint); }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:40px; gap:24px; flex-wrap:wrap; }
.section-head h2{ font-size:clamp(26px,3vw,36px); max-width:560px; }

/* ---------------- Specialities ---------------- */
.spec-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
@media (max-width:1000px){ .spec-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .spec-grid{ grid-template-columns:repeat(2,1fr); } }
.spec-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:22px 16px; text-align:center; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.spec-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:transparent; }
.spec-icon{ width:52px; height:52px; margin:0 auto 14px; border-radius:14px; background:var(--marigold-tint); display:flex; align-items:center; justify-content:center; font-size:22px; }
.spec-card h4{ font-size:15px; margin-bottom:4px; }
.spec-card span{ font-family:var(--font-mono); font-size:11.5px; color:var(--muted); }

.av-1{ background:linear-gradient(155deg,#0F3D3E,#1B5E5C); }
.av-2{ background:linear-gradient(155deg,#E8871E,#C96C0C); }
.av-3{ background:linear-gradient(155deg,#D65745,#B8402F); }
.av-4{ background:linear-gradient(155deg,#3E6B8A,#274A63); }
.av-5{ background:linear-gradient(155deg,#7A5C3E,#5A4229); }
.av-6{ background:linear-gradient(155deg,#5B7A3E,#3F5A2A); }

/* ---------------- Doctor cards ---------------- */
.doctor-toolbar{
  display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:space-between;
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:16px 20px; margin-bottom:32px;
}
.doctor-toolbar .filters{ display:flex; gap:10px; flex-wrap:wrap; }
.doctor-toolbar select{
  border:1px solid var(--line); border-radius:8px; padding:9px 12px; font-size:13.5px; font-weight:600; color:var(--ink); background:var(--ivory);
}
.result-count{ font-family:var(--font-mono); font-size:13px; color:var(--muted); }

.doctor-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:980px){ .doctor-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .doctor-grid{ grid-template-columns:1fr; } }

.doctor-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .2s ease, transform .2s ease;
  position:relative;
}
.doctor-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.doctor-top{ display:flex; gap:14px; padding:20px 20px 0; }
.avatar{
  width:64px; height:64px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:20px; color:#fff;
}
.doctor-meta h3{ font-size:17px; margin-bottom:3px; }
.doctor-meta .spec{ font-size:13px; color:var(--saffron-deep); font-weight:700; }
.doctor-meta .loc{ font-size:12.5px; color:var(--muted); margin-top:4px; }
.avail-pill{
  position:absolute; top:18px; right:18px;
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.04em;
  background:rgba(15,61,62,.06); color:var(--forest); border:1px solid rgba(15,61,62,.12);
  padding:4px 10px; border-radius:999px; display:flex; align-items:center; gap:5px;
}
.avail-pill.today{ background:#EAF6EA; color:#237A3E; border-color:#CBEACD; }
.avail-pill.today::before{ content:''; width:6px; height:6px; border-radius:50%; background:#2E9E4F; }

.doctor-body{ padding:16px 20px; display:flex; flex-direction:column; gap:12px; flex:1; }
.rating-row{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--ink); font-weight:700; }
.rating-row .stars{ color:var(--saffron); }
.rating-row span.count{ color:var(--muted); font-weight:500; }
.tags{ display:flex; gap:8px; flex-wrap:wrap; }
.tag{ font-family:var(--font-mono); font-size:11px; padding:4px 9px; border-radius:6px; background:var(--marigold-tint); color:var(--forest-deep); }

.mode-row{ display:flex; gap:8px; }
.mode-chip{
  flex:1; display:flex; flex-direction:column; align-items:center; gap:3px;
  border:1px solid var(--line); border-radius:10px; padding:8px 4px; font-size:11px; color:var(--muted); font-weight:700;
}
.mode-chip .ic{ font-size:15px; }
.mode-chip.on{ border-color:transparent; background:var(--forest); color:#fff; }
.mode-chip.on .ic{ filter:none; }

.doctor-foot{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 20px; border-top:1px solid var(--line);
}
.fee{ font-family:var(--font-mono); font-weight:600; }
.fee .amt{ font-size:17px; color:var(--forest-deep); }
.fee .per{ font-size:11px; color:var(--muted); }

/* ---------------- Why us / Steps ---------------- */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .why-grid{ grid-template-columns:1fr; } }
.why-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px; }
.why-card .num{ font-family:var(--font-mono); color:var(--saffron-deep); font-size:13px; margin-bottom:14px; display:block; }
.why-card h3{ font-size:19px; margin-bottom:10px; }

/* ---------------- Footer ---------------- */
.site-footer{ background:var(--forest-deep); color:#B9CBC8; padding:64px 0 24px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:40px; margin-bottom:48px; }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-grid h4{ color:#fff; font-family:var(--font-body); font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; }
.footer-grid ul li{ margin-bottom:10px; font-size:14px; }
.footer-grid ul li a:hover{ color:#fff; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding-top:22px; display:flex; justify-content:space-between; font-size:13px; flex-wrap:wrap; gap:10px; }
.footer-brand p{ color:#9FB6B3; margin-top:14px; max-width:280px; font-size:14px; }

/* ---------------- Page header (inner pages) ---------------- */
.page-head{ background:var(--forest); color:#fff; padding:42px 0; }
.page-head .container{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.page-head h1{ color:#fff; font-size:30px; }
.crumb{ font-family:var(--font-mono); font-size:12.5px; color:#9FB6B3; }
.crumb span{ color:var(--saffron); }

/* ---------------- Doctor profile ---------------- */
.profile-grid{ display:grid; grid-template-columns:2fr 1fr; gap:32px; align-items:start; }
@media (max-width:900px){ .profile-grid{ grid-template-columns:1fr; } }
.profile-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px; }
.profile-header{ display:flex; gap:20px; align-items:flex-start; margin-bottom:24px; }
.profile-header .avatar{ width:88px; height:88px; font-size:28px; border-radius:18px; }
.profile-header h2{ font-size:24px; margin-bottom:4px; }
.badge-row{ display:flex; gap:8px; margin-top:10px; flex-wrap:wrap; }
.info-list{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:20px 0; }
.info-list div{ background:var(--ivory); border-radius:10px; padding:14px 16px; }
.info-list div span{ display:block; font-family:var(--font-mono); font-size:11px; color:var(--muted); text-transform:uppercase; margin-bottom:4px; }
.info-list div strong{ font-size:15px; color:var(--forest-deep); }

.sticky-book{ position:sticky; top:96px; }

/* ---------------- Booking flow ---------------- */
.steps-bar{ display:flex; gap:0; margin-bottom:36px; }
.step-item{ flex:1; text-align:center; position:relative; }
.step-item::after{ content:''; position:absolute; top:16px; right:-50%; width:100%; height:2px; background:var(--line); z-index:0; }
.step-item:last-child::after{ display:none; }
.step-num{
  width:34px; height:34px; border-radius:50%; background:var(--paper); border:2px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-weight:600; font-size:13px;
  margin:0 auto 10px; position:relative; z-index:1; color:var(--muted);
}
.step-item.active .step-num, .step-item.done .step-num{ border-color:var(--saffron); background:var(--saffron); color:#fff; }
.step-item span.label{ font-size:12.5px; font-weight:700; color:var(--muted); }
.step-item.active span.label{ color:var(--forest-deep); }

.form-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-row.single{ grid-template-columns:1fr; }
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-size:13px; font-weight:700; color:var(--ink); }
.field input, .field select, .field textarea{
  border:1px solid var(--line); border-radius:9px; padding:11px 13px; font-size:14.5px; color:var(--ink); background:var(--ivory);
  outline:none; transition:border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--saffron); }

.slot-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
@media (max-width:560px){ .slot-grid{ grid-template-columns:repeat(3,1fr); } }
.slot{ border:1px solid var(--line); border-radius:8px; padding:10px 6px; text-align:center; font-family:var(--font-mono); font-size:13px; font-weight:600; background:var(--ivory); }
.slot.taken{ opacity:.35; text-decoration:line-through; cursor:not-allowed; }
.slot.selected{ background:var(--forest); color:#fff; border-color:var(--forest); }

.mode-select{ display:flex; gap:12px; }
.mode-option{ flex:1; border:1px solid var(--line); border-radius:12px; padding:16px; text-align:center; cursor:pointer; }
.mode-option input{ display:none; }
.mode-option .ic{ font-size:22px; margin-bottom:8px; }
.mode-option.checked{ border-color:var(--saffron); background:var(--marigold-tint); }

.summary-card{ background:var(--forest); color:#fff; border-radius:var(--radius-lg); padding:24px; }
.summary-card h4{ color:#fff; font-size:15px; margin-bottom:16px; }
.summary-row{ display:flex; justify-content:space-between; font-size:13.5px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.12); color:#CFE0DE; }
.summary-row strong{ color:#fff; }
.summary-total{ display:flex; justify-content:space-between; padding-top:16px; font-family:var(--font-mono); font-size:18px; font-weight:700; }

/* ---------------- Chat page ---------------- */
.chat-shell{ display:grid; grid-template-columns:320px 1fr; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:var(--paper); height:620px; }
@media (max-width:800px){ .chat-shell{ grid-template-columns:1fr; height:auto; } .chat-list{ display:none; } }
.chat-list{ border-right:1px solid var(--line); overflow-y:auto; }
.chat-list-item{ display:flex; gap:12px; padding:14px 18px; border-bottom:1px solid var(--line); cursor:pointer; }
.chat-list-item.active, .chat-list-item:hover{ background:var(--marigold-tint); }
.chat-list-item h5{ font-size:14px; margin:0 0 3px; font-weight:700; }
.chat-list-item p{ font-size:12.5px; margin:0; }
.chat-search{ padding:16px 18px; border-bottom:1px solid var(--line); }
.chat-search input{ width:100%; border:1px solid var(--line); border-radius:8px; padding:9px 12px; font-size:13.5px; background:var(--ivory); outline:none; }

.chat-main{ display:flex; flex-direction:column; }
.chat-head{ display:flex; align-items:center; justify-content:space-between; padding:14px 20px; border-bottom:1px solid var(--line); }
.chat-head-user{ display:flex; align-items:center; gap:12px; }
.chat-head-user h4{ font-size:15px; margin-bottom:2px; }
.chat-head-user span{ font-size:12px; color:#2E9E4F; font-weight:700; }
.chat-actions{ display:flex; gap:8px; }
.icon-btn{ width:36px; height:36px; border-radius:9px; border:1px solid var(--line); background:var(--ivory); display:flex; align-items:center; justify-content:center; font-size:15px; }
.icon-btn:hover{ border-color:var(--forest); }

.chat-body{ flex:1; overflow-y:auto; padding:22px; display:flex; flex-direction:column; gap:14px; background:
  repeating-linear-gradient(transparent, transparent 39px, rgba(15,61,62,.03) 40px); }
.msg{ max-width:64%; padding:11px 15px; border-radius:14px; font-size:14px; line-height:1.5; }
.msg.in{ background:var(--ivory); border:1px solid var(--line); align-self:flex-start; border-bottom-left-radius:4px; }
.msg.out{ background:var(--forest); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.msg-time{ font-family:var(--font-mono); font-size:10.5px; color:var(--muted); margin-top:4px; display:block; }
.msg.out .msg-time{ color:#B9CBC8; }
.chat-input{ display:flex; gap:10px; padding:16px 20px; border-top:1px solid var(--line); align-items:center; }
.chat-input input{ flex:1; border:1px solid var(--line); border-radius:999px; padding:12px 18px; outline:none; font-size:14px; background:var(--ivory); }

/* ---------------- Call pages ---------------- */
.call-shell{
  min-height:78vh; border-radius:24px; overflow:hidden; position:relative;
  background:linear-gradient(160deg, var(--forest-deep), var(--forest) 60%, #14504f);
  display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; text-align:center;
}
.call-shell::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 30% 20%, rgba(232,135,30,.18), transparent 45%);
}
.call-avatar{
  width:132px; height:132px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:42px; font-weight:700; color:#fff; margin-bottom:22px; position:relative;
  box-shadow:0 0 0 6px rgba(255,255,255,.08), 0 0 0 14px rgba(255,255,255,.04);
}
.call-shell h2{ color:#fff; font-size:26px; margin-bottom:6px; position:relative; }
.call-shell p.role{ color:#B9CBC8; margin-bottom:6px; position:relative; }
.call-timer{ font-family:var(--font-mono); font-size:15px; color:var(--saffron); margin-bottom:36px; position:relative; }
.call-controls{ display:flex; gap:16px; position:relative; }
.call-btn{ width:58px; height:58px; border-radius:50%; border:none; display:flex; align-items:center; justify-content:center; font-size:20px; background:rgba(255,255,255,.12); color:#fff; }
.call-btn:hover{ background:rgba(255,255,255,.2); }
.call-btn.end{ background:var(--rose); width:64px; height:64px; }
.call-btn.end:hover{ background:#B8402F; }
.call-btn.active{ background:var(--saffron); }
.video-frame{ width:100%; max-width:220px; aspect-ratio:3/4; border-radius:16px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); position:absolute; bottom:120px; right:28px; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:12px; color:#B9CBC8; }

/* ---------------- Utility ---------------- */
.mt-0{margin-top:0;}
.center{ text-align:center; }
.reveal{ opacity:0; transform:translateY(16px); transition:opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1); }
.reveal.in{ opacity:1; transform:none; }
.doctor-grid .reveal:nth-child(3n+1).in, .spec-grid .reveal:nth-child(6n+1).in, .why-grid .reveal:nth-child(3n+1).in, .testi-grid .reveal:nth-child(3n+1).in{ transition-delay:.03s; }
.doctor-grid .reveal:nth-child(3n+2).in, .spec-grid .reveal:nth-child(6n+2).in, .why-grid .reveal:nth-child(3n+2).in, .testi-grid .reveal:nth-child(3n+2).in{ transition-delay:.11s; }
.doctor-grid .reveal:nth-child(3n+3).in, .spec-grid .reveal:nth-child(6n+3).in, .why-grid .reveal:nth-child(3n+3).in, .testi-grid .reveal:nth-child(3n+3).in{ transition-delay:.19s; }
.spec-grid .reveal:nth-child(6n+4).in{ transition-delay:.27s; }
.spec-grid .reveal:nth-child(6n+5).in{ transition-delay:.35s; }
.spec-grid .reveal:nth-child(6n+6).in{ transition-delay:.43s; }

/* ==========================================================================
   Motion system — tasteful, restrained animation used across the site
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

@keyframes fadeInUp{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }
@keyframes fadeIn{ from{ opacity:0; } to{ opacity:1; } }
@keyframes floatY{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-9px); } }
@keyframes floatYSm{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-5px); } }
@keyframes pulseDot{ 0%,100%{ box-shadow:0 0 0 0 rgba(63,203,104,.55); } 70%{ box-shadow:0 0 0 6px rgba(63,203,104,0); } }
@keyframes shimmer{ 0%{ background-position:-200% 0; } 100%{ background-position:200% 0; } }
@keyframes spin{ to{ transform:rotate(360deg); } }
@keyframes blobDrift{ 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(-2%,3%) scale(1.05); } }

/* Navbar: subtle shadow once page scrolls */
.navbar{ transition:box-shadow .25s ease, height .25s ease; }
.navbar.is-scrolled{ box-shadow:0 4px 20px rgba(15,61,62,.08); }

/* Hero entrance */
.hero-copy > *{ animation:fadeInUp .7s cubic-bezier(.22,.61,.36,1) both; }
.hero-copy .hero-tag{ animation-delay:.02s; }
.hero-copy h1{ animation-delay:.08s; }
.hero-copy p.lead{ animation-delay:.14s; }
.hero-copy .search-card{ animation-delay:.20s; }
.hero-copy .hero-stats{ animation-delay:.26s; }
.hero-visual{ animation:fadeIn .9s ease .2s both; }
.hero-visual .device{ animation:floatY 6.5s ease-in-out infinite; }
.float-card{ animation:floatYSm 5.5s ease-in-out infinite; }
.float-card.fc-rating{ animation-delay:.6s; }
.float-card.fc-fee{ animation-delay:1.2s; }
.device-live::before{ animation:pulseDot 1.8s ease-out infinite; }

/* Buttons & interactive micro-motion */
.btn{ transition:transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover{ transform:translateY(-2px); }
.btn-primary:hover{ box-shadow:0 10px 24px rgba(232,135,30,.4); }
.doctor-card, .spec-card, .why-card, .testi-card{ transition:transform .28s cubic-bezier(.22,.61,.36,1), box-shadow .28s ease, border-color .28s ease; }
.mode-chip, .mode-option, .slot{ transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease; }
.slot:not(.taken):hover{ transform:translateY(-2px); border-color:var(--saffron); }
.mode-option:hover{ transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.spec-icon, .why-card .num{ transition:transform .25s ease; }
.spec-card:hover .spec-icon{ transform:scale(1.08) rotate(-3deg); }
.nav-links a{ transition:color .18s ease, border-color .18s ease; }
.icon-btn, .call-btn, .dc-btn{ transition:transform .18s ease, background .18s ease; }
.call-btn:hover, .icon-btn:hover{ transform:translateY(-2px); }

/* Count-up stat numbers */
.stat-count{ font-variant-numeric:tabular-nums; }

/* Page load fade for main content wrapper */
.page-fade{ animation:fadeIn .5s ease both; }

/* ==========================================================================
   About page
   ========================================================================== */
.about-hero{
  background:radial-gradient(ellipse at top right, rgba(232,135,30,.13), transparent 55%), var(--forest);
  color:#fff; padding:64px 0 72px; position:relative; overflow:hidden;
}
.about-hero .container{ display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
.about-hero h1{ color:#fff; font-size:clamp(30px,4vw,44px); margin-bottom:16px; }
.about-hero p{ color:#C9D8D6; font-size:16.5px; max-width:480px; }
.about-hero-visual{ position:relative; display:flex; justify-content:center; align-items:center; }
.about-orb{ width:100%; max-width:340px; aspect-ratio:1; border-radius:50%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center; position:relative; animation:floatY 7s ease-in-out infinite; }
.about-orb::before{ content:''; position:absolute; inset:14px; border-radius:50%; border:1px dashed rgba(255,255,255,.18); animation:spin 40s linear infinite; }
.about-orb .brand-mark{ width:96px; height:96px; font-size:42px; border-radius:26px; }
@media (max-width:900px){ .about-hero .container{ grid-template-columns:1fr; text-align:center; } .about-hero p{ margin-left:auto; margin-right:auto; } }

.stat-band{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:-46px; position:relative; z-index:2; }
@media (max-width:800px){ .stat-band{ grid-template-columns:1fr 1fr; } }
.stat-tile{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px 20px; text-align:center; box-shadow:var(--shadow-md); }
.stat-tile strong{ display:block; font-family:var(--font-display); font-size:clamp(24px,3vw,32px); color:var(--forest-deep); }
.stat-tile span{ font-size:12.5px; color:var(--muted); font-family:var(--font-mono); }

.timeline{ position:relative; padding-left:32px; border-left:2px solid var(--line); display:flex; flex-direction:column; gap:32px; }
.timeline-item{ position:relative; }
.timeline-item::before{ content:''; position:absolute; left:-40px; top:2px; width:14px; height:14px; border-radius:50%; background:var(--saffron); border:3px solid var(--ivory); box-shadow:0 0 0 2px var(--saffron); }
.timeline-item h4{ font-size:17px; margin-bottom:4px; }
.timeline-item span.yr{ font-family:var(--font-mono); font-size:12px; color:var(--saffron-deep); font-weight:700; }

.ethics-note{ display:flex; gap:16px; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:22px 24px; align-items:flex-start; }
.ethics-note .ic{ width:38px; height:38px; border-radius:10px; background:var(--marigold-tint); color:var(--saffron-deep); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ethics-note h4{ font-size:15px; margin-bottom:4px; }
.ethics-note p{ font-size:13.5px; margin:0; }

.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:900px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }
.team-card{ text-align:center; }
.team-card .avatar-ill{ width:110px; height:110px; border-radius:24px; margin:0 auto 14px; }
.team-card h4{ font-size:15px; margin-bottom:2px; }
.team-card span{ font-size:12.5px; color:var(--saffron-deep); font-family:var(--font-mono); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:32px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-card{ background:var(--forest); color:#fff; border-radius:var(--radius-lg); padding:32px 28px; position:relative; overflow:hidden; }
.contact-info-card::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 85% 10%, rgba(232,135,30,.22), transparent 50%); }
.contact-info-card h3{ color:#fff; font-size:20px; margin-bottom:6px; position:relative; }
.contact-info-card > p{ color:#B9CBC8; font-size:14px; margin-bottom:26px; position:relative; }
.contact-item{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; position:relative; }
.contact-item .ic{ width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-item h5{ color:#fff; font-size:14px; margin:0 0 2px; }
.contact-item p{ color:#B9CBC8; font-size:13px; margin:0; }
.contact-map{ margin-top:22px; border-radius:14px; overflow:hidden; border:1px solid rgba(255,255,255,.16); position:relative; height:150px; background:
  linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px) 0 0/26px 26px,
  linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0/26px 26px,
  rgba(255,255,255,.04);
}
.contact-map .pin{ position:absolute; top:50%; left:50%; transform:translate(-50%,-60%); width:30px; height:30px; border-radius:50% 50% 50% 0; background:var(--saffron); transform-origin:bottom; }
.contact-map .pin-label{ position:absolute; bottom:14px; left:50%; transform:translateX(-50%); font-family:var(--font-mono); font-size:11px; color:#B9CBC8; }

.faq-item{ border-bottom:1px solid var(--line); padding:18px 0; }
.faq-item summary{ cursor:pointer; font-weight:700; font-size:14.5px; color:var(--forest-deep); list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:'+'; font-size:20px; color:var(--saffron-deep); transition:transform .2s ease; }
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{ margin-top:10px; font-size:13.5px; }

/* ==========================================================================
   Auth pages (Login / Register)
   ========================================================================== */
.auth-shell{ min-height:calc(100vh - 76px - 36px); display:grid; grid-template-columns:1fr 1fr; }
@media (max-width:900px){ .auth-shell{ grid-template-columns:1fr; } }
.auth-brand{
  background:
    radial-gradient(ellipse at top right, rgba(232,135,30,.18), transparent 55%),
    linear-gradient(155deg,var(--forest),var(--forest-deep));
  color:#fff; padding:64px 56px; display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden;
}
@media (max-width:900px){ .auth-brand{ padding:44px 28px; } }
.auth-brand::before{ content:''; position:absolute; width:340px; height:340px; border-radius:50%; border:1px dashed rgba(255,255,255,.14); top:-80px; right:-100px; animation:spin 60s linear infinite; }
.auth-brand-top .brand{ color:#fff; }
.auth-brand h2{ color:#fff; font-size:clamp(24px,3vw,32px); margin:36px 0 14px; max-width:380px; position:relative; }
.auth-brand p{ color:#C9D8D6; max-width:360px; position:relative; }
.auth-brand-points{ display:flex; flex-direction:column; gap:14px; margin-top:28px; position:relative; }
.auth-brand-point{ display:flex; align-items:center; gap:12px; color:#DCEAE8; font-size:14px; font-weight:600; }
.auth-brand-point .ic{ width:30px; height:30px; border-radius:9px; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--saffron); }
.auth-brand-quote{ background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:14px; padding:18px 20px; position:relative; margin-top:auto; }
.auth-brand-quote p{ color:#EDEAE0; font-size:13.5px; font-style:italic; margin-bottom:10px; max-width:none; }
.auth-brand-quote span{ font-family:var(--font-mono); font-size:11.5px; color:#9FB6B3; }

.auth-form-side{ display:flex; align-items:center; justify-content:center; padding:56px 40px; }
.auth-form-wrap{ width:100%; max-width:400px; animation:fadeInUp .6s cubic-bezier(.22,.61,.36,1) both; }
.auth-form-wrap h1{ font-size:26px; margin-bottom:8px; }
.auth-form-wrap > p.sub{ margin-bottom:28px; font-size:14px; }
.auth-form-wrap .field{ margin-bottom:16px; }
.auth-row-between{ display:flex; justify-content:space-between; align-items:center; font-size:13px; margin:2px 0 22px; }
.check-row{ display:flex; align-items:center; gap:8px; color:var(--ink); }
.check-row input{ accent-color:var(--saffron); width:15px; height:15px; }
.link-saffron{ color:var(--saffron-deep); font-weight:700; }
.link-saffron:hover{ text-decoration:underline; }
.auth-divider{ display:flex; align-items:center; gap:12px; margin:22px 0; color:var(--muted); font-size:12px; font-family:var(--font-mono); }
.auth-divider::before, .auth-divider::after{ content:''; flex:1; height:1px; background:var(--line); }
.social-row{ display:flex; gap:12px; }
.social-btn{ flex:1; display:flex; align-items:center; justify-content:center; gap:8px; border:1px solid var(--line); border-radius:10px; padding:11px; font-weight:700; font-size:13.5px; color:var(--ink); background:var(--paper); }
.social-btn:hover{ border-color:var(--forest); transform:translateY(-2px); }
.auth-footnote{ text-align:center; margin-top:24px; font-size:13.5px; }
.role-toggle{ display:flex; gap:10px; margin-bottom:20px; }
.role-toggle label{ flex:1; border:1px solid var(--line); border-radius:10px; padding:11px; text-align:center; font-size:13px; font-weight:700; color:var(--muted); cursor:pointer; }
.role-toggle input{ display:none; }
.role-toggle input:checked + span{ color:var(--forest-deep); }
.role-toggle label:has(input:checked){ border-color:var(--saffron); background:var(--marigold-tint); color:var(--forest-deep); }
.role-toggle label.is-checked{ border-color:var(--saffron); background:var(--marigold-tint); color:var(--forest-deep); }
.pw-strength{ display:flex; gap:4px; margin-top:8px; }
.pw-strength span{ height:4px; flex:1; border-radius:2px; background:var(--line); transition:background .2s ease; }
.form-msg{ font-size:12.5px; padding:10px 12px; border-radius:8px; margin-bottom:16px; display:none; }
.form-msg.ok{ display:block; background:#EAF6EA; color:#237A3E; border:1px solid #CBEACD; }

@media (max-width:640px){
  .section{ padding:52px 0; }
  .profile-header{ flex-direction:column; }
  .info-list{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .mode-select{ flex-direction:column; }
}

/* ==========================================================================
   Icon system
   ========================================================================== */
.ic-svg{
  width:1.15em; height:1.15em;
  stroke:currentColor; fill:none;
  stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round;
  vertical-align:-0.22em; flex-shrink:0;
}
.ic-inline{ width:12px; height:12px; vertical-align:-1px; margin-right:3px; stroke-width:1.8; }
.ic-rotate{ transform:rotate(135deg); }
.spec-icon .ic-svg{ width:26px; height:26px; stroke-width:1.5; }
.mode-pill .ic .ic-svg{ width:22px; height:22px; }
.mode-option .ic-svg{ width:28px; height:28px; stroke-width:1.4; margin-bottom:8px; }
.call-controls .ic-svg{ width:22px; height:22px; }
.why-card .ic-svg{ width:22px; height:22px; }

/* ==========================================================================
   Premium hero device mockup (signature element)
   ========================================================================== */
.hero-visual{ display:flex; align-items:center; justify-content:center; background:none; border:none; padding:0; }
.device{
  position:relative; width:290px;
}
.device-frame{
  background:#0A2423;
  border-radius:34px;
  padding:12px;
  box-shadow:0 30px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
}
.device-notch{ width:60px; height:6px; background:rgba(255,255,255,.12); border-radius:4px; margin:0 auto 10px; }
.device-screen{
  background:linear-gradient(165deg,#123A39,#0B2827 70%);
  border-radius:22px; padding:18px 16px 22px; min-height:400px;
  display:flex; flex-direction:column; position:relative; overflow:hidden;
}
.device-screen::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 75% 15%, rgba(232,135,30,.22), transparent 45%);
}
.device-topline{ display:flex; justify-content:space-between; align-items:center; color:#B9CBC8; font-family:var(--font-mono); font-size:10.5px; margin-bottom:22px; position:relative; }
.device-live{ display:flex; align-items:center; gap:5px; color:#8FE6A6; }
.device-live::before{ content:''; width:6px; height:6px; border-radius:50%; background:#3FCB68; }
.device-avatar{
  width:84px; height:84px; border-radius:50%; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:26px; color:#fff;
  background:linear-gradient(155deg,var(--saffron),var(--saffron-deep));
  box-shadow:0 0 0 6px rgba(255,255,255,.06); position:relative;
}
.device-name{ text-align:center; color:#fff; font-family:var(--font-display); font-size:17px; margin-bottom:2px; position:relative; }
.device-role{ text-align:center; color:#9FB6B3; font-size:12px; margin-bottom:22px; position:relative; }
.device-timer{ text-align:center; font-family:var(--font-mono); color:var(--saffron); font-size:13px; letter-spacing:.05em; margin-bottom:28px; position:relative; }
.device-controls{ display:flex; justify-content:center; gap:12px; margin-top:auto; position:relative; }
.device-controls .dc-btn{
  width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.device-controls .dc-btn.end{ background:var(--rose); width:46px; height:46px; }
.device-controls .dc-btn .ic-svg{ width:18px; height:18px; }

.float-card{
  position:absolute; background:var(--paper); border-radius:14px; box-shadow:var(--shadow-lg);
  padding:12px 14px; display:flex; align-items:center; gap:10px; z-index:2;
}
.float-card.fc-chat{ top:36px; left:-46px; }
.float-card.fc-chat .ic{ width:34px; height:34px; border-radius:9px; background:var(--marigold-tint); color:var(--saffron-deep); display:flex; align-items:center; justify-content:center; }
.float-card.fc-chat h5{ font-size:12.5px; margin:0 0 2px; color:var(--forest-deep); }
.float-card.fc-chat p{ font-size:11px; margin:0; color:var(--muted); }
.float-card.fc-rating{ bottom:64px; left:-30px; flex-direction:column; align-items:flex-start; gap:4px; }
.float-card.fc-rating .stars-row{ display:flex; align-items:center; gap:6px; color:var(--saffron); }
.float-card.fc-rating .stars-row strong{ color:var(--forest-deep); font-size:14px; }
.float-card.fc-rating span{ font-size:10.5px; color:var(--muted); font-family:var(--font-mono); }
.float-card.fc-fee{ bottom:8px; right:-38px; }
.float-card.fc-fee .amt{ font-family:var(--font-mono); font-weight:700; color:var(--forest-deep); font-size:15px; }
.float-card.fc-fee span{ font-size:10.5px; color:var(--muted); display:block; }

@media (max-width:1080px){
  .float-card.fc-chat{ left:-16px; }
  .float-card.fc-rating{ left:-10px; }
  .float-card.fc-fee{ right:-10px; }
}
@media (max-width:900px){
  .hero-visual{ margin-top:36px; }
  .float-card{ display:none; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar{ background:var(--paper); border-bottom:1px solid var(--line); padding:22px 0; }
.trust-bar .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.trust-item{ display:flex; align-items:center; gap:10px; color:var(--forest-deep); }
.trust-item .ic-svg{ color:var(--saffron-deep); width:20px; height:20px; }
.trust-item span{ font-size:13px; font-weight:700; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }
.testi-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px; display:flex; flex-direction:column; gap:14px; }
.testi-stars{ color:var(--saffron); display:flex; gap:3px; }
.testi-stars .ic-svg{ width:15px; height:15px; fill:currentColor; }
.testi-card p.quote{ color:var(--ink); font-size:14.5px; line-height:1.7; }
.testi-who{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.testi-who .avatar{ width:42px; height:42px; font-size:14px; border-radius:10px; }
.testi-who h5{ font-size:13.5px; margin:0; color:var(--forest-deep); }
.testi-who span{ font-size:12px; color:var(--muted); }

/* ==========================================================================
   App promo band
   ========================================================================== */
.app-band{
  background:linear-gradient(155deg,var(--forest),var(--forest-deep));
  border-radius:28px; padding:56px; color:#fff; position:relative; overflow:hidden;
  display:grid; grid-template-columns:1.2fr .8fr; gap:32px; align-items:center;
}
.app-band::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 85% 20%, rgba(232,135,30,.2), transparent 50%); }
.app-band h2{ color:#fff; font-size:clamp(24px,3vw,32px); margin-bottom:14px; position:relative; }
.app-band p{ color:#B9CBC8; max-width:420px; margin-bottom:24px; position:relative; }
.app-badges{ display:flex; gap:12px; position:relative; }
.app-badge{ display:flex; align-items:center; gap:10px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); border-radius:12px; padding:10px 18px; }
.app-badge span.big{ display:block; font-weight:700; font-size:14px; }
.app-badge span.small{ display:block; font-size:10.5px; color:#9FB6B3; }
.app-visual{ position:relative; display:flex; justify-content:center; }
@media (max-width:800px){ .app-band{ grid-template-columns:1fr; padding:36px 24px; text-align:center; } .app-badges{ justify-content:center; } .app-band p{ margin-left:auto; margin-right:auto; } }

/* ==========================================================================
   Premium avatar ring (initials avatar upgrade)
   ========================================================================== */
.avatar{ position:relative; }
.avatar::after{
  content:''; position:absolute; inset:-3px; border-radius:inherit;
  border:1.5px solid rgba(255,255,255,.5); pointer-events:none;
}
.avatar-verified{
  position:absolute; bottom:-4px; right:-4px; width:20px; height:20px; border-radius:50%;
  background:#2E9E4F; border:2px solid var(--paper); display:flex; align-items:center; justify-content:center;
}
.avatar-verified .ic-svg{ width:10px; height:10px; stroke-width:2.4; color:#fff; }
.doctor-top .avatar, .profile-header .avatar, .call-avatar, .device-avatar, .chat-head-user .avatar{ overflow:visible; }

/* ==========================================================================
   Section rules / dividers for a more premium rhythm
   ========================================================================== */
.section-divider{ height:1px; background:linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent); }

/* ==========================================================================
   Illustrated doctor portraits — used in place of real stock photography,
   since real people's photos shouldn't be paired with invented doctor
   names, fees or credentials.
   ========================================================================== */
.avatar-ill{ background:var(--marigold-tint); overflow:hidden; }
.avatar-ill .ic-avatar{ width:100%; height:100%; display:block; }
.call-avatar.avatar-ill, .device-avatar.avatar-ill{ overflow:hidden; background:none; box-shadow:0 0 0 6px rgba(255,255,255,.08), 0 0 0 14px rgba(255,255,255,.04); }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.profile-header .avatar-ill{ box-shadow:0 8px 20px rgba(15,61,62,.18); }

