/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Mulish', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background .3s, color .3s;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.display-1 { font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.00; letter-spacing: -.03em; }
.display-2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; }
.display-3 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; }

.heading-1  { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
.heading-2  { font-size: clamp(1.25rem, 2.5vw, 1.8rem); font-weight: 700; line-height: 1.3; }
.heading-3  { font-size: 1.2rem; font-weight: 700; line-height: 1.35; }
.body-lg    { font-size: 1.125rem; font-weight: 400; line-height: 1.7; }
.body-md    { font-size: 1rem; font-weight: 400; line-height: 1.65; }
.body-sm    { font-size: .875rem; font-weight: 400; line-height: 1.6; }
.label      { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

.flex       { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap   { display: flex; align-items: center; gap: 12px; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.text-center { text-align: center; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
   .pricing-card .btn {
  margin-top: auto;
  background: var(--brand-teal);
  color: #fff;
  border: none;
    /* background: var(--brand-teal) !important; */
  color: #fff !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.pricing-card .btn:hover {
  opacity: 0.9;
    background: #1aa99a; 
}
.pricing-grid {
  display: flex;
  gap: 20px;
}

.pricing-card {
   display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
  border-radius: 24px;
}
.pricing-features {
  flex-grow: 1;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  font-family: 'Mulish', sans-serif; font-size: .9375rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: all .22s ease; white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:focus-visible { outline: 3px solid var(--border-focus); outline-offset: 3px; }

.btn-primary {
  background: var(--btn-primary-bg); color: var(--btn-primary-fg);
  border-color: var(--btn-primary-bg);
}
.btn-primary:hover { background: var(--btn-primary-hover); border-color: var(--btn-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-accent {
  background: var(--btn-accent-bg); color: var(--btn-accent-fg);
  border-color: var(--btn-accent-bg);
}
.btn-accent:hover { background: var(--btn-accent-hover); border-color: var(--btn-accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(91,101,221,.4); }

.btn-secondary {
  background: var(--btn-secondary-bg); color: var(--btn-secondary-fg);
  border-color: var(--btn-secondary-border);
}
.btn-secondary:hover { background: var(--bg-tertiary); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--text-inverse);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn-lg { padding: 16px 36px; font-size: 1.0625rem; }
.btn-sm { padding: 8px 20px; font-size: .8125rem; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: 50%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 5000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  transition: all .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner{
  display:flex;
  align-items:center;
  height:72px;
}
@media (min-width: 769px){
  .desktop-nowrap{
    white-space: nowrap;
  }
}
.nav-links{
  margin-left:auto;
  margin-right:24px;
  font-weight: 600;
  font-size: 1rem;
}
/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-royal) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: .95rem; letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo-text { font-weight: 800; font-size: 1.5rem; color: var(--text-primary); }
.nav-logo-text span { color: var(--brand-royal); }
.nav-logo-img{
  height: 22px;   /* apne logo ke hisab se adjust kar lena */
  width: auto;
  display: block;
}
/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; color: black;
  transition: all .18s; cursor: pointer; position: relative;
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-tertiary); }
.nav-link.active { color: var(--brand-royal); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--brand-royal); border-radius: 2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 8px; min-width: 220px;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: all .2s; transform-origin: top center;
  transform: translateX(-50%) translateY(-8px) scale(.97);
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0) scale(1);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; transition: all .15s;
}
.nav-dropdown-item:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.nav-dropdown-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
#productsDropdown .nav-dropdown-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(.97);
  transition: all .2s;
}

#productsDropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border-color);
  background: var(--bg-secondary); cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; transition: all .2s;
  color: var(--text-secondary);
}
.theme-toggle:hover { background: var(--bg-tertiary); color: var(--text-primary); transform: rotate(20deg); }

/* Mobile nav */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  cursor: pointer; border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm); background: var(--bg-secondary);
}
.nav-hamburger span { width: 20px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s; }

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary); z-index: 4999; padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1.1rem; color: var(--text-primary);
  cursor: pointer; border-bottom: 1px solid var(--border-color);
}
.mobile-nav-link:hover { background: var(--bg-tertiary); }

/* ============================================================
   PAGES (single-page routing)
   ============================================================ */
