/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens ── */
:root {
  /* Core palette */
  --bg:          #ffffff;
  --bg-card:     #f4f4f5;
  --bg-hover:    #e8e8e9;
  --border:      #c8c8cc;
  --text:        #333333;
  --text-muted:  #4b4b4b;
  --text-subtle: #767676;
  --accent:      #18181b;

  /* Typography */
  --font: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* Motion */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:   100ms;
  --duration-normal: 200ms;
  --duration-slow:   350ms;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;

  /* Weight */
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Line height */
  --leading-snug:    1.375;
  --leading-normal:  1.5;
  --leading-relaxed: 1.625;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.06), 0 4px 6px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.08), 0 8px 10px rgba(0,0,0,0.06);

  /* Semantic color aliases (bridge to theme.css naming) */
  --color-text-primary:    var(--text);
  --color-text-secondary:  var(--text-subtle);
  --color-text-muted:      var(--text-subtle);
  --color-bg-base:         var(--bg);
  --color-bg-muted:        var(--bg-hover);
  --color-surface-default: var(--bg);
  --color-border-default:  var(--border);
  --color-border-strong:   var(--text-subtle);
  --color-border-focus:    var(--accent);
  --color-accent:          var(--accent);
  --color-accent-subtle:   #e4e4e7;
  --color-interactive-default: var(--accent);
}

/* ── Base ── */
html { font-size: 16px; text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.102em;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity  0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s var(--ease), color 0.15s var(--ease),
              border-color 0.15s var(--ease), opacity 0.15s var(--ease);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  padding: 8px 16px;
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  padding: 8px 14px;
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-card); color: var(--text); }

.btn-outline {
  padding: 8px 16px;
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--text);
  border-radius: 99px;
}
.btn-outline:hover { background: var(--bg-card); }

/* Larger CTA size */
.btn-lg {
  font-size: 15px;
  padding: 11px 22px;
}
.btn-primary.btn-lg { padding: 11px 24px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 24px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
  transition:
    top 0.4s var(--ease),
    left 0.4s var(--ease),
    right 0.4s var(--ease),
    border-radius 0.4s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.4s var(--ease),
    padding 0.4s var(--ease);
}

.nav--scrolled {
  top: 12px;
  left: 20%;
  right: 20%;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-color: rgba(200, 200, 204, 0.45);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09), 0 1px 3px rgba(0, 0, 0, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.85);
  padding: 0 8px 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.12s;
}
.logo:hover { opacity: 0.75; }
.logo-img { height: 36px; width: auto; display: block; }
.logo-img--pill { height: 28px; width: auto; display: none; }
.nav--scrolled .logo-img { display: none; }
.nav--scrolled .logo-img--pill { display: block; }

.hero-brand { margin-bottom: 10px; }
.hero-brand-img { height: 140px; width: auto; display: block; margin: 0 auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.nav-links a:hover { background: var(--bg-card); color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
/* Nav buttons: rectangular at top of page, pill when scrolled */
.nav-actions .btn {
  border-radius: var(--radius-sm);
  transition: background 0.15s var(--ease), color 0.15s var(--ease),
              border-color 0.15s var(--ease), opacity 0.15s var(--ease),
              border-radius 0.25s var(--ease);
}
.nav--scrolled .nav-actions .btn {
  border-radius: 99px;
}

/* ── Contact us nav popover ── */
.nav-ctac {
  position: fixed;
  top: 80px;   /* overridden by JS positionCard() */
  right: 28px; /* overridden by JS positionCard() */
  width: 420px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.13),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  z-index: 9998;
  transform-origin: top right;
}
.nav-ctac.open {
  display: flex;
  animation: nav-ctac-in 0.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes nav-ctac-in {
  from { opacity: 0; transform: scale(0.92) translateY(-8px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

/* Tab switcher */
.nav-ctac-tabs {
  flex: 1;
  display: flex;
  background: rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
  margin: 0;
}
.nav-ctac-tab {
  flex: 1;
  padding: 7px 0;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.nav-ctac-tab.nav-ctac-tab--active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* Hidden panel */
.nav-ctac-panel--hidden { display: none !important; }

/* Optional label hint */
.nav-ctac-optional {
  font-weight: 400;
  color: rgba(0,0,0,0.35);
}

/* Close */
/* Topbar: back | tabs | close on one axis */
.nav-ctac-topbar {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  gap: 8px;
}
.nav-ctac-topbar-side {
  width: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-ctac-topbar-side--right { justify-content: flex-end; margin-left: auto; }

.nav-ctac-close,
.nav-ctac-back {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(0,0,0,0.4);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.nav-ctac-close:hover,
.nav-ctac-back:hover { background: rgba(0,0,0,0.13); color: var(--text); }

/* Header */
.nav-ctac-header {
  padding: 8px 24px 12px;
}
.nav-ctac-heading {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.4);
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-ctac-heading-topic {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(0,0,0,0.22);
  margin: 0;
  transition: color 0.2s;
}

/* Form */
.nav-ctac-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 20px 20px;
}
.nav-ctac-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.nav-ctac-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nav-ctac-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}
.nav-ctac-field-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
}
.nav-ctac-field-input::placeholder { color: rgba(0,0,0,0.28); }
.nav-ctac-field-input:focus { border-color: rgba(0,0,0,0.3); background: rgba(255,255,255,0.85); }
.nav-ctac-field-input.nav-ctac-error { border-color: #ef4444; animation: ctac-shake 0.3s; }

@keyframes ctac-shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}

/* Topic chips */
.nav-ctac-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nav-ctac-chips.nav-ctac-chips-error .nav-ctac-chip {
  border-color: #ef4444;
  animation: ctac-shake 0.3s;
}
.nav-ctac-chip {
  padding: 7px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.55);
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: none;
}
.nav-ctac-chip:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.18);
}
.nav-ctac-chip.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* Send button */
.nav-ctac-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 14px;
  border: none;
  background: var(--text);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  margin-top: 4px;
}
.nav-ctac-send:hover  { opacity: 0.85; }
.nav-ctac-send:active { transform: scale(0.97); }
.nav-ctac-rocket { font-size: 16px; line-height: 1; }

/* Footer note */
.nav-ctac-wa-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font);
  font-size: 11px;
  color: rgba(0,0,0,0.3);
  padding: 0 20px 16px;
  margin: 0;
}

