/* ────────────────────────────────────────────────────────
   PHINS IQ - AI ASSISTANT LANDING PAGE STYLESHEET
   Theme: Deep Dark Midnight & Electric Blue / Cyber Cyan
   Powered by ParroPhins Private Limited
   ──────────────────────────────────────────────────────── */

/* ── 1. CORE CSS VARIABLES & DESIGN SYSTEM ── */
:root {
  --bg-dark: #0a1124;
  --bg-surface: #142038;
  --bg-surface-elevated: #1c2b4a;
  --bg-glass: rgba(20, 32, 56, 0.85);
  --bg-glass-card: rgba(24, 38, 66, 0.78);

  --primary-blue: #0066ff;
  --primary-blue-glow: rgba(0, 102, 255, 0.45);
  --cyber-cyan: #00f0ff;
  --cyber-cyan-glow: rgba(0, 240, 255, 0.35);
  --deep-sapphire: #1e3a8a;
  --violet-accent: #8b5cf6;

  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --border-subtle: rgba(255, 255, 255, 0.14);
  --border-glow: rgba(0, 240, 255, 0.45);
  --border-blue: rgba(0, 102, 255, 0.55);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 50px rgba(0, 102, 255, 0.35);
  --shadow-cyan-glow: 0 0 50px rgba(0, 240, 255, 0.3);
}

/* ── 2. GLOBAL RESET & BASE STYLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* Selection */
::selection {
  background-color: rgba(0, 240, 255, 0.3);
  color: #ffffff;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 40%, var(--cyber-cyan) 70%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--primary-blue) 60%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── 3. BACKGROUND EFFECTS & CANVAS ── */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 102, 255, 0.35), transparent 70%),
    radial-gradient(circle 600px at 85% 35%, rgba(0, 240, 255, 0.22), transparent 70%),
    radial-gradient(circle 700px at 15% 75%, rgba(30, 64, 175, 0.28), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 102, 255, 0.2), transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Layout Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── 4. NAVIGATION BAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled,
.navbar.mobile-menu-active {
  padding: 12px 0;
  background: rgba(10, 17, 36, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0066ff, #00f0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.45);
  position: relative;
  overflow: hidden;
  padding: 5px;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-transform: none;
}

.brand-name span {
  color: #00f0ff;
  font-weight: 900;
  margin-left: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--cyber-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--cyber-cyan);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 0 25px var(--primary-blue-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 102, 255, 0.6);
  background: linear-gradient(135deg, #2563eb 0%, var(--primary-blue) 100%);
}

.btn-glow {
  background: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--primary-blue) 100%);
  color: #030712;
  font-weight: 700;
  box-shadow: 0 0 30px var(--cyber-cyan-glow);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(0, 240, 255, 0.7);
  filter: brightness(1.1);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--cyber-cyan);
  color: var(--cyber-cyan);
  background: rgba(0, 240, 255, 0.05);
}

/* ── 5. HERO SECTION (EXTRAORDINARY 3D NEURAL CORE) ── */
.hero-section {
  padding-top: 110px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.hero-glow-sphere {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

.top-glow {
  top: -100px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.35), transparent 70%);
}

.bottom-glow {
  bottom: 0;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.25), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyber-cyan);
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyber-cyan);
  box-shadow: 0 0 10px var(--cyber-cyan);
  animation: pulse-dot 2s infinite;
}

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

.hero-title {
  font-size: 3.4rem;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-glowing-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #00f0ff 30%, #0066ff 70%, #a78bfa 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGlowShimmer 6s linear infinite;
  display: inline-block;
  filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.45));
}

@keyframes heroGlowShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* Typewriter Prompt Console */
.hero-typewriter-console {
  background: rgba(10, 16, 30, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-cyan-glow);
  transition: var(--transition-normal);
}

.hero-typewriter-console:hover {
  border-color: var(--cyber-cyan);
  box-shadow: 0 20px 45px rgba(0, 240, 255, 0.25);
}

