/* ============================================
   HaleAla.com — Fractional AI Operator
   Stylesheet v2.0
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Deep turquoise / Hawaiian ocean blue palette */
  --ocean-50: #E6F4FA;
  --ocean-100: #C4E7F5;
  --ocean-200: #89CFE8;
  --ocean-300: #3FB5D8;
  --ocean-400: #1E9EC5;
  --ocean-500: #0D84AB;
  --ocean-600: #096D8F;
  --ocean-700: #075873;
  --ocean-800: #054358;
  --ocean-900: #032F3E;

  --navy-900: #081A24;
  --navy-800: #0E2A38;
  --navy-700: #143D50;
  --navy-600: #1A5068;

  --text-primary: #0F2630;
  --text-heading: #0F2630;
  --text-body: #1C3A47;
  --text-secondary: #3A5F6F;
  --text-muted: #6A919F;

  --bg-white: #FFFFFF;
  --bg-light: #F2F9FC;
  --bg-alt: #E4F1F7;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(8, 26, 36, 0.08);
  --shadow-md: 0 4px 12px rgba(8, 26, 36, 0.10);
  --shadow-lg: 0 8px 30px rgba(8, 26, 36, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s ease;

  /* AIElite page tokens */
  --border-color: #D1E8F0;
  --accent-cyan: #0D84AB;
  --text-light: #9BBAC7;

  /* Z-index stack */
  --z-modal: 2000;
  --z-nav: 1000;
  --z-dropdown: 200;
  --z-tooltip: 300;

  /* Founding pricing accent */
  --founding-gold: #F0B429;

  /* Error / crossed-out accent */
  --error-red: #CC0000;

  /* Deal / sale price accent */
  --deal-green: #1A9C5B;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--ocean-600);
  text-decoration: none;
  transition: color var(--transition);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 860px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.text-center {
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--ocean-500);
  color: #fff;
  border-color: var(--ocean-500);
}

.btn-primary:hover {
  background: var(--ocean-600);
  border-color: var(--ocean-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--ocean-500);
  border-color: var(--ocean-500);
}

.btn-outline:hover {
  background: var(--ocean-500);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--ocean-600);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--ocean-100);
  color: var(--ocean-700);
  border-color: var(--ocean-100);
}

.btn-go {
  background: var(--deal-green);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-go:hover {
  background: #157d49;
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
  border-color: var(--ocean-100);
  color: var(--ocean-700);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* Modal: Call Me form */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 26, 36, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--bg-white);
  border-radius: 12px;
  width: 420px;
  max-width: calc(100% - 32px);
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
/* Modal close button */
.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
}
.modal-close:focus { outline: 2px solid var(--ocean-200); border-radius:6px; }
.modal h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.modal .modal-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.form-row { margin-bottom: 0.9rem; }
.form-row label { display:block; font-weight:600; margin-bottom:0.25rem; font-size:0.9rem; }
.form-row input[type="text"], .form-row input[type="tel"], .form-row textarea, .form-row select {
  width:100%; padding:0.6rem; border:1px solid var(--ocean-100); border-radius:8px; font-size:0.95rem;
}
.form-row textarea { min-height:56px; resize:vertical; }
.form-row-question {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  flex-basis: 100%;
  grid-column: 1 / -1;
}
.form-row-question .question-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
.form-row-question .question-textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.modal-actions { display:flex; gap:0.5rem; justify-content:flex-end; margin-top:0.5rem; }
.modal .disabled { opacity:0.55; cursor:not-allowed; }
.form-hint { font-size:0.85rem; color:var(--text-muted); margin-top:0.5rem; }

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Use the smaller 'scrolled' padding by default so the navbar doesn't change size on scroll */
  padding: 0.6rem 0;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ocean-600);
  letter-spacing: -0.02em;
}

.logo span {
  font-weight: 400;
  opacity: 0.8;
}

#navbar.scrolled .logo {
  color: var(--ocean-600);
}

#navbar.scrolled .logo span {
  color: var(--ocean-400);
}

.nav-pill {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ocean-500);
  border: 1px solid var(--ocean-300);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--transition);
  margin: 0 auto;
}

#navbar.scrolled .nav-pill {
  color: var(--ocean-500);
  border-color: var(--ocean-300);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Force nav CTA to stay on one line */
.btn-nav {
  white-space: nowrap;
}

