@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════
   ALTZOR — AI AGENT LIBRARY
   Design tokens aligned with the Altzor theme
   (kept in step with ai-adoption-program.css)
═══════════════════════════════════════════ */
:root {
  --aal-navy: #1d1d49;
  --aal-navy-grad-1: #15153a;
  --aal-navy-grad-2: #2e2e70;
  --aal-orange: #df6719;
  --aal-orange-light: #f07a30;
  --aal-orange-tint: rgba(223, 103, 25, 0.08);
  --aal-orange-tint-strong: rgba(223, 103, 25, 0.14);
  --aal-orange-border: rgba(223, 103, 25, 0.25);
  --aal-white: #ffffff;
  --aal-off-white: #f7f8fc;
  --aal-off-white-2: #f0f2f8;
  --aal-line: rgba(29, 29, 73, 0.10);
  --aal-line-strong: rgba(29, 29, 73, 0.16);
  --aal-text-body: #4a4a75;
  --aal-text-muted: #7a7aaa;
  --aal-card-shadow: 0 4px 20px rgba(29, 29, 73, 0.06);
  --aal-card-shadow-hover: 0 20px 50px rgba(29, 29, 73, 0.14);
  --aal-orange-shadow: 0 10px 30px rgba(223, 103, 25, 0.22);
  --aal-orange-shadow-lg: 0 18px 48px rgba(223, 103, 25, 0.35);
  --aal-transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--aal-white);
  color: var(--aal-text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}

.aal-page h1,
.aal-page h2,
.aal-page h3,
.aal-page h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--aal-navy);
}

.aal-page p { opacity: 1; }

/* ═══════════════════════════════════════════
   LIGHT HEADER (blog-style) — scoped to .light-header
   Loaded after header.css so these win on equal specificity.
═══════════════════════════════════════════ */
header.light-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid #eef0f5;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

header.light-header.scrolled { box-shadow: 0 4px 20px rgba(29, 29, 73, 0.08); }

.light-header .headerHolder {
  height: 80px;
  padding: 0;
  margin-top: 0;
  background: transparent;
  border-radius: 0;
}

.light-header .logo-link { display: inline-flex; align-items: center; flex: none; }
.light-header .headerHolder .logo { width: auto; height: 38px; }

.light-header .navbar {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
}

.light-header .navbar-list { gap: 0.15rem; }

.light-header .nav-link,
.light-header .nav-link:link,
.light-header .nav-link:visited,
.light-header .nav-link:focus {
  color: #374151;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-shadow: none;
}

.light-header .navbar a:hover,
.light-header .navbar a.active,
.light-header .nav-link:hover,
.light-header .nav-link:active,
.light-header .mega-toggle[aria-expanded="true"],
.light-header .dropdown-toggle[aria-expanded="true"] {
  color: var(--primary);
  text-shadow: none;
  background: transparent;
}

/* full-bleed white mega panel */
.light-header .mega-menu {
  top: 100%;
  left: calc(-50vw + 50%);
  width: 100vw;
  background: #ffffff;
  border-top: 1px solid #eef0f5;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(29, 29, 73, 0.10);
}

.light-header .mega-col-title {
  color: #9ca3af;
  border-bottom: 1px solid #f1f2f6;
}

.light-header .mega-link,
.light-header .mega-sub .mega-link {
  color: #374151;
  font-weight: 500;
}

.light-header .mega-link:hover,
.light-header .mega-sub .mega-link:hover {
  color: var(--primary);
  background: transparent;
  text-shadow: none;
}

.light-header .mega-link.active {
  color: var(--primary);
  background: rgba(223, 103, 25, 0.07);
}

.light-header .mega-sub { border-left: 3px solid var(--primary); }

/* small dropdown */
.light-header .navbar .dropdown-menu {
  background: #ffffff !important;
  border: 1px solid #eef0f5;
  box-shadow: 0 16px 40px rgba(29, 29, 73, 0.12);
}

