/* ==========================================
   HIPAA Hotline — Stylesheet
   ========================================== */

/* ==========================================
   Variables
   ========================================== */
:root {
  --red-hot: #E63226;
  --red-deep: #B81D12;
  --red-glow: #FF4136;
  --dark: #0D0D0D;
  --dark-card: #1A1A1A;
  --dark-input: #222222;
  --white: #FAFAFA;
  --gray-light: #AAAAAA;
  --gray-mid: #666666;
  --amber: #FF9F1C;
  --amber-soft: rgba(255,159,28,0.15);
  --green: #4CAF50;
  --focus-ring: 0 0 0 4px rgba(230,50,38,0.3);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Skip to content — accessibility */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--red-hot); color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600; font-size: 14px;
  z-index: 9999; transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Focus visible for keyboard nav */
*:focus-visible {
  outline: 3px solid var(--red-hot);
  outline-offset: 2px;
}

/* ==========================================
   Background Pulse
   ========================================== */
.bg-pulse {
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 50% 20%, rgba(230,50,38,0.08) 0%, transparent 60%);
  animation: pulse-bg 4s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
@keyframes pulse-bg {
  0%   { opacity: 0.4; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* ==========================================
   Navigation
   ========================================== */
nav {
  position: relative; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--red-hot); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  animation: icon-pulse 2s ease-in-out infinite;
}
@keyframes icon-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,50,38,0.4); }
  50%     { box-shadow: 0 0 0 10px rgba(230,50,38,0); }
}
.logo-text {
  font-family: 'Space Mono', monospace;
  font-size: 18px; font-weight: 700; letter-spacing: -0.5px;
}
.logo-text span { color: var(--red-hot); }
.nav-badge {
  background: var(--amber-soft); color: var(--amber);
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 1px solid rgba(255,159,28,0.25);
}

/* ==========================================
   Hero
   ========================================== */
.hero {
  position: relative; z-index: 10;
  max-width: 1200px; margin: 0 auto;
  padding: 60px clamp(20px,4vw,40px) 40px;
  text-align: center;
}
.urgency-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,50,38,0.12);
  border: 1px solid rgba(230,50,38,0.3);
  padding: 8px 18px; border-radius: 30px;
  font-size: 13px; font-weight: 600;
  color: var(--red-glow);
  margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 1px;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: var(--red-glow); border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.2; }
}
h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 18px; letter-spacing: -1.5px;
}
h1 em {
  font-style: normal; color: var(--red-hot);
  position: relative;
}
h1 em::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; width: 100%; height: 4px;
  background: var(--red-hot); opacity: 0.3; border-radius: 2px;
}
.subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-light);
  max-width: 620px; margin: 0 auto 40px;
  line-height: 1.6;
}

/* ==========================================
   Phone CTA
   ========================================== */
.phone-section {
  position: relative; z-index: 10;
  text-align: center; margin-bottom: 50px;
}
.phone-label {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gray-mid);
  margin-bottom: 10px; font-weight: 600;
}
.phone-number {
  font-family: 'Space Mono', monospace;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700; color: var(--white);
  text-decoration: none; display: inline-block;
  letter-spacing: 2px; transition: all 0.3s ease;
}
.phone-number:hover {
  color: var(--red-hot);
  text-shadow: 0 0 40px rgba(230,50,38,0.3);
}
.phone-number::before {
  content: '📞'; font-size: 0.55em;
  margin-right: 16px; vertical-align: middle;
}
.phone-available {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 14px;
  font-size: 15px; color: var(--green); font-weight: 500;
}
.green-dot {
  width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

/* ==========================================
   Divider
   ========================================== */
.divider {
  display: flex; align-items: center; gap: 20px;
  max-width: 700px; margin: 0 auto 50px;
  padding: 0 clamp(20px,4vw,40px);
  position: relative; z-index: 10;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}
.divider span {
  font-size: 14px; color: var(--gray-mid);
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}

/* ==========================================
   Form
   ========================================== */
.form-section {
  position: relative; z-index: 10;
  max-width: 700px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,40px) 60px;
}
.form-card {
  background: var(--dark-card);
  border-radius: 20px; padding: clamp(28px,4vw,48px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.form-card h2 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.5px;
}
.form-card > p {
  color: var(--gray-light); font-size: 15px;
  margin-bottom: 36px; line-height: 1.5;
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray-light); margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%; background: var(--dark-input);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 18px 20px;
  font-size: 18px; color: var(--white);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease; outline: none;
  min-height: 48px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-mid); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red-hot);
  box-shadow: var(--focus-ring);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23AAAAAA' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}
