/* ==========================================================================
   DACLERE ✦ FUTURE-READY WEB & AUTONOMOUS AI CRM
   Visual Theme: Pure Clean White, Radiant Pastels, Luxury Frosted Glass & Neon Accents
   ========================================================================== */

/* ─── CSS Custom Properties / Design System Tokens (PURE WHITE THEME) ─── */
:root {
  /* Brand Gradient Colors */
  --daclere-pink: #ff007a;
  --daclere-magenta: #e6007e;
  --daclere-purple: #8b5cf6;
  --daclere-blue: #0070f3;
  --daclere-cyan: #00b4d8;
  --daclere-gradient: linear-gradient(90deg, #ff007a 0%, #8b5cf6 50%, #0070f3 100%);
  --daclere-gradient-alt: linear-gradient(135deg, #ff007a 0%, #0070f3 100%);

  /* Pure White & Clean Slate Palette */
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-card-alt: #f1f5f9;

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-card: #e2e8f0;
  --border-pink: rgba(255, 0, 122, 0.25);
  --border-blue: rgba(0, 112, 243, 0.25);

  /* Typography Colors (Crisp, High-Contrast & Legible) */
  --text-title: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;

  /* Typography Families */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-hero: 0 25px 70px -15px rgba(15, 23, 42, 0.09), 0 0 50px rgba(0, 112, 243, 0.06), 0 0 50px rgba(255, 0, 122, 0.05);
  --glow-btn: 0 8px 24px -4px rgba(255, 0, 122, 0.4);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-hero: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.daclere-theme {
  font-family: var(--font-main);
  line-height: 1.6;
  background-color: #f8fafc;
  background-image: 
    radial-gradient(circle at 12% 8%, rgba(255, 0, 122, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 88% 12%, rgba(0, 112, 243, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: var(--text-body);
}

/* ─── Soft Ambient Glow Lights on White Canvas ─── */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow.glow-pink {
  top: 40px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.08) 0%, rgba(255, 0, 122, 0) 70%);
  filter: blur(80px);
  animation: pulseGlowPink 8s ease-in-out infinite alternate;
}

.ambient-glow.glow-blue {
  top: 100px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.09) 0%, rgba(0, 112, 243, 0) 70%);
  filter: blur(90px);
  animation: pulseGlowBlue 9s ease-in-out infinite alternate;
}

.ambient-glow.glow-cyan {
  top: 1100px;
  left: 20%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.06) 0%, rgba(0, 210, 255, 0) 70%);
  filter: blur(90px);
}

@keyframes pulseGlowPink {
  0% { transform: scale(0.92) translate(0, 0); opacity: 0.8; }
  100% { transform: scale(1.08) translate(25px, 15px); opacity: 1; }
}

@keyframes pulseGlowBlue {
  0% { transform: scale(0.95) translate(0, 0); opacity: 0.85; }
  100% { transform: scale(1.1) translate(-20px, 20px); opacity: 1; }
}