.typewriter-header {
  background: rgba(5, 8, 17, 0.6);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.typewriter-dots {
  display: flex;
  gap: 6px;
}

.typewriter-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.typewriter-dots span:nth-child(1) { background: #ef4444; }
.typewriter-dots span:nth-child(2) { background: #f59e0b; }
.typewriter-dots span:nth-child(3) { background: #10b981; }

.typewriter-label {
  font-size: 0.75rem;
  color: var(--cyber-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.typewriter-body {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: #e2e8f0;
}

.prompt-icon {
  color: var(--cyber-cyan);
  font-size: 0.9rem;
}

#hero-typewriter-text {
  flex: 1;
  color: #a5f3fc;
  overflow: hidden;
  white-space: nowrap;
}

.typewriter-cursor {
  color: var(--cyber-cyan);
  font-weight: 800;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typewriter-act-btn {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid var(--cyber-cyan);
  color: var(--cyber-cyan);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.typewriter-act-btn:hover {
  background: var(--cyber-cyan);
  color: #030712;
  box-shadow: 0 0 15px var(--cyber-cyan-glow);
}

/* Prompt Pills */
.prompt-pills-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.prompt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prompt-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.prompt-pill:hover {
  border-color: var(--cyber-cyan);
  color: var(--text-main);
  background: rgba(0, 240, 255, 0.08);
  transform: translateY(-2px);
}

.prompt-pill i {
  color: var(--cyber-cyan);
}

/* 3D Cyber Holographic Visual & Rings */
.hero-visual {
  position: relative;
}

.cyber-orbit-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cyber-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 240, 255, 0.3);
  pointer-events: none;
}

.ring-outer {
  width: 110%;
  height: 110%;
  border-color: rgba(0, 102, 255, 0.25);
  animation: spinRing 25s linear infinite;
}

.ring-middle {
  width: 102%;
  height: 102%;
  border-color: rgba(0, 240, 255, 0.4);
  animation: spinRingReverse 18s linear infinite;
}

.ring-inner {
  width: 95%;
  height: 95%;
  border-color: rgba(167, 139, 250, 0.3);
  animation: spinRing 12s linear infinite;
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinRingReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.cyber-core-glass {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-cyan-glow);
  background: var(--bg-surface);
}

.cyber-core-glass img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cyber-core-glass:hover img {
  transform: scale(1.04);
}

.cyber-core-scanline {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 240, 255, 0.15) 50%, transparent 100%);
  animation: scanline 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanline {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Floating HUD Badges */
.hero-hud-badge {
  position: absolute;
  z-index: 3;
  background: rgba(10, 17, 36, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glow);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.6), var(--shadow-glow);
  animation: floatHUD 4s ease-in-out infinite;
}

.hud-top-right {
  top: -15px;
  right: -15px;
  animation-delay: 0s;
}

.hud-bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: 1.5s;
}

.hud-top-left {
  top: 40%;
  left: -35px;
  animation-delay: 3s;
}

@keyframes floatHUD {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hud-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cyan-glow-icon {
  background: rgba(0, 240, 255, 0.15);
  color: var(--cyber-cyan);
  box-shadow: 0 0 10px var(--cyber-cyan-glow);
}

.blue-glow-icon {
  background: rgba(0, 102, 255, 0.2);
  color: #60a5fa;
  box-shadow: 0 0 10px var(--primary-blue-glow);
}

.purple-glow-icon {
  background: rgba(167, 139, 250, 0.2);
  color: #a78bfa;
}

.hud-val {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.2;
}

.hud-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.floating-text .stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── 6. METRICS BAR WITH PARALLAX BACKGROUND ── */
.metrics-section {
  position: relative;
  padding: 40px 0;
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
  margin-bottom: 50px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.7);
}

.metrics-container {
  position: relative;
  z-index: 2;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-card {
  background: rgba(15, 25, 48, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyber-cyan);
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.25);
  background: rgba(20, 35, 65, 0.7);
}

.metric-card h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-shadow: 0 0 20px var(--cyber-cyan-glow);
}

.metric-card p {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ── 7. INTERACTIVE DEMO CHAT WIDGET SECTION ── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px auto;
}

.section-tag {
  color: var(--cyber-cyan);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.demo-section {
  padding-bottom: 60px;
}

.chat-simulator-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 560px;
}

.chat-sidebar {
  background: rgba(14, 23, 43, 0.85);
  border-right: 1px solid var(--border-subtle);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-title {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-selector-item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-selector-item:hover, .product-selector-item.active {
  background: rgba(0, 102, 255, 0.15);
  border-color: var(--cyber-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.prod-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 240, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyber-cyan);
  font-size: 1.1rem;
}

.prod-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.prod-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chat-main {
  display: flex;
  flex-direction: column;
  background: rgba(10, 16, 29, 0.9);
}

.chat-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(5, 8, 17, 0.4);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.chat-header-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 2px;
}

.chat-header-actions {
  flex-shrink: 0;
}

.ai-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #4ade80;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
}

.chat-messages {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 400px;
}

/* CatBot Avatar & Product Logo Icons */
.prod-logo-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.chat-header-avatar-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0066ff, #00f0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  flex-shrink: 0;
}

.chat-header-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-header-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.chat-header-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.chat-header-btn:hover {
  border-color: var(--cyber-cyan);
  color: var(--cyber-cyan);
  background: rgba(0, 240, 255, 0.1);
}

/* Chat Messages & Avatars */
.chat-bubble-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: fadeIn 0.3s ease-out;
}

.chat-bubble-wrap.user-bubble-wrap {
  justify-content: flex-end;
}