.field select option { background: var(--dark-card); color: var(--white); }
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* PHI Warning */
.phi-warning {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(255,159,28,0.08);
  border: 1px solid rgba(255,159,28,0.2);
  border-radius: 8px; padding: 10px 14px;
  margin-top: 8px;
  font-size: 12px; color: var(--amber);
  line-height: 1.5;
}
.phi-warning-icon { flex-shrink: 0; font-size: 14px; margin-top: 1px; }

/* Honeypot — hidden from humans */
.ht-field {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

/* Acknowledgment checkbox */
.acknowledge {
  display: flex; align-items: flex-start;
  gap: 14px; margin-top: 20px; margin-bottom: 8px;
  cursor: pointer;
}
.acknowledge input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 24px; height: 24px; min-width: 24px;
  background: var(--dark-input);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 6px; cursor: pointer;
  transition: all 0.2s ease; position: relative;
  margin-top: 2px;
}
.acknowledge input[type="checkbox"]:checked {
  background: var(--red-hot); border-color: var(--red-hot);
}
.acknowledge input[type="checkbox"]:checked::after {
  content: '✓'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: white; font-size: 14px; font-weight: 700;
}
.acknowledge input[type="checkbox"]:focus-visible {
  box-shadow: var(--focus-ring);
}
.acknowledge-text {
  font-size: 14px; color: var(--gray-light); line-height: 1.5;
}
.acknowledge-text strong { color: var(--white); }

/* Submit button */
.submit-btn {
  width: 100%; padding: 22px;
  background: var(--red-hot); color: white;
  border: none; border-radius: 14px;
  font-size: 18px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.3s ease;
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 12px; position: relative;
  min-height: 48px;
}
.submit-btn:hover:not(:disabled) {
  background: var(--red-deep);
  box-shadow: 0 8px 30px rgba(230,50,38,0.35);
  transform: translateY(-1px);
}
.submit-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.submit-btn::after { content: ' →'; }

/* Form messages */
.form-error {
  background: rgba(230,50,38,0.1);
  border: 1px solid rgba(230,50,38,0.3);
  border-radius: 10px; padding: 14px 18px;
  font-size: 14px; color: var(--red-glow);
  margin-bottom: 16px; display: none;
}
.form-success {
  text-align: center; padding: 40px 20px; display: none;
}
.form-success .success-icon {
  width: 64px; height: 64px;
  background: rgba(76,175,80,0.12);
  border: 2px solid rgba(76,175,80,0.3);
  border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.form-success h3 { font-size: 20px; margin-bottom: 8px; }
.form-success p { color: var(--gray-light); font-size: 15px; line-height: 1.6; }
.form-success .case-num {
  font-family: 'Space Mono', monospace;
  font-size: 22px; color: var(--red-hot);
  font-weight: 700; margin: 12px 0 8px;
}

/* ==========================================
   Disclaimer
   ========================================== */
.disclaimer {
  text-align: center; max-width: 700px;
  margin: 0 auto; padding: 0 clamp(20px,4vw,40px) 30px;
  position: relative; z-index: 10;
}
.disclaimer p {
  font-size: 12px; color: var(--gray-mid);
  line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

/* ==========================================
   Trust Strip
   ========================================== */
.trust-strip {
  position: relative; z-index: 10;
  max-width: 900px; margin: 20px auto 60px;
  padding: 0 clamp(20px,4vw,40px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.trust-item {
  text-align: center; padding: 28px 20px;
  background: var(--dark-card); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.trust-icon { font-size: 28px; margin-bottom: 12px; }
.trust-item h3 {
  font-size: 15px; font-weight: 700;
  margin-bottom: 6px; letter-spacing: -0.3px;
}
.trust-item p {
  font-size: 13px; color: var(--gray-light); line-height: 1.5;
}

/* ==========================================
   Video Section
   ========================================== */
.video-section {
  position: relative; z-index: 10;
  max-width: 800px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,40px) 70px;
}
.video-section h2 {
  text-align: center; font-size: 28px;
  margin-bottom: 8px; letter-spacing: -0.5px;
}
.video-subtitle {
  text-align: center; color: var(--gray-light);
  font-size: 15px; margin-bottom: 32px;
}
.video-placeholder {
  position: relative; width: 100%;
  padding-bottom: 56.25%; background: var(--dark-card);
  border-radius: 20px; border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; cursor: pointer; transition: all 0.3s ease;
}
.video-placeholder:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.video-inner {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(230,50,38,0.05) 0%, rgba(0,0,0,0.3) 100%);
}
.play-btn {
  width: 80px; height: 80px;
  background: var(--red-hot); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(230,50,38,0.3);
}
.video-placeholder:hover .play-btn {
  transform: scale(1.1); background: var(--red-deep);
}
.play-btn::after {
  content: ''; width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}
.video-label {
  position: absolute; bottom: 24px;
  font-size: 14px; color: var(--gray-light);
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}

/* ==========================================
   Pricing
   ========================================== */
.pricing-section {
  position: relative; z-index: 10;
  max-width: 900px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,40px) 80px;
}
.pricing-section > h2 {
  text-align: center; font-size: 28px;
  margin-bottom: 8px; letter-spacing: -0.5px;
}
.pricing-subtitle {
  text-align: center; color: var(--gray-light);
  font-size: 15px; margin-bottom: 40px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.price-card {
  background: var(--dark-card); border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease; position: relative;
}
.price-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--red-hot);
  box-shadow: 0 0 40px rgba(230,50,38,0.1);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red-hot); padding: 4px 16px;
  border-radius: 20px; font-size: 11px;
  font-weight: 700; letter-spacing: 1px;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.price-desc { font-size: 13px; color: var(--gray-mid); margin-bottom: 20px; }
.price-amount {
  font-family: 'Space Mono', monospace;
  font-size: 36px; font-weight: 700; margin-bottom: 4px;
}
.price-period { font-size: 13px; color: var(--gray-mid); margin-bottom: 24px; }
.price-features { list-style: none; padding: 0; }
.price-features li {
  font-size: 14px; color: var(--gray-light);
  padding: 6px 0 6px 22px; position: relative;
}
.price-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--red-hot); font-weight: 700;
}

