/* ==========================================================================
   DIJITALOOP.COM - NEXT-GEN AI GROWTH AGENCY (CRISP HIGH-CONTRAST LIGHT THEME)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables & Design System --- */
:root {
  /* Corporate Brand Colors: #07a8e9 (Electric Cyan Blue) & #f99e11 (Warm Amber Orange) */
  --bg-main: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f9ff;
  
  --primary: #07a8e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --primary-glow: rgba(7, 168, 233, 0.2);
  
  --secondary: #f99e11;
  --secondary-dark: #ea580c;
  --secondary-light: #fbbf24;
  --secondary-glow: rgba(249, 158, 17, 0.22);
  
  --accent-orange: #f99e11;
  --accent-orange-glow: rgba(249, 158, 17, 0.22);
  --accent-blue: #07a8e9;
  --accent-blue-glow: rgba(7, 168, 233, 0.2);
  
  --accent-purple: #7c3aed;
  --accent-purple-glow: rgba(124, 58, 237, 0.15);
  
  --accent-green: #059669;
  --accent-green-glow: rgba(5, 150, 105, 0.18);

  /* High-Contrast Sharp Text (No Glare, Ultra-Legible) */
  --text-main: #0b132b;
  --text-muted: #334155;
  --text-dim: #475569;
  
  --border-light: #e2e8f0;
  --border-card: rgba(226, 232, 240, 0.95);
  --border-card-hover: rgba(7, 168, 233, 0.45);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 12px 36px -4px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 12px 35px -5px rgba(7, 168, 233, 0.25);
  --shadow-glow-orange: 0 12px 35px -5px rgba(249, 158, 17, 0.28);
  --shadow-glow-green: 0 12px 35px -5px rgba(5, 150, 105, 0.2);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #07a8e9 0%, #0284c7 45%, #f99e11 100%);
  --grad-brand: linear-gradient(135deg, #07a8e9 0%, #f99e11 100%);
  --grad-orange: linear-gradient(135deg, #f99e11 0%, #ea580c 100%);
  --grad-cyan-blue: linear-gradient(135deg, #07a8e9 0%, #0284c7 100%);
  --grad-emerald-cyan: linear-gradient(135deg, #059669 0%, #07a8e9 100%);
  --grad-sunset: linear-gradient(135deg, #f99e11 0%, #ea580c 100%);
  --grad-badge: linear-gradient(135deg, rgba(7, 168, 233, 0.1) 0%, rgba(249, 158, 17, 0.08) 100%);

  /* Typography: Ultra-clean & sharp Inter */
  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.68;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Background Ambient Blur Orbs (Subtle, Anti-Glare) */
.bg-mesh-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.22;
  will-change: transform;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
  top: -8%;
  left: 10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(7, 168, 233, 0.2) 0%, rgba(7, 168, 233, 0) 70%);
}

.orb-2 {
  top: 30%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249, 158, 17, 0.18) 0%, rgba(249, 158, 17, 0) 70%);
  animation-duration: 25s;
  animation-delay: -5s;
}

.orb-3 {
  bottom: 5%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0) 70%);
  animation-duration: 22s;
  animation-delay: -10s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 90%);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 650;
}

.gradient-cyan {
  background: var(--grad-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 650;
}

.gradient-emerald {
  background: var(--grad-emerald-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 650;
}

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

ul {
  list-style: none;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   TOP NOTICE / URGENCY BANNER
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #07a8e9 0%, #0284c7 45%, #f99e11 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.top-notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.notice-badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.notice-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.notice-link:hover {
  color: #fef08a;
}

/* Section Header Styles */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(7, 168, 233, 0.08);
  border: 1px solid rgba(7, 168, 233, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.section-tag svg {
  width: 15px;
  height: 15px;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0f172a;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.68;
  font-weight: 400;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.7rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 550;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #07a8e9 0%, #0284c7 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -5px rgba(7, 168, 233, 0.45);
  filter: brightness(1.06);
  color: #fff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f0f9ff;
  border-color: rgba(7, 168, 233, 0.35);
  transform: translateY(-2px);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-glow-green, .btn-glow-orange {
  background: linear-gradient(135deg, #f99e11 0%, #ea580c 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-glow-orange);
}

.btn-glow-green:hover, .btn-glow-orange:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 36px -5px rgba(249, 158, 17, 0.45);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.08rem;
}

/* Glass Card Component */
.glass-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(7, 168, 233, 0.5), rgba(249, 158, 17, 0.5), transparent);
}

.glass-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(7, 168, 233, 0.15), 0 0 1px 1px rgba(249, 158, 17, 0.2);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-smooth);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.logo-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #07a8e9 0%, #f99e11 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(7, 168, 233, 0.35);
}

