/* ==========================================================================
   Link2Flow Design System & Stylesheet (v2.1 Mobile-First Perfected Edition)
   Inspired by SleekFlow, Respond.io, Wati, Taqnyat, and Meta Business Platform
   ========================================================================== */

/* --- 1. CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --color-primary: #10B981;        /* Modern Digital Emerald */
  --color-primary-hover: #059669;
  --color-primary-light: #D1FAE5;
  --color-primary-glow: rgba(16, 185, 129, 0.35);

  --color-whatsapp: #25D366;       /* Official WhatsApp Green */
  --color-whatsapp-dark: #128C7E;
  --color-whatsapp-deep: #075E54;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.4);

  --color-dark-bg: #0A1618;        /* Luxury Dark Teal/Slate */
  --color-dark-surface: #0F2327;
  --color-dark-card: #152E34;
  --color-dark-border: rgba(255, 255, 255, 0.08);

  --color-light-bg: #F8FAFC;
  --color-light-surface: #FFFFFF;
  --color-light-subtle: #F1F5F9;
  --color-light-border: #E2E8F0;

  --color-accent-blue: #38BDF8;
  --color-accent-amber: #F59E0B;
  --color-accent-purple: #A855F7;

  --color-text-title: #0F172A;
  --color-text-body: #334155;
  --color-text-muted: #64748B;
  --color-text-inverse: #FFFFFF;
  --color-text-inverse-muted: #94A3B8;

  /* Typography */
  --font-main: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 16px -2px rgba(0, 0, 0, 0.07), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 30px -4px rgba(0, 0, 0, 0.1), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px -6px rgba(0, 0, 0, 0.14), 0 8px 20px -4px rgba(0, 0, 0, 0.08);
  --shadow-glow-wa: 0 0 25px rgba(37, 211, 102, 0.35);
  --shadow-glow-emerald: 0 0 35px rgba(16, 185, 129, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-light-bg);
  color: var(--color-text-body);
  line-height: 1.65;
  direction: rtl;
  text-align: right;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.text-center { text-align: center; }
.text-emerald { color: var(--color-primary); }
.text-whatsapp { color: var(--color-whatsapp); }
.text-muted { color: var(--color-text-muted); }
.w-100 { width: 100%; }