/* ==========================================
   Footer
   ========================================== */
footer {
  position: relative; z-index: 10;
  text-align: center; padding: 30px clamp(20px,4vw,40px);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: var(--gray-mid);
}
footer a { color: var(--gray-light); text-decoration: none; }
footer a:hover { color: var(--white); }

/* ==========================================
   Chat Widget — Notification
   ========================================== */
.chat-notification {
  position: fixed; bottom: 100px; right: 32px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px 16px 4px 16px;
  padding: 16px 20px; max-width: 280px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 999; opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none; cursor: pointer;
}
.chat-notification.visible {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-notif-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.chat-avatar {
  width: 36px; height: 36px;
  background: var(--red-hot); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
  position: relative; color: #fff;
}
.chat-avatar::after {
  content: ''; position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; background: var(--green);
  border-radius: 50%; border: 2px solid var(--dark-card);
}
.chat-notif-name { font-size: 14px; font-weight: 600; }
.chat-notif-role { font-size: 11px; color: var(--gray-mid); }
.chat-notif-body { font-size: 14px; color: var(--gray-light); line-height: 1.5; }
.chat-notif-body strong { color: var(--white); }
.human-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.25);
  padding: 3px 10px; border-radius: 12px;
  font-size: 11px; color: var(--green);
  font-weight: 600; margin-top: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ==========================================
   Chat Widget — FAB Button
   ========================================== */
.chat-fab {
  position: fixed; bottom: 32px; right: 32px;
  width: 64px; height: 64px;
  background: var(--red-hot); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 1000;
  box-shadow: 0 6px 24px rgba(230,50,38,0.4);
  transition: all 0.3s ease;
  border: none; outline: none; min-height: 48px;
}
.chat-fab:hover { background: var(--red-deep); transform: scale(1.08); }
.chat-fab svg { width: 28px; height: 28px; fill: white; transition: all 0.3s ease; }
.chat-fab.active .icon-chat { display: none; }
.chat-fab:not(.active) .icon-close { display: none; }
.chat-fab-badge {
  position: absolute; top: -2px; right: -2px;
  width: 20px; height: 20px; background: var(--green);
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--dark); color: #fff;
  animation: badge-pop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes badge-pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* ==========================================
   Chat Widget — Window
   ========================================== */