.logo-text span {
  color: #f99e11;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.45rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.mobile-nav-backdrop,
.mobile-nav-drawer {
  display: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #07a8e9, #f99e11);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

/* ==========================================================================
   MEGA MENU SYSTEM (CATEGORIES & SERVICES)
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-trigger svg {
  transition: transform var(--transition-fast);
  color: var(--text-dim);
}

.nav-item-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.nav-mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-32%) translateY(10px);
  width: 1060px;
  max-width: 96vw;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.85rem 1.25rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.14), 0 0 1px 1px rgba(7, 168, 233, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.nav-mega-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-item-dropdown:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-32%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.25rem;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mega-col-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.65rem;
  border-bottom: 2px solid #f1f5f9;
}

.mega-col-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mega-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.mega-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mega-link-item {
  font-size: 0.81rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  line-height: 1.35;
  white-space: nowrap;
}

.mega-link-item span {
  white-space: nowrap;
}

.mega-link-item:hover {
  color: var(--primary);
  background: #f0f9ff;
}

.mega-link-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.12rem 0.38rem;
  border-radius: 4px;
  background: rgba(249, 158, 17, 0.12);
  color: #f99e11;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.mega-menu-footer-banner {
  background: linear-gradient(135deg, rgba(7, 168, 233, 0.06) 0%, rgba(249, 158, 17, 0.06) 100%);
  border: 1px solid rgba(7, 168, 233, 0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mega-footer-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #0f172a;
  font-weight: 500;
}

.mega-footer-btn {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffffff;
  border: 1px solid rgba(7, 168, 233, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mega-footer-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-green);
  background: rgba(5, 150, 105, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseDot 2s infinite;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION & SLIDER SYSTEM (EQUAL HEIGHT & CLEAN READABILITY)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3rem 0 3.5rem;
  min-height: 82vh;
  display: flex;
  align-items: center;
  z-index: 10;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(7, 168, 233, 0.12), transparent 70%),
    radial-gradient(circle 500px at 90% 25%, rgba(249, 158, 17, 0.08), transparent 70%),
    radial-gradient(circle 550px at 10% 75%, rgba(7, 168, 233, 0.08), transparent 70%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(1rem, 3.5vw, 4rem);
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 480px;
}

.hero-slides-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  display: block;
  opacity: 0.15;
  transition: opacity 0.45s ease;
  height: 100%;
}

.hero-slide.active {
  opacity: 1;
}

.hero-fullwidth-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-fullwidth-header {
  width: 100%;
  max-width: 960px;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-fullwidth-header .hero-pill {
  align-self: flex-start;
  margin-bottom: 0.85rem;
}

.hero-fullwidth-header .hero-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.hero-fullwidth-header .hero-description {
  text-align: left;
  margin: 0 0 1.25rem 0;
  max-width: 780px;
}

.hero-fullwidth-header .hero-audit-inline-wrap {
  width: 100%;
  max-width: 620px;
}

.hero-fullwidth-header .hero-audit-box {
  width: 100%;
  margin: 0;
}

.hero-fullwidth-header .hero-audit-guarantee {
  justify-content: flex-start;
  margin: 0.75rem 0 0.5rem 0;
}

.hero-console-full {
  width: 100%;
  margin-top: 0.75rem;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-wrapper-wide {
  grid-template-columns: 0.94fr 1.26fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: start;
}

.hero-visual-telemetry {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: stretch;
}

.hero-console-panel {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.08), 0 0 1px 1px rgba(7, 168, 233, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-console-grid {
  display: grid;
  grid-template-columns: 245px 1fr;
  flex: 1;
  min-height: 450px;
}

.hero-tabs-col {
  background: #f8fafc;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-tabs-col .project-tabs-header {
  padding: 0.65rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  background: #f8fafc;
  flex-shrink: 0;
}

.hero-tabs-col .project-tabs-list {
  display: flex;
  flex-direction: column;
  padding: 0.45rem 0.5rem;
  gap: 0.35rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

.hero-tabs-col .project-tabs-list::-webkit-scrollbar {
  width: 5px;
}

.hero-tabs-col .project-tabs-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.hero-tabs-col .project-tabs-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.hero-tabs-col .project-tabs-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.hero-tabs-col .proj-tab-btn {
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-light);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  min-height: 58px;
}

.hero-tabs-col .proj-tab-btn:hover {
  border-color: rgba(7, 168, 233, 0.45);
  background: #f0f9ff;
  transform: translateX(2px);
}

.hero-tabs-col .proj-tab-btn.active {
  background: #ffffff;
  border-color: var(--primary);
  border-left: 3px solid var(--primary);
  box-shadow: 0 2px 10px rgba(7, 168, 233, 0.12);
}

.hero-tabs-col .proj-tab-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.hero-tabs-col .proj-tab-btn.active .proj-tab-name {
  color: var(--primary);
}

.hero-tabs-col .proj-tab-domain {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.hero-tabs-col .proj-tab-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
}

.hero-tabs-col .meta-kw {
  font-size: 0.65rem;
  padding: 0.08rem 0.35rem;
  color: var(--text-dim);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 3px;
}

.hero-tabs-col .meta-jump {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-left: auto;
}

.hero-tabs-col .project-tabs-footer {
  padding: 0.55rem 0.65rem;
  border-top: 1px solid var(--border-light);
  background: #f8fafc;
  flex-shrink: 0;
  margin-top: auto;
}

.hero-tabs-col .add-brand-btn {
  font-size: 0.78rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
  font-weight: 600;
}

.hero-kw-col {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.hero-kw-col .rank-summary-bar {
  margin-bottom: 0.75rem;
  gap: 0.55rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-kw-col .rank-summary-pill {
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}

.hero-kw-table-scroll {
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.hero-kw-table-scroll .kw-telemetry-table thead th {
  padding: 0.5rem 0.75rem;
  font-size: 0.68rem;
  background: #f8fafc;
}

.hero-kw-table-scroll .kw-name-cell {
  padding: 0.55rem 0.75rem;
}

.hero-kw-table-scroll .kw-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: #0f172a;
}

.hero-kw-table-scroll .kw-tag-badge {
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  color: var(--primary);
  background: rgba(7, 168, 233, 0.08);
  border-radius: 3px;
}

.hero-kw-table-scroll .kw-domain-tag {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.hero-kw-table-scroll .rank-badge {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
}

.hero-kw-table-scroll .rank-jump-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
}

.hero-kw-insight {
  margin-top: 0.75rem;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(7, 168, 233, 0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-kw-insight .insight-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(249, 158, 17, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-kw-insight .insight-text-content strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.1rem;
  display: block;
}

.hero-kw-insight .insight-text-content p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(7, 168, 233, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}

.hero-pill-badge {
  background: var(--grad-primary);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: #0f172a;
  min-height: 2.4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 560px;
  min-height: 3.2em;
  display: flex;
  align-items: center;
}

/* Action slot for symmetrical height across all slides */
.hero-action-slot {
  min-height: 54px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  max-width: 560px;
}

/* Interactive AI Quick Audit Bar */
.hero-audit-box {
  background: #ffffff;
  border: 1px solid rgba(7, 168, 233, 0.35);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(7, 168, 233, 0.15), 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.audit-input-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.audit-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.audit-input-wrap svg {
  position: absolute;
  left: 1rem;
  color: var(--text-dim);
}

.audit-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  outline: none;
  transition: var(--transition-fast);
}

.audit-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(7, 168, 233, 0.2);
}

.hero-cta-buttons-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  width: 100%;
}

.hero-audit-guarantee {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  min-height: 22px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  max-width: 560px;
  min-height: 60px;
}

.stat-item h3 {
  font-size: 1.7rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
  line-height: 1.1;
}

.stat-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Hero Right Visual Dashboard (Strict Uniform height across all slides) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-dashboard-preview {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.65rem;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.08), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  position: relative;
  width: 100%;
  height: 410px;
  min-height: 410px;
  max-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-light);
}

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

