/* ==========================================================================
   AutoExpert Solutions - B2B Showcase & Sales Platform
   Style Sheet: Modern Automotive SaaS & Agency Styling
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #090d16;
  --bg-card-dark: #0f172a;
  --bg-card-darker: #0b1120;
  --bg-light: #f8fafc;
  --bg-card-light: #ffffff;
  
  --primary-navy: #0f2744;
  --primary-blue: #2563eb;
  --primary-blue-hover: #1d4ed8;
  --primary-blue-glow: rgba(37, 99, 235, 0.25);
  
  --accent-orange: #ff7a00;
  --accent-orange-hover: #ea580c;
  --accent-orange-glow: rgba(255, 122, 0, 0.25);
  
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.2);
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-dark: #1e293b;
  --border-dark-highlight: #334155;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
  --shadow-glow-blue: 0 0 35px var(--primary-blue-glow);
  --shadow-glow-orange: 0 0 35px var(--accent-orange-glow);

  --font-sans: 'Cairo', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-light);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-light-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 36px;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1640px;
    padding: 0 44px;
  }
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 122, 0, 0.35);
  background: rgba(255, 122, 0, 0.08);
  color: var(--accent-orange);
}

.badge-tag.blue {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.08);
  color: #60a5fa;
}

.badge-tag.emerald {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.08);
  color: #34d399;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.highlight-orange {
  color: var(--accent-orange);
  background: linear-gradient(135deg, #ff9432, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-blue {
  color: #3b82f6;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8a00, #ff6000);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff9b26, #ff7014);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.45);
}

.btn-blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ==========================================================================
   Header & Navigation - Luxury Automotive Glassmorphism
   ========================================================================== */

.top-announcement-bar {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(255, 122, 0, 0.2), rgba(16, 185, 129, 0.2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
  font-size: 0.78rem;
  color: #cbd5e1;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.top-announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(9, 13, 22, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(9, 13, 22, 0.98);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 99, 235, 0.1);
  border-bottom-color: rgba(37, 99, 235, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Brand Logo Redesign - Agence Auto Services */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 290px;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-logo:hover .brand-logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 16px rgba(255, 122, 0, 0.45));
}

.brand-icon-emblem {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16243b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-icon-emblem::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 122, 0, 0.25), transparent 70%);
  pointer-events: none;
}

.brand-logo:hover .brand-icon-emblem {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  white-space: nowrap;
}

.brand-badge-pro {
  font-size: 0.65rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff8a00, #ff5500);
  color: #ffffff;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 122, 0, 0.35);
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav Links Styling */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links li a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  padding: 6px 9px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* Nav Actions - High Quality CTAs */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Live Demo CTA with Radar Pulse */
.btn-nav-demo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-md);
  color: #93c5fd;
  font-weight: 700;
  font-size: 0.82rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-nav-demo:hover {
  background: rgba(37, 99, 235, 0.24);
  border-color: #60a5fa;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Live Radar Dot */
.pulse-indicator {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pulse-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.pulse-ring {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: pulseRadar 2s infinite ease-out;
  opacity: 0.8;
}

@keyframes pulseRadar {
  0% { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.btn-pill-live {
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 1px 7px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Quote Button */
.btn-nav-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff8a00, #ff5500);
  border: 1px solid rgba(255, 122, 0, 0.5);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-quote:hover {
  background: linear-gradient(135deg, #ff9b26, #ff6600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.5);
  color: #ffffff;
}

/* Nav WhatsApp Quick Button */
.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius-md);
  color: #34d399;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-wa:hover {
  background: #25d366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 175px 0 100px;
  background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.15) 0%, rgba(9, 13, 22, 0) 65%),
              radial-gradient(circle at 80% 60%, rgba(255, 122, 0, 0.08) 0%, rgba(9, 13, 22, 0) 50%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  align-items: center;
  gap: 50px;
}

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

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.18rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #cbd5e1;
}

.trust-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* Hero Showcase Visual */
.hero-visual {
  position: relative;
  padding-top: 20px;
}

.hero-screen-switcher-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 10;
}

.hero-mode-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.75);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  width: fit-content;
  margin: 0 auto;
}

