/* ═══════════════════════════════════════════════════════════
   HireBella.ai — Styles
   Brand Colors from Abbella palette
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --deep-teal: #073E5A;
  --primary-teal: #4096AB;
  --soft-aqua: #E3EFF2;
  --warm-coral: #D97C5A;
  --soft-coral: #F4D6CC;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
  z-index: 1000;
  padding: 16px 0;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-teal);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-teal);
}

.nav-cta {
  background: var(--primary-teal);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--deep-teal);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--soft-aqua) 0%, var(--white) 100%);
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.trust-strap {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.trust-strap p {
  color: var(--text-muted);
  font-size: 14px;
}

.trust-scarcity {
  color: var(--warm-coral) !important;
  font-weight: 600;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   DEMO CARD (shared component)
   ═══════════════════════════════════════════════════════════ */

.demo-card {
  background: var(--white);
  border: 2px solid var(--primary-teal);
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.demo-card h3 {
  font-size: 20px;
  color: var(--deep-teal);
  margin-bottom: 8px;
}

.demo-subtitle {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-form input {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.demo-form input:focus {
  outline: none;
  border-color: var(--primary-teal);
}

.demo-examples {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Demo Chips */
.demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.chip {
  background: var(--soft-aqua);
  border: 1px solid var(--primary-teal);
  color: var(--deep-teal);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.chip:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.chip.selected {
  background: var(--primary-teal);
  color: var(--white);
}

/* Light chips for dark backgrounds */
.chip-light {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.chip-light:hover {
  background: var(--white);
  color: var(--deep-teal);
}

.chip-light.selected {
  background: var(--white);
  color: var(--deep-teal);
}

.btn-primary {
  background: var(--primary-teal);
  color: var(--white);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--deep-teal);
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.trust-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════════════════════ */

.section {
  padding: var(--section-padding);
}

.section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 24px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════════════ */

.problem {
  background: var(--white);
}

.problem h2 {
  line-height: 1.3;
}

.problem-grid {
  max-width: 700px;
  margin: 32px auto;
}

.problem-grid p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-left: 20px;
  border-left: 3px solid var(--warm-coral);
}

.problem-impact {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 32px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SUCCESS VISION SECTION (distinct styling)
   ═══════════════════════════════════════════════════════════ */

.success-vision {
  background: var(--soft-aqua);
  position: relative;
}

.success-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--warm-coral));
}

.success-vision h2 {
  color: var(--deep-teal);
  font-size: 40px;
}

.vision-grid {
  max-width: 600px;
  margin: 32px auto;
  text-align: center;
}

.vision-grid p {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.vision-result {
  font-weight: 700;
  color: var(--primary-teal) !important;
  font-size: 24px !important;
  margin-top: 24px !important;
}

.vision-tagline {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-teal);
  text-align: center;
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════
   GUIDE SECTION
   ═══════════════════════════════════════════════════════════ */

.guide {
  background: var(--white);
  text-align: center;
}

.guide-description {
  font-size: 20px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ROLES SECTION
   ═══════════════════════════════════════════════════════════ */

.roles {
  background: #f9f9f9;
}

.roles-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.role-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px;
}

.role-card h3 {
  font-size: 18px;
  color: var(--deep-teal);
  margin-bottom: 16px;
}

.role-card ul {
  list-style: none;
  margin-bottom: 16px;
}

.role-card li {
  color: var(--text-dark);
  padding: 4px 0;
  font-size: 15px;
}

.role-result {
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

/* ═══════════════════════════════════════════════════════════
   DEMO SECTION
   ═══════════════════════════════════════════════════════════ */

.demo-section {
  background: var(--deep-teal);
  color: var(--white);
}

.demo-section h2 {
  color: var(--white);
}

.demo-description {
  color: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 18px;
  margin-bottom: 32px;
}

.demo-section .demo-card {
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   STEPS SECTION
   ═══════════════════════════════════════════════════════════ */

.steps {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 48px auto 0;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  color: var(--deep-teal);
  margin-bottom: 12px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   CONTROL SECTION
   ═══════════════════════════════════════════════════════════ */

.control {
  background: #f9f9f9;
  text-align: center;
}

.control-description {
  font-size: 20px;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item h3 {
  font-size: 16px;
  color: var(--deep-teal);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */

.final-cta {
  background: linear-gradient(180deg, var(--white) 0%, var(--soft-aqua) 100%);
  text-align: center;
}

.final-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.footer {
  background: var(--deep-teal);
  color: var(--white);
  padding: 60px 0 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

.footer-company {
  margin-top: 8px;
  font-size: 13px !important;
}

.footer-contact p,
.footer-legal p {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact a,
.footer-legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  margin-bottom: 24px;
}

.footer-disclosure p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-content h3 {
  font-size: 24px;
  color: var(--deep-teal);
  margin-bottom: 24px;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-content input {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.modal-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .section h2 {
    font-size: 28px;
  }
  
  .roles-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .success-vision h2 {
    font-size: 32px;
  }
  
  .vision-result {
    font-size: 20px !important;
  }
  
  .vision-tagline {
    font-size: 22px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FORM STATES
   ═══════════════════════════════════════════════════════════ */

.form-success {
  text-align: center;
  padding: 24px;
}

.form-success h4 {
  color: var(--primary-teal);
  margin-bottom: 8px;
}

.form-error {
  color: var(--warm-coral);
  font-size: 14px;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   CHAT WIDGET
   ═══════════════════════════════════════════════════════════ */

.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.chat-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary-teal);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.2s;
}

.chat-toggle:hover {
  background: var(--deep-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.chat-toggle svg {
  width: 20px;
  height: 20px;
}

.chat-panel {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 360px;
  max-height: 480px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
  flex-direction: column;
}

.chat-panel.open {
  display: flex;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--primary-teal);
  color: var(--white);
  font-weight: 600;
}

.chat-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}

.chat-close:hover {
  opacity: 1;
}

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-message.bella {
  background: var(--soft-aqua);
  color: var(--deep-teal);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.user {
  background: var(--primary-teal);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-input {
  display: flex;
  padding: 12px 16px;
  border-top: 1px solid var(--soft-aqua);
  gap: 8px;
}

.chat-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 24px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.chat-input input:focus {
  border-color: var(--primary-teal);
}

.chat-input button {
  width: 40px;
  height: 40px;
  background: var(--primary-teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-input button:hover {
  background: var(--deep-teal);
}

@media (max-width: 480px) {
  .chat-widget {
    bottom: 16px;
    right: 16px;
  }
  
  .chat-toggle span {
    display: none;
  }
  
  .chat-toggle {
    padding: 14px;
    border-radius: 50%;
  }
  
  .chat-panel {
    width: calc(100vw - 32px);
    right: -8px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TWO-STEP DEMO FORM
   ═══════════════════════════════════════════════════════════ */

.demo-form-steps {
  position: relative;
}

.demo-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-step-hidden {
  display: none !important;
}

.demo-custom-input {
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
}

.demo-custom-input:focus {
  outline: none;
  border-color: var(--primary-teal);
}

.chip-custom {
  background: transparent;
  border: 2px dashed var(--primary-teal);
  color: var(--primary-teal);
}

.chip-custom:hover {
  background: var(--soft-aqua);
  border-style: solid;
}

.chip-custom.selected {
  background: var(--soft-aqua);
  border-style: solid;
}

/* Back button text style */
.btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  margin-top: 8px;
}

.btn-text:hover {
  color: var(--primary-teal);
  text-decoration: underline;
}

/* Calling indicator animation */
.calling-indicator {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.pulse-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #4096AB;
  border-radius: 50%;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid #4096AB;
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO ALT CTA (Apply for Founding Cohort)
   ═══════════════════════════════════════════════════════════ */
.hero-alt-cta {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-alt-divider {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-apply-cohort {
  display: inline-block;
  padding: 13px 28px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

.btn-apply-cohort:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #ffffff;
}

.hero-alt-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
<<<<<<< HEAD:botbiz/botbiz/hirebella/site/styles.css

/* Honeypot - never display this */
.hp-field { display: none !important; position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; height: 0; width: 0; overflow: hidden; }
=======
>>>>>>> origin/master:botbiz/hirebella/site/styles.css