.p-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.p-dot.red { background: #ef4444; }
.p-dot.yellow { background: #f59e0b; }
.p-dot.green { background: #10b981; }

.preview-title {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: monospace;
  font-weight: 500;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-green);
  background: rgba(5, 150, 105, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.preview-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.preview-metric-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.metric-val {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.metric-trend {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-green);
}

/* --- Slide 1 Google & AI Keyword Rank Tracker Table --- */
.hero-telemetry-console {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 1.25rem 1.4rem;
}

.hero-proj-chips-row {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.hero-proj-chips-row::-webkit-scrollbar {
  display: none;
}

.hero-proj-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  padding: 0.32rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.hero-proj-chip:hover {
  background: #f0f9ff;
  border-color: rgba(7, 168, 233, 0.4);
  color: var(--primary);
}

.hero-proj-chip.active {
  background: rgba(7, 168, 233, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
}

.hero-proj-chip.active .chip-dot {
  background: #059669;
  box-shadow: 0 0 6px #059669;
}

.chip-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 0.05rem 0.3rem;
  border-radius: 3px;
}

.rank-table-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.rank-summary-pill {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
}

.rank-summary-pill .summary-label {
  color: var(--text-muted);
  font-weight: 400;
}

.rank-summary-pill .summary-val {
  color: #0f172a;
  font-weight: 600;
}

.rank-summary-pill.highlight {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.25);
}

.rank-summary-pill.highlight .summary-val {
  color: var(--accent-green);
}

.rank-table-wrap {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-kw-scroll {
  max-height: 155px;
  overflow-y: auto;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

.hero-kw-scroll::-webkit-scrollbar {
  width: 4px;
}

.hero-kw-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
}

.rank-table thead th {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  padding: 0.4rem 0.5rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1;
}

.rank-table tbody tr {
  transition: background var(--transition-fast);
  border-bottom: 1px solid #f1f5f9;
}

.rank-table tbody tr:hover {
  background: #f0f9ff;
}

.rank-table tbody td {
  padding: 0.4rem 0.5rem;
  vertical-align: middle;
}

.rank-table tbody tr:last-child td {
  border-bottom: none;
}

.kw-cell {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.kw-name {
  font-weight: 500;
  color: #0f172a;
  font-size: 0.76rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}

.kw-tag {
  font-size: 0.62rem;
  color: var(--primary);
  font-weight: 400;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 550;
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
}

.rank-badge.prev {
  background: #f1f5f9;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}

.rank-badge.current {
  background: rgba(7, 168, 233, 0.1);
  color: var(--primary);
  border: 1px solid rgba(7, 168, 233, 0.3);
}

.rank-badge.current.winner {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.3);
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.12);
}

.rank-jump {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(5, 150, 105, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
}

.hero-telemetry-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
}

.hero-telemetry-footer .floating-insight-card {
  margin: 0;
  flex: 1;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-md);
}

.hero-telemetry-footer .insight-text h4 {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.hero-telemetry-footer .insight-text p {
  font-size: 0.68rem;
  margin: 0;
  line-height: 1.25;
}

.hero-add-brand-cta {
  font-size: 0.75rem;
  padding: 0.45rem 0.75rem;
  white-space: nowrap;
  font-weight: 600;
  gap: 0.35rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #07a8e9 0%, #f99e11 100%);
  color: #fff;
  border: none;
}

.hero-add-brand-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}

.preview-chart-sim {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.chart-bars-mock {
  display: flex;
  align-items: flex-end;
  height: 85px;
  gap: 0.65rem;
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 100%;
  background: #e2e8f0;
  border-radius: 4px;
  transition: height 0.8s ease-in-out;
}

.chart-bar.highlight {
  background: var(--grad-primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.chart-bar.highlight-green {
  background: var(--grad-emerald-cyan);
  box-shadow: 0 4px 12px var(--accent-green-glow);
}

.chart-bar-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 0.35rem;
}

/* Floating AI Insight Card */
.floating-insight-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.4);
  border-radius: var(--radius-lg);
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 0 1px 1px rgba(2, 132, 199, 0.2);
  animation: floatCard 6s ease-in-out infinite alternate;
  z-index: 5;
}

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

.insight-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(2, 132, 199, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insight-text h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
}

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

/* --- Hero Slider Navigation Controls (Glassmorphism & Luminous Aura) --- */
.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  z-index: 10;
}

.hero-slider-tabs {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-slider-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(7, 168, 233, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.hero-slider-tab-btn .tab-num {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 800;
}

.hero-slider-tab-btn:hover {
  border-color: rgba(7, 168, 233, 0.45);
  color: var(--primary);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 168, 233, 0.12);
}

.hero-slider-tab-btn.active {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 6px 22px rgba(7, 168, 233, 0.18);
  transform: translateY(-2px);
}

.hero-slider-tab-btn.active .tab-num {
  color: var(--primary);
}

/* Progress line inside active tab */
.hero-slider-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #07a8e9, #f99e11);
  transition: width 6.5s linear;
}

.hero-slider-tab-btn.active::after {
  width: 100%;
}

.hero-slider-arrows {
  display: flex;
  gap: 0.5rem;
}

.hero-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(7, 168, 233, 0.2);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.hero-arrow-btn:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(7, 168, 233, 0.22);
  transform: translateY(-2px);
}
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.hero-arrow-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
  transform: translateY(-2px);
}

/* ==========================================================================
   WHY DIJITALOOP? (COMPARISON MATRIX)
   ========================================================================== */
.comparison-section {
  padding: 6.5rem 0;
  background: #f8fafc;
  position: relative;
}

.comparison-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.compare-box-old {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

.compare-box-old .compare-badge {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.compare-box-new {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  box-shadow: 0 25px 50px -15px rgba(37, 99, 235, 0.2);
  position: relative;
}

.compare-box-new::before {
  content: '★ ÖNERİLEN MODEL';
  position: absolute;
  top: -14px;
  right: 2rem;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.compare-box-new .compare-badge {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.compare-list-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.compare-icon-cross {
  color: #ef4444;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.compare-icon-check {
  color: #059669;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

/* ==========================================================================
   AI SCALE BANNER (YAPAY ZEKA İLE İŞİNİZİ ÖLÇEKLENDİRİN)
   ========================================================================== */
.ai-scale-section {
  padding: 0 0 5rem;
  background: #f8fafc;
  position: relative;
}

.ai-scale-banner-card {
  position: relative;
  background: #eceff3;
  background: linear-gradient(135deg, #f4f5f8 0%, #eceff4 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  overflow: hidden;
  padding: 3.75rem 4.5rem;
  box-shadow: 0 20px 45px -15px rgba(15, 23, 42, 0.05);
}

.ai-scale-banner-glow {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.45) 0%, rgba(245, 158, 11, 0.3) 35%, rgba(192, 132, 252, 0.15) 65%, transparent 80%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.ai-scale-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.ai-scale-overline {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 0.85rem;
}

.ai-scale-title {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.16;
  color: #0f172a;
  letter-spacing: -0.6px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ai-scale-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  margin-left: 0.35rem;
  vertical-align: middle;
  flex-shrink: 0;
}

.ai-scale-divider {
  width: 100%;
  height: 2px;
  background: #0f172a;
  margin: 1.75rem 0;
  border: none;
  opacity: 0.95;
}

.ai-scale-desc {
  font-size: 0.96rem;
  line-height: 1.68;
  color: #475569;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.ai-scale-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #18181b;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0.9rem 1.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ai-scale-btn:hover {
  background: #07a8e9;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(7, 168, 233, 0.35);
}

.ai-scale-btn-icon {
  color: #f59e0b;
  font-size: 1rem;
  line-height: 1;
}

.ai-scale-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ai-scale-image-frame {
  width: 100%;
  max-width: 320px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #090e1a;
}

.ai-scale-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .ai-scale-section {
    padding: 0 0 3.5rem;
  }
  .ai-scale-banner-card {
    padding: 2.25rem 1.5rem;
    border-radius: 20px;
  }
  .ai-scale-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ai-scale-title {
    font-size: 2rem;
  }
  .ai-scale-desc {
    font-size: 0.92rem;
  }
  .ai-scale-image-frame {
    max-width: 270px;
    height: 330px;
    margin: 0 auto;
  }
  .ai-scale-banner-glow {
    width: 260px;
    height: 260px;
    right: -30px;
  }
  .ai-scale-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PARTNERS & TECH ECOSYSTEM MARQUEE
   ========================================================================== */
.marquee-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.marquee-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.marquee-track-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: scrollMarquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.75;
  transition: var(--transition-fast);
}

.marquee-item:hover {
  opacity: 1;
  color: var(--primary);
  transform: scale(1.05);
}

.marquee-item svg {
  width: 24px;
  height: 24px;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SERVICES MATRIX SECTION
   ========================================================================== */
.services-section {
  padding: 7rem 0;
  position: relative;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(7, 168, 233, 0.16), 0 0 1px 1px rgba(7, 168, 233, 0.25);
  border-color: rgba(7, 168, 233, 0.35);
}

.service-card-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-light);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-image {
  transform: scale(1.06);
}

.service-card-content {
  padding: 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.service-icon-box.blue {
  background: rgba(7, 168, 233, 0.1);
  color: #07a8e9;
  border: 1px solid rgba(7, 168, 233, 0.25);
}

.service-icon-box.cyan {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.service-icon-box.purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.service-icon-box.green {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.service-icon-box.pink {
  background: rgba(219, 39, 119, 0.1);
  color: #db2777;
  border: 1px solid rgba(219, 39, 119, 0.25);
}

.service-icon-box.amber {
  background: rgba(249, 158, 17, 0.12);
  color: #f99e11;
  border: 1px solid rgba(249, 158, 17, 0.3);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex: 1;
}

.service-feature-list {
  margin-bottom: 1.5rem;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.service-feature-list li svg {
  color: var(--primary);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.service-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  transition: var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--secondary);
  transform: translateX(4px);
}

.service-badge-metric {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-green);
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   GEO (GENERATIVE ENGINE OPTIMIZATION) SPOTLIGHT
   ========================================================================== */
.geo-spotlight-section {
  padding: 6rem 0;
  position: relative;
  background: #f8fafc;
}

.geo-box {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.3);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 20px 50px -15px rgba(2, 132, 199, 0.12), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-purple);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.geo-content h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #0f172a;
}

.geo-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

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

.geo-compare-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.geo-compare-card.new-era {
  border-color: rgba(2, 132, 199, 0.4);
  background: rgba(2, 132, 199, 0.04);
}

.compare-header {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* ==========================================================================
   NEXT-GEN AI GROWTH & OPPORTUNITY SIMULATOR ENGINE
   ========================================================================== */
.calculator-section {
  padding: 6.5rem 0;
  position: relative;
  background: #ffffff;
}

/* Sector Selection Tabs */
.sim-sector-tabs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.sim-tabs-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sim-sector-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  background: var(--bg-subtle);
  padding: 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.sim-sector-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sim-sector-btn:hover {
  color: var(--primary);
  background: rgba(7, 168, 233, 0.08);
}

.sim-sector-btn.active {
  background: #ffffff;
  color: var(--primary);
  border-color: rgba(7, 168, 233, 0.35);
  box-shadow: 0 4px 15px -2px rgba(7, 168, 233, 0.2);
}

/* Main Box */
.sim-engine-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
}

.sim-control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.sim-sub-badge {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.sim-live-tag {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sim-live-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
  animation: pulseDot 1.8s infinite;
}

.calc-control-group {
  margin-bottom: 1.75rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.calc-label-row label {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.92rem;
}

.calc-val-display {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(7, 168, 233, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(7, 168, 233, 0.2);
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-glow);
  transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Growth Mode Pills */
.sim-growth-mode-wrap {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.sim-mode-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.sim-mode-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sim-mode-pill {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sim-mode-pill:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.sim-mode-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(7, 168, 233, 0.3);
}

/* Live AI Insights Box */
.sim-ai-insights-box {
  background: #f0f9ff;
  border: 1px solid rgba(7, 168, 233, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.sim-insights-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.sim-ai-sparkle {
  font-size: 1rem;
}

.sim-insights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sim-insights-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.bullet-check {
  color: #059669;
  font-weight: 900;
}

/* Right Result Card */
.sim-result-card {
  background: #f8fafc;
  border: 1px solid rgba(7, 168, 233, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(7, 168, 233, 0.12);
}

.sim-result-top {
  margin-bottom: 1.5rem;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.sim-multiplier-badge {
  background: rgba(249, 158, 17, 0.15);
  color: #ea580c;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid rgba(249, 158, 17, 0.3);
}

.result-big-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: #059669;
  letter-spacing: -0.02em;
}

/* Dynamic SVG Growth Chart Visual */
.sim-chart-container {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sim-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.sim-chart-kpi {
  color: var(--primary);
  font-weight: 800;
}

.sim-svg-wrap {
  width: 100%;
  height: 90px;
  overflow: hidden;
  position: relative;
}

.sim-growth-svg {
  width: 100%;
  height: 100%;
}

.sim-milestones-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-light);
}

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

.m-day {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: block;
  font-weight: 500;
}

.m-status {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
}

.sim-milestone.highlight .m-status {
  color: #ea580c;
}

.result-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.breakdown-item span {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  display: block;
}

.breakdown-item strong {
  font-size: 1.2rem;
  color: #0f172a;
  font-weight: 800;
}

.sim-cta-btn {
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   LOOP METHODOLOGY & PROCESS
   ========================================================================== */
.process-section {
  padding: 7rem 0;
  position: relative;
  background: #f8fafc;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 4rem;
  position: relative;
}

.process-step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.45;
  margin-bottom: 1rem;
}

.process-step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.process-step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   CASE STUDIES & RESULTS
   ========================================================================== */
.cases-section {
  padding: 7rem 0;
  position: relative;
  background: #ffffff;
}

.case-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.5rem 0 3.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab:hover, .filter-tab.active {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-card-hover);
  box-shadow: var(--shadow-md);
}

.case-card-header {
  padding: 1.75rem 1.75rem 0;
}

.case-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.case-card h3 {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.case-card-body {
  padding: 1.75rem;
  flex: 1;
}

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

.case-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.15rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.metric-box span {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  display: block;
}

.metric-box strong {
  font-size: 1.35rem;
  color: var(--accent-green);
  font-weight: 900;
}

/* ==========================================================================
   TESTIMONIALS & SOCIAL PROOF
   ========================================================================== */
.testimonials-section {
  padding: 7rem 0;
  position: relative;
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--accent-amber);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

.user-info h4 {
  font-size: 0.98rem;
  color: #0f172a;
}

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

/* ==========================================================================
   INTERACTIVE PROJECT PROPOSAL / LEAD BUILDER
   ========================================================================== */
.proposal-section {
  padding: 7rem 0;
  position: relative;
  background: #ffffff;
}

.proposal-card-wrapper {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 3.5rem auto 0;
  position: relative;
}

.proposal-step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-indicator-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dim);
}

.step-indicator-item.active {
  color: var(--primary);
}

.step-dot-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.step-indicator-item.active .step-dot-num {
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  border-color: var(--primary);
}

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

.proposal-form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.form-step-title {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.form-step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* Multi-choice options */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-choice-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: var(--transition-fast);
}

.service-choice-card:hover {
  background: #f1f5f9;
  border-color: rgba(37, 99, 235, 0.35);
}

.service-choice-card.selected {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}

.choice-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  font-weight: 800;
}

.service-choice-card.selected .choice-checkbox {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.form-inputs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.form-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field-wrap.full-width {
  grid-column: span 2;
}

.form-field-wrap label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-input {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.step-buttons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

/* ==========================================================================
   BLOG & AI INSIGHTS SECTION
   ========================================================================== */
.blog-section {
  padding: 6rem 0;
  background: var(--bg-subtle);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem;
  transition: all var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.blog-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.blog-category-badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-read-time {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 0.85rem;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.blog-author-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.author-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.blog-read-link {
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: transform var(--transition-fast);
}

.blog-read-link:hover {
  transform: translateX(4px);
  color: var(--secondary);
}

/* ==========================================================================
   MODALS (AI AUDIT MODAL)
   ========================================================================== */
.modal-backdrop,
.audit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.modal-backdrop.open,
.audit-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.audit-modal-content,
.audit-modal-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.28s ease;
  position: relative;
}

.modal-backdrop.open .audit-modal-content,
.audit-modal-overlay.open .audit-modal-card {
  transform: scale(1);
}

.modal-close,
.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover,
.modal-close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
  transform: rotate(90deg);
}

.audit-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: rgba(7, 168, 233, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.audit-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.audit-modal-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.audit-progress-container {
  margin: 2rem 0;
}

.audit-step-bar-item {
  margin-bottom: 1.25rem;
}

.audit-bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.audit-bar-track {
  height: 9px;
  background: #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
}

.audit-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-cyan-blue);
  border-radius: 5px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.audit-score-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
  text-align: center;
}

.score-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.score-box h4 {
  font-size: 1.85rem;
  color: var(--primary);
  font-weight: 900;
}

.score-box p {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  position: relative;
  background: #f8fafc;
}

.faq-accordion {
  max-width: 800px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.4);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: none;
  border: none;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.35rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   GUARANTEE BADGE BOX
   ========================================================================== */
.guarantee-banner {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(37, 99, 235, 0.06) 100%);
  border: 1px solid rgba(5, 150, 105, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 3.5rem auto 0;
}

.guarantee-badge-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #059669;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.guarantee-text h4 {
  font-size: 1.15rem;
  color: #065f46;
  margin-bottom: 0.25rem;
}

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

/* ==========================================================================
   FOOTER & BOTTOM SECTION
   ========================================================================== */
.site-footer {
  background: #0b1120;
  color: #f8fafc;
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 10;
}

.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4 {
  color: #ffffff;
}

.footer-top-cta {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(124, 58, 237, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.footer-top-cta h2 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

.footer-top-cta p {
  color: #94a3b8;
  font-size: 1.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 1.25rem 0 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 4px;
}

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

/* Floating Action Widget */
.floating-action-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.float-whatsapp-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-bounce);
}

.float-whatsapp-btn:hover {
  transform: scale(1.15) rotate(8deg);
}

.float-scroll-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.float-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.float-scroll-top:hover {
  background: var(--primary);
  color: #fff;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

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

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

  .geo-box, .calculator-wrapper, .sim-engine-box {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

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

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

  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .services-grid, .cases-grid, .testimonials-grid, .blog-grid {
    grid-template-columns: 1fr;
  }

  .geo-comparison-grid, .form-inputs-grid, .service-select-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wrap.full-width {
    grid-column: span 1;
  }

  .footer-top-cta {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

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

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

  .calculator-wrapper, .sim-engine-box, .geo-box, .proposal-card-wrapper {
    padding: 1.25rem;
  }

  .sim-milestones-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .result-big-number {
    font-size: 2.2rem;
  }

  .top-notice-inner {
    font-size: 0.75rem;
  }

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

  .quick-inputs-2col {
    grid-template-columns: 1fr;
  }

  .service-kpi-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   SERVICE DETAIL & ENTERPRISE SEO LANDING PAGE STYLES
   ========================================================================== */
.custom-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.custom-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.custom-breadcrumb a:hover {
  color: var(--primary);
}

.custom-breadcrumb .active {
  color: var(--primary);
  font-weight: 500;
}

.service-hero-section {
  padding: 2.5rem 0 5.5rem;
  position: relative;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.service-main-title {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.service-main-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.68;
  font-weight: 400;
  margin-bottom: 2rem;
}

.enterprise-badges-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.ent-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 550;
  color: #1e293b;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.kpi-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.kpi-num {
  font-size: 1.85rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Quick Lead Form Card (Hero Right Column) */
.quick-lead-card {
  background: #ffffff;
  border: 2px solid rgba(7, 168, 233, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 25px 60px -15px rgba(7, 168, 233, 0.18), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  position: relative;
}

.quick-lead-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.quick-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(7, 168, 233, 0.1);
  color: #07a8e9;
  border: 1px solid rgba(7, 168, 233, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quick-lead-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.quick-lead-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
}

.quick-lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-inputs-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.quick-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quick-input-group label {
  font-size: 0.8rem;
  font-weight: 550;
  color: #334155;
}

.q-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.q-input:focus {
  background: #ffffff;
  border-color: #07a8e9;
  box-shadow: 0 0 0 3px rgba(7, 168, 233, 0.15);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 1rem;
  color: var(--text-dim);
}

.input-with-icon .q-input {
  padding-left: 2.5rem;
}

.traffic-pills-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.traffic-pill-opt {
  position: relative;
  cursor: pointer;
}

.traffic-pill-opt input {
  position: absolute;
  opacity: 0;
}

.traffic-pill-opt span {
  display: block;
  text-align: center;
  padding: 0.5rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.traffic-pill-opt input:checked + span {
  background: #07a8e9;
  color: #ffffff;
  border-color: #07a8e9;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(7, 168, 233, 0.25);
}

.quick-submit-btn {
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.quick-form-security {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

.quick-form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.success-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  font-size: 1.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.quick-form-success h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.quick-form-success p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
}

/* Dashboard Banner Section */
.dashboard-banner-section {
  padding: 0 0 5rem;
  position: relative;
}

.dash-showcase-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.dash-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.dash-image-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.08);
  background: #f8fafc;
}

.dash-main-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Growth Mode Selector */
.growth-modes-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.growth-mode-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.growth-mode-btn strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.growth-mode-btn span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}

.growth-mode-btn:hover {
  border-color: #07a8e9;
  background: #f8fafc;
}

.growth-mode-btn.active {
  border-color: #07a8e9;
  background: rgba(7, 168, 233, 0.06);
  box-shadow: 0 0 0 2px rgba(7, 168, 233, 0.2);
}

.growth-mode-btn.active strong {
  color: #07a8e9;
}

/* ==========================================================================
   WHY CLIENTS CHOOSE DIJITALOOP (6 TARTIŞMASIZ NEDEN) STYLES
   ========================================================================== */
.why-us-reasons-section {
  padding: 6.5rem 0;
  background: #f8fafc;
  position: relative;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reason-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(7, 168, 233, 0.18), 0 0 1px 1px rgba(7, 168, 233, 0.25);
  border-color: rgba(7, 168, 233, 0.4);
}

.reason-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.reason-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-icon-wrap.blue {
  background: rgba(7, 168, 233, 0.12);
  color: #07a8e9;
  border: 1px solid rgba(7, 168, 233, 0.25);
}

.reason-icon-wrap.cyan {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.reason-icon-wrap.amber {
  background: rgba(249, 158, 17, 0.12);
  color: #f99e11;
  border: 1px solid rgba(249, 158, 17, 0.3);
}

.reason-icon-wrap.green {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.reason-icon-wrap.purple {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.reason-icon-wrap.pink {
  background: rgba(219, 39, 119, 0.12);
  color: #db2777;
  border: 1px solid rgba(219, 39, 119, 0.25);
}

.reason-num-badge {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: -0.02em;
}

.reason-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}

.reason-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 1.5rem;
  flex: 1;
}

.reason-highlight-pill {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.reason-highlight-pill span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 550;
  color: var(--primary);
  background: rgba(7, 168, 233, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(7, 168, 233, 0.2);
}

/* Callout Banner inside Reasons */
.reasons-cta-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 2px solid rgba(7, 168, 233, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 50px -15px rgba(7, 168, 233, 0.15);
  flex-wrap: wrap;
}

.reasons-cta-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
}

.reasons-cta-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reasons-cta-banner {
    padding: 1.75rem 1.5rem;
    text-align: center;
    flex-direction: column;
  }
}

/* ==========================================================================
   LIVE PROJECT KEYWORDS CONSOLE & TELEMETRY MODULE
   ========================================================================== */
.live-rankings-section {
  padding: 6.5rem 0 4rem;
  background: #ffffff;
  position: relative;
}

.project-ranking-console {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.09), 0 0 1px 1px rgba(7, 168, 233, 0.12);
  overflow: hidden;
}

/* Top Window Bar */
.console-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
}

.console-dots {
  display: flex;
  gap: 7px;
}

.c-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.c-dot.red { background: #ef4444; }
.c-dot.yellow { background: #f59e0b; }
.c-dot.green { background: #10b981; }

.console-url-title {
  font-size: 0.82rem;
  font-family: monospace;
  font-weight: 500;
  color: var(--text-dim);
}

.console-live-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.console-live-tag .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 8px #059669;
}

/* Console Main Grid */
.console-main-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 520px;
}

/* Left: Project Tabs */
.project-tabs-col {
  background: #f8fafc;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-tabs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.tabs-count {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 500;
}

.project-tabs-list {
  display: flex;
  flex-direction: column;
  padding: 0.55rem 0.75rem;
  gap: 0.45rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}

.project-tabs-list::-webkit-scrollbar {
  width: 5px;
}

.project-tabs-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.project-tabs-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.project-tabs-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.proj-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  flex-shrink: 0;
  min-height: 68px;
}

.proj-tab-btn:hover {
  border-color: rgba(7, 168, 233, 0.4);
  background: #f0f9ff;
  transform: translateX(3px);
}

.proj-tab-btn.active {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(7, 168, 233, 0.15);
  border-left: 4px solid var(--primary);
}

.proj-tab-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.12rem;
  line-height: 1.2;
}

.proj-tab-btn.active .proj-tab-name {
  color: var(--primary);
}

.proj-tab-domain {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.proj-tab-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.meta-kw {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-dim);
  background: #f8fafc;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.meta-jump {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-left: auto;
}

/* Right: Keyword Data Display Table */
.project-keywords-col {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  position: relative;
}

/* Summary Bar */
.rank-summary-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.rank-summary-pill {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
}

.pill-label {
  color: var(--text-muted);
  font-weight: 400;
}

.pill-val {
  color: #0f172a;
  font-weight: 600;
}

.rank-summary-pill.highlight {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.25);
}

.rank-summary-pill.highlight .pill-val {
  color: var(--accent-green);
}

/* Keyword Table & Scroll Container */
.kw-table-scroll-container {
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
}

/* Sleek modern scrollbar */
.kw-table-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.kw-table-scroll-container::-webkit-scrollbar-track {
  background: #f8fafc;
}

.kw-table-scroll-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.kw-table-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.kw-telemetry-table {
  width: 100%;
  border-collapse: collapse;
}

.kw-telemetry-table thead th {
  position: sticky;
  top: 0;
  background: #f8fafc;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  padding: 0.65rem 1rem;
  border-bottom: 2px solid var(--border-light);
  z-index: 2;
}

.kw-telemetry-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background var(--transition-fast);
}

.kw-telemetry-table tbody tr:hover {
  background: #f0f9ff;
}

.kw-name-cell {
  padding: 0.75rem 1rem;
}

.kw-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.kw-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #0f172a;
}

.kw-tag-badge {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(7, 168, 233, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}

.kw-domain-tag {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 550;
  font-family: var(--font-heading);
}

.rank-badge.prev {
  background: #f1f5f9;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}

.rank-badge.current {
  background: rgba(7, 168, 233, 0.1);
  color: var(--primary);
  border: 1px solid rgba(7, 168, 233, 0.3);
}

.rank-badge.current.winner {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.35);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.15);
}

.rank-jump-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-right: 0.5rem;
}

/* Floating Insight Box (Matching Reference Image) */
.kw-floating-insight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(7, 168, 233, 0.3);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}

.insight-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(249, 158, 17, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insight-text-content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.insight-text-content p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0;
}

.project-tabs-footer {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border-light);
  background: #ffffff;
  margin-top: auto;
}

.add-brand-btn {
  font-size: 0.82rem;
  padding: 0.65rem 1rem;
  width: 100%;
  font-weight: 600;
  gap: 0.45rem;
  background: linear-gradient(135deg, #07a8e9 0%, #f99e11 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(7, 168, 233, 0.25);
}

.add-brand-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 8px 22px rgba(7, 168, 233, 0.35);
}

.add-brand-header-btn {
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  font-weight: 600;
  margin-left: auto;
  background: linear-gradient(135deg, #07a8e9 0%, #0284c7 100%);
}

/* ==========================================================================
   LEAD CAPTURE POPUP MODAL STYLES
   ========================================================================== */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

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

.lead-modal-card {
  width: 100%;
  max-width: 530px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border: 2px solid rgba(7, 168, 233, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.25), 0 0 1px 1px rgba(7, 168, 233, 0.2);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
  transform: rotate(90deg);
}

.modal-header-content {
  margin-bottom: 1.5rem;
  text-align: left;
  padding-right: 2rem;
}

.modal-header-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.45rem;
  letter-spacing: -0.015em;
}

.modal-header-content p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE DESIGN SYSTEM (DIJITALOOP)
   ========================================================================== */

/* --- TABLET & MOBILE BREAKPOINT (<= 991px) --- */
@media (max-width: 991px) {
  /* Disable heavy viewport blur animations on mobile to eliminate blank-screen raster lag */
  .bg-mesh-canvas,
  .mesh-orb,
  .grid-overlay {
    display: none !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  body {
    -webkit-overflow-scrolling: touch;
  }

  /* GPU Hardware Acceleration for main scrolling sections to keep tiles pre-rendered */
  .hero-section,
  .marquee-section,
  .comparison-section,
  .services-section,
  .geo-spotlight-section,
  .process-section,
  .cases-section,
  .testimonials-section,
  .proposal-section,
  .blog-section,
  .faq-section {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  /* Top Notice Bar */
  .top-notice-bar {
    padding: 0.45rem 0.75rem;
    font-size: 0.74rem;
  }

  .top-notice-inner {
    gap: 0.35rem 0.5rem;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
  }

  .notice-badge {
    font-size: 0.65rem;
    padding: 0.1rem 0.45rem;
  }

  .notice-link {
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
  }

  /* Header & Navigation Drawer */
  .site-header {
    padding: 0.75rem 0;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }

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

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

  .header-actions .btn {
    padding: 0.45rem 0.95rem;
    font-size: 0.78rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    z-index: 1002;
  }

  .mobile-toggle:hover,
  .mobile-toggle.active {
    background: #f0f9ff;
    border-color: var(--primary);
    color: var(--primary);
  }

  /* Mobile Header Override */
  .site-header .nav-menu {
    display: none !important;
  }

  /* Mobile Backdrop Overlay */
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  }

  .mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Mobile Slide-in Drawer */
  .mobile-nav-drawer {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: -105% !important;
    width: 88vw !important;
    max-width: 360px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.25) !important;
    flex-direction: column !important;
    z-index: 99999 !important;
    visibility: hidden;
    pointer-events: none;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
    overflow: hidden !important;
  }

  .mobile-nav-drawer.active {
    right: 0 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Drawer Header */
  .mobile-drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.35rem;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    flex-shrink: 0;
  }

  .mobile-drawer-brand {
    display: flex;
    align-items: center;
  }

  .mobile-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-drawer-close:hover,
  .mobile-drawer-close:active {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
  }

  /* Drawer Sliding Track (2-Panel Multi-level Slide) */
  .mobile-panels-track {
    display: flex;
    width: 200%;
    flex: 1 1 auto;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-drawer.show-submenu .mobile-panels-track {
    transform: translateX(-50%);
  }

  /* Each Panel */
  .mobile-panel {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .mobile-panel-inner {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.85rem;
    font-size: 0.96rem;
    font-weight: 600;
    color: #0f172a;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid #f8fafc;
  }

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

  /* Submenu Trigger in Main Panel */
  .mobile-submenu-trigger {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f8fafc;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
  }

  .mobile-link-badge-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
  }

  .mobile-count-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: #f0f9ff;
    border: 1px solid rgba(7, 168, 233, 0.2);
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
  }

  /* Submenu Header with Back Button */
  .mobile-submenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.25rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
  }

  .mobile-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--primary);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  }

  .mobile-back-btn:hover,
  .mobile-back-btn:active {
    background: #f0f9ff;
    border-color: var(--primary);
  }

  .mobile-current-category {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
  }

  .mobile-subgroup {
    margin-bottom: 0.85rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
  }

  .mobile-subgroup:last-child {
    margin-bottom: 0;
  }

  .mobile-subgroup-title {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.4rem;
    padding-left: 0.2rem;
  }

  .mobile-sublink {
    display: block;
    padding: 0.42rem 0.65rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #334155;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-sublink:hover,
  .mobile-sublink:active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  }

  /* Drawer Footer */
  .mobile-drawer-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
    flex-shrink: 0;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .mega-menu-footer-banner {
    display: none;
  }

  /* Hero Section Mobile Layout */
  .hero-section {
    padding: 1.5rem 0 2rem;
    min-height: auto;
    overflow-x: hidden;
  }

  .hero-slider-container {
    padding: 0 0.85rem;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-slides-wrapper {
    min-height: auto;
    width: 100%;
    overflow: hidden;
  }

  .hero-wrapper,
  .hero-wrapper-wide {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    align-items: stretch;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.65rem;
    font-size: 0.72rem;
    margin-bottom: 0.55rem;
    max-width: 100%;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
  }

  .hero-pill-badge {
    font-size: 0.65rem;
    padding: 0.12rem 0.45rem;
  }

  .hero-title {
    font-size: clamp(1.45rem, 5.4vw, 2.05rem);
    line-height: 1.25;
    margin-bottom: 0.55rem;
    letter-spacing: -0.02em;
    text-align: left;
    min-height: auto;
    display: block;
    font-weight: 500;
  }

  .hero-description {
    font-size: 0.86rem;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 0.85rem;
    color: #475569;
    text-align: left;
    min-height: auto;
    display: block;
  }

  .hero-action-slot {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.55rem;
    min-height: auto;
    display: block;
  }

  .hero-audit-box {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border: 1.5px solid rgba(7, 168, 233, 0.35);
    border-radius: 12px;
    padding: 0.35rem;
    box-shadow: 0 6px 20px rgba(7, 168, 233, 0.1);
  }

  .audit-input-form {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
  }

  .audit-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    width: 100%;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 8px;
  }

  .audit-input-wrap svg {
    position: static;
    flex-shrink: 0;
    color: #07a8e9;
  }

  .audit-input {
    width: 100%;
    font-size: 0.86rem;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    color: #0f172a;
  }

  .audit-input-form .btn {
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    border-radius: 8px;
    font-weight: 500;
  }

  .hero-cta-buttons-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .hero-cta-buttons-row .btn {
    width: 100%;
    justify-content: center;
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    border-radius: 8px;
  }

  .hero-audit-guarantee {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem;
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    margin: 0.35rem 0 0.75rem;
    min-height: auto;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    padding: 0.65rem 0.45rem;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    width: 100%;
    margin-top: 0.35rem;
    min-height: auto;
  }

  .stat-item {
    text-align: center;
    padding: 0.15rem;
  }

  .stat-item h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
    line-height: 1.1;
  }

  .stat-item p {
    font-size: 0.62rem;
    color: #64748b;
    line-height: 1.25;
    margin: 0;
    font-weight: 600;
  }

  /* Telemetry Console (Slide 1) on Mobile */
  .hero-visual,
  .hero-visual-telemetry {
    width: 100%;
    max-width: 100%;
  }

  .hero-console-panel {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    overflow: hidden;
    background: #ffffff;
  }

  .console-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-light);
  }

  .console-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
  }

  .c-dot {
    width: 9px;
    height: 9px;
  }

  .console-url-title {
    font-size: 0.68rem;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #475569;
    font-family: monospace;
    font-weight: 600;
  }

  .console-live-tag {
    font-size: 0.62rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .hero-console-grid,
  .console-main-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
  }

  .hero-tabs-col,
  .project-tabs-col {
    background: #f8fafc;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0.5rem 0.65rem 0.35rem;
    width: 100%;
    height: auto;
  }

  .hero-tabs-col .project-tabs-header,
  .project-tabs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.1rem 0.35rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #475569;
    border-bottom: none;
    background: transparent;
  }

  .hero-tabs-col .project-tabs-list,
  .project-tabs-list {
    display: flex;
    flex-direction: row;
    gap: 0.45rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0.1rem 0 0.4rem;
    width: 100%;
    scrollbar-width: none;
  }

  .hero-tabs-col .project-tabs-list::-webkit-scrollbar,
  .project-tabs-list::-webkit-scrollbar {
    display: none;
  }

  .hero-tabs-col .proj-tab-btn,
  .proj-tab-btn {
    flex: 0 0 auto;
    width: 136px;
    min-width: 136px;
    min-height: auto;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #ffffff;
    text-align: left;
    transition: all 0.15s;
    cursor: pointer;
  }

  .hero-tabs-col .proj-tab-btn.active,
  .proj-tab-btn.active {
    border-color: var(--primary);
    border-left: 3px solid var(--primary);
    background: #f0f9ff;
    box-shadow: 0 2px 8px rgba(7, 168, 233, 0.15);
  }

  .hero-tabs-col .proj-tab-name,
  .proj-tab-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin-bottom: 0.1rem;
  }

  .hero-tabs-col .proj-tab-domain,
  .proj-tab-domain {
    font-size: 0.62rem;
    color: #64748b;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
  }

  .hero-tabs-col .proj-tab-meta,
  .proj-tab-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .hero-tabs-col .meta-kw,
  .meta-kw {
    font-size: 0.58rem;
    padding: 0.05rem 0.25rem;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    color: #475569;
  }

  .hero-tabs-col .meta-jump,
  .meta-jump {
    font-size: 0.64rem;
    font-weight: 500;
    color: var(--accent-green);
    margin-left: auto;
  }

  .hero-tabs-col .project-tabs-footer,
  .project-tabs-footer {
    display: none;
  }

  /* Keyword Table Column on Mobile */
  .hero-kw-col,
  .project-keywords-col {
    padding: 0.65rem 0.75rem;
    background: #ffffff;
    width: 100%;
  }

  .rank-summary-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    flex-wrap: nowrap;
  }

  .rank-summary-pill {
    font-size: 0.68rem;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    white-space: nowrap;
    background: #f8fafc;
    border: 1px solid var(--border-light);
  }

  .add-brand-header-btn {
    font-size: 0.68rem;
    padding: 0.22rem 0.55rem;
    border-radius: 6px;
    white-space: nowrap;
    margin-left: auto;
    font-weight: 500;
  }

  .hero-kw-table-scroll,
  .kw-table-scroll-container {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .kw-telemetry-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
  }

  .kw-telemetry-table th:nth-child(1) { width: 47%; text-align: left; padding: 0.38rem 0.35rem; font-size: 0.64rem; font-weight: 500; color: #64748b; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
  .kw-telemetry-table th:nth-child(2) { width: 15%; text-align: center; padding: 0.38rem 0.15rem; font-size: 0.64rem; font-weight: 500; color: #64748b; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
  .kw-telemetry-table th:nth-child(3) { width: 17%; text-align: center; padding: 0.38rem 0.15rem; font-size: 0.64rem; font-weight: 500; color: #64748b; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
  .kw-telemetry-table th:nth-child(4) { width: 21%; text-align: right; padding: 0.38rem 0.35rem; font-size: 0.64rem; font-weight: 500; color: #64748b; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }

  .kw-telemetry-table td {
    padding: 0.38rem 0.25rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
  }

  .kw-name-cell .kw-title-row {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .kw-name-cell .kw-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: block;
    line-height: 1.2;
  }

  .kw-name-cell .kw-domain-tag {
    font-size: 0.58rem;
    color: #64748b;
    display: block;
    margin-top: 1px;
  }

  .kw-tag-badge {
    display: none; /* Clean row without overflow */
  }

  .rank-badge {
    font-size: 0.65rem;
    padding: 0.12rem 0.3rem;
    border-radius: 4px;
    min-width: 22px;
    text-align: center;
    font-weight: 600;
  }

  .rank-jump-pill {
    font-size: 0.62rem;
    padding: 0.12rem 0.35rem;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 500;
  }

  .hero-kw-insight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f0f9ff;
    border: 1px solid rgba(7, 168, 233, 0.25);
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .hero-kw-insight .insight-icon-box {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(249, 158, 17, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-kw-insight strong {
    font-size: 0.75rem;
    font-weight: 500;
    color: #0f172a;
    display: block;
    margin-bottom: 0.05rem;
  }

  .hero-kw-insight p {
    font-size: 0.64rem;
    color: #475569;
    margin: 0;
    line-height: 1.25;
  }

  /* Slide 2 & 3 Dashboard Previews on Mobile */
  .hero-dashboard-preview {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 0.85rem;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.45rem;
    margin-bottom: 0.55rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.72rem;
  }

  .preview-title {
    font-size: 0.7rem;
    color: #0f172a;
    font-weight: 500;
    font-family: monospace;
  }

  .live-badge {
    font-size: 0.62rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-weight: 800;
  }

  .preview-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
  }

  .preview-metric-card {
    padding: 0.55rem 0.65rem;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 8px;
  }

  .metric-label {
    font-size: 0.64rem;
    color: #64748b;
    margin-bottom: 0.1rem;
    font-weight: 600;
  }

  .metric-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.2rem;
    flex-wrap: wrap;
  }

  .metric-trend {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--accent-green);
  }

  .preview-chart-sim {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
  }

  .chart-header {
    font-size: 0.72rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
  }

  .chart-bars-mock {
    height: 60px;
    gap: 0.35rem;
    display: flex;
    align-items: flex-end;
  }

  .chart-bar-label {
    font-size: 0.58rem;
    margin-top: 0.2rem;
    font-weight: 500;
    color: #64748b;
  }

  .floating-insight-card {
    position: static;
    margin-top: 0.5rem;
    padding: 0.55rem 0.75rem;
    animation: none;
    box-shadow: none;
    border-radius: 8px;
    border: 1px solid rgba(7, 168, 233, 0.25);
    background: #f0f9ff;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .insight-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .insight-text h4 {
    font-size: 0.76rem;
    margin-bottom: 0.05rem;
    font-weight: 500;
    color: #0f172a;
  }

  .insight-text p {
    font-size: 0.64rem;
    margin: 0;
    line-height: 1.25;
    color: #475569;
  }

  /* Hero Slider Controls on Mobile */
  .hero-slider-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 10;
  }

  .hero-slider-tabs {
    display: flex;
    width: 100%;
    overflow-x: auto;
    gap: 0.4rem;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .hero-slider-tabs::-webkit-scrollbar {
    display: none;
  }

  .hero-slider-tab-btn {
    flex: 0 0 auto;
    padding: 0.45rem 0.85rem;
    font-size: 0.76rem;
    font-weight: 500;
    border-radius: 20px;
    white-space: nowrap;
    gap: 0.35rem;
    background: #ffffff;
    border: 1px solid rgba(7, 168, 233, 0.25);
    color: #475569;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }

  .hero-slider-tab-btn.active {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(7, 168, 233, 0.2);
  }

  .hero-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(7, 168, 233, 0.25);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  /* Global Container padding on Mobile */
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: clamp(1.65rem, 5.5vw, 2.3rem);
  }

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

  /* Services Grid on Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* ROI Calculator on Mobile */
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Lead Capture Modal on Mobile */
  .lead-modal-overlay {
    padding: 0.75rem;
  }

  .lead-modal-card {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    max-width: 100%;
    max-height: 92vh;
  }

  .modal-close-btn {
    top: 0.85rem;
    right: 0.85rem;
    width: 32px;
    height: 32px;
  }
}

/* --- SMALL MOBILE BREAKPOINT (<= 480px) --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.45rem;
  }

  .hero-description {
    font-size: 0.84rem;
  }

  .stat-item h3 {
    font-size: 1.05rem;
  }

  .stat-item p {
    font-size: 0.58rem;
  }

  .header-actions .btn {
    display: none; /* Hide button on tiny screen to prevent header overcrowding */
  }

  .kw-telemetry-table th:nth-child(1) { width: 45%; }
  .kw-telemetry-table th:nth-child(2) { width: 15%; }
  .kw-telemetry-table th:nth-child(3) { width: 17%; }
  .kw-telemetry-table th:nth-child(4) { width: 23%; }

  .kw-name-cell .kw-text {
    max-width: 105px;
    font-size: 0.7rem;
  }

  .rank-badge {
    font-size: 0.62rem;
    padding: 0.1rem 0.25rem;
    min-width: 20px;
  }

  .rank-jump-pill {
    font-size: 0.6rem;
    padding: 0.1rem 0.3rem;
  }

  .hero-tabs-col .proj-tab-btn,
  .proj-tab-btn {
    width: 130px;
    min-width: 130px;
  }
}