/* Availability label shown next to Call Me button in the nav */
.call-availability {
  display: block;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
  line-height: 1.2;
  text-align: center;
}
.call-availability .call-hours {
  display: block;
  white-space: nowrap;
}
.call-availability .call-status {
  display: block;
  white-space: nowrap;
  font-weight: 700;
  color: #b30000;
  background: #ffeaea;
  border-radius: 6px;
  padding: 2px 8px;
  margin-top: 2px;
  box-shadow: 0 1px 4px rgba(179,0,0,0.04);
}

/* Stack Call Me button and availability under each other in the nav */
.callme-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
}

/* Disabled look for nav buttons when outside business hours */
.btn.disabled, .btn:disabled, .btn.disabled.btn-nav {
  opacity: 0.85;
  cursor: not-allowed;
  background: #b8c0c5;
  border-color: #b8c0c5;
  color: #555;
  filter: none;
  box-shadow: none;
  transform: none;
}

.btn.disabled:hover, .btn:disabled:hover {
  background: #b8c0c5;
  border-color: #b8c0c5;
  color: #555;
  transform: none;
  box-shadow: none;
}

/* Custom tooltip for disabled Call Me button */
.callme-wrap {
  position: relative;
}

.callme-wrap[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-900, #0b2230);
  color: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: nowrap;
  z-index: 1100;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Tooltip hint: use title attribute for native tooltip; add slight pointer cursor when enabled */
.nav-links .btn-nav[aria-disabled="true"] {
  pointer-events: auto; /* allow title tooltip */
}

/* Honeypot field — hidden from users but visible to bots */
.hp-field {
  display: none;
}

/* Make the nav pill act like a button */
.nav-pill.clickable {
  cursor: pointer;
}
.nav-pill.clickable:hover {
  background: var(--ocean-50);
}

/* --- Nav links: regular text anchors --- */
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--ocean-500);
}

/* --- Nav CTA button (Let's Meet!): blue background, white label, navy on hover --- */
.nav-links .btn-nav.btn-primary {
  color: #fff;
}

.nav-links .btn-nav.btn-primary:hover {
  background: var(--ocean-500);
  border-color: var(--ocean-500);
  color: var(--navy-900);
  transform: none;
  box-shadow: none;
}

/* --- Nav outline button (Call Me): outlined, fills on hover --- */
.nav-links .btn-nav.btn-outline:hover {
  background: var(--ocean-500);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Make navbar white by default (landing state) while preserving scrolled tweaks */
#navbar {
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

#navbar.scrolled .hamburger span {
  background: var(--text-primary);
}

/* --- Hero --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Restored gradient: start at a brighter ocean tone, blend to lighter cyan, finish at the pale ocean tint */
  background: linear-gradient(150deg, var(--ocean-500) 0%, var(--ocean-400) 60%, var(--ocean-50) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 1.5rem;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ocean-200);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(137, 207, 232, 0.35);
  border-radius: 50px;
}

#hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-familiar {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 100%;
  margin: 0 auto 3rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: left;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.hero-card-header i {
  font-size: 1.4rem;
  color: var(--ocean-200);
  flex-shrink: 0;
}

.hero-card-titles {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-card-titles span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.hero-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

@media (max-width: 768px) {
  .hero-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.hero-note {
  font-size: 1.15rem;
  color: var(--ocean-700);
  margin-top: 1.5rem;
  font-weight: 500;
}

.slot-was {
  position: relative;
  display: inline-block;
  color: var(--ocean-300);
  font-weight: 700;
  text-decoration: none;
}

.slot-was::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 1px;
  background: var(--error-red);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hero Waves */
.hero-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 1;
}

.hero-waves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.hero-wave-1 {
  fill: rgba(255, 255, 255, 0.10);
  animation: waveMove 22s linear infinite;
}

.hero-wave-2 {
  fill: rgba(255, 255, 255, 0.18);
  animation: waveMove 16s linear infinite reverse;
}

.hero-wave-3 {
  fill: #ffffff;
  animation: waveMove 10s linear infinite;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave-1,
  .hero-wave-2,
  .hero-wave-3 {
    animation: none;
  }
  .hero-waves svg {
    width: 100%;
  }
}

/* --- Section Dividers (Wave) --- */
.wave-divider {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-divider.to-alt svg path {
  fill: var(--bg-alt);
}

.wave-divider.to-white svg path {
  fill: var(--bg-white);
}

.wave-divider.to-cta {
  background: var(--bg-alt);
}

.wave-divider.to-cta svg path {
  fill: #1A3B4A;
}

/* --- Cards Grid --- */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--ocean-100);
  color: var(--ocean-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  color: var(--text-primary);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  /* fixed top row to align icon+title across cards, second row auto for description */
  grid-template-rows: 56px auto;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
  padding: 1.75rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  /* top-align the card so all cards line up consistently */
  align-items: start;
}

.service-item:hover {
  box-shadow: var(--shadow-md);
}

.service-item:last-child {
  grid-column: 1 / -1;
  max-width: 550px;
  justify-self: center;
  width: 100%;
}

.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--ocean-100);
  color: var(--ocean-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.service-text {
  display: block;
}

.service-title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  text-align: left;
  align-self: center;
}