/* Success screen */
.nav-ctac-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px 28px;
  gap: 12px;
}
.nav-ctac-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.nav-ctac-success-title {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: normal;
  color: var(--text);
  margin: 0;
}
.nav-ctac-success-body {
  font-family: var(--font);
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  margin: 0 0 8px;
  line-height: 1.5;
}
.nav-ctac-success .nav-ctac-send {
  width: 100%;
  margin-top: 0;
}

/* ── Mobile modal overlay ── */
.nav-ctac-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9997;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-ctac-backdrop.open { display: block; }

@media (max-width: 768px) {
  .nav-ctac {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100vw - 32px) !important;
    max-width: 440px !important;
    max-height: 88dvh !important;
    border-radius: 24px;
    transform-origin: center center;
  }
  .nav-ctac.open {
    animation: nav-ctac-mobile-in 0.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes nav-ctac-mobile-in {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
  }
}

/* ── Dark pill — over dark sections ── */
.nav--dark {
  background: rgba(18, 18, 18, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav--dark .logo-text,
.nav--dark .nav-links a,
.nav--dark .nav-dropdown-trigger,
.nav--dark .nav-dropdown-btn {
  color: rgba(255, 255, 255, 0.8);
}
.nav--dark .nav-links a:hover,
.nav--dark .nav-dropdown-trigger:hover,
.nav--dark .nav-dropdown-btn:hover,
.nav--dark .nav-item.open .nav-dropdown-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav--dark .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.75);
  color: rgba(255,255,255,0.9);
}
.nav--dark .btn-outline:hover { background: rgba(255,255,255,0.08); }
.nav--dark .btn-primary {
  background: #fff;
  color: #0d0d0d;
  border-color: transparent;
}
.nav--dark .btn-primary:hover {
  background: #e8e8e8;
}

/* ── LANDING LAYOUT ── */
.landing {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 48px;
  gap: 40px;
}

/* ── HERO ── */
.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 580px;
  gap: 0;
}

.hero-icon {
  color: var(--text-subtle);
  margin-bottom: 24px;
}

.landing-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
/* Second line — lighter, matches ux-components span treatment */
.landing-title span {
  font-weight: 400;
  color: var(--text-muted);
}

.landing-tagline {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.landing-tagline-em {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-proof {
  font-size: 13px;
  color: var(--text-subtle);
}
.hero-proof strong { color: var(--text-muted); font-weight: 600; }

/* ── CARDS ── */
.landing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  width: 100%;
}

.landing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  gap: 0;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.landing-card:hover {
  background: var(--bg-hover);
  border-color: var(--border);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  margin-bottom: 14px;
  transition: color 0.15s;
}
.landing-card:hover .card-icon { color: var(--text); }

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.card-agents {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
}

.agent-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-subtle);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 3px 10px;
  white-space: nowrap;
  transition: color 0.12s, border-color 0.12s;
}
.landing-card:hover .agent-pill {
  color: var(--text-muted);
  border-color: var(--text-subtle);
}

/* ── DASHBOARD ── */
.dashboard-text {
  width: 100%;
  max-width: 860px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.dashboard-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.2;
}

.dashboard-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

/* ── RESULTS ── */
.results-section {
  width: 100%;
  max-width: 860px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.results-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 20px;
  text-align: center;
}

.results-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.result-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.result-card:hover {
  border-color: var(--text-subtle);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.result-stat {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.result-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.result-desc {
  font-size: 13px;
  color: var(--text-subtle);
  line-height: 1.65;
  margin-top: 8px;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 6px;
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-hamburger:hover { background: var(--bg-card); }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease), width 0.22s var(--ease);
  transform-origin: center;
}
body.drawer-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.drawer-open .nav-hamburger span:nth-child(2) { opacity: 0; width: 0; }
body.drawer-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Side drawer overlay ── */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
body.drawer-open .nav-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ── Side drawer panel ── */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.25s var(--ease);
}
body.drawer-open .nav-drawer { transform: translateX(0); }

.nav-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.nav-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background 0.12s, color 0.12s;
}
.nav-drawer-close:hover { background: var(--bg-card); color: var(--text); }

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 12px;
  flex: 1;
}
.nav-drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.nav-drawer-links a svg {
  flex-shrink: 0;
  color: var(--text-subtle);
  transition: color 0.12s;
}
.nav-drawer-links a:hover,
.nav-drawer-links a.nav-active { background: var(--bg-card); color: var(--text); }
.nav-drawer-links a:hover svg,
.nav-drawer-links a.nav-active svg { color: var(--text); }

.nav-drawer-cta {
  padding: 16px 12px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-drawer-cta .btn {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm) !important;
}

/* ── Logo text ── */
.logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  white-space: nowrap;
  transition: opacity 0.12s;
}
.logo:hover .logo-text { opacity: 0.75; }
.nav--scrolled .logo-text { font-size: 14px; }