.light-header .navbar .dropdown-menu li a,
.light-header .navbar .dropdown-menu .dropdown-item { color: #374151; }

.light-header .navbar .dropdown-menu li a:hover,
.light-header .navbar .dropdown-menu .dropdown-item:hover,
.light-header .navbar .dropdown-menu .dropdown-item:focus {
  color: var(--primary) !important;
  text-shadow: none;
}

@media (max-width: 992px) {
  .light-header .headerHolder { height: 68px; }
  .light-header .headerHolder .logo { height: 32px; }

  .light-header .navbar {
    background: #ffffff;
    backdrop-filter: none;
    border: 1px solid #eef0f5;
    box-shadow: 0 18px 44px rgba(29, 29, 73, 0.12);
    padding: 1rem 1rem 1.5rem;
  }

  .light-header .nav-link,
  .light-header .nav-link:link,
  .light-header .nav-link:visited { border-bottom: 1px solid #f1f2f6; }

  .light-header .mega-menu {
    left: auto !important;
    width: 100% !important;
    background: #f8f9fc !important;
    box-shadow: none;
    border-top: none;
    border-radius: 8px;
  }
}

/* offset page content below the fixed header */
.aal-page { padding-top: 80px; }
@media (max-width: 992px) { .aal-page { padding-top: 68px; } }

/* ═══════════════════════════════════════════
   FOOTER CTA (shared partial needs its band)
═══════════════════════════════════════════ */
#cta .container {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════
   LAYOUT PRIMITIVES
═══════════════════════════════════════════ */
.aal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

@media (max-width: 1024px) { .aal-container { padding: 0 32px; } }
@media (max-width: 768px)  { .aal-container { padding: 0 20px; } }

.aal-section { padding: 100px 0; }
.aal-section.tint { background: var(--aal-off-white); }
.aal-section.tight-top { padding-top: 0; }

@media (max-width: 768px) { .aal-section { padding: 64px 0; } }

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.aal-breadcrumb {
  padding: 28px 0 0;
  font-size: 13.5px;
  color: var(--aal-text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.aal-breadcrumb a { color: var(--aal-text-muted); transition: var(--aal-transition); }
.aal-breadcrumb a:hover { color: var(--aal-orange); }
.aal-breadcrumb .sep { opacity: 0.45; }
.aal-breadcrumb .current { color: var(--aal-navy); font-weight: 600; }

/* ═══════════════════════════════════════════
   SHARED TYPE + BUTTONS
═══════════════════════════════════════════ */
.aal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--aal-orange);
  margin-bottom: 20px;
}

.aal-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--aal-orange);
  border-radius: 2px;
}

.aal-section-head { margin: 0 0 44px; }

.aal-section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.aal-section-head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--aal-text-body);
  margin: 0 0 14px;
}

.aal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--aal-orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border: 1px solid var(--aal-orange);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--aal-orange-shadow);
  transition: var(--aal-transition);
}

.aal-btn:hover {
  color: #fff;
  background: var(--aal-orange-light);
  border-color: var(--aal-orange-light);
  transform: translateY(-2px);
  box-shadow: var(--aal-orange-shadow-lg);
}

.aal-btn i { font-size: 20px; transition: var(--aal-transition); }
.aal-btn:hover i { transform: translateX(3px); }

.aal-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: var(--aal-transition);
}

.aal-ghost-btn:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.aal-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--aal-navy);
  border-bottom: 2px solid var(--aal-orange);
  padding-bottom: 4px;
  transition: var(--aal-transition);
}

.aal-text-link:hover { color: var(--aal-orange); }
.aal-text-link i { font-size: 20px; transition: var(--aal-transition); }
.aal-text-link:hover i { transform: translateX(3px); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.aal-hero { padding: 44px 0 96px; overflow: hidden; }

.aal-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.aal-hero-title {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.6px;
  margin: 0 0 22px;
}

.aal-hero-title .accent { color: var(--aal-orange); }

.aal-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--aal-text-body);
  max-width: 560px;
  margin: 0 0 18px;
}

.aal-hero-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--aal-text-muted);
  max-width: 560px;
  margin: 0 0 14px;
}

.aal-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* --- hero image --- */
.aal-hero-visual { position: relative; }

.aal-hero-figure {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(29, 29, 73, 0.18);
  margin: 0;
  aspect-ratio: 16 / 11;
  background: var(--aal-off-white-2);
}

.aal-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* warm brand wash so the photo sits in the palette */
.aal-hero-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(29, 29, 73, 0.30) 0%, rgba(29, 29, 73, 0.04) 45%, rgba(223, 103, 25, 0.16) 100%);
  pointer-events: none;
}