/* --- EXTRA COMPACT MOBILE (<= 360px) --- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.32rem;
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .kw-name-cell .kw-text {
    max-width: 88px;
    font-size: 0.68rem;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .stat-item h3 {
    font-size: 1.25rem;
  }

  .stat-item p {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   REFERENCES & CASE STUDIES SHOWCASE STYLES
   ========================================================================== */

/* 1. References Hero */
.references-hero-section {
  padding: 4.5rem 0 2.5rem 0;
  position: relative;
}

.references-hero-header {
  margin-bottom: 2.5rem;
}

/* Key Stats Strip */
.ref-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.ref-stat-card {
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.ref-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-card-hover);
}

.ref-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.ref-stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.ref-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* 2. Logo Marquee Strip */
.ref-marquee-strip {
  padding: 1.75rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  margin: 2rem 0 3.5rem 0;
}

.ref-marquee-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.ref-marquee-container {
  max-width: 100%;
}

.ref-logo-slider-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: refMarqueeScroll 28s linear infinite;
}

.ref-logo-slider-track:hover {
  animation-play-state: paused;
}

@keyframes refMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ref-logo-badge {
  flex-shrink: 0;
  height: 68px;
  padding: 0.75rem 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.ref-logo-badge:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(7, 168, 233, 0.15);
}