/* limit heading width to avoid long wrap lines */
h2, h1 {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.service-desc {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: 0.92rem;
  text-align: left;
  color: var(--text-secondary);
}

/* --- Steps / How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--ocean-200);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ocean-500);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.92rem;
}

/* --- Services Projects Bridge --- */
.services-projects-bridge {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.services-projects-bridge a {
  color: var(--ocean-500);
  font-weight: 600;
  text-decoration: none;
}

.services-projects-bridge a:hover {
  text-decoration: underline;
}

/* --- AI Projects Section --- */
.ai-projects-compare {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 2.5rem 0;
}

.compare-card {
  flex: 1;
  padding: 2rem 1.75rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-heading);
  flex-shrink: 0;
}

.contrast-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.contrast-label-ops {
  background: var(--ocean-100);
  color: var(--ocean-600);
}

.contrast-label-proj {
  background: var(--ocean-100);
  color: var(--ocean-600);
}

.contrast-analogy {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin: 0;
}

.contrast-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.ai-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ai-project-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: 56px auto;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
  padding: 1.75rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  align-items: start;
}

.ai-project-item:hover {
  box-shadow: var(--shadow-md);
}

.ai-project-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--ocean-100);
  color: var(--ocean-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.ai-project-item h4 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  text-align: left;
  align-self: center;
  white-space: nowrap;
}

.ai-project-item p {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
  text-align: left;
  line-height: 1.5;
}

.ai-projects-rates {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ai-projects-rate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.ai-projects-rate-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.ai-projects-rate-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}

.ai-projects-rate-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ai-projects-rate-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

.ai-projects-rate-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-light);
}

.ai-projects-rate-cta {
  flex-basis: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* --- Pricing --- */
.pricing-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
  text-align: left;
}

/* Roster column */
.client-roster {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 0.35rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--ocean-200);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.roster-label {
  display: inline-block;
  background: var(--ocean-500);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin: 0 auto 0.75rem;
  align-self: center;
}

.roster-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-white);
  border: 1px solid var(--ocean-100);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.45rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.roster-card:hover {
  border-color: var(--ocean-300);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}

/* 2-col grid: logo col 1 spans rows 1-3, link icon row 4; text col 2 rows 1-3 */
.roster-card-inner {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 0.6rem;
  row-gap: 0.1rem;
}

/* Col 1 rows 1-3: logo image */
.roster-logo-img {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 60px;
  max-height: 54px;
  object-fit: contain;
  align-self: center;
}

.roster-logo-img.roster-logo-lg {
  width: 90px;
  max-height: 80px;
  background: var(--ocean-800);
  border-radius: 6px;
  padding: 3px 5px;
}

/* Link icon — inline, sits next to company name via span */
.roster-link-icon {
  display: inline;
  color: var(--ocean-400);
  font-size: 0.6rem;
  margin-left: 0.3rem;
  vertical-align: middle;
}

/* Col 2, row 1: company name */
.roster-company-name {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-primary);
  align-self: end;
  line-height: 1.2;
}

/* Col 2, row 2: tagline */
.roster-tagline {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Col 2, row 3: location */
.roster-location {
  grid-column: 2;
  grid-row: 3;
  font-size: 0.68rem;
  color: var(--ocean-500);
  font-weight: 500;
  align-self: start;
  line-height: 1.3;
}

.roster-age-flag {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ocean-500);
  white-space: nowrap;
}

/* Open slots */
.roster-open {
  border-style: dashed;
  border-color: var(--ocean-200);
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: transparent;
}

