/* eXtenderWare SalesAgent - Bright White / Blue Theme
   Refined visual pass - preserves existing layout */

:root{
  --bg:#ffffff;
  --bg-soft:#f8fbff;
  --muted:#f5f7fb;
  --muted-2:#eef4ff;
  --text:#0f172a;
  --sub:#334155;
  --border:rgba(15,23,42,.12);
  --border-blue:rgba(37,99,235,.20);
  --shadow:0 14px 40px rgba(16,38,84,.12);
  --shadow2:0 10px 24px rgba(16,38,84,.10);
  --shadow3:0 18px 44px rgba(16,38,84,.14);
  --blue:#2563eb;
  --blue2:#1e4ed8;
  --blue3:#3b82f6;
  --blue4:#dbeafe;
  --ring:rgba(37,99,235,.22);
  --radius:16px;
  --radius2:22px;
  --max:1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

html{
  scroll-behavior:smooth;
}

html, body{
  overflow-x:hidden;
}

body{
  margin:0;
  padding-top:90px;
  font-family:Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color:var(--text);
  line-height:1.6;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

a{ color:inherit; }
.muted{ color:var(--sub); }

.skip-link{
  position:absolute;
  left:-999px;
  top:0;
  background:var(--blue);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  z-index:1000;
}
.skip-link:focus{ left:12px; top:12px; }

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid rgba(15,23,42,.08);
  box-shadow:
    0 10px 28px rgba(15,23,42,.05),
    0 1px 0 rgba(255,255,255,.7) inset;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:6px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-logo{
  width:90px;
  height:auto;
  display:block;
  object-fit:contain;
  background:#fff;
  border:1px solid rgba(37,99,235,.10);
  border-radius:16px;
  padding:8px 10px;
  box-shadow:
    0 10px 24px rgba(16,38,84,.08),
    0 1px 0 rgba(255,255,255,.7) inset;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.brand:hover .brand-logo{
  transform:translateY(-1px);
  border-color:rgba(37,99,235,.18);
  box-shadow:
    0 14px 28px rgba(16,38,84,.11),
    0 1px 0 rgba(255,255,255,.85) inset;
}

.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-top{ font-weight:800; letter-spacing:-.4px; }
.brand-bottom{ font-weight:700; color:var(--sub); font-size:13px; margin-top:2px; }

.nav{
  display:flex;
  align-items:center;
  position:relative;
  overflow:visible;
}

.site-header,
.header-inner,
.nav,
.nav-links{
  overflow:visible;
}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}

.nav-toggle:focus{
  outline:3px solid var(--ring);
  outline-offset:2px;
}

.nav-toggle-bars{
  width:18px;
  height:12px;
  display:block;
  border-top:2px solid var(--text);
  border-bottom:2px solid var(--text);
  position:relative;
}

.nav-toggle-bars:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  border-top:2px solid var(--text);
  transform:translateY(-50%);
}

/* Header nav refinement */
.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
}

.nav-link,
.nav-dropdown-toggle{
  appearance:none;
  border:none;
  background:transparent;
  text-decoration:none;
  color:var(--sub);
  font-weight:700;
  font-family:inherit;
  font-size:16px;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  position:relative;
  transition:
    color .18s ease,
    background-color .18s ease,
    box-shadow .18s ease;
}

/* Active nav link indicator */
.nav-link{
  position:relative;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:-6px;
  height:2px;
  background:linear-gradient(90deg,var(--blue),var(--blue3));
  border-radius:2px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
}

.nav-link:hover::after{
  transform:scaleX(1);
}

/* Active page */
.nav-link.active{
  color:var(--text);
}

.nav-link.active::after{
  transform:scaleX(1);
}

.nav-link:hover,
.nav-dropdown-toggle:hover,
.nav-item.is-open .nav-dropdown-toggle{
  color:var(--text);
  background:rgba(37,99,235,.07);
  box-shadow:inset 0 0 0 1px rgba(37,99,235,.10);
}

.nav-link:focus,
.nav-dropdown-toggle:focus{
  outline:3px solid var(--ring);
  outline-offset:2px;
}