/* ── Dropdown trigger ── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  transition: color 0.12s;
  line-height: 1;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--text); }

/* ── Dropdown panel — position:fixed, top set by JS, left anchored by JS ── */
.nav-dropdown-panel {
  position: fixed;
  top: 64px;
  left: 20px;
  transform: translateY(-8px);
  width: min(720px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 40px rgba(0,0,0,0.10);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 499;
}
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* Resources — 2-col compact */
.nav-dropdown-panel--single {
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: min(400px, calc(100vw - 32px));
}
/* Solutions — 3-col grid */
.nav-dropdown-panel--solutions {
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  width: min(680px, calc(100vw - 32px));
}
.sol-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.1s;
}
.sol-item:hover { background: #f7f7f7; }
.sol-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sol-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background: #f3f4f6 !important;
}
.sol-icon svg { stroke: #52525b !important; }

/* ── Panel left column ── */
.nav-dd-left {
  padding: 8px;
  border-right: 1px solid var(--border);
}
.nav-dd-left--full {
  border-right: none;
}

/* ── Left column items (buttons for hover interaction) ── */
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
  text-align: left;
  font-family: var(--font);
  transition: background 0.12s;
}
.nav-dd-item:hover,
.nav-dd-item.active { background: var(--bg-card); }

/* ── Left column links (for Resources single-col) ── */
.nav-dd-item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: background 0.12s;
  text-decoration: none;
}
.nav-dd-item-link:hover { background: var(--bg-card); }

/* ── Dot ── */
.nav-dd-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-dd-dot--blue   { background: #3b82f6; }
.nav-dd-dot--orange { background: #f97316; }
.nav-dd-dot--yellow { background: #eab308; }
.nav-dd-dot--green  { background: #22c55e; }
.nav-dd-dot--red    { background: #dc2626; }

/* ── Item texts ── */
.nav-dd-texts { flex: 1; }
.nav-dd-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.nav-dd-sub {
  display: block;
  font-size: 11px;
  color: var(--text-subtle);
  margin-top: 2px;
  line-height: 1.4;
}
.nav-dd-chevron { color: var(--text-subtle); flex-shrink: 0; }

/* ── Panel right column ── */
.nav-dd-right { padding: 8px; }

.nav-dd-group {
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav-dd-group.active { display: flex; }

.nav-dd-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.12s;
}
.nav-dd-link:hover { background: var(--bg-card); }
.nav-dd-link-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.nav-dd-link-sub {
  font-size: 11px;
  color: var(--text-subtle);
}

/* ── Mobile drawer accordion ── */
.nav-drawer-accordion {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  text-align: left;
  transition: background 0.12s, color 0.12s;
}
.nav-drawer-accordion:hover { background: var(--bg-card); color: var(--text); }
.nav-drawer-accordion .acc-chevron { margin-left: auto; transition: transform 0.2s var(--ease); }
.nav-drawer-accordion.open .acc-chevron { transform: rotate(180deg); }

.nav-drawer-sub {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding-left: 20px;
}
.nav-drawer-sub.open { display: flex; }
.nav-drawer-sub a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.12s;
}
.nav-drawer-sub a:hover { background: var(--bg-card); color: var(--text); }
.nav-drawer-group-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
/* Static sub-section label inside a drawer sub-panel (e.g. Workers under Workforce) */
.nav-drawer-inner-label {
  display: block;
  padding: 10px 12px 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 4px;
}
.nav-drawer-inner-label:first-child { margin-top: 0; }

/* Sub-accordion within the Products drawer */
.nav-drawer-sub-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  text-align: left;
  transition: background 0.12s, color 0.12s;
  margin-top: 6px;
}
.nav-drawer-sub-accordion:hover { background: var(--bg-card); color: var(--text); }
.nav-drawer-sub-accordion .acc-chevron { transition: transform 0.2s var(--ease); flex-shrink: 0; }
.nav-drawer-sub-accordion.open .acc-chevron { transform: rotate(180deg); }
.nav-drawer-sub-panel {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding-left: 4px;
  border-left: 2px solid var(--border);
  margin: 2px 0 4px 12px;
}
.nav-drawer-sub-panel.open { display: flex; }

/* ── Active state for trigger ── */
.nav-dropdown-trigger.nav-active { color: var(--text); font-weight: 600; }

/* ── Products mega-menu (Amplemarket style) ── */
.nav-item { position: static; }
.nav-dropdown-btn {
  display: inline-flex; align-items: center;
  padding: 6px 10px; font-size: 14px; font-weight: 500;
  font-family: var(--font); color: var(--text-muted);
  background: transparent; border: none; border-radius: var(--radius-sm);
  cursor: pointer; line-height: 1; white-space: nowrap;
  transition: color 0.12s;
}
.nav-dropdown-btn:hover,
.nav-item.open .nav-dropdown-btn { color: var(--text); }
.nav-mega {
  position: fixed; top: 64px; left: 20px;
  width: min(820px, calc(100vw - 32px));
  background: #ffffff; border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 40px rgba(0,0,0,0.10);
  display: flex; flex-direction: row; z-index: 500; overflow: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
.nav-item.open .nav-mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.mega-left {
  width: 256px; flex-shrink: 0; padding: 10px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px;
}
.mega-cat {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px;
  border-radius: var(--radius-md); cursor: pointer; border: none;
  background: transparent; text-align: left; width: 100%;
  font-family: var(--font); transition: background 0.1s;
}
.mega-cat:hover, .mega-cat.active { background: var(--bg-card); }
.mega-cat-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card) !important;
}
.mega-cat-icon svg { stroke: var(--text-muted) !important; }
.mega-cat-texts { flex: 1; min-width: 0; }
.mega-cat-title { display: block; font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.mega-cat-sub { display: block; font-size: 11px; color: var(--text-subtle); line-height: 1.3; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mega-cat-chevron { width: 14px; height: 14px; color: var(--text-subtle); flex-shrink: 0; }
.mega-right { flex: 1; padding: 12px; min-height: 300px; overflow-y: auto; }
.mega-panel { display: none; }
.mega-panel.active { display: block; }
.mega-section { margin-bottom: 10px; }
.mega-section:last-child { margin-bottom: 0; }
.mega-section-head {
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-subtle); padding: 6px 8px 3px;
}
.mega-link-item {
  display: flex; flex-direction: column; padding: 8px 10px;
  border-radius: 10px; text-decoration: none; transition: background 0.1s;
}
.mega-link-item:hover { background: #f7f7f7; }
.mega-link-title { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.3; }
.mega-link-sub { font-size: 12px; color: var(--text-muted); line-height: 1.4; margin-top: 3px; }
.mega-business-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mega-business-col:first-child { padding-right: 10px; border-right: 1px solid var(--border); }
.mega-business-col:last-child { padding-left: 10px; }

/* Expanded product groups inside Business panel */
.mega-prod-group { margin-bottom: 13px; }
.mega-prod-group:last-child { margin-bottom: 0; }
.mega-prod-label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-subtle);
  padding: 5px 8px 3px;
}
.mega-prod-link {
  display: block; padding: 4px 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
  border-radius: var(--radius-sm); text-decoration: none;
  transition: background 0.1s, color 0.1s; line-height: 1.4;
}
.mega-prod-link:hover { background: var(--bg-card); }
@media (max-width: 1024px) { .nav-mega { display: none !important; } .nav-item { display: none; } }

/* ── AM HERO ── */
.am-hero {
  min-height: 70dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/Gemini_Generated_Image_mn79utmn79utmn79.png') center center / cover no-repeat;
  padding: 120px 24px 60px;
}

.am-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.am-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px 5px 5px;
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  border-radius: 99px;
  text-decoration: none;
  margin-bottom: 40px;
}
.am-badge:hover { background: rgba(255,255,255,0.72); }

.am-badge-label {
  background: linear-gradient(135deg, #6d28d9, #3b82f6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  font-family: var(--font);
}

.am-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font);
}