.ref-marquee-img {
  max-height: 40px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.25s ease;
}

.ref-logo-badge:hover .ref-marquee-img {
  filter: grayscale(0%);
}

/* 3. Category Filter Tabs */
.ref-filter-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.ref-filter-tabs {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.4rem;
  background: #f1f5f9;
  border-radius: 9999px;
  border: 1px solid var(--border-light);
  flex-wrap: wrap;
  justify-content: center;
}

.ref-filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.ref-filter-btn:hover {
  color: var(--primary);
}

.ref-filter-btn.active {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ref-count-badge {
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  border-radius: 9999px;
  background: var(--primary-glow);
  color: var(--primary);
}

/* 4. Reference Cards Grid */
.references-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto 5rem auto;
  align-items: stretch;
}

.ref-case-card {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 168, 233, 0.4);
  box-shadow: 0 16px 36px -4px rgba(7, 168, 233, 0.16);
}

/* Pristine Logo Stage / Gallery Canvas */
.ref-logo-stage {
  height: 125px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.25rem 1.75rem;
  margin-bottom: 1.35rem;
  transition: all 0.25s ease;
}

.ref-case-card:hover .ref-logo-stage {
  background: #ffffff;
  border-color: rgba(7, 168, 233, 0.25);
  box-shadow: 0 4px 14px rgba(7, 168, 233, 0.08);
}