.page { display: none; padding-top: 12px; }
.page.active { display: block; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  background: var(--brand-dark);
  position: relative; overflow: hidden;
  min-height: 86vh; display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 110% 50%, rgba(91,101,221,.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at -10% 80%, rgba(61,155,233,.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(91,101,221,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,101,221,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; padding: 100px 0 40px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,101,221,.2); border: 1px solid rgba(91,101,221,.4);
  color: #A5ABEF; padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow-dot{
  color:#ff6b35;
  font-size:10px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
   animation:blinkDot 1.5s infinite;
}
@keyframes blinkDot{
  0%{
    opacity:1;
    transform:scale(1);
  }
  50%{
    opacity:0.3;
    transform:scale(1.6);
  }
  100%{
    opacity:1;
    transform:scale(1);
  }
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

.hero h1 { color: #FFFFFF; }
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #A5ABEF 0%, #5B65DD 40%, var(--brand-teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { color: rgba(255,255,255,.72); margin-top: 20px; max-width: 580px; }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: .8125rem; font-weight: 600; }
.hero-trust-icon { color: #F2572B; }

/* Hero right panel */
.hero-visual {
  position: relative; z-index: 1;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl); padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* Demo card */
.demo-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 16px; margin-bottom: 12px;
}
.demo-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; }
.demo-dot.red { background: #FF5F57; }
.demo-dot.yellow { background: #FFBD2E; }
.demo-dot.green { background: var(--brand-teal); }
.demo-label { color: rgba(255,255,255,.4); font-size: .75rem; font-weight: 600; margin-left: auto; }
.demo-content { color: rgba(255,255,255,.8); font-size: .8125rem; line-height: 1.6; }
.demo-tag {
  display: inline-block; background: rgba(91,101,221,.25);
  border: 1px solid rgba(91,101,221,.4); color: #A5ABEF;
  border-radius: 4px; padding: 1px 7px; font-size: .7rem; font-weight: 700;
  margin-right: 4px;
}
.demo-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 12px; }
.demo-stat {
  background: rgba(13,191,173,.08); border: 1px solid rgba(13,191,173,.2);
  border-radius: 8px; padding: 10px; text-align: center;
}
.demo-stat-num { font-size: 1.25rem; font-weight: 900; color: var(--brand-teal); line-height: 1; }
.demo-stat-label { font-size: .65rem; color: rgba(255,255,255,.5); margin-top: 3px; font-weight: 600; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; max-width: 680px; margin: -50px auto 56px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-ice); color: var(--brand-royal);
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
[data-theme="dark"] .section-eyebrow {
  background: rgba(91,101,221,.15); color: #818AEF;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all .25s; position: relative; overflow: hidden;
}
.card:hover { border-color: var(--brand-royal); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  /* background: var(--brand-ice); */
}
[data-theme="dark"] .card-icon { background: rgba(91,101,221,.15); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-secondary); }

.card-featured {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1E2F7A 100%);
  border-color: rgba(91,101,221,.3); color: white;
}
.card-featured p { color: rgba(255,255,255,.7); }
.card-featured .card-icon { background: rgba(91,101,221,.25); }

/* Product card */
.product-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all .3s; cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--brand-royal); }
.product-card-header { padding: 36px 36px 28px; }
.product-card-body { padding: 0 36px 36px; }
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-list {
  flex-grow: 1;
}
.product-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-live { background: rgba(13,191,173,.12); color: var(--brand-teal); border: 1px solid rgba(13,191,173,.3); }
.badge-soon { background: #FFECE8; color: var(--brand-royal); border: 1px solid rgba(235, 146, 74, 0.3); }
[data-theme="dark"] .badge-live { background: rgba(13,191,173,.15); }
[data-theme="dark"] .badge-soon { background: rgba(91,101,221,.15); color: #818AEF; }

/* Feature list */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-secondary);
}
.feature-list li::before {
  content: '✓'; color: #F2572B; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--brand-dark); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--brand-teal); line-height: 1; }
.stat-label { color: rgba(255,255,255,.6); font-size: .875rem; margin-top: 6px; font-weight: 600; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: flex; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 36px; transition: all .25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.featured {
  background: linear-gradient(160deg, var(--brand-dark) 0%, #1E2B6A 100%);
  border-color: var(--brand-royal); color: white;
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(91,101,221,.3);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.pricing-badge {
  display: inline-block; background: var(--brand-teal); color: #052620;
  padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.pricing-desc { font-size: .875rem; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.65); }
.pricing-price { margin-bottom: 28px; }
.pricing-amount { font-size: 3rem; font-weight: 900; line-height: 1; }
.pricing-period { font-size: .875rem; color: var(--text-secondary); margin-top: 4px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.55); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--text-secondary);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.8); }
.pricing-check { color: #F2572B; font-weight: 800; flex-shrink: 0; }
.pricing-divider { border: none; border-top: 1px solid var(--border-color); margin: 20px 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,.15); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px;
}
.testimonial-stars { color: #F59E0B; font-size: .875rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-royal));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: .875rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section{
  background:#ffffff;
  padding:100px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--border-color);
}