/* ─── Layout Container ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

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

/* ─── Gradient Typography & Utility Classes ─── */
.gradient-text-pink-blue {
  background: linear-gradient(90deg, #ff007a 0%, #8b5cf6 50%, #0070f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.text-gradient-pink {
  background: linear-gradient(135deg, #ff007a 0%, #ff52a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0070f3 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-pink { color: #ff007a; }
.text-blue { color: #0070f3; }
.text-purple { color: #8b5cf6; }
.text-cyan { color: #0284c7; }
.text-green { color: #10b981; }
.text-red { color: #f43f5e; }

/* ─── Section Headers ─── */
.eyebrow-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff007a;
  background: rgba(255, 0, 122, 0.08);
  border: 1px solid rgba(255, 0, 122, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-title);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* ─── Button Styles ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  user-select: none;
  transition: all var(--transition-fast);
}

.btn-gradient {
  background: linear-gradient(90deg, #ff007a 0%, #8b5cf6 50%, #0070f3 100%);
  background-size: 200% auto;
  color: #ffffff;
  box-shadow: var(--glow-btn);
}

.btn-gradient:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(0, 112, 243, 0.45);
}

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

.btn-gradient-small {
  padding: 10px 22px;
  font-size: 0.9rem;
  background: linear-gradient(90deg, #ff007a 0%, #0070f3 100%);
  color: #ffffff;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(255, 0, 122, 0.3);
}

.btn-gradient-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.35);
}

.btn-glass-secondary {
  background: #f1f5f9;
  color: var(--text-dark);
  border: 1px solid #cbd5e1;
  padding: 12px 26px;
}

.btn-glass-secondary:hover {
  background: #ffffff;
  border-color: #94a3b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.btn-ghost {
  background: #f8fafc;
  color: var(--text-body);
  border: 1px solid var(--border-card);
}

.btn-ghost:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--text-title);
  transform: translateY(-2px);
}

.btn-ghost-small {
  background: #f1f5f9;
  color: var(--text-body);
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
}

.btn-ghost-small:hover {
  background: #e2e8f0;
  color: var(--text-title);
}

.btn-large {
  font-size: 1.15rem;
  padding: 18px 44px;
}

.btn-block {
  width: 100%;
}

.btn-pulse {
  animation: pulseButton 2.5s infinite;
}

@keyframes pulseButton {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 122, 0.6), 0 8px 24px -4px rgba(255, 0, 122, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(255, 0, 122, 0), 0 10px 28px -4px rgba(255, 0, 122, 0.45); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 122, 0), 0 8px 24px -4px rgba(255, 0, 122, 0.4); }
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #ff007a 0%, #8b5cf6 50%, #0070f3 100%);
  color: #ffffff;
  padding: 8px 16px;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 0, 122, 0.15);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.top-bar-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  animation: pulseDot 1.4s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.top-bar-btn {
  background-color: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.top-bar-btn:hover {
  background-color: #0f172a;
  transform: translateY(-1px);
}

/* ==========================================================================
   2. BRAND NAVBAR (CLEAN, SINGLE-LINE, LUXURY SAAS)
   ========================================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 950;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.daclere-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .daclere-logo-img {
  transform: scale(1.05);
}

.brand-logo-text {
  font-size: 1.38rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.header-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 2px;
  position: relative;
  transition: color var(--transition-fast);
}

.header-nav a:hover {
  color: #0f172a;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff007a, #0070f3);
  transition: all 0.25s ease;
  transform: translateX(-50%);
  border-radius: 99px;
}

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

.header-cta {
  flex-shrink: 0;
}

/* ==========================================================================
   3. HERO SECTION (LUMINOUS FROSTED WHITE HERO CARD)
   ========================================================================== */
.hero-section {
  padding: 48px 0 70px;
  position: relative;
  z-index: 2;
}

.daclere-hero-card {
  /* Pure Crisp White Hero Card matching uploaded image */
  background: #ffffff;
  border-radius: var(--radius-hero);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-hero);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
  padding: 48px 48px 48px 56px;
  position: relative;
  overflow: visible;
}

/* Left Hero Content */
.hero-card-left {
  position: relative;
  z-index: 2;
}

.hero-tag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-tag-text {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #64748b;
  text-transform: uppercase;
}

.hero-tag-line {
  width: 50px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff007a 0%, #0070f3 100%);
}

.hero-main-title {
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--text-title);
  margin-bottom: 20px;
}

.hero-description {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 550px;
  font-weight: 450;
}

/* 4 Service Pills */
.hero-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: #1e293b;
  transition: all var(--transition-fast);
}

.hero-pill:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.pill-icon.icon-pink {
  color: #ff007a;
  background: rgba(255, 0, 122, 0.1);
}

.pill-icon.icon-purple {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}

.pill-icon.icon-blue {
  color: #0070f3;
  background: rgba(0, 112, 243, 0.1);
}

.pill-icon.icon-cyan {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.12);
}

.pill-text {
  font-size: 0.88rem;
}

.pill-text strong {
  display: block;
  font-weight: 700;
  color: #0f172a;
}

/* Hero CRM Features Highlight Strip */
.hero-crm-features-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 28px;
}

.hero-feat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.4;
}

.hero-feat-badge i {
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hero-feat-badge span strong {
  color: #0f172a;
  font-weight: 700;
}

/* Dual Actions + Avatars */
.hero-actions-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.play-triangle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  padding-left: 2px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.proof-avatars img:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.25;
}

.proof-text strong {
  display: block;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.82rem;
}

/* Right Mascot Frame */
.hero-card-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.mascot-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-mascot-img {
  max-height: 450px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.12));
  animation: mascotFloat 4s ease-in-out infinite alternate;
}

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

/* Floating Glass Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  z-index: 5;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.floating-badge .f-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: #0070f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-badge strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.floating-badge span {
  display: block;
  font-size: 0.76rem;
  color: #64748b;
}

.badge-web {
  top: 15%;
  right: -15px;
}

.badge-ai {
  top: 45%;
  right: -25px;
}

.badge-grow {
  bottom: 16%;
  right: -10px;
}

/* Handwritten Script Element */
.handwritten-script {
  position: absolute;
  bottom: 6px;
  right: 20px;
  font-family: var(--font-script);
  font-size: 2.3rem;
  font-weight: 700;
  color: #1e293b;
  transform: rotate(-8deg);
  letter-spacing: 0.5px;
  opacity: 0.92;
}