.ref-stage-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0284c7;
  background: rgba(7, 168, 233, 0.08);
  padding: 0.22rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(7, 168, 233, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ref-stage-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ref-stage-logo {
  max-height: 52px;
  max-width: 185px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ref-case-card:hover .ref-stage-logo {
  transform: scale(1.05);
}

/* Card Body Content */
.ref-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ref-card-title-group {
  margin-bottom: 0.9rem;
}

.ref-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.ref-brand-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Compact Impact Badge */
.ref-hero-impact {
  background: linear-gradient(135deg, rgba(7, 168, 233, 0.08) 0%, rgba(249, 158, 17, 0.06) 100%);
  border: 1px solid rgba(7, 168, 233, 0.2);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.ref-impact-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  flex-shrink: 0;
}

.ref-impact-text {
  display: flex;
  flex-direction: column;
}

.ref-impact-text small {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.ref-impact-text strong {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 750;
}

.ref-card-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  min-height: 52px;
}

/* 3-Col Compact KPI Grid */
.ref-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.85rem 0.55rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  margin-bottom: 1.2rem;
  text-align: center;
}

.ref-kpi-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ref-kpi-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 0.1rem;
  line-height: 1.1;
}

.ref-kpi-lbl {
  font-size: 0.68rem;
  color: var(--text-dim);
  line-height: 1.25;
  font-weight: 500;
}