.cta-section::before{
  display:none;
}

.cta-section h2{
  color:var(--text-primary);
}

.cta-section p{
  color:var(--text-secondary);
  max-width:620px;
  margin:16px auto 0;
}
.btn-ghost{
  background:#ffffff;
  color:var(--brand-dark);
  border:2px solid var(--border-color);
}

.btn-ghost:hover{
  background:var(--bg-secondary);
  border-color:var(--brand-royal);
  color:var(--brand-royal);
}
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ============================================================
   PRODUCT PAGES — Scribe & Radiology
   ============================================================ */
.product-hero {
  background: var(--brand-dark);
  padding: 100px 0 80px; position: relative; overflow: hidden; 
}
.product-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(91,101,221,.3) 0%, transparent 65%);
}
.product-hero-content { position: relative; z-index: 1; }

.workflow-step {
  display: flex; gap: 20px; align-items: flex-start; padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}
.workflow-step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-royal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .9rem;
}
.step-content h4 { margin-bottom: 6px; }
.step-content p { color: var(--text-secondary); font-size: .9rem; }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resource-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden; transition: all .25s;
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand-royal); }
.resource-thumb {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.resource-body { padding: 20px 24px 24px; }
.resource-type {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 10px;
}
.type-video { background: rgba(239,68,68,.1); color: #EF4444; }
.type-pdf   { background: rgba(249,115,22,.1); color: #F97316; }
.type-guide { background: rgba(59,130,246,.1); color: #3B82F6; }
.type-webinar { background: rgba(168,85,247,.1); color: #A855F7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: all .25s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-royal) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 1.5rem;
}
.team-name { font-weight: 800; margin-bottom: 4px; }
.team-role { color: var(--brand-royal); font-size: .875rem; font-weight: 700; margin-bottom: 10px; }
.team-bio { color: var(--text-secondary); font-size: .8125rem; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  column-gap: 100px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  margin-top: 12px;
  line-height: 1.8;
}

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: .95rem;
  white-space: nowrap;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  padding: 6px 0;
  cursor: pointer;
  transition: all .2s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.5);
  transition: all .2s;
  font-size: .875rem;
}

.footer-social-btn:hover {
  background: rgba(255,255,255,.1);
  color: white;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.input-group { margin-bottom: 20px; }
.input-label { display: block; font-size: .875rem; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.input-field {
  width: 100%; padding: 11px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color); background: var(--bg-primary);
  color: var(--text-primary); font-family: 'Mulish', sans-serif; font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
}
.input-field:focus { outline: none; border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(91,101,221,.15); }
.input-field::placeholder { color: var(--text-muted); }

/* ============================================================
   MODAL / SIGNUP
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,14,34,.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 48px 40px;
  max-width: 520px; width: 100%; position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { transform: translateY(20px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  cursor: pointer; font-size: 1.1rem; color: var(--text-secondary); transition: all .2s;
}
.modal-close:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.modal-plan-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  background: var(--brand-ice); color: var(--brand-royal);
  font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}
[data-theme="dark"] .modal-plan-badge { background: rgba(91,101,221,.2); }

/* ============================================================
   NOTIFICATION TOASTS
   ============================================================ */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; min-width: 280px;
  box-shadow: var(--shadow-lg);
  animation: toastIn .3s ease; font-size: .875rem; font-weight: 600;
}
@keyframes toastIn { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.toast.success { border-left: 3px solid var(--brand-teal); }
.toast-icon { font-size: 1.1rem; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--border-color); margin: 48px 0; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 800; letter-spacing: .04em;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  padding: 5px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-color); font-size: .8125rem; font-weight: 600;
  color: var(--text-secondary); cursor: pointer; transition: all .18s;
}
.chip:hover, .chip.active {
  border-color: var(--brand-royal); color: var(--brand-royal);
  background: var(--brand-ice);
}
[data-theme="dark"] .chip:hover, [data-theme="dark"] .chip.active {
  background: rgba(91,101,221,.12); color: #818AEF;
}

.bg-secondary-section { background: var(--bg-secondary); }

/* Roadmap */
.roadmap-timeline { display: flex; flex-direction: column; gap: 0; }
.roadmap-item { display: grid; grid-template-columns: 160px 1px 1fr; gap: 0 28px; align-items: start; padding: 24px 0; }
.roadmap-date { text-align: right; font-weight: 700; font-size: .875rem; color: var(--text-muted); padding-top: 2px; }
.roadmap-line { background: var(--border-color); position: relative; }
.roadmap-dot {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  border: 3px solid var(--bg-primary); background: var(--brand-royal);
}
.roadmap-dot.live { background: var(--brand-teal); }
.roadmap-content { padding-left: 8px; }
.roadmap-content h4 { margin-bottom: 4px; }
.roadmap-content p { color: var(--text-secondary); font-size: .875rem; }

/* Tab system */
.tab-list { display: flex; gap: 4px; border-bottom: 2px solid var(--border-color); margin-bottom: 32px; }
.tab-btn {
  padding: 10px 20px; font-weight: 700; font-size: .9rem;
  color: var(--text-secondary); cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .2s; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: none; border-left: none; border-right: none; border-top: none;
  font-family: 'Mulish', sans-serif;
}
.tab-btn:hover { color: var(--text-primary); background: var(--bg-secondary); }
.tab-btn.active { color: var(--brand-royal); border-bottom-color: var(--brand-royal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* =================================
   ABOUT PAGE RESPONSIVE
================================= */

.about-story-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:80px;
  align-items:center;
}

.about-stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

@media (max-width:768px){

  .about-story-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .about-stats-grid .card{
    padding:20px;
  }

  .about-stats-grid h3{
    font-size:1.4rem !important;
  }

}

@media (max-width:480px){

  .about-stats-grid{
    grid-template-columns:1fr;
  }

}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-3px); }
}
/* ================================
   FIX: ANVIQ Radiologist Mobile View
================================ */