/* --- 3. Announcement Top Bar --- */
.announcement-bar {
  background: linear-gradient(90deg, #075E54 0%, #0D3E3A 50%, #075E54 100%);
  color: #E6FFFA;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 101;
  word-break: break-word;
  line-height: 1.45;
}

.announcement-bar a {
  color: #5EEAD4;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-right: 0.4rem;
  font-weight: 700;
  display: inline-block;
}

.announcement-bar a:hover {
  color: #A7F3D0;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(37, 211, 102, 0.25);
  color: #4ADE80;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  margin-left: 0.4rem;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

/* --- 4. Sticky Glass Header --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  z-index: 100;
  transition: all var(--transition-fast);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-dark-bg);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #25D366 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

.logo-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-sm);
  margin-right: 0.2rem;
  vertical-align: middle;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-body);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--color-text-title);
  flex-shrink: 0;
}

/* --- 5. Buttons & Interactive Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1EBE5D 0%, #0D7367 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-light-border);
  color: var(--color-text-title);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(16, 185, 129, 0.05);
}

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* --- 6. Hero Section --- */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  background: radial-gradient(circle at 80% 20%, rgba(37, 211, 102, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 15% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 45%),
              linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: radial-gradient(rgba(16, 185, 129, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.12);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-hover);
  max-width: 100%;
  box-sizing: border-box;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-title);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  word-break: break-word;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, #059669 0%, #25D366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 580px;
  word-break: break-word;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

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

/* Hero Visual & Mockup Window */
.hero-visual-wrapper {
  position: relative;
  max-width: 100%;
}

.hero-mockup-frame {
  background: var(--color-dark-bg);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  box-shadow: var(--shadow-xl), var(--shadow-glow-emerald);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 100%;
}

.mockup-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.5rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot-red { background-color: #EF4444; }
.dot-yellow { background-color: #F59E0B; }
.dot-green { background-color: #10B981; }

.mockup-header-title {
  font-size: 0.72rem;
  color: var(--color-text-inverse-muted);
  font-family: monospace;
  direction: ltr;
}

.hero-screenshot {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}

/* Floating Action Cards on Hero */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.15);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatAnimation 4s ease-in-out infinite;
}

.floating-card-1 {
  top: -1.2rem;
  left: -1rem;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: -1.5rem;
  right: -1rem;
  animation-delay: 2s;
}

.floating-card-3 {
  top: 45%;
  right: -1.5rem;
  animation-delay: 1s;
}

.f-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.f-icon-green { background: #DCFCE7; color: #15803D; }
.f-icon-blue { background: #E0F2FE; color: #0369A1; }
.f-icon-gold { background: #FEF3C7; color: #B45309; }

.f-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-title);
  margin-bottom: 0.1rem;
}

.f-desc {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

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

/* --- 7. Proof & Impact Metrics Bar --- */
.metrics-section {
  background: var(--color-dark-bg);
  color: white;
  padding: 2.5rem 0;
  position: relative;
  border-top: 1px solid var(--color-dark-border);
  border-bottom: 1px solid var(--color-dark-border);
  overflow: hidden;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.metric-card {
  text-align: center;
  padding: 0.75rem 0.5rem;
  position: relative;
}

.metric-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 0;
  height: 70%;
  width: 1px;
  background: var(--color-dark-border);
}

.metric-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, #FFFFFF 30%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 0.2rem;
}

.metric-sub {
  font-size: 0.75rem;
  color: var(--color-text-inverse-muted);
}

/* --- 8. Section Headers --- */
.section {
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.section-light { background-color: var(--color-light-bg); }
.section-white { background-color: var(--color-light-surface); }
.section-dark {
  background: linear-gradient(180deg, #0A1618 0%, #0D2024 100%);
  color: white;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary-hover);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.section-tag-dark {
  background: rgba(37, 211, 102, 0.15);
  color: #4ADE80;
  border-color: rgba(74, 222, 128, 0.3);
}

.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--color-text-title);
  line-height: 1.3;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
  word-break: break-word;
}

.section-dark .section-title {
  color: white;
}

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

.section-dark .section-subtitle {
  color: #94A3B8;
}

/* --- 9. Interactive WhatsApp Simulator --- */
.simulator-wrapper {
  background: var(--color-dark-surface);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 100%;
  box-sizing: border-box;
}

.sim-info h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.sim-info p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.sim-industry-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.sim-btn-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  color: white;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: right;
  width: 100%;
  box-sizing: border-box;
}

.sim-btn-pill:hover, .sim-btn-pill.active {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--color-whatsapp);
  transform: translateX(-4px);
}

.sim-btn-pill.active .sim-indicator {
  background: var(--color-whatsapp);
  box-shadow: 0 0 10px var(--color-whatsapp);
}

.sim-pill-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.sim-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

/* Smartphone Mockup */
.phone-mockup {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: #000;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6), 0 0 30px rgba(37, 211, 102, 0.2);
  border: 3px solid #334155;
  box-sizing: border-box;
}

.phone-screen {
  background: #EFEAE2;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.phone-status-bar {
  background: #075E54;
  color: white;
  padding: 6px 14px 2px;
  font-size: 0.68rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-header {
  background: #075E54;
  color: white;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-profile {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #075E54;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.wa-name-wrap {
  display: flex;
  flex-direction: column;
}

.wa-name {
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.wa-verified {
  color: #25D366;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.wa-status {
  font-size: 0.65rem;
  opacity: 0.85;
}

.wa-chat-body {
  flex: 1;
  padding: 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow-y: auto;
}

.chat-bubble {
  max-width: 88%;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  animation: popIn 0.3s ease;
  word-break: break-word;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.chat-in {
  background: white;
  align-self: flex-start;
  border-top-right-radius: 2px;
  color: #111827;
}

.chat-out {
  background: #E7FFDB;
  align-self: flex-end;
  border-top-left-radius: 2px;
  color: #111827;
}

.chat-time {
  font-size: 0.62rem;
  color: #8898AA;
  text-align: left;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}

.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.chat-btn-action {
  background: white;
  border: 1px solid #10B981;
  color: #059669;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-btn-action:hover {
  background: #10B981;
  color: white;
}

.wa-input-bar {
  background: #F0F2F5;
  padding: 0.45rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wa-fake-input {
  flex: 1;
  background: white;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #9CA3AF;
}

/* --- 10. Three Core Pillars --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar-card {
  background: white;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.4);
}

.pillar-card.highlight {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(16, 185, 129, 0.15);
}

.pillar-badge-top {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.icon-comms { background: #ECFDF5; color: #059669; }
.icon-auto { background: #EFF6FF; color: #2563EB; }
.icon-sales { background: #FEF3C7; color: #D97706; }

.pillar-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 0.65rem;
}

.pillar-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.pillar-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-light-border);
}

.pillar-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-body);
}

.check-icon {
  width: 17px;
  height: 17px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* --- 11. Interactive Product Showcase --- */
.showcase-container {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-light-border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.showcase-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-light-border);
  background: #F8FAFC;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.showcase-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.showcase-tab-btn:hover {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.7);
}

.showcase-tab-btn.active {
  color: var(--color-primary-hover);
  background: white;
  border-bottom-color: var(--color-primary);
}

.showcase-panel {
  display: none;
  padding: 2.25rem;
  animation: fadeIn 0.4s ease;
}

.showcase-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.panel-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.35rem;
}

.panel-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.65rem;
}

.panel-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-body);
}

.panel-image-wrap {
  background: var(--color-dark-bg);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  border: 1px solid var(--color-light-border);
  box-shadow: var(--shadow-lg);
}

.panel-image-wrap img {
  border-radius: var(--radius-md);
  width: 100%;
}

/* --- 12. Before vs After Comparison --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.comp-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-xl);
  box-sizing: border-box;
}

.comp-before {
  background: #FFF1F2;
  border: 1px solid #FFE4E6;
}

.comp-after {
  background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(16, 185, 129, 0.15);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.comp-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.comp-before .comp-header-icon { background: #FEE2E2; color: #DC2626; }
.comp-after .comp-header-icon { background: #D1FAE5; color: #059669; }

.comp-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
}
.comp-before h3 { color: #991B1B; }
.comp-after h3 { color: #065F46; }

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.comp-before .comp-list li { color: #7F1D1D; }
.comp-after .comp-list li { color: #064E3B; }

.cross-icon {
  width: 18px;
  height: 18px;
  color: #EF4444;
  flex-shrink: 0;
}

.check-icon-large {
  width: 18px;
  height: 18px;
  color: #10B981;
  flex-shrink: 0;
}

.comp-vs-badge {
  background: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-light-border);
  flex-shrink: 0;
}

/* --- 13. Industry Use-Cases (Stacked Cards Deck) --- */
.industry-deck-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

/* Quick Filter Pills */
.industry-pills-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 2.75rem;
}

.ind-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.ind-pill span {
  font-size: 1rem;
}

.ind-pill:hover {
  border-color: #94A3B8;
  color: #0F172A;
  background: #F8FAFC;
  transform: translateY(-1px);
}

.ind-pill.active {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  transform: translateY(-2px);
}

/* Deck Container */
.industry-deck-wrapper {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.industry-stack-deck {
  position: relative;
  width: 100%;
  height: 410px;
  margin: 0 auto;
  perspective: 1000px;
  user-select: none;
}

/* Stacked Card */
.industry-stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1.5px solid #E2E8F0;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.7);
  cursor: grab;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  transform-origin: center bottom;
  touch-action: pan-y;
}

.industry-stack-card:active {
  cursor: grabbing;
}

/* Deck Position States */
.industry-stack-card.pos-0 {
  z-index: 10;
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.8);
}