.chat-window {
  position: fixed; bottom: 110px; right: 32px;
  width: 380px; max-height: 520px;
  background: var(--dark-card); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 998; display: flex; flex-direction: column;
  overflow: hidden; opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.chat-window.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-header {
  background: linear-gradient(135deg, var(--red-hot) 0%, var(--red-deep) 100%);
  padding: 20px; flex-shrink: 0;
}
.chat-header-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.chat-header-avatar {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.chat-header-info h3 { font-size: 16px; font-weight: 700; }
.chat-header-info p { font-size: 12px; opacity: 0.8; }
.chat-header-note {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  padding: 6px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 500;
}
.dot-green {
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
}

/* Chat body & messages */
.chat-body {
  flex: 1; padding: 20px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 16px;
}
.chat-message { display: flex; gap: 10px; align-items: flex-start; }
.chat-msg-avatar {
  width: 32px; height: 32px;
  background: var(--red-hot); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0; color: #fff;
}
.chat-msg-bubble {
  background: var(--dark-input);
  border-radius: 14px 14px 14px 4px;
  padding: 14px 16px; font-size: 14px;
  line-height: 1.5; color: var(--gray-light); max-width: 85%;
}
.chat-msg-bubble strong { color: var(--white); }

/* Chat form */
.chat-form {
  padding: 20px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}
.chat-form input,
.chat-form textarea {
  width: 100%; background: var(--dark-input);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 12px 14px;
  font-size: 14px; color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s ease;
  min-height: 44px;
}
.chat-form input:focus,
.chat-form textarea:focus { border-color: var(--red-hot); }
.chat-form input::placeholder,
.chat-form textarea::placeholder { color: var(--gray-mid); }
.chat-form textarea { min-height: 70px; resize: none; line-height: 1.4; }
.chat-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chat-submit-btn {
  width: 100%; padding: 14px;
  background: var(--red-hot); color: white;
  border: none; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all 0.2s ease;
  text-transform: uppercase; letter-spacing: 0.5px;
  min-height: 48px;
}
.chat-submit-btn:hover { background: var(--red-deep); }
.chat-disclaimer-text {
  font-size: 11px; color: var(--gray-mid);
  text-align: center; line-height: 1.4;
}
.chat-phi-warning {
  font-size: 11px; color: var(--amber);
  text-align: center; line-height: 1.4;
}
.chat-error {
  font-size: 13px; color: var(--red-glow);
  text-align: center; display: none;
}

/* Chat confirmation */
.chat-confirmation {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
}
.confirm-icon {
  width: 64px; height: 64px;
  background: rgba(76,175,80,0.12);
  border: 2px solid rgba(76,175,80,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.confirm-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.confirm-text {
  font-size: 14px; color: var(--gray-light);
  line-height: 1.5; margin-bottom: 16px;
}
.confirm-case-num {
  font-family: 'Space Mono', monospace;
  font-size: 18px; color: var(--red-hot);
  font-weight: 700; margin-bottom: 16px;
}
.confirm-detail {
  background: var(--dark-input); padding: 12px 18px;
  border-radius: 10px; font-size: 13px;
  color: var(--gray-light);
  display: flex; align-items: center; gap: 8px;
}
.confirm-detail .dot-green { width: 8px; height: 8px; flex-shrink: 0; }

/* ==========================================
   Loading / Spinner
   ========================================== */
.btn-loading { pointer-events: none; opacity: 0.7; }
.btn-loading::after {
  content: '' !important;
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle; margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
  .field-row { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .phone-number { letter-spacing: 0; }
  .chat-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .chat-window {
    right: 0; bottom: 0; left: 0;
    width: 100%; max-height: 100%; height: 100%;
    border-radius: 0;
  }
  .chat-fab { bottom: 20px; right: 20px; }
  .chat-notification { right: 20px; bottom: 90px; max-width: 260px; }
  .nav-badge { display: none; }
}

/* ==========================================
   Regulatory Clock Callout
   ========================================== */
.reg-clock {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(255,159,28,0.06);
  border: 1px solid rgba(255,159,28,0.15);
  border-radius: 12px;
  padding: 14px 24px;
  max-width: 620px;
  margin: 0 auto 20px;
  font-size: 15px;
  color: var(--amber);
  line-height: 1.5;
  position: relative;
  z-index: 10;
}
.reg-clock strong { color: #FFB74D; }