@media (max-width: 768px) {

  .pricing-grid {
    display: flex;
    flex-direction: column;   /* stack cards */
    gap: 16px;
    padding: 0 12px;
  }

  .pricing-card {
    width: 100%;
    min-width: 100%;
    padding: 24px;
  }

  .pricing-card.featured {
    transform: none !important;   /* zoom remove on mobile */
  }

  .pricing-amount {
    font-size: 2.2rem;   /* better fit */
  }

  .pricing-features {
    gap: 10px;
  }

  .pricing-feature {
    font-size: 0.85rem;
  }

  .pricing-card .btn {
    width: 100%;   /* full width button */
    justify-content: center;
  }
  .hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(91,101,221,.2);
  border:1px solid rgba(91,101,221,.4);
  color:#A5ABEF;
  padding:6px 14px;
  border-radius:100px;
  font-size:.8125rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}


}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-right { margin-left: auto; }
  .nav-hamburger {
    display: flex !important;
    flex-shrink: 0;
    position: relative;
    z-index: 5001;
    background: #ffffff;
    border-color: #d9deeb;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .nav-hamburger span { background: #122056; }
  .hero-split { display: block; }
  .hero-visual { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .roadmap-item { grid-template-columns: 100px 1px 1fr; }
}
body.nav-open {
  position: fixed;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .roadmap-item { grid-template-columns: 1fr; }
  .roadmap-date, .roadmap-line { display: none; }
  .roadmap-content { padding: 0; border-left: 3px solid var(--brand-royal); padding-left: 16px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* ============================================================
   LOGO MARK SVG (inline)
   ============================================================ */
.logo-svg { width: 36px; height: 36px; }
body.nav-open {
  overflow: hidden;
  height: 100vh;
}
#page-scribe .scribe-workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}


@media (max-width: 768px) {
  #page-scribe .scribe-workflow {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.disabled-btn {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