.nav-item{
  position:relative;
}

.nav-dropdown-toggle{
  appearance:none;
  -webkit-appearance:none;
  font:inherit;
  color:inherit;
  line-height:1;
  font-weight:700;
}

.nav-dropdown-toggle::after{
  content:"^";
  display:inline-block;
  font-size:12px;
  font-weight:700;
  line-height:1;
  margin-left:4px;
  flex:0 0 auto;
  transform:rotate(180deg);
  transform-origin:center;
  transition:transform .18s ease;
}

.nav-item.is-open .nav-dropdown-toggle::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after{
  transform:rotate(0deg);
}

.nav-caret{
  display:none;
}

.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  width:240px;
  padding:10px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:
    0 20px 48px rgba(16,38,84,.16),
    0 1px 0 rgba(255,255,255,.7) inset;
  display:flex;
  flex-direction:column;
  gap:6px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  pointer-events:none;
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;
  z-index:60;
}

.nav-dropdown-menu::before{
  content:"";
  position:absolute;
  top:-12px;
  left:0;
  right:0;
  height:12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-item.is-open .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

.nav-dropdown-menu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
  background:#fff;
  border:1px solid rgba(37,99,235,.08);
  transition:
    background-color .16s ease,
    border-color .16s ease,
    transform .16s ease,
    box-shadow .16s ease;
}

.nav-dropdown-menu a:hover{
  background:rgba(37,99,235,.06);
  border-color:rgba(37,99,235,.18);
  transform:translateY(-1px);
  box-shadow:0 10px 20px rgba(16,38,84,.06);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align: center;
  gap:8px;
  font-weight:800;
  border-radius:14px;
  padding:12px 16px;
  border:1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    background-color .16s ease,
    border-color .16s ease,
    color .16s ease;
}

.btn:focus{ outline:3px solid var(--ring); outline-offset:2px; }

.btn-sm{
  padding:10px 12px;
  font-size:14px;
}

.btn-primary{
  background:linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  box-shadow:0 10px 24px rgba(37,99,235,.22);
}

.btn-primary:hover{
  background:linear-gradient(135deg, var(--blue2), var(--blue));
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(37,99,235,.26);
}

.btn-secondary{
  background:#fff;
  color:var(--text);
  border-color:var(--border);
}

.btn-secondary:hover{
  border-color:rgba(37,99,235,.35);
  background:#f8fbff;
}

/* Hero */
.hero{
  position:relative;
  padding:48px 0 16px 0;   /* moved headings down ~30px */
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-20px 0 auto 0;
  height:270px;
  background:
    radial-gradient(circle at 15% 15%, rgba(37,99,235,.10), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(59,130,246,.12), transparent 24%),
    linear-gradient(180deg, rgba(239,246,255,.85), rgba(255,255,255,0));
  pointer-events:none;
  z-index:0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-items:start;
  position:relative;
  z-index:1;
}

.hero-copy h1{
  margin:4px 0 8px 0;
  font-size:clamp(28px, 2.8vw, 36px);
  letter-spacing:-1.1px;
  line-height:1.05;
  max-width:14ch;
}

.lead{
  margin:20px 0 0 0;
  font-size:18px;
  color:var(--sub);
  max-width:84ch;
}

.hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-kpis{
  margin-top:22px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.kpi{
  border:1px solid var(--border);
  background:#fff;
  border-radius:16px;
  padding:12px 14px;
  box-shadow:0 10px 22px rgba(16,38,84,.06);
  min-width:150px;
}

.kpi-value{ font-weight:700; letter-spacing:-.4px; }
.kpi-label{ color:var(--sub); font-size:13px; margin-top:2px; }

.hero-card{
  align-self:start;
  margin-top:0;
  max-width:360px;
  justify-self:end;
  border:1px solid var(--border);
  background:#fff;
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.preview-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 14px;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg, rgba(37,99,235,.08), rgba(255,255,255,0));
}

.dots span{
  width:10px;
  height:10px;
  border-radius:999px;
  display:inline-block;
  margin-right:6px;
  background:rgba(15,23,42,.18);
}