.industry-stack-card.pos-1 {
  z-index: 9;
  transform: translateY(16px) scale(0.96);
  opacity: 0.85;
  pointer-events: auto;
  filter: brightness(0.98);
  box-shadow: 0 10px 25px -8px rgba(15, 23, 42, 0.07);
}

.industry-stack-card.pos-2 {
  z-index: 8;
  transform: translateY(32px) scale(0.92);
  opacity: 0.65;
  pointer-events: auto;
  filter: brightness(0.95);
  box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.05);
}

.industry-stack-card.pos-hidden {
  z-index: 1;
  transform: translateY(48px) scale(0.88);
  opacity: 0;
  pointer-events: none;
}

/* Swiped Animation States */
.industry-stack-card.swiped-left {
  z-index: 20;
  transform: translate(-125%, -30px) rotate(-14deg) scale(0.95) !important;
  opacity: 0 !important;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease !important;
}

.industry-stack-card.swiped-right {
  z-index: 20;
  transform: translate(125%, -30px) rotate(14deg) scale(0.95) !important;
  opacity: 0 !important;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease !important;
}

.industry-stack-card.swiped-up {
  z-index: 20;
  transform: translate(0, -125%) scale(0.9) !important;
  opacity: 0 !important;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease !important;
}

/* Card Internal Typography & Layout */
.ind-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.ind-card-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ind-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ind-card-en {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.ind-card-badge h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}

