/* ============================================================
   CANNAVERSE WEBSITE — Custom Styles
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --primary: #00C17A;
  --primary-light: #00E591;
  --primary-dark: #008A55;
  --primary-glow: rgba(0, 193, 122, 0.12);
  --primary-glow-strong: rgba(0, 193, 122, 0.3);

  --bg-base: #07090E;
  --bg-surface: #0D1117;
  --bg-card: rgba(16, 20, 27, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);

  --text-primary: #E6EDF3;
  --text-secondary: #8B949E;
  --text-muted: #484F58;

  --border: rgba(255, 255, 255, 0.08);
  --border-active: rgba(0, 193, 122, 0.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-glow: 0 0 60px rgba(0, 193, 122, 0.12);
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);

  --gradient-primary: linear-gradient(135deg, #00C17A, #00E5A0);
  --gradient-text: linear-gradient(135deg, #00E591, #00BCD4);
  --gradient-care: linear-gradient(135deg, #00C17A, #55EFC4);
  --gradient-core: linear-gradient(135deg, #00B8D4, #6C63FF);
  --gradient-hero: radial-gradient(ellipse at 60% 30%, rgba(0,193,122,0.18) 0%, transparent 60%),
                   radial-gradient(ellipse at 10% 80%, rgba(0,188,212,0.12) 0%, transparent 50%);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; overscroll-behavior-x: none; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
}
body.offcanvas-open { padding-right: 0 !important; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; }
p { color: var(--text-secondary); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }

/* ---- Utilities ---- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-care {
  background: var(--gradient-care);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-core {
  background: var(--gradient-core);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-py { padding: 100px 0; }
.section-py-sm { padding: 60px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-glow);
  border: 1px solid var(--border-active); padding: 5px 14px; border-radius: 100px; margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.035em; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 4rem; }

/* ---- Glass Card ---- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(0, 193, 122, 0.2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

/* ---- Navbar ---- */
.navbar-custom {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0; transition: var(--transition);
}
.navbar-custom.scrolled {
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 0.75rem 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.navbar-brand-text {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text-primary);
}
.navbar-brand-text span { color: var(--primary); }
.nav-link {
  color: var(--text-secondary) !important; font-weight: 500; font-size: 0.88rem;
  padding: 0.4rem 0.85rem !important; border-radius: 8px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active-page {
  color: var(--text-primary) !important; background: var(--bg-glass);
}
.nav-cta {
  background: var(--gradient-primary) !important; color: #000 !important;
  font-weight: 700 !important; border-radius: 9px; padding: 0.45rem 1.1rem !important;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); background: var(--gradient-primary) !important; }
.navbar-toggler {
  border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px;
  background: transparent; display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
}
.navbar-toggler:focus { box-shadow: none; outline: none; }

/* ---- Mobile Drawer ---- */
.mobile-drawer {
  --bs-offcanvas-bg: #0D1117;
  --bs-offcanvas-border-color: rgba(255,255,255,0.08);
  --bs-offcanvas-color: #E6EDF3;
  background: #0D1117 !important;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
  width: 280px !important;
  color: #E6EDF3;
}
.mobile-drawer .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.mobile-drawer .offcanvas-body {
  padding: 1.5rem;
}
.mobile-drawer .nav-link {
  font-size: 1rem;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer .nav-link:last-of-type { border-bottom: none; }

/* ---- Hero ---- */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 130px 0 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--gradient-hero); }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.14;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero-orb-1 { width: 700px; height: 700px; background: #00C17A; top: -300px; right: -200px; }
.hero-orb-2 { width: 500px; height: 500px; background: #00BCD4; bottom: -150px; left: -100px; animation-delay: -5s; }
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--primary-glow); border: 1px solid var(--border-active);
  border-radius: 100px; padding: 6px 16px; font-size: 0.78rem; font-weight: 600;
  color: var(--primary); margin-bottom: 1.75rem; letter-spacing: 0.015em;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--primary); border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.75rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-secondary);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.btn-primary-custom {
  background: var(--gradient-primary); color: #000 !important; font-weight: 700;
  font-size: 0.92rem; padding: 13px 26px; border-radius: 12px; border: none;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--primary-glow-strong); }