.preview-title{ font-weight:800; color:var(--sub); font-size:13px; }

.preview-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.preview-q{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background:#fff;
}

.preview-q-title{ font-weight:700; font-size:13px; color:var(--sub); }
.preview-q-text{ margin-top:4px; font-weight:800; letter-spacing:-.2px; }

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.pill{
  border:1px solid rgba(37,99,235,.22);
  color:var(--blue2);
  background:rgba(37,99,235,.06);
  border-radius:999px;
  padding:8px 10px;
  font-weight:700;
  font-size:12px;
}

.preview-result{
  height:60px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(37,99,235,.26), rgba(59,130,246,.08));
  margin-top:10px;
}

.preview-note{ color:var(--sub); font-size:12px; padding:0 2px; }

.hero-glow{
  display:none !important;
  background:none !important;
}

.preview-static{
  padding:12px;
  background:linear-gradient(180deg, rgba(37,99,235,.06), rgba(255,255,255,0));
}

.preview-static img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 12px 26px rgba(16,38,84,.14);
}

/* Move first section below hero up 20px (standard gap under gradient) */
.hero + .section{
  margin-top:-20px;
}

/* Sections */
.section{ padding:70px 0; }

.section-muted{
  background:linear-gradient(180deg, #f8fbff 0%, #f5f7fb 100%);
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}

.section-head{
  margin-bottom:22px;
}

.section-head h2,
.section-head h1{
  margin:0 0 10px 0;
  letter-spacing:-.7px;
  line-height:1.15;
}

.section-head p{
  margin:0;
  color:var(--sub);
  max-width:84ch;
}

#guided .section-head p{
  margin:10px 0 40px 20px;
  color:var(--text);
  font-size:20px;
  line-height:1.5;
  max-width:70ch;
}

.bullets-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:16px;
  align-items:start;
}

.bullets{
  margin:0 0 0 18px;
  color:var(--sub);
}

.bullets li{
  list-style:none;
  position:relative;
  padding-left:26px;
  margin:10px 0;
  font-weight:500;
}

.bullets li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--blue);
  font-weight:800;
}

.callout{
  border:1px solid rgba(37,99,235,.18);
  background:
    linear-gradient(135deg, rgba(37,99,235,.10), rgba(59,130,246,.04)),
    #ffffff;
  border-radius:var(--radius2);
  padding:22px;
  box-shadow:0 10px 22px rgba(16,38,84,.06);
}

.callout-title{
  font-weight:700;
  letter-spacing:-.4px;
  color:var(--text);
}

.callout-text{ margin:8px 0 0 0; color:var(--sub); }

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}

.panel{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  padding:22px;
  box-shadow:0 10px 22px rgba(16,38,84,.06);
}

.panel-accent{
  border-color:rgba(37,99,235,.18);
  background:linear-gradient(135deg, rgba(37,99,235,.08), rgba(255,255,255,0));
}

.panel-accent-title{ font-weight:700; margin-bottom:10px; }