.ind-card-number {
  font-size: 0.82rem;
  font-weight: 800;
  color: #94A3B8;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
}

.ind-card-lead {
  font-size: 0.98rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ind-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.ind-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
}

.ind-feat-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  font-weight: 800;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  border: 1px solid #A7F3D0;
}

.ind-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 1rem;
  margin-top: auto;
}

.ind-sim-btn {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  background: #FFFFFF;
  border-color: #CBD5E1;
  color: #0F172A;
  transition: all 0.2s ease;
}

.ind-sim-btn:hover {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.ind-swipe-hint {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ---- Deck Responsive ---- */
@media (max-width: 768px) {
  .industry-deck-section {
    padding: 3.5rem 0 4.5rem;
  }

  .industry-pills-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.75rem;
  }

  .ind-pill {
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }

  .industry-stack-deck {
    height: 480px;
  }

  .industry-stack-card {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }

  .ind-card-badge h4 {
    font-size: 1.1rem;
  }

  .ind-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .ind-card-lead {
    font-size: 0.88rem;
  }

  .ind-feat-item {
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

/* --- 14. Modern Pricing Table with Switcher --- */
.pricing-switch-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.switch-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-title);
}

.switch-pill {
  position: relative;
  width: 54px;
  height: 28px;
  background: #CBD5E1;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.switch-pill.active {
  background: var(--color-primary);
}

.switch-circle {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform var(--transition-fast);
}

.switch-pill.active .switch-circle {
  transform: translateX(-26px);
}

.discount-badge {
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid #FDE68A;
}

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

.pricing-card {
  background: white;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-xl), 0 0 35px rgba(16, 185, 129, 0.2);
  transform: scale(1.02);
  z-index: 2;
}

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

.popular-ribbon {
  position: absolute;
  top: -13px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  white-space: nowrap;
}

.plan-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 0.35rem;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-light-border);
}

.price-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-title);
  line-height: 1;
}

.price-curr {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.price-period {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-body);
}

.pricing-notice-box {
  margin-top: 3rem;
  background: white;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.notice-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-title);
  margin-bottom: 0.25rem;
}

.notice-text p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.notice-fee-pill {
  background: var(--color-light-subtle);
  border: 1px solid var(--color-light-border);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  flex-shrink: 0;
}