.roster-open:hover {
  background: var(--ocean-50);
  border-style: solid;
}

.roster-open-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--ocean-500);
  color: #fff;
  padding: 0.15rem 0.45rem;
  border-radius: 50px;
}

.roster-open-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ocean-600);
}

.roster-open i {
  color: var(--ocean-400);
  font-size: 0.8rem;
}

.roster-pending {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.roster-pending .roster-open-badge {
  background: var(--text-muted);
}

.roster-last {
  border-color: var(--error-red);
  border-style: solid;
}

.roster-last .roster-open-badge {
  background: var(--error-red);
}

.roster-last .roster-open-text {
  color: var(--error-red);
}

.roster-last i {
  color: var(--error-red);
}

.roster-last:hover {
  background: rgba(204, 0, 0, 0.05);
}

/* Age gate modal */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate-overlay[hidden] {
  display: none;
}

.age-gate-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.age-gate-box h3 {
  margin-bottom: 1rem;
}

.age-gate-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Responsive: stack on small screens */
@media (max-width: 760px) {
  .pricing-wrapper {
    grid-template-columns: 1fr;
    max-width: 550px;
  }
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--ocean-200);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  display: inline-block;
  background: var(--ocean-500);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pricing-rate {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-rate span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--ocean-400);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-alt);
}

/* --- 5-Hour Workflow --- */
.five-hour-card {
  max-width: 480px;
  margin: 2rem auto 0;
  background: var(--bg-white);
  border: 2px solid var(--ocean-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.five-hour-badge {
  display: inline-block;
  background: var(--ocean-500);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.five-hour-rate {
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
}

.five-hour-was {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: #e03e3e;
  text-decoration-thickness: 2px;
}

.five-hour-now {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ocean-700);
}

.five-hour-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.five-hour-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
}

.five-hour-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-alt);
  text-align: left;
}

.five-hour-features li:last-child {
  border-bottom: none;
}

.five-hour-features li i {
  color: var(--ocean-500);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.five-hour-features li > span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.five-hour-features li strong {
  font-size: 0.95rem;
  color: var(--text-heading);
  line-height: 1.3;
}

.fh-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.five-hour-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bg-alt);
}

/* --- How We Work --- */
.hww-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 860px) {
  .hww-grid {
    grid-template-columns: 1fr;
  }
}

.hww-card {
  background: var(--bg-white);
  border: 2px solid var(--ocean-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
}

.hww-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--ocean-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-600);
  font-size: 1.1rem;
}

.hww-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
  align-self: center;
}

.hww-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hww-card p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.hww-card .hww-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--bg-alt);
  padding-top: 0.65rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* --- AI Warning Pill --- */