.suite{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.agent{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  padding:22px;
  box-shadow:0 10px 22px rgba(16,38,84,.06);
}

.agent h3{
  margin:0 0 6px 0;
  letter-spacing:-.3px;
  display:flex;
  align-items:center;
  gap:10px;
}

.badge{
  width:12px;
  height:12px;
  border-radius:4px;
  display:inline-block;
}

.badge-blue{ background:#2563eb; }
.badge-gold{ background:#f59e0b; }
.badge-green{ background:#22c55e; }
.badge-purple{ background:#a855f7; }

.demo{
  margin-top:10px;
  color:var(--sub);
}

.demo a{
  color:var(--blue);
  text-decoration:underline;
  font-weight:700;
}

.sep{ margin:0 8px; color:rgba(15,23,42,.35); }

.url-link{
  color:var(--blue);
  text-decoration:underline;
  font-weight:700;
  word-break:break-word;
}

.text-link{
  color:var(--blue);
  text-decoration:underline;
  font-weight:700;
}

.text-link:hover{ color:var(--blue2); }

/* CTA */
.cta-band{
  margin-top:60px;
  border:1px solid rgba(37,99,235,.20);
  background:
    linear-gradient(135deg, rgba(37,99,235,.12), rgba(59,130,246,.06)),
    #ffffff;
  border-radius:var(--radius2);
  padding:24px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  box-shadow:0 14px 34px rgba(16,38,84,.08);
}

.cta-band h3{
  margin:0 0 6px 0;
  letter-spacing:-.4px;
}

.cta-band p{ margin:0; }

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  background:#fff;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.footer-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-logo{
  width:40px;
  height:40px;
  border-radius:14px;
  box-shadow:0 10px 18px rgba(16,38,84,.10);
  object-fit:cover;
}

.footer-title{ font-weight:700; letter-spacing:-.3px; }
.footer-sub{ color:var(--sub); font-size:13px; margin-top:2px; }

.footer-right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-right a{
  color:var(--sub);
  text-decoration:none;
  font-weight:800;
}

.footer-right a:hover{ color:var(--text); }

/* Forms */
.form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

label span{
  display:block;
  font-weight:700;
  font-size:13px;
  margin-bottom:6px;
}

input, textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  font:inherit;
  background:#fff;
}

input:focus,
textarea:focus{
  outline:3px solid var(--ring);
  outline-offset:2px;
  border-color:rgba(37,99,235,.35);
}

.form-status{
  margin-top:8px;
  color:var(--sub);
  font-weight:700;
  font-size:13px;
}

.hr{
  border:none;
  border-top:1px solid var(--border);
  margin:16px 0;
}

.cta-mini{ margin-top:10px; }

.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;
}

/* Prevent anchor targets from hiding under fixed header */
section{ scroll-margin-top:90px; }

/* Hero Suite */
.hero-suite{ margin-top:40px; }
.hero-suite-head{
  margin-top:10px;
  margin-bottom:24px;
}

.hero-suite-title{
  margin:10px 0 6px 0;
  font-size:22px;
  letter-spacing:-.3px;
}

.hero-suite-sub{
  margin:0 0 16px 20px;
  color:var(--text);
  font-size:20px;
  line-height:1.5;
  max-width:70ch;
}

.hero-highlight{
  color:var(--blue);
  font-weight:800;
}

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

.suite-card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(20,33,61,.08);
  border-radius:22px;
  padding:22px;
  box-shadow:0 12px 34px rgba(17,24,39,.06);
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    border-color .16s ease;
}

.suite-card::before {
  height: 2px;
  background: rgba(47, 109, 246, 0.25);
}

.suite-card::after{
  content:"";
  position:absolute;
  top:-34px;
  right:-34px;
  width:120px;
  height:120px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(47,109,246,.12) 0%, rgba(47,109,246,0) 70%);
  pointer-events:none;
}

.suite-card > *{
  position:relative;
  z-index:1;
}

.suite-card:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 46px rgba(16,38,84,.14);
  border-color:rgba(47,109,246,.16);
}

.suite-card h3{
  margin:0 0 8px 0;
  letter-spacing:-.2px;
  font-size:18px;
}

.suite-card p{
  margin:0 0 12px 0;
  color:var(--sub);
  font-size:15px;
  line-height:1.5;
}

.suite-links{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:nowrap;
  font-size:14px;
  color:var(--sub);
}

.suite-links a{
  color:var(--blue);
  text-decoration:underline;
  font-weight:700;
}



/* Section positioning */
#guided{
  margin-top:-30px;
  padding-bottom:50px;
}

#mobile{ margin-top:-20px; }
#mobile .section-head{ margin-top:-20px; }

#commercial{ margin-top:-20px; }
#commercial.section{ padding-top:50px; }

#commercial .panel{
  background:#fff;
  border-color:rgba(37,99,235,.16);
}

/* Guided section plain bullets inside one panel */
#guided .simple-bullets{
  margin:0;
  padding:0;
  list-style:none;
}

#guided .simple-bullets li{
  position:relative;
  padding-left:26px;
  margin:10px 0;
  color:var(--sub);
  font-weight:600;
}

#guided .simple-bullets li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--blue);
  font-weight:700;
}