.chat-avatar-thumb {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0066ff, #00f0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.chat-avatar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-bubble {
  max-width: 85%;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  line-height: 1.6;
}

.user-bubble {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.ai-bubble {
  align-self: flex-start;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glow);
  color: var(--text-main);
  border-bottom-left-radius: 4px;
}

.ai-bubble-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cyber-cyan);
  font-weight: 700;
  margin-bottom: 8px;
}

.ai-card-action {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px dashed var(--cyber-cyan);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.chat-suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-subtle);
}

.suggestion-chip {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--cyber-cyan);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.suggestion-chip:hover {
  background: var(--cyber-cyan);
  color: #030712;
  transform: translateY(-2px);
  box-shadow: 0 0 12px var(--cyber-cyan-glow);
}

.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(5, 8, 17, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
}

.chat-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  color: var(--text-main);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

.chat-input:focus {
  border-color: var(--cyber-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.send-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0066ff, #00f0ff) !important;
  color: #000000 !important;
  font-size: 1.1rem;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
}

/* Floating Catbot Trigger Widget */
.catbot-floating-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.catbot-peek-bubble {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glow);
  color: var(--text-main);
  padding: 10px 16px;
  border-radius: 16px 16px 4px 16px;
  font-size: 0.82rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), var(--shadow-cyan-glow);
  animation: floatPeek 3s ease-in-out infinite;
  max-width: 240px;
  pointer-events: auto;
}

@keyframes floatPeek {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.catbot-floating-trigger {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  background: linear-gradient(135deg, #0066ff, #00f0ff);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 6px;
  outline: none;
  pointer-events: auto;
}

.catbot-floating-trigger:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
}

.catbot-trigger-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

/* ── 8. AI-POWERED PROJECTS SHOWCASE ── */
.projects-section {
  padding-bottom: 60px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--cyber-cyan));
  opacity: 0;
  transition: var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--shadow-cyan-glow);
}

.project-card:hover::before {
  opacity: 1;
}

.project-logo-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(14, 23, 42, 0.85);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 240, 255, 0.15);
  transition: var(--transition-normal);
}

.project-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 240, 255, 0.3));
  transition: transform 0.3s ease;
}

.project-card:hover .project-logo-wrapper {
  border-color: var(--cyber-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.35);
  transform: scale(1.06);
}

.project-card:hover .project-logo-img {
  transform: scale(1.1);
}

.project-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.project-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.project-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.project-features-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-features-list li i {
  color: var(--cyber-cyan);
}

.card-footer-badge {
  font-size: 0.8rem;
  color: var(--cyber-cyan);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── 9. DASHBOARD SHOWCASE FEATURE ── */
.dashboard-showcase-section {
  padding-bottom: 60px;
}

.dashboard-card-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.showcase-content {
  padding: 36px 40px;
}

.showcase-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.showcase-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.feature-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.15);
  color: var(--cyber-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.check-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.showcase-image-box {
  position: relative;
  height: 100%;
  min-height: 440px;
}

.showcase-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── 10. INTERACTIVE ROI CALCULATOR ── */
.roi-section {
  padding-bottom: 60px;
}

.roi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.slider-group {
  margin-bottom: 32px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.slider-value {
  color: var(--cyber-cyan);
  font-weight: 800;
  font-size: 1.1rem;
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  accent-color: var(--cyber-cyan);
  cursor: pointer;
}

.roi-result-box {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 240, 255, 0.08));
  border: 1px solid var(--cyber-cyan);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.roi-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cyber-cyan);
  margin-bottom: 8px;
}