.am-headline {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}

.am-caption {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: var(--font);
}

/* ── Apple Intelligence glow wrap ── */
.cta-glow-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 26px;
}

.cta-glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  overflow: hidden;
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
}
.cta-glow-ring::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    from 0deg,
    #c9b1fd,
    #7ab4f5,
    #72d5c8,
    #a8e6a3,
    #ffd580,
    #ffb3c6,
    #c9b1fd
  );
  animation: glow-spin 5s linear infinite;
}
@keyframes glow-spin {
  to { transform: rotate(360deg); }
}

/* Hero-scoped cta-box override */
.am-cta-box {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

/* ── Prompt pills row ── */
.cta-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  width: 100%;
  max-width: 560px;
  justify-content: center;
}

/* ── Hero prompt pills ── */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1.5px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: none;
}
.cta-pill:hover {
  color: var(--text);
  background: rgba(255,255,255,0.92);
  border-color: rgba(0,0,0,0.18);
}

.am-cta-group {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1.5px solid #e2e2e2;
  border-radius: 100px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: visible;
}

.am-email {
  flex: 1;
  border: none;
  border-radius: 0;
  outline: none;
  padding: 10px 0;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  min-width: 0;
}
.am-email::placeholder { color: #aaa; }

.am-prompt-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
}
.am-prompt-send:hover  { opacity: 0.82; }
.am-prompt-send:active { transform: scale(0.93); }

/* ── TRUST SECTION ── */
.trust-section {
  background: var(--bg);
  padding: 80px 48px 80px;
  width: 100%;
}

.trust-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.trust-label {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font);
  text-align: center;
}

.trust-stories-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  text-decoration: none;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease);
}
.trust-stories-btn:hover { border-color: var(--text-subtle); color: var(--text); }

/* Grid wrapper — holds corner dots + the grid */
.trust-grid-wrap {
  position: relative;
}

/* Corner dots */
.trust-corner {
  display: none;
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--border);
  border-radius: 50%;
  z-index: 1;
}
.trust-corner--tl { top: -2.5px;  left: -2.5px;  }
.trust-corner--tr { top: -2.5px;  right: -2.5px; }
.trust-corner--bl { bottom: -2.5px; left: -2.5px;  }
.trust-corner--br { bottom: -2.5px; right: -2.5px; }

/* Logo grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 8px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-logo { height: 80px; padding: 0 12px; font-size: 13px; }
}
@media (max-width: 380px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-logo { height: 72px; padding: 0 10px; font-size: 12px; }
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 16px;
  color: #b0afab;
  letter-spacing: 0.01em;
  transition: color 0.15s var(--ease);
  cursor: default;
  overflow: hidden;
  min-width: 0;
}
.trust-logo:hover { color: #888884; }

.trust-logo img {
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.15s var(--ease);
}
.trust-logo:hover img { opacity: 0.75; }

/* Wordmark style variants — all 16px for optical consistency */
.trust-logo--bold   { font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }
.trust-logo--light  { font-weight: 300; font-size: 16px; letter-spacing: 0.04em; }
.trust-logo--mono   { font-weight: 600; font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; }
.trust-logo--wide   { font-weight: 500; font-size: 16px; letter-spacing: 0.12em; text-transform: uppercase; }
.trust-logo--serif  { font-weight: 400; font-size: 16px; font-style: italic; }

/* ── Responsive ── */
.br-lg { display: inline; }

/* Mid-range desktop: reduce pill margins so nav links don't wrap */
@media (min-width: 1025px) and (max-width: 1360px) {
  .nav--scrolled { left: 6%; right: 6%; }
}