/* soft orange glow behind the frame */
.aal-hero-visual::before {
  content: '';
  position: absolute;
  right: -70px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 103, 25, 0.22), transparent 68%);
  z-index: 0;
  pointer-events: none;
}

/* dotted grid accent */
.aal-hero-visual::after {
  content: '';
  position: absolute;
  left: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgba(29, 29, 73, 0.18) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
  border-radius: 8px;
  z-index: 0;
  pointer-events: none;
}

.aal-hero-figure { z-index: 1; }

/* floating stat card over the photo */
.aal-hero-badge {
  position: absolute;
  left: -26px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--aal-line);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--aal-card-shadow-hover);
}

.aal-hero-badge .badge-stat {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.aal-hero-badge .badge-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--aal-navy);
  letter-spacing: -0.8px;
}

.aal-hero-badge .badge-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--aal-text-muted);
  margin-top: 4px;
}

.aal-hero-badge .badge-divider {
  width: 1px;
  align-self: stretch;
  background: var(--aal-line);
}

@media (max-width: 1100px) {
  .aal-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .aal-hero-sub, .aal-hero-body { max-width: none; }
}

@media (max-width: 768px) {
  .aal-hero { padding: 28px 0 64px; }
  .aal-hero-visual::after { display: none; }
  .aal-hero-badge { left: 12px; bottom: 12px; padding: 12px 16px; gap: 12px; }
  .aal-hero-badge .badge-num { font-size: 21px; }
}

/* ═══════════════════════════════════════════
   CAPABILITY STRIP
═══════════════════════════════════════════ */
.aal-capability-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--aal-line);
  border: 1px solid var(--aal-line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 44px;
}

.aal-cap-item {
  background: #fff;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--aal-transition);
}

.aal-cap-item:hover { background: var(--aal-off-white); }

.aal-cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--aal-orange-tint);
  color: var(--aal-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: none;
  transition: var(--aal-transition);
}

.aal-cap-item:hover .aal-cap-icon {
  background: var(--aal-orange);
  color: #fff;
}

.aal-cap-item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--aal-text-body);
  font-weight: 500;
}

@media (max-width: 1100px) { .aal-capability-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .aal-capability-strip { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   LIBRARY EXPLORER
═══════════════════════════════════════════ */
.aal-explorer-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.aal-search-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.aal-search-box {
  flex: 1;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--aal-line-strong);
  border-radius: 999px;
  padding: 13px 22px;
  background: #fff;
  transition: var(--aal-transition);
}

.aal-search-box:focus-within {
  border-color: var(--aal-orange);
  box-shadow: 0 0 0 4px var(--aal-orange-tint);
}

.aal-search-box i { font-size: 20px; color: var(--aal-text-muted); flex: none; }

.aal-search-box input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  width: 100%;
  color: var(--aal-navy);
  background: transparent;
}

.aal-search-box input::placeholder { color: var(--aal-text-muted); }

.aal-results-count {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--aal-text-muted);
  white-space: nowrap;
}

.aal-filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }

.aal-pill {
  border: 1.5px solid var(--aal-line-strong);
  background: #fff;
  color: var(--aal-text-body);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--aal-transition);
  white-space: nowrap;
}

.aal-pill:hover { border-color: var(--aal-orange); color: var(--aal-navy); }

.aal-pill.active {
  background: var(--aal-navy);
  border-color: var(--aal-navy);
  color: #fff;
}

.aal-category-block { margin-top: 60px; }

.aal-category-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.aal-category-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--aal-navy-grad-1), var(--aal-navy-grad-2));
  color: #fff;
  font-size: 23px;
}

.aal-category-head h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.4px;
}

.aal-category-head .count {
  font-size: 13px;
  color: var(--aal-text-muted);
  font-weight: 600;
}

.aal-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) { .aal-agent-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .aal-agent-grid { grid-template-columns: 1fr; } }

.aal-agent-card {
  position: relative;
  border: 1px solid var(--aal-line);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  overflow: hidden;
  transition: var(--aal-transition);
}

.aal-agent-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--aal-orange), var(--aal-orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--aal-transition);
}

.aal-agent-card:hover {
  border-color: var(--aal-orange-border);
  box-shadow: var(--aal-card-shadow-hover);
  transform: translateY(-4px);
}