.ai-warning-pill {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border: 2px solid #FFB74D;
  border-radius: 50px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ai-warning-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.ai-warning-pill i {
  color: #F57C00;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

@media (max-width: 640px) {

/* Utility classes to replace inline styles */
.nowrap { white-space: nowrap; }
.max-width-800 { max-width: 800px; margin: 0 auto; }
.lead-left { text-align: left; line-height: 1.8; font-size: 0.95rem; color: #333; }
.list-indent { text-align: left; max-width: 700px; margin: 1.5rem auto; padding-left: 2rem; font-size: 0.95rem; color: #333; }
.list-indent li { margin-bottom: 0.75rem; }
  .ai-warning-pill {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .ai-warning-content {
    flex-direction: column;
    gap: 0.75rem;
  }

  .ai-warning-pill i {
    margin-top: 0;
  }
}

/* --- About --- */
.about-block {
  margin-bottom: 0;
}

.about-block.about-first {
  margin-bottom: 3rem;
}

.about-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.team-heading {
  margin-bottom: 3rem;
}

.team-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.team-logo .hale {
  color: var(--ocean-600);
  font-weight: 800;
}

.team-logo .ala {
  color: var(--ocean-400);
  font-weight: 400;
}

.team-logo .tag {
  background: linear-gradient(to top, var(--ocean-400), var(--ocean-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.team-logo .team-ala {
  font-weight: 400;
  color: var(--ocean-400);
}

.team-logo .team-tagline {
  font-weight: 600;
  color: var(--ocean-500);
  font-size: inherit;
}

.about-first {
  margin-bottom: 3rem;
}

.about-divider {
  border: none;
  border-top: 1px solid var(--ocean-100);
  margin: 0.65rem 0 1rem;
}

/* Anonymous operator cards */
.anon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

.anon-card {
  background: var(--bg-primary);
  border: 1px solid var(--ocean-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

/* Override aspect-ratio on the photo wrap/photo for anon cards */

.anon-card .about-photo-wrap {
  aspect-ratio: unset;
  height: 150px;
  flex-shrink: 0;
}

.anon-card .about-photo {
  aspect-ratio: unset;
  height: 150px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

/* LinkedIn pill inside the image area for anon cards: match main pill size/placement */
.anon-card .about-linkedin {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 10;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-color: var(--ocean-300);
  padding: 0.4rem 0.65rem;
  font-size: 0.8rem;
  line-height: 1;
  /* default: anonymous pills are non-interactive; anchored pills below will enable pointer events */
}

/* Enable pointer events for anon-card pills only when they are actual links */
.anon-card .about-linkedin[href] {
  pointer-events: auto;
}

/* Non-link anonymous pill: show a 'blank' visual when hovering the photo area to indicate no active link */
.linkedin-anonymous {
  /* Anonymous pill: non-interactive by default but visually matches the main pill */
  pointer-events: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ocean-500);
  border: 2px solid var(--ocean-300);
  padding: 0.4rem 0.65rem;
  font-size: 0.8rem;
  line-height: 1;
}

/* On hover over the photo area, anonymous pills keep the blue outline but fill white and hide content (text/icon turn white) */
.anon-card .about-photo-wrap:hover .linkedin-anonymous {
  background: #fff;
  color: #fff; /* makes icon/text blend into the white fill */
  border-color: var(--ocean-500);
  box-shadow: none;
  transform: translateX(-50%) translateY(50%);
}

.anon-silhouette {
  background: var(--ocean-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  /* position anonymous silhouette so its bottom aligns with real photos */
  transform: translateY(0);
}

.anon-silhouette i {
  font-size: 6.5rem;
  color: var(--ocean-200);
  line-height: 1;
  /* shift the icon slightly down so head centers align with named photos */
  transform: translateY(8%);
}

/* Decorative 'arms' for anonymous silhouettes that cover the eye area. No facial features added. */
.anon-silhouette::before,
.anon-silhouette::after {
  content: "";
  position: absolute;
  top: 38%;
  width: 36%;
  height: 14%;
  background: var(--ocean-50);
  border-radius: 999px;
  box-shadow: inset 0 -2px rgba(0,0,0,0.02);
}
.anon-silhouette::before {
  left: -4%;
  transform: rotate(-16deg);
}
.anon-silhouette::after {
  right: -4%;
  transform: rotate(16deg);
}

.anon-card-body {
  padding: 0.25rem 0.75rem 1.25rem 0.625rem;
  flex: 1;
  overflow: hidden;
  font-size: 0.875rem;
}

.anon-name-row {
  margin-bottom: 0.6rem;
  /* push name/operator down slightly so LinkedIn pill doesn't overlap (add 4px total) */
  margin-top: calc(0.35rem + 4px);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--ocean-100);
}

/* Line 1: Anonymous (left) · AI Operator (right) */
.anon-name-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.anon-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

/* Keep name and operator on a single line; reduce font-size and show full name (no ellipsis) */
.anon-name {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  font-size: 0.88rem;
}

.anon-operator {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean-500);
  white-space: nowrap;
}

/* Ensure operator label doesn't wrap and stays visible */
.anon-operator {
  flex: 0 0 auto;
  margin-left: 0.5rem;
}

/* Line 2: Role centered */
.anon-role {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-400);
  text-align: center;
  margin: 0.15rem 0 0;
  line-height: 1.2;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.about-linkedin {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-color: var(--ocean-300);
  z-index: 10;
  padding: 0.4rem 0.65rem;
  font-size: 0.8rem;
  line-height: 1;
  pointer-events: auto;
  z-index: 9999;
}

/* LinkedIn pill interaction: match main button hover (dark blue flip) for active links only */
.about-linkedin[href] {
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.about-linkedin[href]:hover,
.about-linkedin[href]:focus {
  background: var(--ocean-600);
  color: #fff;
  transform: translateX(-50%) translateY(46%); /* slight lift */
  box-shadow: var(--shadow-md);
}

.about-linkedin[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.9;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Center location lines for anon cards (Operating From) */
.anon-card .location {
  text-align: center;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* For anon cards, reframe using object-position so the image fills the area and the pill overlays the photo (no transform) */
.anon-card .about-photo img {
  object-position: center 12%;
  transform: none;
  transform-origin: center center;
}

/* Desktop only: named-card (Lance, Scott) — small centered square, rounded corners */
.anon-card.named-card .about-photo-wrap {
  height: 113px;
}
.anon-card.named-card .about-photo {
  width: 113px;
  height: 113px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.anon-card.named-card .about-photo img {
  object-fit: cover;
  object-position: center top;
}
/* Desktop only: anonymous cards — same 113px centered square as named cards */
.anon-card:not(.named-card) .about-photo-wrap {
  height: 113px;
}
.anon-card:not(.named-card) .about-photo {
  width: 113px;
  height: 113px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.anon-card:not(.named-card) .about-photo.anon-silhouette::before,
.anon-card:not(.named-card) .about-photo.anon-silhouette::after {
  content: none;
}

.about-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--ocean-100);
  width: fit-content;
  min-width: 100%;
}

.about-text h3 {
  margin-bottom: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.about-title {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ocean-500);
  margin-bottom: 0;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.about-title .title-role {
  color: var(--ocean-600);
  font-weight: 800;
}

.about-title .title-sep {
  color: var(--ocean-300);
  font-weight: 400;
}

.about-title .title-specialty {
  color: var(--ocean-400);
  font-weight: 600;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.credential-tag {
  display: inline-block;
  background: var(--ocean-50);
  color: var(--ocean-600);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid var(--ocean-100);
}

/* --- FAQ --- */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--ocean-100);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-question:hover {
  color: var(--ocean-500);
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--ocean-400);
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 1.25rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* --- Final CTA --- */
#cta {
  background: linear-gradient(150deg, #081A24 0%, #0E3A4E 35%, #0D84AB 70%, #1E9EC5 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

#cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-contact {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ocean-200);
}

.cta-contact a {
  color: var(--ocean-200);
}

.cta-contact a:hover {
  color: #fff;
}

/* --- Footer --- */
footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.5);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

footer a {
  color: rgba(255, 255, 255, 0.6);
}

footer a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .card-grid.three-col {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item:last-child {
    max-width: 100%;
  }

  .ai-projects-compare {
    flex-direction: column;
  }

  .compare-vs {
    padding: 0.25rem 0;
    font-size: 1.25rem;
  }

  .ai-projects-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps::before {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo-col {
    max-width: 200px;
    margin: 0 auto;
  }

  .about-name-row {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .about-title {
    text-align: center;
  }

  .about-credentials {
    justify-content: center;
  }

  .anon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 48em) {
  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .hero-content {
    padding-top: 2rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 0;
  }

  .btn-lg {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .anon-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Hero Eyebrow & Dual CTA --- */
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ocean-200);
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 0;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* --- Pricing Tiers --- */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  text-align: left;
}

.pricing-tier {
  background: var(--bg-white);
  border: 2px solid var(--ocean-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-tier.tier-featured {
  border-color: var(--founding-gold);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.15), var(--shadow-lg);
}

.tier-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.tier-price {
  margin-bottom: 0.25rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.tier-price-rate {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.tier-price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.tier-price-was {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: #e03e3e;
  text-decoration-thickness: 2px;
}

.tier-price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.deal-price {
  color: var(--deal-green);
  font-weight: 700;
}

.tier-commitment {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean-600);
  background: var(--ocean-50);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  margin-bottom: 1.1rem;
  display: inline-block;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.tier-features li {
  font-size: 0.87rem;
  color: var(--text-secondary);
  padding: 0.38rem 0;
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.4;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li i {
  color: var(--ocean-400);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.78rem;
}

.tier-cta {
  margin-top: auto;
}

.tier-cta .btn {
  width: 100%;
  text-align: center;
}

.tier-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.tier-note-ghost {
  visibility: hidden;
}

/* --- Founding Badge --- */
.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--founding-gold);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.65rem;
  position: relative;
  cursor: default;
  border: none;
  background-color: var(--founding-gold);
}

.founding-badge:focus {
  outline: 2px solid var(--ocean-500);
  outline-offset: 2px;
}

.badge-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-800);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  z-index: var(--z-tooltip);
  line-height: 1.4;
  pointer-events: none;
}

.badge-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy-800);
}

.founding-badge:hover .badge-tooltip,
.founding-badge:focus .badge-tooltip {
  display: block;
}

/* --- Pricing Slot Counter --- */
.pricing-slot-counter {
  max-width: 1100px;
  margin: 0 auto 1.75rem;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-slot-counter i {
  color: var(--founding-gold);
}

/* --- Founding Roster Strip --- */
.founding-roster {
  max-width: 1100px;
  margin: 0 auto 2rem;
  text-align: center;
}

.founding-roster-label {
  display: inline-block;
  background: var(--ocean-500);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.founding-roster-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.founding-roster-scroll .roster-card {
  width: auto;
  text-align: left;
}

.founding-roster-scroll .roster-open {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
}

@media (max-width: 48em) {
  .founding-roster-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Client Outcome Quotes --- */
.client-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 2rem auto;
}

.client-outcome-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--ocean-300);
}

.client-outcome-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}

.client-outcome-card footer {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.outcome-attr,
.client-outcome-card .outcome-attr {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean-600);
}

@media (max-width: 56em) {
  .client-outcomes {
    grid-template-columns: 1fr;
  }
}

/* --- Project Work Card --- */
.project-work-card {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  background: var(--bg-white);
  border: 2px solid var(--ocean-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.project-work-intro {
  flex: 1 1 260px;
}

.project-work-intro h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.project-work-intro p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.project-work-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.project-rate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  min-width: 130px;
  text-align: center;
}

.project-rate-item.project-rate-founding {
  border: 2px solid var(--founding-gold);
  background: rgba(240, 180, 41, 0.06);
}

.project-rate-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.project-rate-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.project-rate-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.project-rate-note {
  font-size: 0.68rem;
  color: var(--founding-gold);
  font-weight: 700;
  margin-top: 0.25rem;
}

.project-work-cta {
  flex-shrink: 0;
}

/* --- Pricing Funnel Callout --- */
.pricing-funnel {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--ocean-50);
  border: 1px solid var(--ocean-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
}

.pricing-funnel strong {
  color: var(--ocean-700);
}

/* Pricing tiers responsive */
@media (max-width: 900px) {
  .pricing-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .pricing-tier {
    padding: 1.1rem 1.1rem;
  }

  .tier-features li {
    padding: 0.25rem 0;
  }

  .ai-projects-rates {
    flex-direction: column;
    gap: 1.25rem;
  }

  .ai-projects-rate-divider {
    width: 3rem;
    height: 1px;
  }
}

/* ===== AIElite page styles — scoped to .aielite-page ===== */

.aielite-page .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.aielite-page header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
}

.aielite-page .nav-links {
  display: flex;
  gap: 2rem;
}

.aielite-page .hero {
  padding: 5rem 0;
  background-color: var(--bg-white);
  text-align: center;
}

.aielite-page .hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.aielite-page .hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.aielite-page .cta-button {
  display: inline-block;
  background-color: var(--accent-cyan);
  color: var(--bg-white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.aielite-page .cta-button:hover {
  background-color: var(--ocean-600);
}

.aielite-page .leaks-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.aielite-page .leaks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.aielite-page .leak-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
}

.aielite-page .leak-card:hover {
  border-left-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.aielite-page .leak-card.selected {
  border-left-color: var(--accent-cyan);
  background-color: var(--ocean-50);
  box-shadow: var(--shadow-md);
}

.aielite-page .leak-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.aielite-page .leak-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.aielite-page .form-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.aielite-page .form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-sm);
}

.aielite-page .selected-leak-display {
  background-color: var(--ocean-50);
  border-left: 4px solid var(--accent-cyan);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  display: none;
}

.aielite-page .selected-leak-display.show {
  display: block;
}

.aielite-page .form-group {
  margin-bottom: 1.5rem;
}

.aielite-page .form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.aielite-page .form-group input,
.aielite-page .form-group select,
.aielite-page .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.aielite-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.aielite-page .submit-button {
  width: 100%;
  padding: 0.875rem;
  background-color: var(--accent-cyan);
  color: var(--bg-white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.aielite-page .submit-button:hover {
  background-color: var(--ocean-600);
}

.aielite-page .form-message {
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  display: none;
}

.aielite-page .form-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  display: block;
}

.aielite-page .form-message.error {
  background-color: #ffebee;
  color: #c62828;
  display: block;
}

.aielite-page .form-help {
  color: var(--text-secondary);
  margin-top: 0.25rem;
  display: block;
  font-size: 0.8125rem;
}

.aielite-page .opt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.aielite-page .opt-label {
  margin: 0;
}

.aielite-page .opt-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aielite-page .opt-bold {
  font-size: 0.8125rem;
  color: var(--text-primary);
  font-weight: 600;
}

.aielite-page .inline-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: normal;
  margin: 0;
  cursor: pointer;
  color: var(--text-primary);
}

.aielite-page .phone-row {
  display: flex;
  gap: 1rem;
}

.aielite-page .flex-1 {
  flex: 1;
}

.aielite-page .phone-note {
  flex: 1;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-top: 0.125rem;
}

.aielite-page .muted-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.aielite-page .footer-note {
  margin-top: 2rem;
  font-size: 0.75rem;
}

@media (max-width: 48em) {
  .aielite-page .leaks-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* --- Nav layout: desktop and mobile --- */
#navbar .nav-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  flex-wrap: nowrap;
}
#navbar .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
  position: static;
  background: transparent;
  padding: 0;
  flex: 1 1 auto;
}
#navbar .nav-desktop-pill { display: inline-block; }
#navbar .nav-mobile-menu { display: none; }
#navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

html, body { overflow-x: hidden; }

@media (max-width: 56.25em) {
  #navbar {
    width: 100%;
    max-width: 100%;
  }
  #navbar .nav-container {
    max-width: 100%;
    width: 100%;
    padding: 0 0.6rem;
    gap: 0;
    justify-content: space-between;
    position: relative;
  }
  #navbar .nav-links { display: none; }
  #navbar .nav-desktop-pill { display: none; }
  #navbar .nav-mobile-menu {
    display: flex;
    align-items: center;
    position: static;
    transform: none;
    margin: 0 0.4rem;
    flex: 0 0 auto;
    z-index: 3;
  }
  #navbar .nav-mobile-menu #menuDropdownBtn {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  #navbar .nav-mobile-menu .nav-pill { display: inline-block; }
  #navbar .logo { font-size: 1.1rem; flex: 0 0 auto; }
  #navbar .nav-actions { gap: 0.3rem; flex: 0 0 auto; }
  #navbar .btn-nav { padding: 0.35rem 0.6rem; font-size: 0.8rem; white-space: nowrap; }
}

/* --- Mobile overflow guards --- */
@media (max-width: 56.25em) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    margin: 0;
  }
  .container {
    max-width: 100%;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  header, footer, main {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  section {
    max-width: 100%;
    box-sizing: border-box;
  }
  h1, h2, h3, h4, h5, h6, p {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
  .hero-waves svg {
    max-width: none;
    width: 200%;
    height: 100%;
  }

  /* Anonymous cards: same 113px centered square as desktop */
  .anon-card:not(.named-card) .about-photo-wrap {
    height: 113px;
  }
  .anon-card:not(.named-card) .about-photo {
    width: 113px;
    height: 113px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }
  .anon-card:not(.named-card) .about-photo.anon-silhouette::before,
  .anon-card:not(.named-card) .about-photo.anon-silhouette::after {
    content: none;
  }

  /* Lance & Scott: same 113px centered square as desktop */
  .anon-card.named-card .about-photo-wrap {
    height: 113px;
  }
  .anon-card.named-card .about-photo {
    width: 113px;
    height: 113px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }
  .anon-card.named-card .about-photo img {
    object-fit: cover;
    object-position: center top;
    transform: none;
  }
  .anon-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MOBILE MENU DROPDOWN
   ============================================ */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown #menuDropdownBtn {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.nav-dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 26, 36, 0.18);
  padding: 0.5rem 0;
  z-index: 1000;
  border: 1px solid var(--ocean-100);
}
.nav-dropdown.open .dropdown-content {
  display: block;
}
.nav-dropdown .dropdown-content a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}
.nav-dropdown .dropdown-content a:hover {
  background: var(--ocean-50);
  color: var(--ocean-700);
}

/* --- Call Me: after-hours message --- */
.modal-after-hours {
  display: none;
  background: var(--ocean-50);
  border: 1px solid var(--ocean-200);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.modal-after-hours.visible {
  display: block;
}
.modal-after-hours p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ocean-800);
  line-height: 1.5;
  white-space: normal;
}
.modal-note.hidden {
  display: none;
}