/* Product Advisor bullet readability */
.simple-bullets li{
  margin:18px 0;
}

.simple-bullets li div{
  margin-left:14px;
  margin-top:4px;
  font-weight:500;
}

/* Product Advisor layout */
.advisor-layout{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:24px;
  align-items:start;
}

.advisor-left{
  min-width:0;
}

.advisor-right{
  min-width:0;
}

.advisor-embed-node,
.advisor-right{
  -webkit-overflow-scrolling:touch;
  touch-action:pan-y;
}

.advisor-embed-node{
  width:100%;
}

/* Commercial section one box, two columns */
#commercial .two-col-bullets{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:repeat(3, auto);
  grid-auto-flow:column;
  gap:10px 30px;
  margin:0;
  padding:0;
  list-style:none;
}

#commercial .two-col-bullets li{
  position:relative;
  padding-left:26px;
  margin:6px 0;
  color:var(--sub);
  font-weight:600;
}

#commercial .two-col-bullets li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--blue);
  font-weight:700;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .bullets-grid{ grid-template-columns:1fr; }
  .two-col{ grid-template-columns:1fr; }

  .suite-grid{
    margin-top:40px;
    margin-bottom:80px;
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .advisor-layout{
    grid-template-columns:1fr;
    gap:20px;
  }
}

@media (max-width: 760px){

  .hero + .section{
    margin-top:0;
  }
  body{ padding-top:120px; }

  .header-inner{
    padding:18px 0;
  }

  .brand-logo{
    width:108px;
    padding:6px 8px;
    border-radius:14px;
  }

  .nav-toggle{ display:inline-flex; }

  .nav-links{
    display:none;
    position:absolute;
    right:20px;
    top:72px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:12px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
    min-width:260px;
    gap:6px;
  }

  .nav-links.is-open{ display:flex; }

  .nav-link,
  .nav-dropdown-toggle{
    width:100%;
    justify-content:space-between;
  }

  .nav-item{
    width:100%;
  }

  .nav-dropdown-menu{
    position:static;
    left:auto;
    width:auto;
    display:none;
    flex-direction:column;
    min-width:0;
    margin-top:6px;
    padding:6px;
    border-radius:12px;
    box-shadow:none;
    border:1px solid rgba(15,23,42,.08);
    background:#f8fbff;
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    gap:6px;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu{
    display:none;
  }

  .nav-item.is-open .nav-dropdown-menu{
    display:flex;
  }

.hero-copy h1{
  max-width: 980px;
  font-size: clamp(52px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }

  #commercial .two-col-bullets{
    grid-template-columns:1fr;
    grid-template-rows:none;
    grid-auto-flow:row;
  }

  .suite-links{
    flex-wrap:wrap;
  }
}

.footer-separator{
  color:#94a3b8;
  margin:0 6px;
}


/* Remove underline indicator for dropdown (Agents) */
.nav-dropdown-toggle.nav-link::after{
  content:none !important;
}


/* Footer Agents dropdown */
.footer-right .nav-dropdown{
  position:relative;
}

.footer-right .nav-dropdown-toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  font-weight:800;
}

.footer-right .nav-dropdown-toggle::after{
  content:"^";
  font-size:12px;
  margin-left:4px;
  transform:rotate(0deg); /* points up by default */
  transition:transform .18s ease;
}

/* rotate when open */
.footer-right .nav-dropdown:hover .nav-dropdown-toggle::after,
.footer-right .nav-dropdown:focus-within .nav-dropdown-toggle::after{
  transform:rotate(180deg);
}

/* dropdown ABOVE */
.footer-right .nav-dropdown-menu{
  position:absolute;
  bottom:calc(100% + 8px);
  top:auto;
  left:0;
  width:220px;
  padding:10px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 -12px 30px rgba(16,38,84,.16);
  display:flex;
  flex-direction:column;
  gap:6px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  pointer-events:none;
  transition:all .18s ease;
  z-index:60;
}

.footer-right .nav-dropdown:hover .nav-dropdown-menu,
.footer-right .nav-dropdown:focus-within .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