.script-small {
  font-size: 1.6rem;
  font-style: italic;
  color: #ff007a;
  margin: 0 4px;
}

/* ==========================================================================
   4. METRICS GRID SECTION (WHITE THEME)
   ========================================================================== */
.metrics-grid-section {
  padding: 30px 0 70px;
  position: relative;
  z-index: 2;
}

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

.metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-fast);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.metric-number {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 8px;
}

.metric-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   5. ALL SERVICES & FUNCTIONALITIES OVERVIEW (WHITE THEME)
   ========================================================================== */
.services-overview-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 122, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08), 0 0 25px rgba(255, 0, 122, 0.06);
}

.service-number {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: #cbd5e1;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.service-icon-box.bg-pink-glow {
  background: rgba(255, 0, 122, 0.08);
  color: #ff007a;
  border: 1px solid rgba(255, 0, 122, 0.25);
  box-shadow: 0 4px 14px rgba(255, 0, 122, 0.15);
}

.service-icon-box.bg-purple-glow {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.15);
}

.service-icon-box.bg-blue-glow {
  background: rgba(0, 112, 243, 0.08);
  color: #0070f3;
  border: 1px solid rgba(0, 112, 243, 0.25);
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.15);
}

.service-icon-box.bg-cyan-glow {
  background: rgba(2, 132, 199, 0.08);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.15);
}

.service-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-title);
  line-height: 1.35;
  margin-bottom: 14px;
}

.service-description {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.service-list li {
  font-size: 0.88rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.service-list li i {
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 4px;
}

.service-list code {
  font-family: var(--font-mono);
  background: #fdf2f8;
  padding: 2px 6px;
  border-radius: 4px;
  color: #db2777;
  font-size: 0.82rem;
  border: 1px solid #fce7f3;
}

/* ==========================================================================
   6. INTERACTIVE SIMULATOR LAB (WHITE THEME)
   ========================================================================== */
.simulator-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.simulator-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}

.sim-header-bar {
  background: #f8fafc;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.sim-status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #475569;
}

.sim-dot-live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 1.5s infinite;
}

.sim-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sim-feed-display {
  padding: 24px;
  min-height: 280px;
  max-height: 380px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}

.sim-log-entry {
  padding: 10px 14px;
  border-radius: 8px;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

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

.sim-log-entry .log-time {
  color: #94a3b8;
  font-size: 0.78rem;
  margin-right: 8px;
}

.sim-log-entry.info {
  background: #f1f5f9;
  color: #475569;
  border-left: 3px solid #94a3b8;
}

.sim-log-entry.call {
  background: #eff6ff;
  color: #1e40af;
  border-left: 3px solid #0070f3;
}

.sim-log-entry.tool {
  background: #faf5ff;
  color: #6b21a8;
  border-left: 3px solid #8b5cf6;
}

.sim-log-entry.success {
  background: #ecfdf5;
  color: #065f46;
  border-left: 3px solid #10b981;
}

/* ==========================================================================
   7. COMPARISON SECTION: 6 TOOLS VS DACLERE CRM (WHITE THEME)
   ========================================================================== */
.comparison-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.comp-card {
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}

.card-inhouse {
  background: #fffafa;
  border: 1px solid #fecdd3;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.05);
}

.card-wajdan {
  background: #ffffff;
  border: 2px solid #0070f3;
  box-shadow: 0 16px 48px rgba(0, 112, 243, 0.1), 0 0 30px rgba(255, 0, 122, 0.05);
  position: relative;
}

.comp-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.tag-bad {
  background: #fee2e2;
  color: #e11d48;
  border: 1px solid #fecdd3;
}

.tag-good {
  background: linear-gradient(90deg, #fdf2f8, #eff6ff);
  color: #0070f3;
  border: 1px solid #bfdbfe;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.comp-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.comp-ic.red { color: #f43f5e; font-weight: 900; }
.comp-ic.green { color: #10b981; font-weight: 900; }

.comp-role {
  flex-grow: 1;
  color: #334155;
}

.comp-cost {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-title);
}

.comp-cost.highlight {
  color: #059669;
  font-weight: 800;
}

.comp-footer {
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.comp-total-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comp-total-val {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 6px 0;
}

.comp-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* ==========================================================================
   8. WITHOUT VS WITH (SHOW-UP RATE COMPARISON - WHITE THEME)
   ========================================================================== */
.funnel-comparison-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.funnel-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.funnel-col {
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}

.col-without {
  background: #fffafa;
  border: 1px solid #fecdd3;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.04);
}

.col-with {
  background: #ffffff;
  border: 2px solid #0070f3;
  box-shadow: 0 16px 48px rgba(0, 112, 243, 0.08);
}

.funnel-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.status-cross {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fee2e2;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.status-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dcfce7;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.funnel-col-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-title);
}

.funnel-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.funnel-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.col-without .step-num {
  background: #fee2e2;
  color: #e11d48;
}

.col-with .step-num {
  background: #dbeafe;
  color: #1d4ed8;
}

.step-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-title);
  margin-bottom: 3px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.funnel-stat-badge {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.funnel-stat-badge.bad {
  background: #fee2e2;
  border: 1px solid #fecdd3;
}

.funnel-stat-badge.good {
  background: linear-gradient(90deg, #fdf2f8, #eff6ff);
  border: 1px solid #bfdbfe;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 900;
}

.funnel-stat-badge.bad .stat-value { color: #e11d48; }
.funnel-stat-badge.good .stat-value { color: #059669; }

/* ==========================================================================
   9. FAQ ACCORDION SECTION (WHITE THEME)
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.faq-container {
  max-width: 900px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #ff007a;
  box-shadow: 0 8px 24px rgba(255, 0, 122, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  color: var(--text-title);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  border: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #ff007a;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 0, 122, 0.1);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   10. FINAL BOTTOM-LINE CTA (WHITE THEME)
   ========================================================================== */
.bottom-line-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 2;
}

.bottom-line-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #fdf2f8 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-hero);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06), 0 0 35px rgba(255, 0, 122, 0.05);
  max-width: 980px;
  margin: 0 auto;
}

.bottom-line-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-title);
  margin-bottom: 20px;
}

.bottom-line-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 16px;
}

.bottom-line-cta {
  margin: 36px 0 28px;
}

.bottom-line-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. LUXURY FOOTER (WHITE THEME)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f1f5f9;
}