@media (max-width: 1024px) {
  .nav--scrolled { left: 12px; right: 12px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-dropdown { display: none; }

  .trust-section { padding: 48px 24px 60px; }

  .landing-title { font-size: 32px; }
  .landing-tagline { font-size: 15px; }
  .br-lg { display: none; }

  .landing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .results-section {
    padding-top: 28px;
  }

  .results-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .result-card {
    padding: 20px 18px;
    gap: 4px;
  }

  .result-stat {
    font-size: 26px;
  }

  .result-desc {
    font-size: 13px;
    margin-top: 4px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE SECTION — aurora orb tab switcher
   ═══════════════════════════════════════════════════════════════ */

.sc-section {
  padding: 80px 48px 100px;
}

.sc-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.sc-card {
  background: linear-gradient(160deg, #edf2f8 0%, #e6ecf5 100%);
  border: 1px solid rgba(100,130,180,0.12);
  border-radius: 24px;
  padding: 28px 32px 32px;
}

/* ── Top row ── */
.sc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 44px;
}

/* Pill bar — contains the tabs */
.sc-tabs {
  display: inline-flex;
  gap: 2px;
  background: #e8ecf1;
  border-radius: 9999px;
  padding: 4px;
}

.sc-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-subtle);
  cursor: pointer;
  transition:
    background 100ms var(--ease),
    color      100ms var(--ease),
    box-shadow 100ms var(--ease);
}

.sc-tab--active {
  background: #ffffff;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
}

/* Industry pill tabs */
.sc-ind-tabs {
  display: flex;
  overflow-x: auto;
  gap: 6px;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.sc-ind-tabs::-webkit-scrollbar { display: none; }

.sc-ind-tab {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 9999px;
  border: 1.5px solid rgba(0,0,0,0.10);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s var(--ease), border-color 0.12s var(--ease), color 0.12s var(--ease);
}
.sc-ind-tab:hover {
  background: var(--color-bg-card, #f4f6f9);
  border-color: rgba(0,0,0,0.18);
  color: var(--color-text-primary);
}
.sc-ind-tab--active {
  background: var(--accent, #c07060);
  border-color: var(--accent, #c07060);
  color: #fff;
}

.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sc-dot--warm { background: #f59e0b; }
.sc-dot--blue { background: #3b82f6; }
.sc-dot--teal { background: #10b981; }

/* Meta (right side of top row) */
.sc-meta {
  text-align: right;
  min-width: 240px;
}

.sc-meta-panel        { display: none; }
.sc-meta-panel--active { display: block; }

.sc-meta-title {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 2px;
}

.sc-meta-sub {
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* ── Orb stage ── */
.sc-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  margin-bottom: 36px;
}

.sc-orb-panel        { display: none; justify-content: center; align-items: center; }
.sc-orb-panel--active { display: flex; }

/* Aurora orb base */
.sc-orb {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  animation: orb-float 7s ease-in-out infinite;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.18),
    0 10px 30px rgba(0,0,0,0.10);
}

/* Shine highlight */
.sc-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 28% 22%, rgba(255,255,255,0.42) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* Grain noise */
.sc-orb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

/* Consumers — warm coral / amber / rose */
.sc-orb--consumers {
  background:
    radial-gradient(ellipse at 28% 22%, rgba(255,148,76,0.97) 0%, transparent 52%),
    radial-gradient(ellipse at 72% 30%, rgba(250,100,120,0.78) 0%, transparent 48%),
    radial-gradient(ellipse at 48% 72%, rgba(255,208,96,0.72) 0%, transparent 54%),
    radial-gradient(ellipse at 15% 68%, rgba(238,158,96,0.68) 0%, transparent 42%),
    radial-gradient(ellipse at 68% 72%, rgba(230,80,100,0.45) 0%, transparent 38%);
  background-color: #e07040;
  animation-duration: 7s;
}

/* Commercial — steel blue / cobalt / teal */
.sc-orb--commercial {
  background:
    radial-gradient(ellipse at 32% 24%, rgba(110,165,240,0.95) 0%, transparent 50%),
    radial-gradient(ellipse at 72% 58%, rgba(40,85,200,0.88) 0%, transparent 48%),
    radial-gradient(ellipse at 18% 66%, rgba(55,190,210,0.78) 0%, transparent 44%),
    radial-gradient(ellipse at 64% 18%, rgba(155,195,255,0.72) 0%, transparent 40%),
    radial-gradient(ellipse at 52% 80%, rgba(70,140,80,0.52) 0%, transparent 38%);
  background-color: #2850a0;
  animation-duration: 8.5s;
  animation-delay: -2.5s;
}

/* Employees — teal / sage / lime */
.sc-orb--employees {
  background:
    radial-gradient(ellipse at 34% 26%, rgba(70,210,192,0.92) 0%, transparent 54%),
    radial-gradient(ellipse at 72% 54%, rgba(140,198,100,0.80) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(208,232,140,0.68) 0%, transparent 44%),
    radial-gradient(ellipse at 62% 18%, rgba(48,178,162,0.82) 0%, transparent 42%),
    radial-gradient(ellipse at 55% 76%, rgba(180,220,100,0.55) 0%, transparent 38%);
  background-color: #32a888;
  animation-duration: 9.5s;
  animation-delay: -4.5s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0px)   rotate(0deg); }
  30%       { transform: translateY(-10px) rotate(1.5deg); }
  65%       { transform: translateY(5px)   rotate(-0.8deg); }
}

/* ── Centre content panels ── */
.sc-body {
  margin-bottom: 28px;
}

.sc-panel        { display: none; }
.sc-panel--active { display: block; }

/* ── ElevenLabs-style category tab bar ── */
.sc-cat-bar {
  display: flex;
  gap: 2px;
  background: rgba(100,130,180,0.15);
  border-radius: 9999px;
  padding: 3px;
  width: fit-content;
  margin: 0 auto 20px;
}

.sc-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  transition: background 100ms var(--ease), box-shadow 100ms var(--ease), color 100ms var(--ease);
}
.sc-cat-tab--active {
  background: #ffffff;
  color: #18181b;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.06);
}

.sc-cat-orb {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sc-cat-orb--orange { background: radial-gradient(ellipse at 32% 30%, #fb923c 0%, #c2410c 100%); }
.sc-cat-orb--blue   { background: radial-gradient(ellipse at 32% 30%, #60a5fa 0%, #1e40af 100%); }
.sc-cat-orb--purple { background: radial-gradient(ellipse at 32% 30%, #c084fc 0%, #6d28d9 100%); }
.sc-cat-orb--gray   { background: radial-gradient(ellipse at 32% 30%, #d1d5db 0%, #4b5563 100%); }

/* ── Category content panels ── */
.sc-cat-panel        { display: none; }
.sc-cat-panel--active { display: block; }

/* ── Overview card (Personal / Workforce / API) ── */
.sc-overview-card {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px 24px;
  min-height: 220px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.sc-overview-card--active { display: flex; }

.sc-ov-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.05);
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,0,0,0.40);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sc-ov-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #18181b;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.sc-ov-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(24,24,27,0.58);
  margin: 0;
  flex: 1;
}

.sc-ov-footer {
  margin-top: 20px;
  display: flex;
}

/* ── Business sub-panels (assets / liabilities) ── */
.sc-biz-sub        { display: none; }
.sc-biz-sub--active { display: block; }

/* ── Bottom product pill bar ── */
.sc-prod-bar {
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 20px;
}

.sc-prod-pills {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}
.sc-prod-pills--active { display: flex; }

.sc-prod-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
  white-space: nowrap;
  transition: color 100ms var(--ease);
}
.sc-prod-pill--active {
  background: #ffffff;
  color: #18181b;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
}
.sc-prod-pill:hover:not(.sc-prod-pill--active) { color: #18181b; }

.sc-panel-inner {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e4e7ec;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
}

.sc-panel-left {
  flex: 0 0 46%;
  background: #ffffff;
  border-right: 1px solid #e4e7ec;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sc-panel-right {
  flex: 1;
  background: #ffffff;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}

/* Product rows */
.sc-prow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-default);
}
.sc-prow:hover:not(.sc-prow--active) { background: rgba(244,246,249,0.7); }

.sc-prow--active {
  background: #f4f6f9;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Per-product right-panel descriptions */
.sc-prod-desc {
  display: none;
  flex-direction: column;
  flex: 1;
}
.sc-prod-desc--active { display: flex; }

.sc-pname {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  flex: 1;
}

.sc-pcat {
  font-family: var(--font);
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Mini orbs */
.sc-porb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.sc-porb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 28%, rgba(255,255,255,0.5) 0%, transparent 55%);
  z-index: 1;
}

/* Consumers mini orbs — violet / sky / slate */
.sc-porb--c1 {
  background: radial-gradient(ellipse at 32% 30%, #a78bfa 0%, #5b21b6 100%);
}
.sc-porb--c2 {
  background: radial-gradient(ellipse at 32% 30%, #67e8f9 0%, #0369a1 100%);
}
.sc-porb--c3 {
  background: radial-gradient(ellipse at 32% 30%, #94a3b8 0%, #1e293b 100%);
}

/* Commercial mini orbs — amber / indigo */
.sc-porb--b1 {
  background: radial-gradient(ellipse at 32% 30%, #fbbf24 0%, #92400e 100%);
}
.sc-porb--b2 {
  background: radial-gradient(ellipse at 32% 30%, #60a5fa 0%, #1e3a8a 100%);
}

/* Employee mini orbs — emerald */
.sc-porb--e1 {
  background: radial-gradient(ellipse at 32% 30%, #34d399 0%, #065f46 100%);
}

/* Explore button */
.sc-explore {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-default), color var(--duration-fast) var(--ease-default);
  align-self: flex-start;
}
.sc-explore:hover {
  border-color: rgba(0,0,0,0.28);
  color: var(--color-text-primary);
}

/* Right panel text */
.sc-ph-label {
  font-family: var(--font);
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.sc-ph-text {
  font-family: var(--font);
  font-size: 15px;
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
  margin: 0;
  flex: 1;
}

.sc-panel-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sc-panel-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--color-text-primary);
  color: var(--color-bg-base);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--duration-fast) var(--ease-default);
}
.sc-panel-btn:hover { opacity: 0.82; color: var(--color-bg-base); }

/* ── Bottom sub-pills ── */
.sc-bottom {
  display: flex;
  justify-content: center;
}

/* Pill bar — same treatment as top tabs */
.sc-subpills {
  display: none;
  gap: 2px;
  background: #e8ecf1;
  border-radius: 9999px;
  padding: 4px;
  flex-wrap: nowrap;
}
.sc-subpills--active { display: inline-flex; }

.sc-spill {
  padding: 8px 18px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-subtle);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 100ms var(--ease),
    color      100ms var(--ease),
    box-shadow 100ms var(--ease);
}

.sc-spill--active {
  background: #ffffff;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
}

.sc-spill:hover:not(.sc-spill--active) {
  color: var(--text);
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .sc-section {
    padding: 48px 16px 60px;
  }

  .sc-card {
    padding: 20px 16px 24px;
    border-radius: 16px;
  }

  .sc-top {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .sc-meta {
    text-align: left;
    min-width: 0;
  }

  .sc-tabs {
    flex-wrap: wrap;
  }

  .sc-panel-inner {
    flex-direction: column;
    gap: 1px;
  }

  .sc-panel-left {
    flex: none;
  }

  .sc-pcat {
    display: none;
  }

  .sc-orb {
    width: 260px;
    height: 260px;
  }

  .sc-stage {
    min-height: 300px;
    margin-bottom: 24px;
  }

  .sc-cat-bar {
    flex-wrap: wrap;
    background: transparent;
    padding: 0;
    gap: 6px;
    width: 100%;
  }
  .sc-cat-tab { border: 1.5px solid rgba(0,0,0,0.10); flex: 1; justify-content: center; }
  .sc-cat-tab--active { border-color: transparent; }

  .sc-overview-card { padding: 20px; min-height: 180px; }
  .sc-ov-title { font-size: 1.2rem; }

  .sc-prod-pill { font-size: 12px; padding: 6px 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   ACCORDION SECTION
   ═══════════════════════════════════════════════════════════════ */

.acc-section {
  padding: 80px 48px 160px;
  background: var(--bg);
}

.acc-wrap {
  max-width: 780px;
  margin: 0 auto;
}

/* Section heading */
.acc-col-head {
  text-align: center;
  margin-bottom: 48px;
}

.acc-eyebrow {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.acc-heading {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: normal;
}

.acc-sub {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-subtle);
  margin: 0;
  line-height: 1.6;
}

/* ── Accordion container ── */
.accordion {
  display: flex;
  flex-direction: column;
}

/* ── Item ── */
.acc-item {
  border-bottom: 1px solid var(--border);
}
.acc-item:first-child {
  border-top: none;
}

/* ── Trigger ── */
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg);
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition:
    background var(--duration-fast) var(--ease),
    color      var(--duration-fast) var(--ease);
}

.acc-trigger:hover {
  background: transparent;
}

.acc-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 2px;
  z-index: 1;
  position: relative;
}

.acc-item--open .acc-trigger {
  background: transparent;
  color: var(--text);
  font-weight: 600;
}

/* ── Plus / cross icon ── */
.acc-chevron {
  flex-shrink: 0;
  color: var(--text-subtle);
  transition: transform var(--duration-normal) var(--ease), color var(--duration-normal) var(--ease);
}

.acc-item--open .acc-chevron {
  transform: rotate(45deg);
  color: var(--text);
}

/* ── Panel — grid animation ── */
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-normal) var(--ease);
}

.acc-item--open .acc-panel {
  grid-template-rows: 1fr;
}

.acc-body {
  overflow: hidden;
  padding: 0 24px;
  transition: padding var(--duration-normal) var(--ease);
}

.acc-item--open .acc-body {
  padding: 0 24px 20px;
}

.acc-body p {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-subtle);
  margin: 0;
}

.acc-body strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Disabled state ── */
.acc-item--disabled .acc-trigger {
  cursor: not-allowed;
  opacity: 0.45;
}

.acc-item--disabled .acc-trigger:hover {
  background: var(--bg);
}

/* Badge inside trigger */
.acc-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 9999px;
  background: var(--bg-hover);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-subtle);
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Loading skeleton inside panel ── */
.acc-loader {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 0 4px;
}

.acc-loader .skel {
  height: 14px;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .acc-section {
    padding: 60px 20px 80px;
  }

  .acc-heading {
    font-size: 1.6rem;
  }

  .acc-trigger {
    padding: 16px 18px;
    font-size: 14px;
  }

  .acc-body {
    padding: 0 18px;
  }

  .acc-item--open .acc-body {
    padding: 0 18px 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT CTA SECTION
   ═══════════════════════════════════════════════════════════════ */

.cta-section {
  padding: 100px 48px 120px;
  background: var(--bg);
  text-align: center;
}

.cta-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 14px;
}

.cta-sub {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-subtle);
  margin: 0 0 32px;
}

.cta-box {
  background: #f8f9fb;
  border-radius: 24px;
  padding: 20px 20px 14px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
}

.cta-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  min-height: 44px;
  box-sizing: border-box;
}

.cta-input::placeholder {
  color: #aaa9a8;
}

.cta-box-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
}

.cta-attach-wrap {
  position: relative;
}
.cta-attach {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: background 0.15s, color 0.15s;
}
.cta-attach:hover { background: rgba(0,0,0,0.11); color: #555; }

/* Prompt packs dropdown */
.cta-prompts {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 8px 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  z-index: 200;
}
.cta-prompts.open { display: block; }
.cta-prompts-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px 6px;
  margin: 0;
}
.cta-prompt-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 9px 10px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  text-align: left;
  cursor: pointer;
  border-radius: 9px;
  transition: background 0.12s;
}
.cta-prompt-item:hover { background: rgba(255,255,255,0.09); }

.cta-right-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Hero department dropdown ── */
.cta-dept-wrap { position: relative; }

.cta-dept-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 190px;
  overflow: hidden;
  z-index: 200;
}
.cta-dept-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.cta-dept-option:hover { background: rgba(0,0,0,0.04); }
.cta-dept-option--active { font-weight: 600; }
.cta-dept-option--claims { color: #dc2626; }

.cta-build {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #888;
  padding: 0 4px;
}

/* ── Popover department selector screen ── */
.nav-ctac-dept-screen {
  padding: 4px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-ctac-dept-heading {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.4);
  margin: 0 0 4px;
}
.nav-ctac-dept-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-ctac-dept-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.03);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  width: 100%;
}
.nav-ctac-dept-btn:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
}
.nav-ctac-dept-btn--claims { border-color: rgba(220,38,38,0.2); }
.nav-ctac-dept-btn--claims:hover { background: rgba(220,38,38,0.04); border-color: rgba(220,38,38,0.35); }
.nav-ctac-dept-icon { font-size: 22px; line-height: 1; }
.nav-ctac-dept-name { font-size: 15px; font-weight: 600; color: var(--text); margin: 0; }
.nav-ctac-dept-desc { font-size: 12px; color: var(--text-muted); margin: 2px 0 0; }

.cta-mic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.cta-send {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #5a5a5a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  transition: background var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease);
}

.cta-send-arrow,
.cta-send-rocket {
  position: absolute;
  transition: opacity 150ms ease, transform 150ms ease;
}

.cta-send-rocket {
  font-size: 17px;
  opacity: 0;
  transform: scale(0.6) rotate(-30deg);
}

.cta-send:hover {
  background: #222;
  transform: scale(1.06);
}

.cta-send:hover .cta-send-arrow {
  opacity: 0;
  transform: scale(0.6);
}

.cta-send:hover .cta-send-rocket {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.cta-send:active {
  transform: scale(0.96);
}

/* ── Contact card — liquid glass, fixed position ── */
.cta-right-controls { position: relative; }

.ctac {
  position: fixed;
  bottom: 100px;
  right: 40px;
  width: 420px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  z-index: 9999;
  transform-origin: bottom right;
}
.ctac.open {
  display: flex;
  animation: ctac-in 0.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ctac-in {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);    }
}

/* X close — top right corner */
.ctac-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.07);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.45);
  transition: background 0.15s, color 0.15s;
  z-index: 1;
}
.ctac-close:hover { background: rgba(0,0,0,0.13); color: var(--text); }

