/* =============================================================
   AskCampus — Light theme override
   Loaded AFTER askcampus.css. Forces light theme across all
   marketing pages (about, contact, pricing, security, solutions/*,
   product/*). Index uses its own inline light styles.
   ============================================================= */

:root { color-scheme: light; }

html, body {
  background: #ffffff !important;
  color: #0F172A !important;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ===== Mobile-safety: prevent any horizontal overflow ===== */
html, body { max-width: 100vw; overflow-x: hidden; }
img, video, iframe, table { max-width: 100%; height: auto; }
@media (max-width: 768px) {
  /* Nav: 2-col layout (logo | hamburger) — hide everything else */
  .ac-nav .nav-inner {
    grid-template-columns: auto auto !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }
  .ac-nav .nav-actions { display: none !important; }
  .ac-nav .nav-links { display: none !important; }
  .ac-nav .nav-hamburger { display: flex !important; }
  /* Tighter container padding on phones */
  .container, .container-wide, .container-narrow { padding-left: 16px !important; padding-right: 16px !important; }
}
/* Anything inline-styled with rigid grid-template-columns: collapse to 1 col on phones */
@media (max-width: 700px) {
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(5"],
  [style*="grid-template-columns: repeat(6"],
  [style*="grid-template-columns:repeat(6"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
  }
  /* Tables that don't fit: allow horizontal scroll inside their wrapper */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
.display-font { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }

/* ===== NAV ===== */
.ac-nav {
  background: rgba(255,255,255,.94) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #E2E8F0 !important;
}
.ac-nav .nav-logo,
.ac-nav .nav-logo:hover { color: #0F172A !important; }
.ac-nav .nav-link { color: #475569 !important; background: transparent !important; }
.ac-nav .nav-link:hover { color: #0F172A !important; background: #F1F5F9 !important; }
.ac-nav .nav-link svg { color: #94A3B8 !important; opacity: 1 !important; }
.ac-nav .nav-sign { color: #475569 !important; background: transparent !important; }
.ac-nav .nav-sign:hover { color: #0F172A !important; background: #F1F5F9 !important; }
.ac-nav .nav-hamburger span { background: #0F172A !important; }
/* ===== Click-to-toggle dropdowns (enterprise UX) =====
   Show on hover OR when JS adds `.open`. Closes the gap so you can
   slide the cursor onto the dropdown without losing hover. */
.ac-nav .has-dropdown { position: relative; }
.ac-nav .has-dropdown .nav-link { cursor: pointer; user-select: none; }
.ac-nav .has-dropdown > .nav-link svg { transition: transform .2s ease; }
.ac-nav .has-dropdown.open > .nav-link svg { transform: rotate(180deg); }
.ac-nav .has-dropdown.open > .nav-link {
  background: #F1F5F9 !important;
  color: #0F172A !important;
}

.nav-dropdown {
  background: #ffffff !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 18px 40px rgba(15,23,42,.10) !important;
  border-radius: 12px !important;
  top: 100% !important;
  margin-top: 0 !important;
  padding: 8px !important;
  display: none !important;
}
/* Invisible bridge so cursor doesn't lose hover crossing the gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
  background: transparent;
}
/* CLICK-ONLY: dropdown opens via JS .open class, stays until click-outside.
   We deliberately DO NOT show on :hover — hover-only menus close when the
   cursor crosses the gap. This is the enterprise pattern (Stripe, Vercel). */
/* Show on hover OR when JS adds .open. JS hover-intent extends "open"
   for 250ms after cursor leaves so the user can travel to the menu. */
.ac-nav .has-dropdown.open > .nav-dropdown,
.ac-nav .has-dropdown:hover > .nav-dropdown { display: block !important; }
/* Hover bridge: extend hover area below trigger so cursor doesn't drop out */
.ac-nav .has-dropdown { padding-bottom: 14px; margin-bottom: -14px; }

.nav-dropdown .dd-link, .dd-link {
  display: flex !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.nav-dropdown .dd-link, .dd-link {
  color: #1E293B !important;
  background: transparent !important;
}
.nav-dropdown .dd-link:hover, .dd-link:hover {
  background: #F8FAFC !important;
  color: #1D4ED8 !important;
}
.mobile-menu {
  background: #ffffff !important;
  border-bottom: 1px solid #E2E8F0 !important;
}
.mobile-link {
  color: #1E293B !important;
  border-bottom: 1px solid #E2E8F0 !important;
}
.mobile-link:hover { background: #F8FAFC !important; color: #1D4ED8 !important; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all .2s ease; border: none; }
.btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%) !important;
  color: #ffffff !important;
  padding: 13px 26px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  border: 1px solid rgba(29,78,216,.4) !important;
  box-shadow: 0 6px 16px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37,99,235,.36), inset 0 1px 0 rgba(255,255,255,.18) !important;
  filter: brightness(1.05);
  color: #ffffff !important;
}
.btn-lg { padding: 16px 32px !important; font-size: 16px !important; border-radius: 12px !important; }
.btn-sm { padding: 9px 18px !important; font-size: 13px !important; border-radius: 8px !important; }
.btn-ghost {
  background: #ffffff !important;
  color: #0F172A !important;
  border: 1px solid #CBD5E1 !important;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}
.btn-ghost::before { display: none !important; }
.btn-ghost:hover {
  border-color: #1D4ED8 !important;
  color: #1D4ED8 !important;
  background: #F8FAFC !important;
  transform: translateY(-1px);
}
.btn-trial {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 24px; font-size: 15px; font-weight: 600;
  color: #1D4ED8 !important;
  background: rgba(37,99,235,.08) !important;
  border: 1px solid rgba(37,99,235,.18) !important;
  border-radius: 10px;
}
.btn-trial:hover { background: rgba(37,99,235,.14) !important; }

/* ===== NAV sizing (defeat any base nav padding/height conflicts) ===== */
.ac-nav { position: fixed !important; top: 0; left: 0; right: 0; z-index: 100; height: 72px; }
.ac-nav .nav-inner { height: 72px; display: flex; align-items: center; }
body { padding-top: 0 !important; }

/* ===== HERO (extra top clearance below fixed nav) ===== */
.pg-hero {
  padding: 168px 0 96px !important;
  text-align: center;
  background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%) !important;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .pg-hero { padding: 132px 0 64px !important; }
}
.pg-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37,99,235,.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 30%, rgba(16,185,129,.06) 0%, transparent 60%);
}
.pg-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 20%, transparent 80%);
}
.pg-hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.pg-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.20);
  border-radius: 9999px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: #1D4ED8;
  margin-bottom: 22px;
}
.pg-eyebrow .new { background: #1D4ED8; color: #fff; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 9999px; }
.pg-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 800; color: #0F172A !important;
  letter-spacing: -.04em; line-height: 1.06;
  margin: 0 auto 22px; max-width: 880px;
}
.pg-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pg-hero .lede { font-size: 19px; line-height: 1.65; color: #475569 !important; max-width: 660px; margin: 0 auto 32px; }
.pg-hero .lede b { color: #0F172A !important; font-weight: 700; }
.pg-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; position: relative; z-index: 2; }
.pg-hero-trust { display: inline-flex; gap: 26px; align-items: center; flex-wrap: wrap; justify-content: center; padding-top: 18px; position: relative; z-index: 2; }
.pg-hero-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #64748B !important; font-weight: 500; }
.pg-hero-trust svg { color: #10B981 !important; flex-shrink: 0; }

/* ===== SECTIONS ===== */
section.pg { padding: 96px 0; background: #ffffff; }
section.pg.tight { padding: 64px 0; }
section.pg.sec-soft { background: #F8FAFC !important; }
section.pg.sec-white { background: #ffffff !important; }
.sec-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.sec-head .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,235,.08) !important;
  border: 1px solid rgba(37,99,235,.18) !important;
  border-radius: 9999px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: #1D4ED8 !important;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800; color: #0F172A !important;
  letter-spacing: -.035em; line-height: 1.1;
}
.sec-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sec-head p { font-size: 17px; color: #475569 !important; line-height: 1.7; margin: 18px auto 0; max-width: 660px; }

/* ===== FEATURE GRID ===== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-grid.two { grid-template-columns: repeat(2, 1fr); }
.feat-card {
  background: #ffffff !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px; padding: 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  color: #0F172A;
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: #BFDBFE !important;
  box-shadow: 0 14px 30px rgba(15,23,42,.06) !important;
}
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 16px; color: #1D4ED8 !important;
}
.feat-card h3 { font-size: 18px; font-weight: 700; color: #0F172A !important; margin-bottom: 10px; letter-spacing: -.01em; }
.feat-card p { font-size: 14.5px; color: #475569 !important; line-height: 1.7; }
.feat-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
.feat-card ul li { font-size: 13.5px; color: #334155 !important; padding: 5px 0 5px 22px; position: relative; line-height: 1.55; }
.feat-card ul li::before { content: '✓'; position: absolute; left: 0; top: 4px; color: #10B981; font-weight: 800; }
@media (max-width: 900px) { .feat-grid, .feat-grid.two { grid-template-columns: 1fr; } }

/* ===== STAT BAND (override base dark) ===== */
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 48px 24px;
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  box-shadow: none !important;
}
.stat-band .stat-item {
  background: transparent !important;
  text-align: center;
  padding: 0 16px !important;
  border: none !important;
  border-right: 1px solid #E2E8F0 !important;
  border-radius: 0 !important;
  color: #0F172A !important;
}
.stat-band .stat-item:last-child { border-right: none !important; }
.stat-band .stat-item:hover { background: transparent !important; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 800; color: #0F172A !important; letter-spacing: -.03em; line-height: 1; }
.stat-num em { font-style: normal; color: #1D4ED8; }
.stat-num small { font-size: 22px; font-weight: 700; color: #1D4ED8; }
.stat-label { font-size: 13px; color: #64748B !important; margin-top: 8px; font-weight: 500; }
@media (max-width: 800px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .stat-band .stat-item { border-right: none !important; padding: 18px 0 !important; border-bottom: 1px solid #E2E8F0 !important; }
  .stat-band .stat-item:nth-last-child(-n+2) { border-bottom: none !important; }
}

/* ===== TWO-COL ROW ===== */
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.row-2 + .row-2 { margin-top: 96px; }
.row-2.flip > div:first-child { order: 2; }
.row-2 h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: #0F172A !important; letter-spacing: -.025em; margin-bottom: 14px; }
.row-2 p { font-size: 16px; color: #475569 !important; line-height: 1.7; margin-bottom: 18px; }
.row-2 ul { list-style: none; padding: 0; margin: 0; }
.row-2 ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #1E293B !important; padding: 7px 0; }
.row-2 ul li::before { content: '✓'; color: #1D4ED8; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.row-visual {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px;
  padding: 32px;
  min-height: 320px;
  display: grid; place-items: center;
}
.row-visual .mini-dash { width: 100%; }
.row-visual .mini-dash h5 { font-size: 13px; font-weight: 700; color: #0F172A !important; margin-bottom: 12px; }
.row-visual .mini-row {
  display: flex; justify-content: space-between;
  padding: 10px 12px; background: #ffffff !important;
  border: 1px solid #E2E8F0 !important; border-radius: 8px;
  font-size: 13px; margin-bottom: 8px; color: #475569 !important;
}
.row-visual .mini-row .v { font-weight: 700; color: #1D4ED8 !important; }
@media (max-width: 900px) { .row-2 { grid-template-columns: 1fr; gap: 32px; } .row-2.flip > div:first-child { order: 0; } }

/* ===== TESTIMONIALS (override dark base) ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #ffffff !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 28px !important;
  color: #0F172A !important;
  box-shadow: none !important;
}
.testi-card:hover { transform: translateY(-3px); border-color: #BFDBFE !important; box-shadow: 0 14px 30px rgba(15,23,42,.06) !important; }
.testi-card .stars { color: #F59E0B !important; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-stars { color: #F59E0B !important; }
.testi-card .quote, .testi-quote {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #1E293B !important;
  margin-bottom: 22px !important;
  font-style: normal !important;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50% !important;
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE) !important;
  display: grid; place-items: center;
  font-weight: 800 !important; color: #1D4ED8 !important;
  font-size: 14px !important;
}
.testi-name { font-size: 14px !important; font-weight: 700 !important; color: #0F172A !important; }
.testi-role { font-size: 12.5px !important; color: #64748B !important; margin-top: 1px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #E2E8F0 !important;
  border-radius: 12px;
  padding: 18px 22px;
  background: #ffffff !important;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: #BFDBFE !important; }
.faq-item.open { border-color: #BFDBFE !important; box-shadow: 0 6px 20px rgba(15,23,42,.04); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; color: #0F172A !important; gap: 16px; }
.faq-q .arrow { font-size: 22px; color: #1D4ED8; transition: transform .25s; line-height: 1; }
.faq-item.open .arrow { transform: rotate(45deg); }
.faq-a { display: none; padding-top: 14px; border-top: 1px solid #E2E8F0; margin-top: 14px; font-size: 15px; color: #475569 !important; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: #475569 !important; font-size: 15px !important; }

/* ===== CTA BAND (override base dark) ===== */
section .cta-band,
.cta-band {
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 50%, #2563EB 100%) !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 72px 48px !important;
  text-align: center !important;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,.18), transparent 60%) !important;
  pointer-events: none !important;
  opacity: 1 !important;
  border-radius: 24px !important;
}
.cta-band::after { display: none !important; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -.035em !important;
  line-height: 1.1 !important;
  max-width: 720px;
  margin: 0 auto 16px !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}
.cta-band p {
  font-size: 17px !important;
  color: rgba(255,255,255,.9) !important;
  max-width: 540px;
  margin: 0 auto 32px !important;
  line-height: 1.6 !important;
}
.cta-band .actions, .cta-band-actions {
  display: inline-flex !important;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-band .btn-white {
  background: #ffffff !important;
  color: #1D4ED8 !important;
  padding: 14px 28px !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: none !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.cta-band .btn-white:hover { background: #F8FAFC !important; transform: translateY(-1px); }
.cta-band .btn-outline-w {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.5) !important;
  padding: 14px 28px !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}
.cta-band .btn-outline-w:hover { background: rgba(255,255,255,.1) !important; border-color: #ffffff !important; }
.cta-band .micro { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.7) !important; }

/* ===== FOOTER (override dark base) ===== */
.ac-footer {
  background: #F8FAFC !important;
  border-top: 1px solid #E2E8F0 !important;
  padding: 72px 0 32px !important;
  color: #475569 !important;
}
.ac-footer * { color: inherit; }
.ft-grid { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 36px; margin-bottom: 48px; }
.ft-brand .nav-logo { color: #0F172A !important; }
.ft-brand .nav-logo span { background: linear-gradient(135deg,#3B82F6,#1D4ED8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.ft-brand p { font-size: 14px !important; color: #64748B !important; line-height: 1.7 !important; margin-top: 14px; max-width: 320px; }
.ft-social { display: flex; gap: 10px; margin-top: 20px; }
.ft-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: #ffffff !important; border: 1px solid #E2E8F0 !important;
  display: grid; place-items: center;
  color: #475569 !important; font-size: 13px;
  text-decoration: none;
}
.ft-social a:hover { border-color: #1D4ED8 !important; color: #1D4ED8 !important; }
.ft-col h4 { font-size: 13px !important; font-weight: 800 !important; color: #0F172A !important; letter-spacing: -.01em !important; margin-bottom: 16px !important; text-transform: none !important; }
.ft-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.ft-col li { padding: 0 !important; }
.ft-col a { font-size: 13px !important; color: #64748B !important; text-decoration: none; }
.ft-col a:hover { color: #1D4ED8 !important; }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  padding-top: 28px; border-top: 1px solid #E2E8F0 !important;
  font-size: 12px; color: #64748B !important;
}
.ft-bottom span { color: #64748B !important; }
.ft-bottom .ok {
  padding: 4px 10px;
  background: rgba(16,185,129,.1) !important;
  color: #047857 !important;
  border: 1px solid rgba(16,185,129,.2) !important;
  border-radius: 9999px;
  font-weight: 600;
}
@media (max-width: 1200px) { .ft-grid { grid-template-columns: 1.4fr repeat(3, 1fr) !important; } }
@media (max-width: 800px)  { .ft-grid { grid-template-columns: repeat(2, 1fr) !important; } .ft-brand { grid-column: 1 / -1; } }
@media (max-width: 480px)  { .ft-grid { grid-template-columns: 1fr !important; } }

/* ===== Headquarters block (readable on light background) ===== */
.ac-footer .ft-hq {
  margin-top: 22px;
  padding: 14px 16px;
  background: #ffffff !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 10px;
  max-width: 320px;
}
.ac-footer .ft-hq-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.ac-footer .ft-hq-line1 { font-size: 13px !important; color: #0F172A !important; font-weight: 600 !important; line-height: 1.5; }
.ac-footer .ft-hq-line2 { font-size: 12.5px !important; color: #475569 !important; line-height: 1.55; margin-top: 2px; }

/* Pills inline (NEW / count badges) inside footer links */
.ac-footer .ft-pill {
  display: inline-block;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 1px 7px;
  border-radius: 9999px;
  margin-left: 6px;
  vertical-align: 1px;
  letter-spacing: .02em;
}
.ac-footer .ft-pill.new   { background: #10B981 !important; color: #ffffff !important; }
.ac-footer .ft-pill.count { background: #1D4ED8 !important; color: #ffffff !important; }
.ac-footer .ft-note { font-size: 12px !important; color: #64748B !important; line-height: 1.5; padding-top: 2px; }
.ac-footer .ft-explore { font-size: 12.5px !important; color: #047857 !important; font-weight: 700 !important; }
.ac-footer .ft-explore:hover { color: #065F46 !important; }
.ac-footer .ft-divider { border-top: 1px solid #E2E8F0; padding-top: 10px !important; margin-top: 6px; }

/* ===== PRICING-specific ===== */
.plan-card {
  background: #ffffff !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 32px !important;
  color: #0F172A !important;
  box-shadow: 0 4px 12px rgba(15,23,42,.04) !important;
  position: relative;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(15,23,42,.08) !important; }
.plan-card.popular {
  border: 2px solid #1D4ED8 !important;
  background: linear-gradient(180deg, #EFF6FF 0%, #ffffff 30%) !important;
}
.popular-badge { background: linear-gradient(135deg,#2563EB,#1D4ED8) !important; color: #fff !important; }
.plan-name { color: #475569 !important; }
.plan-price, .plan-card .price-amount, .price-amount { color: #0F172A !important; }
.plan-card .price-period, .price-period { color: #64748B !important; }
.plan-card ul li, .plan-features li { color: #1E293B !important; }
.billing-toggle { color: #0F172A; }
.billing-label { color: #475569 !important; }
.billing-label.active { color: #0F172A !important; }
.toggle-track { background: #E2E8F0 !important; border: 1px solid #CBD5E1 !important; }
.toggle-track.annual { background: #1D4ED8 !important; border-color: #1D4ED8 !important; }

/* ===== Misc text safety ===== */
section.pg p, section.pg li, section.pg span:not(.pg-eyebrow):not(.eyebrow) { color: inherit; }
section.pg { color: #0F172A; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.18);
  border-radius: 9999px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: #1D4ED8 !important;
  letter-spacing: .04em; text-transform: uppercase;
}

/* ===== Footer bare-tag overrides (defeat base "footer p" rules) ===== */
footer.ac-footer p,
.ac-footer p,
.ft-brand p { color: #64748B !important; font-size: 14px !important; line-height: 1.7 !important; }
footer.ac-footer h4,
.ac-footer h4,
.ft-col h4 { color: #0F172A !important; font-size: 13px !important; font-weight: 800 !important; }
footer.ac-footer ul li,
footer.ac-footer ul li a,
.ac-footer ul li,
.ac-footer ul li a,
.ft-col li,
.ft-col li a { color: #64748B !important; font-size: 13px !important; }
footer.ac-footer ul li a:hover,
.ft-col li a:hover { color: #1D4ED8 !important; }
footer.ac-footer .nav-logo,
.ac-footer .nav-logo { color: #0F172A !important; }
footer.ac-footer .nav-logo span,
.ac-footer .nav-logo span {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ===== SARA — AI chat widget (AskCampus assistant) ===== */
.sara-fab {
  position: fixed !important;
  bottom: 24px !important; right: 24px !important;
  z-index: 1001 !important;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #F472B6 0%, #FB7185 50%, #F97316 100%) !important;
  color: #ffffff !important;
  display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  box-shadow: 0 12px 28px rgba(244,114,182,.45), 0 4px 12px rgba(0,0,0,.18) !important;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.sara-fab::after {
  content: ''; position: absolute; bottom: 4px; right: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #10B981; border: 2px solid #ffffff;
}
.sara-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(244,114,182,.55), 0 6px 16px rgba(0,0,0,.22) !important; }

/* small unread dot on the FAB */
.sara-fab .sara-fab-badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9999px; background: #EF4444; color: #ffffff;
  font-size: 11px; font-weight: 800; line-height: 18px;
  border: 2px solid #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Speech-bubble teaser that pops next to the Sara FAB */
.sara-teaser {
  position: fixed;
  bottom: 28px; right: 96px;
  z-index: 1000;
  width: 380px; max-width: calc(100vw - 32px);
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 22px 22px 0 22px;
  box-shadow: 0 18px 44px rgba(15,23,42,.16), 0 6px 16px rgba(15,23,42,.08);
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  opacity: 0; transform: translateY(8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  overflow: hidden;
}
.sara-teaser.show { opacity: 1; transform: translateY(0); pointer-events: auto; animation: saraTeaserPop .55s cubic-bezier(.2,.9,.25,1.2); }
@keyframes saraTeaserPop {
  0%   { opacity: 0; transform: translateY(20px) scale(.94); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.sara-teaser::before {
  content: ''; position: absolute;
  right: -7px; bottom: 22px;
  width: 14px; height: 14px;
  background: #ffffff;
  border-right: 1px solid #E2E8F0;
  border-top: 1px solid #E2E8F0;
  transform: rotate(45deg);
}
.sara-teaser-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.sara-teaser-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #F472B6 0%, #FB7185 50%, #F97316 100%);
  display: grid; place-items: center;
  color: #ffffff; font-weight: 800; font-size: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0; position: relative;
}
.sara-teaser-avatar::after {
  content: ''; position: absolute; bottom: 1px; right: 1px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #10B981; border: 3px solid #ffffff;
}
.sara-teaser-headtext { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sara-teaser .sara-teaser-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800; color: #0F172A;
  letter-spacing: -.01em;
}
.sara-teaser .sara-teaser-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #10B981;
}
.sara-teaser .sara-teaser-status::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
}
.sara-teaser .sara-teaser-body {
  font-size: 14.5px; color: #334155; line-height: 1.55;
  padding-bottom: 18px;
}
.sara-teaser .sara-teaser-cta {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 -22px; /* break out of teaser padding */
  padding: 16px 22px;
  font-size: 15px; font-weight: 700; color: #047857;
  background: #ECFDF5;
  border-top: 1px solid #D1FAE5;
  text-decoration: none; cursor: pointer;
  border-left: none; border-right: none; border-bottom: none;
  font-family: inherit;
  transition: background .15s, color .15s;
  width: calc(100% + 44px);
}
.sara-teaser .sara-teaser-cta:hover { background: #D1FAE5; color: #065F46; }
.sara-teaser .sara-teaser-cta-arrow { font-size: 18px; line-height: 1; }
.sara-teaser .sara-teaser-close {
  position: absolute; top: 6px; left: 6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #F1F5F9; border: none; color: #64748B;
  font-size: 14px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
}
.sara-teaser .sara-teaser-close:hover { background: #E2E8F0; color: #0F172A; }
@media (max-width: 600px) {
  .sara-teaser {
    left: 12px; right: 12px; bottom: 88px;
    width: auto; max-width: none;
    padding: 16px 16px 0 16px;
  }
  .sara-teaser::before { display: none; }
  .sara-teaser-avatar { width: 44px; height: 44px; font-size: 18px; }
  .sara-teaser .sara-teaser-title { font-size: 15px; }
  .sara-teaser .sara-teaser-status { font-size: 12px; }
  .sara-teaser .sara-teaser-body { font-size: 13.5px; padding-bottom: 14px; }
  .sara-teaser .sara-teaser-cta { margin: 0 -16px; padding: 14px 16px; font-size: 14px; width: calc(100% + 32px); }
}

.sara-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1002;
  width: 380px; max-width: calc(100vw - 32px);
  height: 600px; max-height: calc(100vh - 48px);
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15,23,42,.18), 0 8px 20px rgba(15,23,42,.08);
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.sara-panel.open { display: flex; }
.sara-head {
  background: linear-gradient(135deg, #047857 0%, #065F46 60%, #064E3B 100%);
  color: #ffffff;
  padding: 18px 18px 16px;
  display: flex; align-items: center; gap: 12px;
  position: relative;
}
.sara-head::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 10%, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}
.sara-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #F472B6 0%, #FB7185 50%, #F97316 100%);
  display: grid; place-items: center;
  color: #ffffff; font-weight: 800; font-size: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0; position: relative;
}
.sara-avatar::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: #10B981; border: 2px solid #ffffff;
}
.sara-meta { flex: 1; min-width: 0; }
.sara-title {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 800; color: #ffffff;
  letter-spacing: -.01em;
}
.sara-ai-tag {
  font-size: 10px; font-weight: 700;
  background: rgba(255,255,255,.18); color: #ffffff;
  padding: 2px 7px; border-radius: 4px;
  letter-spacing: .04em;
}
.sara-status {
  font-size: 12px; color: rgba(255,255,255,.85);
  margin-top: 2px; display: flex; align-items: center; gap: 6px;
}
.sara-status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #34D399; box-shadow: 0 0 0 2px rgba(52,211,153,.25);
}
.sara-actions { display: flex; gap: 4px; }
.sara-actions button {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.12); border: none;
  color: #ffffff; font-size: 18px; cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s;
}
.sara-actions button:hover { background: rgba(255,255,255,.22); }

.sara-body {
  flex: 1; overflow-y: auto; padding: 20px 18px;
  background: #F8FAFC;
}
.sara-msg-row { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.sara-msg-name { font-size: 12px; color: #64748B; font-weight: 600; margin-bottom: 6px; }
.sara-bubble {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px; line-height: 1.6; color: #0F172A;
  max-width: 100%;
}
.sara-msg-time { font-size: 11px; color: #94A3B8; margin-top: 6px; padding-left: 4px; }
.sara-mini-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #F472B6, #FB7185, #F97316);
  display: grid; place-items: center;
  color: #ffffff; font-size: 12px; font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}

.sara-quick-label {
  font-size: 11px; font-weight: 700; color: #64748B;
  letter-spacing: .08em; text-transform: uppercase;
  margin: 18px 4px 10px;
}
.sara-quick-list { display: flex; flex-direction: column; gap: 8px; }
.sara-quick-list button {
  text-align: left;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px; color: #0F172A;
  font-family: inherit; cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.sara-quick-list button:hover {
  border-color: #1D4ED8;
  box-shadow: 0 4px 12px rgba(29,78,216,.08);
  transform: translateY(-1px);
}

.sara-input {
  border-top: 1px solid #E2E8F0;
  padding: 12px 14px;
  background: #ffffff;
  display: flex; align-items: center; gap: 10px;
}
.sara-input .sara-attach {
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: none;
  color: #64748B; font-size: 18px; cursor: pointer;
  display: grid; place-items: center;
}
.sara-input .sara-attach:hover { background: #F1F5F9; }
.sara-input input {
  flex: 1; border: none; outline: none; background: #F1F5F9;
  border-radius: 9999px; padding: 10px 16px;
  font-size: 14px; color: #0F172A; font-family: inherit;
}
.sara-input input::placeholder { color: #94A3B8; }
.sara-input .sara-send {
  width: 38px; height: 38px; border-radius: 50%;
  background: #F1F5F9; border: none;
  color: #475569; cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s, color .15s;
}
.sara-input .sara-send:hover { background: #1D4ED8; color: #ffffff; }

.sara-foot {
  border-top: 1px solid #E2E8F0;
  padding: 10px 14px;
  background: #ffffff;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: #64748B;
}
.sara-foot-left { display: flex; gap: 14px; }
.sara-foot-left a {
  display: inline-flex; align-items: center; gap: 5px;
  color: #475569; text-decoration: none; font-weight: 600;
}
.sara-foot-left a:hover { color: #1D4ED8; }
.sara-foot-right { color: #94A3B8; }
.sara-foot-right b { color: #475569; font-weight: 700; }

@media (max-width: 600px) {
  /* Lift FAB above sticky CTA bar so they don't collide */
  .sara-fab { bottom: 96px !important; right: 14px !important; left: auto !important; width: 52px; height: 52px; font-size: 20px; }
  .sara-panel { left: 8px; right: 8px; bottom: 8px; width: auto; height: calc(100vh - 16px); border-radius: 14px; }
}

/* nudge WhatsApp FAB so it doesn't overlap Sara on the left */
@media (max-width: 480px) {
  .whatsapp-fab .wa-text { display: none !important; }
}

/* ===== WhatsApp FAB — hidden site-wide (replaced by Sara) ===== */
.whatsapp-fab { display: none !important; }
.whatsapp-fab--legacy {
  position: fixed !important;
  bottom: 24px !important; right: 24px !important;
  z-index: 1000 !important;
  display: inline-flex !important;
  align-items: center; gap: 10px;
  background: #25D366 !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
  border-radius: 9999px !important;
  font-size: 14px !important; font-weight: 700 !important;
  box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 4px 12px rgba(0,0,0,.18) !important;
  text-decoration: none !important;
  border: none !important;
  transition: transform .2s, box-shadow .2s !important;
}
.whatsapp-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,211,102,.5), 0 6px 16px rgba(0,0,0,.22) !important; }
.whatsapp-fab svg { width: 22px !important; height: 22px !important; fill: #ffffff !important; }
.whatsapp-fab .wa-text { display: inline; white-space: nowrap; color: #ffffff !important; }
@media (max-width: 600px) {
  .whatsapp-fab { padding: 12px !important; }
  .whatsapp-fab .wa-text { display: none !important; }
}

/* ===== Sticky bottom CTA (light theme override) ===== */
.sticky-cta {
  position: fixed !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  background: #ffffff !important;
  border-top: 1px solid #E2E8F0 !important;
  box-shadow: 0 -8px 24px rgba(15,23,42,.08) !important;
  z-index: 999 !important;
  padding: 14px 24px !important;
  transform: translateY(100%);
  transition: transform .3s ease;
  display: block !important;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex !important; align-items: center; gap: 18px; flex-wrap: wrap;
}
.sticky-cta-text { flex: 1; font-size: 14px; color: #475569 !important; line-height: 1.5; }
.sticky-cta-text b { color: #0F172A !important; font-weight: 700; }
.sticky-cta-actions { display: flex; gap: 10px; align-items: center; }
.sticky-cta-close {
  background: transparent !important;
  border: none !important;
  color: #94A3B8 !important;
  font-size: 22px; cursor: pointer;
  padding: 4px 10px;
}
.sticky-cta-close:hover { color: #0F172A !important; }
@media (max-width: 700px) {
  .sticky-cta { padding: 10px 14px !important; }
  .sticky-cta-inner { flex-direction: column; align-items: stretch; gap: 8px; }
  .sticky-cta-text { font-size: 12.5px; line-height: 1.45; }
  .sticky-cta-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .sticky-cta-actions .btn { padding: 10px 12px !important; font-size: 13px !important; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }
  .sticky-cta-close { position: absolute; top: 6px; right: 8px; padding: 2px 8px !important; }
}
/* Add bottom padding to body so sticky CTA doesn't cover content on mobile */
@media (max-width: 700px) {
  body { padding-bottom: 140px; }
}

/* ===== Inline "Book a demo" mini band — light variant ===== */
.demo-band {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px; align-items: center;
}
.demo-band h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 800;
  color: #0F172A; letter-spacing: -.02em;
  margin-bottom: 8px;
}
.demo-band p { font-size: 15px; color: #475569; line-height: 1.6; max-width: 540px; }
.demo-band .actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) {
  .demo-band { grid-template-columns: 1fr; padding: 28px 24px; }
  .demo-band .actions { justify-content: stretch; }
  .demo-band .actions .btn { flex: 1; }
}

/* ═══════════════════════════════════════════════════
   LEAD CAPTURE COMPONENTS
   ═══════════════════════════════════════════════════ */

/* High-intent form */
.ac-lead-form { background:#fff; border:1px solid #E2E8F0; border-radius:18px; padding:32px 28px; box-shadow:0 12px 30px rgba(15,23,42,.06); }
.ac-lead-form h3 { font-family:'Plus Jakarta Sans',sans-serif; font-size:22px; font-weight:800; color:#0F172A; letter-spacing:-.02em; margin-bottom:6px; }
.ac-lead-form .sub { font-size:14px; color:#475569; margin-bottom:22px; }
.ac-lead-form .field { margin-bottom:14px; }
.ac-lead-form .field-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ac-lead-form label { display:block; font-size:12px; font-weight:700; color:#475569; margin-bottom:6px; letter-spacing:.02em; }
.ac-lead-form input, .ac-lead-form select { width:100%; padding:12px 14px; font-size:14.5px; color:#0F172A; background:#F8FAFC; border:1px solid #E2E8F0; border-radius:10px; font-family:inherit; transition:border-color .15s,background .15s; }
.ac-lead-form input:focus, .ac-lead-form select:focus { outline:none; border-color:#1D4ED8; background:#fff; box-shadow:0 0 0 3px rgba(37,99,235,.12); }
.ac-lead-form button[type="submit"] { width:100%; padding:14px 24px; background:linear-gradient(135deg,#2563EB,#1D4ED8); color:#fff; border:none; border-radius:10px; font-size:15px; font-weight:700; cursor:pointer; transition:all .2s; box-shadow:0 6px 16px rgba(37,99,235,.28); }
.ac-lead-form button[type="submit"]:hover { transform:translateY(-1px); box-shadow:0 10px 24px rgba(37,99,235,.36); }
.ac-lead-form .micro { font-size:12px; color:#64748B; margin-top:12px; text-align:center; }
.ac-form-success { display:none; background:linear-gradient(135deg,#ECFDF5,#D1FAE5); border:1px solid #A7F3D0; border-radius:16px; padding:32px 28px; text-align:center; }
.ac-form-success .check { width:64px; height:64px; margin:0 auto 18px; background:#10B981; color:#fff; border-radius:50%; display:grid; place-items:center; font-size:32px; font-weight:800; }
.ac-form-success h4 { font-family:'Plus Jakarta Sans',sans-serif; font-size:22px; font-weight:800; color:#064E3B; margin-bottom:8px; }
.ac-form-success p { font-size:15px; color:#065F46; line-height:1.6; }

/* ROI calculator */
.roi-card { background:#fff; border:1px solid #E2E8F0; border-radius:20px; padding:36px; max-width:1000px; margin:0 auto; box-shadow:0 12px 36px rgba(15,23,42,.06); }
.roi-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:36px; align-items:stretch; }
.roi-inputs h4 { font-family:'Plus Jakarta Sans',sans-serif; font-size:18px; font-weight:800; color:#0F172A; margin-bottom:18px; }
.roi-inputs .field { margin-bottom:16px; }
.roi-inputs label { display:block; font-size:12px; font-weight:700; color:#475569; margin-bottom:6px; letter-spacing:.02em; }
.roi-inputs input, .roi-inputs select { width:100%; padding:12px 14px; font-size:15px; color:#0F172A; background:#F8FAFC; border:1px solid #E2E8F0; border-radius:10px; font-family:inherit; }
.roi-inputs input:focus, .roi-inputs select:focus { outline:none; border-color:#1D4ED8; background:#fff; }
.roi-output { background:linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius:14px; padding:28px 24px; display:flex; flex-direction:column; gap:14px; }
.roi-row { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:#fff; border:1px solid rgba(29,78,216,.12); border-radius:10px; }
.roi-row .lbl { font-size:13px; color:#475569; font-weight:600; }
.roi-row .val { font-family:'Plus Jakarta Sans',sans-serif; font-size:18px; font-weight:800; color:#1D4ED8; }
.roi-row.headline { background:linear-gradient(135deg,#1D4ED8,#2563EB); border:none; }
.roi-row.headline .lbl { color:rgba(255,255,255,.85); }
.roi-row.headline .val { color:#fff; font-size:26px; }
.roi-gate { margin-top:6px; padding-top:18px; border-top:1px dashed #BFDBFE; }
.roi-gate .gate-text { font-size:13px; color:#475569; margin-bottom:10px; font-weight:500; }
.roi-gate input { width:100%; padding:10px 14px; font-size:14px; border:1px solid #BFDBFE; border-radius:8px; margin-bottom:8px; background:#fff; font-family:inherit; }
.roi-gate button { width:100%; padding:11px 18px; background:linear-gradient(135deg,#2563EB,#1D4ED8); color:#fff; border:none; border-radius:8px; font-size:14px; font-weight:700; cursor:pointer; }
.roi-gate.unlocked .gate-form { display:none; }
.roi-gate.unlocked::after { content:'✓ Detailed report sent to your inbox.'; display:block; font-size:13px; color:#047857; font-weight:600; text-align:center; padding:8px; }
@media (max-width:800px) { .roi-grid { grid-template-columns:1fr; gap:24px; } .roi-card { padding:24px; } }

/* Exit-intent modal */
.ac-modal { display:none; position:fixed; inset:0; background:rgba(15,23,42,.65); z-index:9999; align-items:center; justify-content:center; padding:24px; backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); }
.ac-modal.show { display:flex; }
.ac-modal-card { background:#fff; border-radius:20px; max-width:520px; width:100%; padding:40px 36px 32px; position:relative; box-shadow:0 30px 80px rgba(0,0,0,.4); animation:acModalIn .3s ease; }
@keyframes acModalIn { from{opacity:0;transform:translateY(16px) scale(.97)} to{opacity:1;transform:translateY(0) scale(1)} }
.ac-modal-card .ac-close { position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:8px; background:#F1F5F9; border:none; color:#64748B; font-size:20px; cursor:pointer; }
.ac-modal-card .ac-close:hover { background:#E2E8F0; color:#0F172A; }
.ac-modal-card .badge { display:inline-block; padding:4px 12px; border-radius:9999px; background:rgba(37,99,235,.1); color:#1D4ED8; font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; margin-bottom:14px; }
.ac-modal-card h3 { font-family:'Plus Jakarta Sans',sans-serif; font-size:24px; font-weight:800; color:#0F172A; letter-spacing:-.02em; line-height:1.2; margin-bottom:10px; }
.ac-modal-card p { font-size:15px; color:#475569; line-height:1.6; margin-bottom:22px; }
.ac-modal-card form { display:grid; gap:10px; }
.ac-modal-card input { padding:12px 14px; font-size:14.5px; background:#F8FAFC; border:1px solid #E2E8F0; border-radius:10px; font-family:inherit; }
.ac-modal-card input:focus { outline:none; border-color:#1D4ED8; background:#fff; }
.ac-modal-card button[type="submit"] { padding:13px 20px; background:linear-gradient(135deg,#2563EB,#1D4ED8); color:#fff; border:none; border-radius:10px; font-size:15px; font-weight:700; cursor:pointer; }
.ac-modal-card .skip { display:block; margin-top:12px; font-size:12px; color:#94A3B8; text-align:center; cursor:pointer; background:none; border:none; }

/* Cal.com embed */
.cal-embed { max-width:920px; margin:0 auto; background:#fff; border:1px solid #E2E8F0; border-radius:20px; padding:8px; box-shadow:0 10px 30px rgba(15,23,42,.06); min-height:680px; }
.cal-embed iframe { border:0; width:100%; min-height:660px; border-radius:14px; }

/* ═══════ Modal display rules — force highest precedence ═══════ */
.ac-modal { display: none !important; }
.ac-modal.show { display: flex !important; align-items: center !important; justify-content: center !important; }
.ac-modal:not(.show) { display: none !important; }

/* ═══════ Sticky bottom CTA — readable light theme ═══════ */
body .sticky-cta,
.sticky-cta {
  background: #ffffff !important;
  border-top: 1px solid #E2E8F0 !important;
  box-shadow: 0 -10px 30px rgba(15,23,42,.10) !important;
  padding: 16px 24px !important;
}
body .sticky-cta .sticky-cta-text,
.sticky-cta .sticky-cta-text {
  color: #1E293B !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
}
body .sticky-cta .sticky-cta-text b,
.sticky-cta .sticky-cta-text b {
  color: #0F172A !important;
  font-weight: 800 !important;
}
body .sticky-cta .sticky-cta-close,
.sticky-cta .sticky-cta-close {
  color: #64748B !important;
  background: #F1F5F9 !important;
  width: 32px; height: 32px;
  border: 1px solid #E2E8F0 !important;
  border-radius: 8px !important;
  font-size: 18px !important;
}
body .sticky-cta .sticky-cta-close:hover,
.sticky-cta .sticky-cta-close:hover { color: #0F172A !important; background: #E2E8F0 !important; }
.sticky-cta .btn-primary { background: linear-gradient(135deg,#2563EB,#1D4ED8) !important; color: #fff !important; }
.sticky-cta .btn-ghost { background: #fff !important; color: #1D4ED8 !important; border: 1px solid #BFDBFE !important; }
.sticky-cta .btn-ghost:hover { background: #EFF6FF !important; border-color: #1D4ED8 !important; }