.hero-mode-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-mode-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-mode-btn.active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border-color: #60a5fa;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45);
}

.hero-mode-btn .mode-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(255, 122, 0, 0.25);
  color: #ff9d42;
  border: 1px solid rgba(255, 122, 0, 0.4);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.hero-mode-btn.active .mode-badge {
  background: #ffffff;
  color: #1e40af;
  border-color: #ffffff;
}

.hero-mode-btn .mode-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

/* Secondary Quick-Switch Pages Bar */
.hero-pages-bar {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-pages-bar.active {
  display: flex;
}

.pages-bar-label {
  font-size: 0.74rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}

.pages-buttons-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-page-btn {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.hero-page-btn .page-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #94a3b8;
}

.hero-page-btn:hover {
  background: rgba(30, 41, 59, 0.95);
  color: #ffffff;
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-1px);
}

.hero-page-btn.active {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.28), rgba(255, 85, 0, 0.15));
  border: 1.5px solid #ff7a00;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(255, 122, 0, 0.4);
}

.hero-page-btn.active .page-num {
  background: #ff7a00;
  color: #ffffff;
}

/* Image Container Inside Mock */
.hero-img-container {
  position: relative;
  overflow: hidden;
  max-height: 520px;
  background: #090d16;
}

.hero-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(9, 13, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(-4px);
}

.hero-img-container:hover .hero-zoom-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-zoom-btn:hover {
  background: var(--primary-blue);
  border-color: #60a5fa;
}

/* Hero Quick Actions Under Mock */
.hero-quick-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.btn-quick-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.8);
  color: #cbd5e1;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.btn-quick-action:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-quick-action.primary {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(29, 78, 216, 0.3));
  border-color: rgba(96, 165, 250, 0.5);
  color: #60a5fa;
}

.btn-quick-action.primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-quick-action.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(32, 189, 90, 0.25));
  border-color: rgba(37, 211, 102, 0.5);
  color: #34d399;
}

.btn-quick-action.whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.visual-stack {
  position: relative;
  perspective: 1000px;
}