.roi-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── 11. FAQ ACCORDION ── */
.faq-section {
  padding-bottom: 60px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-question:hover {
  color: var(--cyber-cyan);
}

.faq-answer {
  padding: 0 20px 16px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active {
  border-color: var(--border-glow);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--cyber-cyan);
}

.faq-icon {
  transition: transform 0.3s ease;
}

/* ── 12. CALL TO ACTION ── */
.cta-section {
  padding-bottom: 60px;
}

.cta-box {
  background: linear-gradient(135deg, #0b1220 0%, #1e1b4b 50%, #002b66 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 48px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.cta-inner-content {
  position: relative;
  z-index: 2;
}

/* ── PARALLAX ENGINE STYLES ── */
.parallax-banner-section {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

.parallax-bg-layer {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
  transition: transform 0.08s ease-out;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(5, 8, 17, 0.45) 0%, rgba(5, 8, 17, 0.9) 100%),
              linear-gradient(to bottom, rgba(5, 8, 17, 0.8), transparent 40%, rgba(5, 8, 17, 0.85));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 60px 24px;
}

.parallax-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 50%, var(--cyber-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.parallax-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 36px auto;
}

/* ── 13. FOOTER (SOLID OPAQUE BACKGROUND) ── */
.footer {
  position: relative;
  z-index: 10;
  background-color: #060a14 !important;
  background: #060a14 !important;
  border-top: 1px solid var(--border-glow);
  padding: 40px 0 20px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 28px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--cyber-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  border-color: var(--cyber-cyan);
  color: var(--cyber-cyan);
}

/* Fluid Typography Base */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

/* ── 14. RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 36px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .prompt-pills {
    justify-content: center;
  }
  .chat-simulator-container {
    grid-template-columns: 1fr;
  }
  .chat-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .chat-sidebar::-webkit-scrollbar {
    display: none;
  }
  .sidebar-title {
    display: none;
  }
  .product-selector-item {
    flex: 0 0 auto;
    min-width: 210px;
    padding: 12px 16px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-card-wrap {
    grid-template-columns: 1fr;
  }
  .showcase-content {
    padding: 40px 30px;
  }
  .roi-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .navbar {
    height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    background: rgba(10, 17, 36, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  .nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    position: relative;
  }

  .brand-logo {
    gap: 8px;
  }

  .logo-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .nav-cta {
    margin-left: auto;
  }

  .mobile-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .nav-cta-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 17, 36, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glow);
    flex-direction: column;
    padding: 0;
    gap: 14px;
    display: flex;
    align-items: center;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), var(--shadow-cyan-glow);
  }

  .nav-links.mobile-open {
    max-height: 240px;
    padding: 16px 0;
    opacity: 1;
    visibility: visible;
  }

  .hero-section {
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .badge-pill {
    font-size: 0.65rem;
    padding: 5px 10px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    box-sizing: border-box;
    margin-bottom: 14px;
  }

  .badge-pill span {
    white-space: normal;
    word-break: break-word;
  }

  .hero-title {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
    letter-spacing: -0.5px;
    line-height: 1.15;
    word-break: break-word;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 9px 16px;
  }

  .hero-typewriter-console {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .typewriter-body {
    padding: 8px 10px;
    font-size: 0.74rem;
    flex-wrap: wrap;
    gap: 6px;
  }

  #hero-typewriter-text {
    white-space: normal;
    word-break: break-word;
    font-size: 0.74rem;
  }

  .typewriter-act-btn {
    font-size: 0.68rem;
    padding: 4px 8px;
    width: 100%;
    margin-top: 4px;
    text-align: center;
  }

  .prompt-pill {
    font-size: 0.72rem;
    padding: 5px 8px;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }

  .metrics-section {
    padding: 20px 0;
    margin-bottom: 28px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .metric-card {
    padding: 14px 10px;
  }

  .metric-card h3 {
    font-size: 1.7rem;
    margin-bottom: 2px;
  }

  .metric-card p {
    font-size: 0.8rem;
  }

  .section-header {
    margin: 0 auto 20px auto;
  }

  .section-tag {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .demo-section,
  .projects-section,
  .dashboard-showcase-section,
  .roi-section,
  .faq-section,
  .cta-section {
    padding-bottom: 36px;
  }

  /* Chat Simulator Mobile Layout */
  .chat-sidebar {
    padding: 10px 12px;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    gap: 8px;
  }

  .sidebar-title {
    display: none;
  }

  .product-selector-item {
    flex-shrink: 0;
    min-width: 155px;
    padding: 8px 12px;
  }

  .chat-messages {
    max-height: 280px;
    padding: 12px;
  }

  .chat-bubble {
    max-width: 95%;
    font-size: 0.84rem;
    padding: 10px 12px;
  }

  .chat-input-area {
    padding: 10px 12px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-card {
    padding: 18px;
  }

  .project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .project-card p {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  .project-logo-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 16px;
  }

  .showcase-content {
    padding: 24px 16px;
  }

  .showcase-content h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .showcase-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .feature-check-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }

  .showcase-image-box {
    min-height: 200px;
  }

  .roi-card {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 20px;
  }

  .roi-result-box {
    padding: 20px 14px;
  }

  .roi-num {
    font-size: 2.4rem;
  }

  .faq-question {
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 16px 12px 16px;
    font-size: 0.86rem;
  }

  .parallax-banner-section {
    min-height: 200px;
    margin-bottom: 36px;
  }

  .parallax-content {
    padding: 24px 16px;
  }

  .cta-box {
    padding: 32px 16px;
  }

  .cta-box h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .cta-box p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .footer {
    padding: 30px 0 16px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .catbot-floating-wrapper {
    bottom: 16px;
    right: 14px;
    gap: 6px;
  }

  .catbot-peek-bubble {
    font-size: 0.72rem;
    padding: 6px 10px;
    max-width: 180px;
  }

  .catbot-floating-trigger {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .roi-card {
    padding: 16px 12px;
  }

  .roi-result-box {
    padding: 16px 12px;
  }
}