.aal-agent-card:hover::before { transform: scaleX(1); }

.aal-agent-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--aal-orange-tint);
  color: var(--aal-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex: none;
  transition: var(--aal-transition);
}

.aal-agent-card:hover .aal-agent-icon {
  background: var(--aal-orange);
  color: #fff;
}

.aal-agent-card h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.aal-agent-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--aal-text-body);
  margin: 0;
  flex: 1;
}

.aal-agent-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--aal-orange);
  margin-top: 4px;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  align-self: flex-start;
}

.aal-agent-cta i { font-size: 18px; transition: var(--aal-transition); }
.aal-agent-card:hover .aal-agent-cta i { transform: translateX(4px); }

.aal-no-results {
  display: none;
  text-align: center;
  padding: 72px 20px;
  color: var(--aal-text-muted);
  font-size: 15.5px;
  border: 1px dashed var(--aal-line-strong);
  border-radius: 18px;
  margin-top: 44px;
  background: #fff;
}

.aal-no-results a { color: var(--aal-orange); font-weight: 700; }

/* ═══════════════════════════════════════════
   BUILT FOR YOUR ENVIRONMENT
═══════════════════════════════════════════ */
.aal-env-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

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

.aal-env-layout .aal-section-head { margin-bottom: 0; }

.aal-step-list { display: flex; flex-direction: column; }

.aal-step-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--aal-line);
  transition: var(--aal-transition);
}

.aal-step-item:first-child { padding-top: 0; }
.aal-step-item:last-child { border-bottom: none; }
.aal-step-item:hover { transform: translateX(6px); }

.aal-step-num {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--aal-navy-grad-1), var(--aal-navy-grad-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: var(--aal-transition);
}

.aal-step-item:hover .aal-step-num {
  background: var(--aal-orange);
  box-shadow: var(--aal-orange-shadow);
}

.aal-step-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--aal-navy);
  font-weight: 600;
  padding-top: 5px;
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.aal-final-cta {
  background: linear-gradient(140deg, var(--aal-navy-grad-1), var(--aal-navy-grad-2));
  border-radius: 28px;
  padding: 68px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.aal-final-cta::before {
  content: '';
  position: absolute;
  right: -130px;
  top: -130px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 103, 25, 0.34), transparent 70%);
}

.aal-final-cta::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
}

.aal-final-cta > * { position: relative; z-index: 1; }

.aal-final-cta .aal-eyebrow { color: var(--aal-orange-light); }
.aal-final-cta .aal-eyebrow::before { background: var(--aal-orange-light); }

.aal-final-cta h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  max-width: 720px;
  line-height: 1.25;
  letter-spacing: -0.9px;
}

.aal-final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  max-width: 700px;
  line-height: 1.8;
}

.aal-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .aal-final-cta { padding: 44px 26px; border-radius: 22px; }
  .aal-cta-row { width: 100%; }
  .aal-cta-row .aal-btn,
  .aal-cta-row .aal-ghost-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   HUBSPOT MODAL
═══════════════════════════════════════════ */
.hs-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 29, 73, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}

.hs-modal-overlay.active { display: flex; align-items: center; justify-content: center; }

.hs-modal-content {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 40px 34px 34px;
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(29, 29, 73, 0.32);
}

.hs-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--aal-text-muted);
  cursor: pointer;
  transition: var(--aal-transition);
}

.hs-modal-close:hover { color: var(--aal-orange); }

.hs-modal-head {
  margin-bottom: 24px;
  padding-right: 30px;
  border-bottom: 1px solid var(--aal-line);
  padding-bottom: 20px;
}

.hs-modal-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aal-orange);
  margin-bottom: 10px;
}

.hs-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: var(--aal-navy);
  margin: 0 0 8px;
}

.hs-modal-sub {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--aal-text-muted);
  margin: 0;
}

/* HubSpot embed — keep it in the page's type system */
#hubspotFormContainer .hs-form-field > label {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--aal-navy);
  margin-bottom: 6px;
}

#hubspotFormContainer input[readonly] {
  background: var(--aal-off-white);
  color: var(--aal-navy);
  font-weight: 600;
  cursor: default;
}

@media (max-width: 560px) {
  .hs-modal-content { padding: 34px 20px 24px; border-radius: 14px; }
  .hs-modal-title { font-size: 19px; }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