.btn-ghost-custom {
  background: var(--bg-glass); color: var(--text-primary) !important; font-weight: 600;
  font-size: 0.92rem; padding: 13px 26px; border-radius: 12px;
  border: 1px solid var(--border); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-ghost-custom:hover { border-color: rgba(0,193,122,0.3); background: rgba(0,193,122,0.05); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.stat-number { font-size: 1.85rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.03em; }
.stat-label { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }

/* ---- Tab Buttons ---- */
.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  border-color: var(--border);
}
.tab-btn.active {
  background: rgba(0,184,212,0.1);
  border-color: rgba(0,184,212,0.3);
  color: #00BCD4;
}

/* ---- Tablet Mockup ---- */
.tablet-mockup-wrapper { display: flex; justify-content: center; align-items: center; }
.tablet-frame {
  width: 100%; max-width: 500px; margin: 0 auto;
  background: #141920;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 0 10px rgba(7,9,14,0.9), 0 40px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
  padding: 28px 18px;
  animation: floatPhone 8s ease-in-out infinite;
}
.tablet-camera {
  width: 9px; height: 9px; background: rgba(255,255,255,0.12);
  border-radius: 50%; margin: 0 auto 18px;
  border: 1px solid rgba(255,255,255,0.06);
}
.tablet-screen {
  background: linear-gradient(180deg, #0D1117 0%, #080C10 100%);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem;
  overflow: hidden;
}
.tablet-home {
  width: 40px; height: 5px; background: rgba(255,255,255,0.1);
  border-radius: 3px; margin: 18px auto 0;
}

/* ---- Phone Mockup ---- */
.phone-mockup-wrapper {
  display: flex; justify-content: center; align-items: center; gap: 1rem; position: relative;
}
.phone-frame {
  width: 230px; height: 480px; background: #0D1117; border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 8px rgba(7,9,14,0.85), 0 40px 80px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden; position: relative; flex-shrink: 0;
  animation: floatPhone 7s ease-in-out infinite;
}
.phone-frame.secondary {
  width: 195px; height: 400px; opacity: 0.65; margin-top: 50px; animation-delay: -3.5s;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px; background: #07090E;
  border-radius: 0 0 16px 16px; z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0D1117 0%, #080C10 100%);
  padding: 38px 12px 12px; display: flex; flex-direction: column; gap: 7px; overflow: hidden;
}
.mock-status { height: 10px; display: flex; justify-content: space-between; margin-bottom: 6px; }
.mock-status-bar { width: 28px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.mock-header-block {
  background: rgba(0,193,122,0.1); border: 1px solid rgba(0,193,122,0.2);
  border-radius: 12px; padding: 10px;
}
.mock-h-title { font-size: 0.5rem; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.mock-h-sub { font-size: 0.4rem; color: var(--text-secondary); }
.mock-row {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 9px; display: flex; align-items: center; gap: 8px;
}
.mock-dot { width: 26px; height: 26px; border-radius: 8px; background: var(--primary-glow); flex-shrink: 0; }
.mock-dot.blue { background: rgba(0,188,212,0.15); }
.mock-dot.purple { background: rgba(108,99,255,0.15); }
.mock-lines { flex: 1; }
.mock-line-1 { height: 5px; background: rgba(255,255,255,0.25); border-radius: 3px; width: 65%; margin-bottom: 4px; }
.mock-line-2 { height: 4px; background: rgba(255,255,255,0.1); border-radius: 3px; width: 45%; }
.mock-bars {
  height: 48px; background: rgba(255,255,255,0.03); border-radius: 8px;
  display: flex; align-items: flex-end; padding: 6px; gap: 4px; margin-top: 4px;
}
.mock-bar { flex: 1; background: var(--gradient-primary); border-radius: 2px; opacity: 0.75; }
.mock-tag-row { display: flex; gap: 4px; margin-top: 2px; }
.mock-tag {
  font-size: 0.38rem; background: var(--primary-glow); color: var(--primary);
  padding: 2px 6px; border-radius: 4px; font-weight: 600;
}

/* ---- App Split ---- */
.app-split-card {
  padding: 2.5rem; height: 100%; position: relative; overflow: hidden;
}
.app-split-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-care); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.app-split-card.core::before { background: var(--gradient-core); }
.app-icon-wrap {
  width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center;
  justify-content: center; font-size: 1.75rem; margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(0,193,122,0.2), rgba(85,239,196,0.08));
}
.app-split-card.core .app-icon-wrap {
  background: linear-gradient(135deg, rgba(0,184,212,0.2), rgba(108,99,255,0.08));
}
.app-split-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.6rem; }
.app-split-desc { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.92rem; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 5px 0; font-size: 0.87rem; color: var(--text-secondary);
}
.feature-list li i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; margin-top: 3px; }
.feature-list.blue li i { color: #00BCD4; }

/* ---- Stats Grid ---- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-box { background: var(--bg-surface); padding: 2.5rem 2rem; text-align: center; }
.stat-box-number { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.04em; display: block; }
.stat-box-label { font-size: 0.82rem; color: var(--text-secondary); margin-top: 5px; display: block; }

/* ---- Feature Card ---- */
.feature-card { padding: 2rem; height: 100%; }
.feature-icon {
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.35rem; margin-bottom: 1.25rem;
  background: var(--primary-glow); color: var(--primary); border: 1px solid var(--border-active);
}
.feature-icon.blue { background: rgba(0,184,212,0.1); color: #00BCD4; border-color: rgba(0,184,212,0.3); }
.feature-icon.purple { background: rgba(108,99,255,0.1); color: #6C63FF; border-color: rgba(108,99,255,0.3); }
.feature-icon.orange { background: rgba(255,152,0,0.1); color: #FF9800; border-color: rgba(255,152,0,0.3); }
.feature-icon.red { background: rgba(244,67,54,0.1); color: #F44336; border-color: rgba(244,67,54,0.3); }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ---- Firebase Section ---- */
.firebase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.firebase-item {
  padding: 1.5rem; border-radius: var(--radius-md);
  background: rgba(255,160,0,0.04); border: 1px solid rgba(255,160,0,0.1); transition: var(--transition);
}
.firebase-item:hover { border-color: rgba(255,160,0,0.3); background: rgba(255,160,0,0.07); }
.firebase-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.firebase-name { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.firebase-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

/* ---- Role Cards ---- */
.role-card { padding: 1.5rem; text-align: center; }
.role-icon {
  width: 54px; height: 54px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 1rem;
}
.role-name { font-size: 0.93rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.role-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

/* ---- Step/Flow ---- */
.step-number {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary-glow);
  border: 1px solid var(--border-active); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--primary); flex-shrink: 0;
}
.step-card { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.step-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ---- Tech Badges ---- */
.tech-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: 10px; background: var(--bg-glass); border: 1px solid var(--border);
  font-size: 0.84rem; font-weight: 600; color: var(--text-secondary); transition: var(--transition);
}
.tech-badge:hover { border-color: rgba(0,193,122,0.3); color: var(--text-primary); }

/* ---- CTA ---- */
.cta-card {
  background: linear-gradient(135deg, rgba(0,193,122,0.09), rgba(0,188,212,0.04));
  border: 1px solid rgba(0,193,122,0.18); border-radius: var(--radius-xl);
  padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(0,193,122,0.12), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.cta-desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* ---- FAQ ---- */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 0.75rem; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: transparent; border: none; color: var(--text-primary);
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question.open { color: var(--primary); background: rgba(0,193,122,0.04); }
.faq-icon { font-size: 1rem; flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.faq-answer.open { display: block; }

/* ---- Footer ---- */
.footer { padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-brand-text { font-size: 1.35rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.6rem; }
.footer-brand-text span { color: var(--primary); }
.footer-tagline { font-size: 0.87rem; color: var(--text-secondary); max-width: 260px; line-height: 1.65; }
.footer-heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.social-link {
  width: 36px; height: 36px; border-radius: 8px; background: var(--bg-glass);
  border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition); margin-right: 6px;
}
.social-link:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-glow); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 160px 0 90px; position: relative; overflow: hidden; text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 0; }
.page-hero-content { position: relative; z-index: 1; }

/* ---- Badge Pills ---- */
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}
.badge-green { background: var(--primary-glow); color: var(--primary); border: 1px solid var(--border-active); }
.badge-blue { background: rgba(0,184,212,0.1); color: #00BCD4; border: 1px solid rgba(0,184,212,0.3); }
.badge-purple { background: rgba(108,99,255,0.1); color: #6C63FF; border: 1px solid rgba(108,99,255,0.3); }
.badge-orange { background: rgba(255,152,0,0.1); color: #FF9800; border: 1px solid rgba(255,152,0,0.3); }

/* ---- Highlight box ---- */
.highlight-box {
  background: rgba(0,193,122,0.05); border: 1px solid rgba(0,193,122,0.18);
  border-radius: var(--radius-md); padding: 2rem;
}

/* ---- Section divider ---- */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* ---- Animations ---- */
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.06); }
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-22px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0; transform: translateX(22px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ---- Demo Form Result ---- */
#form-result {
  margin-top: 1rem;
  padding: 0;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}
#form-result.success {
  padding: 12px 16px;
  background: rgba(0, 193, 122, 0.1);
  border: 1px solid rgba(0, 193, 122, 0.3);
  color: var(--primary-green);
}
#form-result.error {
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,193,122,0.35); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .firebase-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }
  .cta-card { padding: 3.5rem 2rem; }
}
@media (max-width: 767px) {
  .section-py { padding: 70px 0; }
  .phone-frame.secondary { display: none; }
  .hero-cta { flex-direction: column; align-items: center; }
  .firebase-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
  .stats-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 2.5rem 1.25rem; }
}