.footer-brand-col {
  max-width: 380px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-contact-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-contact-links a {
  color: #334155;
  transition: color var(--transition-fast);
}

.footer-contact-links a:hover {
  color: #ff007a;
}

.footer-sep {
  color: #cbd5e1;
}

.footer-social-links {
  display: flex;
  gap: 16px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--daclere-gradient);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #94a3b8;
}

/* ==========================================================================
   12. INTERACTIVE DEMO BOOKING MODAL (WHITE THEME)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18), 0 0 40px rgba(255, 0, 122, 0.1);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  color: var(--text-title);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.8rem;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: #0f172a;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ff007a;
  background: rgba(255, 0, 122, 0.08);
  border: 1px solid rgba(255, 0, 122, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-form .form-step {
  display: none;
}

.modal-form .form-step.active {
  display: block;
}

.form-group {
  margin-bottom: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  color: #0f172a;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0070f3;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  margin-top: 24px;
}

.form-actions-dual {
  display: flex;
  gap: 14px;
}

.form-actions-dual button {
  flex: 1;
}

/* Slot Picker Grid */
.slot-picker-header {
  margin-bottom: 16px;
}

.slot-picker-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.slot-picker-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.date-slot-btn {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  color: #0f172a;
  transition: all var(--transition-fast);
}

.date-slot-btn:hover {
  background: #f1f5f9;
  border-color: #0070f3;
}

.date-slot-btn.selected {
  background: linear-gradient(135deg, #ff007a, #0070f3);
  border-color: transparent;
  color: #ffffff;
}

.date-slot-day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}

.date-slot-btn.selected .date-slot-day {
  color: #ffffff;
}

.date-slot-num {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 2px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.time-slot-btn {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.time-slot-btn:hover {
  background: #f1f5f9;
  border-color: #0070f3;
}

.time-slot-btn.selected {
  background: #0070f3;
  color: #ffffff;
  border-color: #0070f3;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.3);
}

/* Modal Success Screen */
#formSuccess {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 16px;
}

#formSuccess h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.success-msg {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ==========================================================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .daclere-hero-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 40px;
  }

  .hero-card-right {
    min-height: 380px;
  }

  .robot-mascot-img {
    max-height: 380px;
  }

  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .header-nav {
    display: none;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.8rem;
  }

  .hero-main-title {
    font-size: 2.1rem;
  }

  .hero-pills-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-social-proof {
    margin-left: 0;
    margin-top: 10px;
    justify-content: center;
  }

  .floating-badge {
    position: static;
    margin-bottom: 8px;
    width: 100%;
  }

  .badge-web, .badge-ai, .badge-grow {
    position: static;
  }

  .mascot-frame {
    flex-direction: column;
  }

  .handwritten-script {
    position: static;
    margin-top: 16px;
    text-align: center;
    transform: none;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .funnel-compare-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links-col {
    align-items: center;
  }

  .footer-contact-links {
    justify-content: center;
  }

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

  .date-picker-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-dialog {
    padding: 28px 20px;
    width: 92%;
  }
}
