:root {
  --deep-blue: #0B2545;
  --deep-blue-light: #13376b;
  --ink: #10151f;
  --gray-900: #1c2230;
  --gray-600: #5b6472;
  --gray-300: #d9dde3;
  --gray-100: #f4f6f8;
  --white: #ffffff;
  --gold: #c8a24d;
  --gold-soft: #e9dcb8;
  --success: #1f7a4d;
  --danger: #b0342d;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 24px 64px rgba(11, 37, 69, 0.16);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--deep-blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--deep-blue-light); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: #d4b361; }
.btn-outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--gray-900);
}
.btn-outline:hover { border-color: var(--deep-blue); }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-300);
  width: 100%;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: relative;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-blue);
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 15px;
  font-weight: 600;
}
.nav-links a {
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--deep-blue); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-login { font-size: 15px; font-weight: 600; color: var(--deep-blue); text-decoration: none; padding: 8px 12px; }

/* Mobile Hamburger Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
}

.hamburger-bar {
  width: 24px;
  height: 2.5px;
  background-color: var(--deep-blue);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Mobile Nav Drawer Dropdown */
.mobile-nav-drawer {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 16px 32px rgba(10, 25, 47, 0.15);
  padding: 20px 24px 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  animation: mobileDrawerSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mobileDrawerSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-links,
ul.mobile-nav-links,
ul.nav-links {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
}

.mobile-nav-links {
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-links li,
.nav-links li {
  list-style: none !important;
  list-style-type: none !important;
}

.mobile-nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 991px) {
  .nav-links,
  .nav-actions {
    display: none !important;
  }
  
  .mobile-nav-toggle {
    display: flex !important;
  }

  .mobile-nav-drawer.open {
    display: flex !important;
  }

  .mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}

@media (min-width: 992px) {
  .mobile-nav-toggle,
  .mobile-nav-drawer,
  .mobile-nav-drawer.open {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 64px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
}
h1.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--deep-blue);
  margin: 0 0 20px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 28px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13.5px;
  color: var(--gray-600);
}
.hero-badges span { display: flex; align-items: center; gap: 6px; }
.hero-badges svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 560px; object-fit: cover; }
.hero-media-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(11,37,69,0.9);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-media-badge strong { display: block; font-size: 15px; font-weight: 600; }

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  background: var(--white);
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
}
.trust-item svg { width: 20px; height: 20px; color: var(--deep-blue); }

/* ---------- Section shared ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--gray-100); }
.section-head { max-width: 620px; margin: 0 0 56px; }
.section-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--deep-blue);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.section-desc { font-size: 16px; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--deep-blue);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; color: var(--gray-900); }
.feature-card p { font-size: 14.5px; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* ---------- Timeline (How it Works) ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 1px;
  background: var(--gray-300);
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; }
.timeline-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--deep-blue);
  color: var(--deep-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 18px;
}
.timeline-step h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; color: var(--gray-900); }
.timeline-step p { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--deep-blue);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
}
.cta-band h2 { font-family: var(--font-display); font-size: 30px; margin: 0 0 10px; font-weight: 600; }
.cta-band p { color: rgba(255,255,255,0.7); margin: 0; font-size: 15px; max-width: 420px; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 64px 0 32px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; margin-bottom: 48px; }
.footer-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; }
.footer-col a { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.disclosure {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
  max-width: 900px;
}

/* ---------- Mobile ---------- */
.mobile-apply-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  z-index: 200;
  box-shadow: 0 -8px 24px rgba(11,37,69,0.08);
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media img { height: 380px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  h1.hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-apply-bar { display: block; }
  body { padding-bottom: 72px; }
}

/* ---------- Interactive Calculator & Card Utilities ---------- */
.calculator-card {
  background: var(--gray-900);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.calc-group { margin-bottom: 24px; }
.calc-label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--gold-soft); }
.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #2a3447;
  outline: none;
  accent-color: var(--gold);
}
.calc-result-box {
  background: rgba(200,162,77,0.08);
  border: 1px solid rgba(200,162,77,0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 24px;
}
.calc-amount { font-family: var(--font-display); font-size: 38px; color: var(--gold); font-weight: 600; margin: 4px 0; }

/* ---------- FAQ Accordion ---------- */
.faq-search-box {
  margin-bottom: 32px;
  position: relative;
}
.faq-search-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease;
}
.faq-search-input:focus { border-color: var(--deep-blue); }
.tab-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-300);
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
}
.faq-accordion { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq-item:hover { border-color: var(--gold); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--gold-soft); }
.faq-answer {
  display: none;
  padding: 0 24px 20px 24px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  display: block;
  animation: faqFadeIn 0.2s ease-in-out;
}
.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200, 162, 77, 0.12);
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Chatbot Widget Components ---------- */
#rapidcash-chatbot-container {
  font-family: var(--font-body);
  z-index: 9999;
  position: relative;
}

.chatbot-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}

.chatbot-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(200, 162, 77, 0.4);
}

.chatbot-trigger svg {
  width: 26px;
  height: 26px;
}

.chatbot-trigger-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border: 2px solid #fff;
  border-radius: 50%;
}

.chatbot-unread-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.chatbot-modal {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(10, 25, 47, 0.25);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 99998;
  animation: chatbotSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chatbotSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
  background: var(--navy);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.chatbot-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #10b981;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.chatbot-title {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
}

.chatbot-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.chatbot-header-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.chatbot-header-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.chatbot-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot-time {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 4px;
  font-weight: 500;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  word-wrap: break-word;
}

.bot-bubble {
  background: #ffffff;
  color: var(--gray-800);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.user-bubble {
  background: var(--navy);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip-btn {
  background: #ffffff;
  border: 1.5px solid var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px 13px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.chip-btn:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.chatbot-typing {
  font-size: 12px;
  color: var(--gray-500);
  padding: 6px 20px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chatbot-typing span {
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.chatbot-typing span:nth-child(1) { animation-delay: -0.32s; }
.chatbot-typing span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

.chatbot-footer {
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chatbot-footer input {
  flex: 1;
  border: 1px solid var(--gray-300);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

.chatbot-footer input:focus {
  border-color: var(--navy);
}

.chatbot-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}

.chatbot-send-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05);
}

.chatbot-send-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Stat Cards & Comparison Tables ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--gray-900);
  color: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-val { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--gold); margin-bottom: 6px; }
.stat-lbl { font-size: 13.5px; color: rgba(255,255,255,0.7); }

.table-responsive { width: 100%; overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14.5px;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-300);
}
.comparison-table th {
  background: var(--deep-blue);
  color: var(--white);
  font-weight: 600;
}
.comparison-table tr:hover td { background: var(--gray-100); }