.notice-fee-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-hover);
}

.notice-fee-note {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* --- 15. FAQ Accordion --- */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-btn {
  width: 100%;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-title);
  background: transparent;
  cursor: pointer;
  gap: 0.75rem;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-light-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-title);
  font-size: 1rem;
  transition: transform var(--transition-smooth), background var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: white;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-body {
  padding: 0 1.35rem 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  padding-top: 0.85rem;
}

/* --- 16. High-Converting Lead Form Section --- */
.lead-section {
  background: radial-gradient(circle at 10% 20%, rgba(37, 211, 102, 0.15) 0%, transparent 40%),
              linear-gradient(180deg, #0A1618 0%, #0F292F 100%);
  color: white;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lead-info {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lead-info .nd-section-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: inline-flex;
  margin-bottom: 0.85rem;
}

.lead-info h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 1rem;
  word-break: break-word;
}

.lead-info p {
  color: #94A3B8;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.lead-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lead-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #E2E8F0;
  line-height: 1.5;
}

.lead-benefits li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.lead-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.lead-form-card .btn,
.lead-form-card button[type="submit"] {
  white-space: normal !important;
  word-break: break-word;
  line-height: 1.45;
  text-align: center;
  padding: 0.9rem 1.15rem;
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 1.15rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: white;
  font-size: 0.92rem;
  transition: border var(--transition-fast), background var(--transition-fast);
  box-sizing: border-box;
}

.form-control:focus {
  border-color: var(--color-whatsapp);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

.form-control::placeholder {
  color: #64748B;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-control option {
  background: #0F292F;
  color: white;
}

.form-success-box {
  display: none;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid #22C55E;
  color: #86EFAC;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* --- 17. Mega Footer --- */
.footer {
  background: #060D0F;
  color: #94A3B8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.35rem;
}

.parent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: #CBD5E1;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--color-whatsapp);
  transform: translateX(-4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

/* --- 18. Floating WhatsApp Action Button --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-spring);
  animation: pulseFloat 3s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7);
  color: white;
}

.wa-icon-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@keyframes pulseFloat {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 35px rgba(37, 211, 102, 0.75); }
}

/* --- 19. Responsive Design & Media Queries --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .floating-card-1, .floating-card-2, .floating-card-3 {
    display: none; /* Avoid horizontal push on tablet/mobile */
  }

  .simulator-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
  }

  .pillars-grid, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .metric-card:nth-child(2)::after {
    display: none;
  }

  .showcase-panel.active {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .comp-vs-badge {
    margin: 0 auto;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .announcement-bar {
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
  }

  .header-container {
    height: 64px;
  }

  .brand-logo {
    font-size: 1.18rem;
  }

  .logo-icon-box {
    width: 32px;
    height: 32px;
  }

  .nav-menu {
    display: none;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .header-actions .btn-whatsapp {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-section {
    padding: 2.25rem 0 3.25rem;
  }

  .hero-badge-wrap {
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-head {
    margin-bottom: 2.25rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

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

  .simulator-wrapper {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
  }

  .sim-info h3 {
    font-size: 1.35rem;
  }

  .sim-info p {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }

  .sim-btn-pill {
    padding: 0.7rem 0.85rem;
  }

  .sim-pill-text {
    font-size: 0.82rem;
  }

  .phone-mockup {
    max-width: 305px;
    padding: 8px;
    border-radius: 28px;
  }

  .phone-screen {
    height: 440px;
    border-radius: 20px;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0.75rem;
  }

  .metric-card {
    padding: 0.5rem 0.25rem;
  }

  .metric-card:nth-child(even)::after {
    display: none;
  }

  .metric-number {
    font-size: 1.85rem;
  }

  .metric-label {
    font-size: 0.82rem;
  }

  .metric-sub {
    font-size: 0.7rem;
  }

  .pillar-card {
    padding: 1.5rem 1.25rem;
  }

  .showcase-tab-btn {
    padding: 0.85rem 0.75rem;
    font-size: 0.82rem;
  }

  .showcase-panel.active {
    padding: 1.25rem 0.85rem;
  }

  .panel-text h3 {
    font-size: 1.3rem;
  }

  .panel-text p {
    font-size: 0.88rem;
  }

  .comp-card {
    padding: 1.5rem 1.15rem;
  }

  .pricing-switch-wrap {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
  }

  .price-val {
    font-size: 2.15rem;
  }

  .pricing-notice-box {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .lead-section {
    padding: 3.5rem 0;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    width: 100%;
    max-width: 100%;
  }

  .lead-info h2 {
    font-size: 1.45rem;
    line-height: 1.35;
  }

  .lead-info p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .lead-benefits {
    gap: 0.75rem;
  }

  .lead-benefits li {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .lead-form-card {
    padding: 1.5rem 1.15rem;
    border-radius: 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 0.95rem;
  }

  .form-control {
    font-size: 0.88rem;
    padding: 0.7rem 0.85rem;
  }

  .lead-form-card .btn {
    font-size: 0.88rem;
    padding: 0.85rem 0.85rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  .floating-whatsapp-btn span {
    display: none;
  }

  .floating-whatsapp-btn {
    padding: 0.75rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }
}

/* Extra Small Devices (max-width: 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .phone-mockup {
    max-width: 280px;
  }

  .phone-screen {
    height: 410px;
  }

  .brand-logo span {
    font-size: 1.1rem;
  }

  .lead-info h2 {
    font-size: 1.25rem;
  }

  .lead-form-card {
    padding: 1.25rem 0.85rem;
  }

  .lead-form-card .btn {
    font-size: 0.82rem;
    padding: 0.75rem 0.6rem;
  }
}

/* --- 20. Saudi National Day (اليوم الوطني السعودي) Offer Styles --- */
.national-day-bar {
  background: linear-gradient(90deg, #042E1F 0%, #064E3B 50%, #042E1F 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.35);
  color: #FEF3C7;
}

.nd-pill {
  background: rgba(245, 158, 11, 0.25);
  color: #FDE68A;
  border: 1px solid rgba(245, 158, 11, 0.45);
  font-weight: 800;
}

.nd-cta-link {
  color: #FCD34D !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.nd-hero-badge {
  background: linear-gradient(135deg, #ECFDF5 0%, #FFFBEB 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
  color: #065F46;
}

.nd-section-tag {
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
  border-color: rgba(5, 150, 105, 0.35);
  font-weight: 800;
}

.nd-notice-box {
  border: 2px solid #10B981;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(16, 185, 129, 0.15);
}

.nd-tag-badge {
  display: inline-block;
  background: #064E3B;
  color: #6EE7B7;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  border: 1px solid #059669;
}

.nd-fee-pill {
  background: white;
  border: 2px solid #10B981;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
  padding: 0.85rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.nd-discount-pill {
  background: #EF4444;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.35rem;
  display: inline-block;
}

.fee-strikethrough {
  font-size: 0.95rem;
  color: #EF4444;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.fee-strikethrough del {
  color: #DC2626;
}

/* --- 21. Interactive Simulator Enhanced Components --- */
.wa-action-icon-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.wa-action-icon-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(180deg);
}

.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.55rem 0.85rem;
  background: white;
  border-radius: 12px;
  border-top-right-radius: 2px;
  width: fit-content;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 0.25rem;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #94A3B8;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

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

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

.chat-card-media {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.55rem;
  margin: 0.4rem 0;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #DCFCE7;
  color: #15803D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.chat-badge-flow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

/* ============================================
   22. Showcase V2 — Smart Sidebar Tab Design
   ============================================ */
.showcase-section-v2 {
  background: linear-gradient(165deg, #F8FAFF 0%, #F0FDF4 50%, #FAFAFA 100%);
}

.showcase-v2-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

/* --- Sidebar --- */
.showcase-v2-sidebar {
  background: #0D1117;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.25rem 0;
  min-height: 520px;
}

.scv2-tab {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  border-right: 3px solid transparent;
  position: relative;
  width: 100%;
}

.scv2-tab:hover {
  background: rgba(255,255,255,0.06);
}

.scv2-tab.active {
  background: rgba(16, 185, 129, 0.12);
  border-right-color: #10B981;
}

.scv2-tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.scv2-tab.active .scv2-tab-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
}

.scv2-tab-body {
  flex: 1;
  text-align: right;
}

.scv2-tab-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #E2E8F0;
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.scv2-tab-sub {
  font-size: 0.7rem;
  color: #64748B;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}

.scv2-tab-badge {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.scv2-tab-badge.live {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.scv2-tab-badge.crm {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.scv2-tab-badge.analytics {
  background: rgba(139, 92, 246, 0.2);
  color: #A78BFA;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.scv2-sidebar-cta {
  margin: auto 1.25rem 1.25rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #10B981;
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.scv2-sidebar-cta:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* --- Content Area --- */
.showcase-v2-content {
  padding: 0;
  overflow: hidden;
}

.scv2-panel {
  display: none;
  flex-direction: column;
  animation: fadeSlideIn 0.3s ease;
}

.scv2-panel.active {
  display: flex;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Stats Bar --- */
.scv2-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid #F1F5F9;
  background: #FAFBFC;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.scv2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0 1.25rem;
  flex-shrink: 0;
}

.scv2-stat:first-child {
  padding-right: 0;
  padding-left: 1.25rem;
}

.scv2-stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.scv2-stat-lbl {
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 500;
  white-space: nowrap;
}

.scv2-stat-div {
  width: 1px;
  height: 32px;
  background: #E2E8F0;
  flex-shrink: 0;
}

/* --- Panel Body --- */
.scv2-panel-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: start;
}

.scv2-panel-text {
  padding: 1.75rem 1.5rem;
  border-left: 1px solid #F1F5F9;
}

.scv2-panel-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.scv2-panel-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.scv2-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.scv2-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.scv2-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.scv2-feat strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.15rem;
}

.scv2-feat span {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.4;
}

/* --- Panel Image --- */
.scv2-panel-image {
  padding: 1.25rem;
}

.scv2-img-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.scv2-img-header {
  background: #1E293B;
  padding: 0.55rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.scv2-dots {
  display: flex;
  gap: 0.3rem;
}

.scv2-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.scv2-dots span:nth-child(1) { background: #EF4444; }
.scv2-dots span:nth-child(2) { background: #F59E0B; }
.scv2-dots span:nth-child(3) { background: #10B981; }

.scv2-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 5px;
  padding: 0.2rem 0.6rem;
  font-size: 0.68rem;
  color: #94A3B8;
  font-family: 'Courier New', monospace;
  text-align: center;
  letter-spacing: 0.01em;
}

.scv2-live-dot {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: #10B981;
  font-weight: 700;
}

.scv2-img-frame img {
  width: 100%;
  display: block;
  border-radius: 0 0 11px 11px;
}

/* --- Responsive Showcase V2 --- */
@media (max-width: 992px) {
  .showcase-v2-wrap {
    grid-template-columns: 1fr;
  }

  .showcase-v2-sidebar {
    flex-direction: row;
    overflow-x: auto;
    min-height: unset;
    padding: 0.75rem 0.5rem;
    gap: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .scv2-tab {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 1rem;
    border-right: none;
    border-bottom: 3px solid transparent;
    min-width: 120px;
    flex-shrink: 0;
    gap: 0.4rem;
  }

  .scv2-tab.active {
    border-right-color: transparent;
    border-bottom-color: #10B981;
  }

  .scv2-tab-body { text-align: center; }

  .scv2-tab-sub { display: none; }

  .scv2-tab-badge { display: none; }

  .scv2-sidebar-cta {
    display: none;
  }

  .scv2-stats-bar {
    padding: 0.65rem 1rem;
    justify-content: space-around;
  }

  .scv2-stat { padding: 0 0.5rem; }
  .scv2-stat-num { font-size: 1.1rem; }

  .scv2-panel-body {
    grid-template-columns: 1fr;
  }

  .scv2-panel-text {
    border-left: none;
    border-bottom: 1px solid #F1F5F9;
    padding: 1.25rem 1rem;
  }

  .scv2-panel-image { padding: 1rem; }
}

@media (max-width: 768px) {
  .scv2-tab-label { font-size: 0.72rem; }
  .scv2-stat-div { display: none; }
  .scv2-stats-bar { gap: 0.5rem; flex-wrap: wrap; }
  .scv2-stat { padding: 0 0.5rem; flex: 1; min-width: 80px; }
}

/* ============================================
   23. Dashboard Showcase Carousel
   ============================================ */
.showcase-carousel-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.dash-carousel {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.dash-carousel-viewport {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 20px 45px -15px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(226, 232, 240, 0.7);
  overflow: hidden;
  position: relative;
}

.dash-carousel-track {
  position: relative;
  width: 100%;
}

.dash-slide {
  display: none;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dash-slide.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.dash-slide-card {
  display: flex;
  flex-direction: column;
}

/* Browser Mockup Header */
.dash-slide-browser {
  background: #0F172A;
  position: relative;
}

.dash-browser-header {
  background: #0F172A;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-browser-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dash-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-r { background: #EF4444; }
.dot-y { background: #F59E0B; }
.dot-g { background: #10B981; }

.dash-browser-url {
  background: rgba(255, 255, 255, 0.07);
  color: #94A3B8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  padding: 0.25rem 0.9rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.dash-browser-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10B981;
}

/* Slide Image */
.dash-slide-img-wrap {
  width: 100%;
  background: #0B132B;
  line-height: 0;
  overflow: hidden;
}

.dash-slide-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Special Mobile App Frame Wrap */
.dash-slide-img-wrap.mobile-app-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.25rem 1.5rem;
  background: radial-gradient(circle at center, #1E293B 0%, #0F172A 100%);
  min-height: 400px;
}

.dash-slide-img-wrap.mobile-app-wrap img {
  max-width: 270px;
  max-height: 460px;
  width: auto;
  border-radius: 26px;
  border: 4px solid #334155;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Slide Caption */
.dash-slide-caption {
  padding: 1.75rem 2.25rem;
  background: #FFFFFF;
  text-align: right;
  border-top: 1px solid #F1F5F9;
}

.dash-caption-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.dash-caption-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.dash-caption-header-row .dash-caption-badge {
  margin-bottom: 0;
}

.dash-store-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-store-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.dash-caption-badge .badge-icon {
  font-size: 0.95rem;
}

.dash-caption-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 0.45rem;
}

.dash-caption-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* Controls */
.dash-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.dash-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.dash-nav-btn:hover {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.dash-nav-btn:active {
  transform: translateY(0);
}

.dash-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dash-dot:hover {
  background: #94A3B8;
}

.dash-dot.active {
  width: 32px;
  background: #10B981;
}

.dash-carousel-footer {
  text-align: center;
  margin-top: 1.75rem;
}

/* ---- Carousel Responsive ---- */
@media (max-width: 768px) {
  .showcase-carousel-section {
    padding: 3.5rem 0;
  }

  .dash-browser-header {
    padding: 0.5rem 0.85rem;
  }

  .dash-browser-url {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
  }

  .dash-browser-status {
    display: none;
  }

  .dash-slide-caption {
    padding: 1.25rem 1.15rem;
  }

  .dash-caption-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
  }

  .dash-caption-title {
    font-size: 1.05rem;
  }

  .dash-caption-desc {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .dash-nav-btn {
    width: 40px;
    height: 40px;
  }
}