/* Heading area */
.ctac-body {
  padding: 32px 24px 20px;
}
.ctac-heading {
  font-family: var(--font);
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
}
.ctac-heading-muted {
  color: rgba(0, 0, 0, 0.3);
}

/* Input row */
.ctac-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 14px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 10px 10px 16px;
}
.ctac-search-icon {
  color: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.ctac-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
}
.ctac-input::placeholder { color: rgba(0,0,0,0.3); }

.ctac-send {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--text);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
}
.ctac-send:hover  { opacity: 0.8; }
.ctac-send:active { transform: scale(0.93); }

/* Suggestion chips */
.ctac-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}
.ctac-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 12.5px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.ctac-chip:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.18);
}

/* WhatsApp note */
.ctac-wa-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font);
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  padding: 8px 16px 14px;
  margin: 0;
}

@media (max-width: 480px) {
  .ctac { width: calc(100vw - 32px); right: -12px; }
  .ctac-heading { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

/* ── Underinsured section ── */
.underinsured-section {
  padding: 96px 24px;
  text-align: center;
}
.underinsured-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.underinsured-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 24px;
}
.underinsured-body {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 580px;
}

/* ── Showcase section header ── */
.sc-section-header {
  padding: 80px 24px 0;
  text-align: center;
}
.sc-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

/* ── Footer CTA section ── */
.footer-cta-section {
  padding: 100px 24px;
  text-align: center;
  background: var(--text);
}
.footer-cta-wrap {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.footer-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}
.footer-cta-btn:hover { opacity: 0.88; }
.footer-cta-btn:active { transform: scale(0.98); }

/* ── Modal mode (footer CTA, always centered) ── */
.nav-ctac--modal {
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  transform-origin: center center;
}
.nav-ctac--modal.open {
  animation: nav-ctac-modal-in 0.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes nav-ctac-modal-in {
  from { opacity: 0; transform: translate(-50%, -46%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  margin-top: 0;
}

.footer-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-logo {
  text-decoration: none;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.footer-link {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

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

.footer-address {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-subtle);
  font-style: normal;
  line-height: 1.6;
  margin: 4px 0 0;
}

.footer-copy {
  width: 100%;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-subtle);
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .cta-section {
    padding: 72px 20px 80px;
  }

  .site-footer {
    padding: 36px 20px;
  }

  .footer-wrap {
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   DEEP INDUSTRY EXPERTISE SECTION
   ═══════════════════════════════════════════════════════════════ */

.expertise-section {
  padding: 100px 48px;
  --accent: #5aabdc;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(40, 110, 200, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 18%, rgba(15, 150, 180, 0.18) 0%, transparent 50%),
    #102a4a;
  overflow: hidden;
}

.expertise-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left column ── */
.expertise-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.expertise-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.expertise-italic {
  font-style: italic;
  color: #d4924a;
}

.expertise-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 32px;
  max-width: 400px;
}

.expertise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.exp-pill {
  padding: 6px 15px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.14s var(--ease);
  line-height: 1;
}

.exp-pill:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.exp-pill.exp-pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.expertise-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  transition: opacity 0.14s var(--ease);
}
.expertise-view-btn:hover { opacity: 0.82; }

/* ── Right column ── */
.expertise-right {
  display: flex;
  flex-direction: column;
}

.expertise-cards {
  position: relative;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
}

.expertise-card {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  color: #18181b;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease);
}

.expertise-card.expertise-card--active {
  opacity: 1;
  pointer-events: auto;
}

.expertise-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  background: #f4f6f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.expertise-card-icon svg {
  stroke: #18181b;
}

.expertise-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #18181b;
}

.expertise-card-body {
  font-size: 14px;
  line-height: 1.68;
  color: rgba(24, 24, 27, 0.58);
  margin: 0;
}

/* ── Navigation (dots + arrows) ── */
.expertise-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 2px;
}

.expertise-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.expertise-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}

.expertise-dot.expertise-dot--active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}

.expertise-arrows {
  display: flex;
  gap: 8px;
}

.expertise-prev,
.expertise-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: background 0.14s var(--ease), border-color 0.14s var(--ease);
}

.expertise-prev:hover,
.expertise-next:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .expertise-section { padding: 64px 24px 72px; }
  .expertise-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .expertise-body { max-width: none; }
  .expertise-cards { height: 360px; }
  .expertise-card { padding: 32px 36px; }
}

@media (max-width: 640px) {
  .expertise-section { padding: 56px 20px 64px; }
  .expertise-heading { font-size: 2rem; }
  .expertise-cards { height: 400px; }
  .expertise-card { padding: 28px; }
  .expertise-card-title { font-size: 1.25rem; }
}