.visual-main-card {
  position: relative;
  background: var(--bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(37, 99, 235, 0.18);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-main-card:hover {
  transform: rotateY(0) rotateX(0);
}

.visual-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #151e2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}
.window-dot.red { background: #ef4444; }
.window-dot.yellow { background: #f59e0b; }
.window-dot.green { background: #10b981; }

.window-address {
  font-size: 0.75rem;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-img-preview {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
}

/* Floating Badges - Clean Positioning (No Overlap) */
.floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top-left {
  top: 55px;
  right: -20px;
  left: auto;
}

.floating-badge.badge-bottom-right {
  bottom: -22px;
  left: -20px;
  right: auto;
  animation-delay: -2s;
}

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

.badge-icon-box.emerald {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
}

.badge-icon-box.orange {
  background: rgba(255, 122, 0, 0.15);
  color: var(--accent-orange);
}

.badge-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.badge-sub {
  font-size: 0.75rem;
  color: #94a3b8;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* ==========================================================================
   Problem vs Solution Section
   ========================================================================== */

.comparison-section {
  padding: 110px 0;
  background: #0d1322;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comp-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
}

.comp-card.before {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-card.after {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(255, 122, 0, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.1);
}

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

.comp-badge {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comp-card.before .comp-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.comp-card.after .comp-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.comp-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.5;
}

.comp-card.before .comp-list li {
  color: #94a3b8;
}

.comp-card.after .comp-list li {
  color: #e2e8f0;
}

.comp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comp-card.before .comp-icon {
  color: #ef4444;
}

.comp-card.after .comp-icon {
  color: #10b981;
}

/* ==========================================================================
   Report Showcase (The 5 Pages Breakdown)
   ========================================================================== */

.showcase-section {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
}

.showcase-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ff7a00, #ea580c);
  border-color: #ff7a00;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
}

.tab-pill {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.showcase-display {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.showcase-preview-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  background: #ffffff;
}

.showcase-preview-box img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.showcase-preview-box:hover img {
  transform: scale(1.02);
}

.zoom-overlay-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.showcase-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-page-tag {
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.showcase-page-title {
  font-size: 2rem;
  line-height: 1.2;
}

.showcase-page-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
}

.feature-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.feature-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.bullet-check {
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

.features-section {
  padding: 120px 0;
  background: #0d1322;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(37, 99, 235, 0.1);
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-wrapper.orange {
  background: rgba(255, 122, 0, 0.12);
  color: var(--accent-orange);
}

.feature-icon-wrapper.blue {
  background: rgba(37, 99, 235, 0.12);
  color: #60a5fa;
}

.feature-icon-wrapper.emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
}

.feature-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card-desc {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.feature-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   ROI & Time-Saving Simulator
   ========================================================================== */

.roi-section {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, rgba(9, 13, 22, 0) 70%), var(--bg-dark);
  position: relative;
}

.roi-calculator-box {
  background: linear-gradient(145deg, #0f1a2e, #0b1120);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(37, 99, 235, 0.12);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

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

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.slider-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.slider-value-badge {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-orange);
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.3);
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: #334155;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 15px rgba(255, 122, 0, 0.6);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.roi-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.roi-metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.roi-metric-card:hover {
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.03);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.metric-number.orange {
  color: var(--accent-orange);
}

.metric-number.emerald {
  color: var(--accent-emerald);
}

.metric-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
}

/* ==========================================================================
   Pricing & Deployment Packs
   ========================================================================== */

.pricing-section {
  padding: 120px 0;
  background: #090d16;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured {
  background: linear-gradient(160deg, #111d35, #0f172a);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 45px rgba(255, 122, 0, 0.15);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff8a00, #ff6000);
  color: #ffffff;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.pricing-plan-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-plan-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 24px;
  min-height: 48px;
}

.pricing-price-box {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.pricing-term {
  font-size: 0.9rem;
  color: #94a3b8;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.pricing-features li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  padding: 120px 0;
  background: #0d1322;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: #94a3b8;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-body {
  padding: 0 28px 24px 28px;
  max-height: 300px;
}

.faq-answer {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 1rem;
}

/* ==========================================================================
   Contact & CTA Section
   ========================================================================== */

.contact-section {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 122, 0, 0.12) 0%, rgba(9, 13, 22, 0) 60%), var(--bg-dark);
  position: relative;
}

.contact-box {
  background: linear-gradient(145deg, #0f182c, #0d121f);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbd5e1;
  font-size: 1rem;
}

.quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px rgba(255, 122, 0, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 70px 0 30px;
  background: #070a11;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #64748b;
}

/* ==========================================================================
   Modals & Lightbox
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
  animation: fadeIn 0.25s ease forwards;
}

.modal-content-box {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.modal-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  text-align: center;
}

.modal-body img {
  max-height: 75vh;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust-row {
    justify-content: center;
  }
  
  .showcase-display {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
  
  .roi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-box {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .roi-metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-badge {
    display: none;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   Floating Sticky WhatsApp Conversion Widget
   ========================================================================== */

.floating-wa-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 16, 28, 0.94);
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  padding: 8px 18px 8px 10px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 211, 102, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #25d366;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75), 0 0 35px rgba(37, 211, 102, 0.5);
}

.wa-icon-bubble {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

.wa-status-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #090d16;
  animation: pulseRadar 1.8s infinite;
}

.wa-badge-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wa-status-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wa-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
}

.wa-main-cta {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.wa-sub-cta {
  font-size: 0.68rem;
  color: #94a3b8;
}

/* ROI CTA Bar */
.roi-cta-bar {
  margin-top: 32px;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(37, 99, 235, 0.1));
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.roi-cta-text {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 650px;
}

/* Mobile responsive for floating WA */
@media (max-width: 576px) {
  .floating-wa-container {
    bottom: 16px;
    right: 16px;
  }
  .wa-badge-content {
    display: none;
  }
  .floating-wa-btn {
    padding: 0;
    border-radius: 50%;
  }
  .wa-icon-bubble {
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   RTL & Moroccan Darija Presentation Enhancements
   ========================================================================== */

[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .section-title,
[dir="rtl"] .hero-description,
[dir="rtl"] .section-subtitle,
[dir="rtl"] .comp-card p,
[dir="rtl"] .feature-card-desc,
[dir="rtl"] .pricing-plan-desc,
[dir="rtl"] .showcase-page-desc,
[dir="rtl"] .faq-question,
[dir="rtl"] .faq-answer,
[dir="rtl"] .form-label {
  text-align: right;
}

[dir="rtl"] .ltr-text,
[dir="rtl"] .phone-number,
[dir="rtl"] .url-text,
[dir="rtl"] .window-address span {
  direction: ltr;
  display: inline-block;
  unicode-bidi: embed;
}

[dir="rtl"] .hero-trust-row {
  justify-content: flex-start;
}

[dir="rtl"] .floating-badge.badge-top-left {
  top: 55px;
  left: -15px;
  right: auto;
}

[dir="rtl"] .floating-badge.badge-bottom-right {
  bottom: 25px;
  right: -15px;
  left: auto;
}

[dir="rtl"] .floating-wa-container {
  right: auto;
  left: 24px;
}

[dir="rtl"] .wa-badge-content {
  text-align: right;
}

[dir="rtl"] .wa-status-pulse {
  right: auto;
  left: -2px;
}

@media (max-width: 576px) {
  [dir="rtl"] .floating-wa-container {
    right: auto;
    left: 16px;
  }
}

[dir="rtl"] .faq-chevron {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .comp-list li,
[dir="rtl"] .feature-bullet-list li,
[dir="rtl"] .pricing-features li {
  text-align: right;
}

[dir="rtl"] .comp-icon,
[dir="rtl"] .bullet-check {
  flex-shrink: 0;
}

[dir="rtl"] .form-input,
[dir="rtl"] .form-select,
[dir="rtl"] .form-textarea {
  text-align: right;
}

/* ==========================================================================
   Reports Examples Gallery Section (Wide Grid & Filter Tabs)
   ========================================================================== */

.gallery-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.1) 0%, rgba(9, 13, 22, 0) 70%),
              radial-gradient(circle at 80% 40%, rgba(255, 122, 0, 0.06) 0%, rgba(9, 13, 22, 0) 50%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-filter-btn:hover {
  background: rgba(30, 41, 59, 0.95);
  color: #ffffff;
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, #ff7a00, #ff5500);
  color: #ffffff;
  border-color: #ff9838;
  box-shadow: 0 6px 22px rgba(255, 122, 0, 0.45);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.gallery-card {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 122, 0, 0.15);
}

.gallery-card-thumb {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: #0b101c;
  cursor: pointer;
}

.gallery-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: transform 0.4s ease;
  background: #090d16;
}

.gallery-card:hover .gallery-card-thumb img {
  transform: scale(1.04);
}

.gallery-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(9, 13, 22, 0.9);
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: #ff9838;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  z-index: 2;
}

[dir="rtl"] .gallery-card-badge {
  right: auto;
  left: 14px;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 22, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
}

.gallery-card-thumb:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.gallery-card-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.gallery-card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.btn-gallery-zoom {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gallery-zoom:hover {
  background: var(--primary-blue);
  border-color: #60a5fa;
  color: #ffffff;
}

.btn-gallery-wa {
  flex: 1.3;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #34d399;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gallery-wa:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}