/* Services Provided Tags */
.ref-services-provided {
  margin-bottom: 1.25rem;
}

.ref-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.ref-service-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* Card Bottom Footer & Button */
.ref-card-footer {
  margin-top: auto;
  padding-top: 0.5rem;
}

.ref-action-btn {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  transition: all 0.25s ease;
}

.ref-action-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(7, 168, 233, 0.3);
}

.btn-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

/* 5. Process Section */
.ref-process-section {
  padding: 5rem 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.ref-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ref-process-card {
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  position: relative;
  display: flex;
  flex-direction: column;
}

.ref-process-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.2rem;
  font-weight: 900;
  color: #f1f5f9;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ref-process-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.ref-process-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.ref-process-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* 6. Testimonials Section */
.ref-testimonials-section {
  padding: 5rem 0;
}

.ref-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ref-testi-card {
  padding: 2.25rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.ref-testi-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.ref-testi-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ref-testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
}

.ref-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.ref-testi-info {
  display: flex;
  flex-direction: column;
}

.ref-testi-info strong {
  font-size: 0.95rem;
  color: var(--text-main);
}

.ref-testi-info span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* 7. Conversion CTA Banner */
.ref-cta-section {
  padding: 3rem 0 6rem 0;
}

.ref-cta-box {
  padding: 4rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(7, 168, 233, 0.05) 0%, rgba(249, 158, 17, 0.05) 100%), #ffffff;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
}

.ref-cta-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
  line-height: 1.2;
}

.ref-cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.65;
}

.ref-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.ref-cta-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
  flex-wrap: wrap;
}

/* 8. Homepage Reference Showcase Strip */
.home-references-strip {
  padding: 3.5rem 0 2rem 0;
  border-top: 1px solid var(--border-light);
}

.home-ref-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-ref-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.35rem;
}

.home-ref-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.home-ref-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.home-ref-logo-card {
  height: 90px;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.home-ref-logo-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px -4px rgba(7, 168, 233, 0.2);
}

.home-ref-logo-card img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.home-ref-logo-card:hover img {
  transform: scale(1.05);
}

/* Responsive Rules for References */
@media (max-width: 1024px) {
  .ref-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .ref-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ref-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .home-ref-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .references-cards-grid {
    grid-template-columns: 1fr;
  }
  .ref-process-grid {
    grid-template-columns: 1fr;
  }
  .home-ref-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-ref-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ref-stats-strip {
    grid-template-columns: 1fr;
  }
  .ref-cta-title {
    font-size: 1.8rem;
  }
}



