/* ==========================================================================
   VERO YAZILIM — STAGGERED ADD-ONS & ZERO INITIAL SELECTION CSS
   ========================================================================== */

:root {
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;

  --border-subtle: #e2e8f0;
  --border-strong: #cbd5e1;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;

  --primary-dark: #0f172a;
  --accent-blue: #2563eb;
  --accent-emerald: #059669;
  --accent-gold: #d97706;

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.1);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.enterprise-body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* ==========================================================================
   PROFESSIONAL ANIMATED FULL-SCREEN PRELOADER (CYBER NEON BLUE)
   Reference Design: Deep Pure Black #000000, Neon Blue #168BFF, Glowing Ring & Bar
   ========================================================================== */
.site-preloader {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  z-index: 2147483647 !important;
  background: #000000 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  user-select: none;
  pointer-events: auto !important;
}

.site-preloader.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(1.04);
}

/* While preloader is active: lock scroll and conceal all background fixed/sticky elements */
html.is-loading,
html.is-loading body {
  overflow: hidden !important;
  height: 100vh !important;
}

html.is-loading .top-announcement-bar,
html.is-loading .enterprise-header,
html.is-loading .floating-whatsapp-widget,
html.is-loading .custom-cross-cursor,
html.is-loading main,
html.is-loading .enterprise-footer {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.preloader-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(22, 139, 255, 0.08) 0%, rgba(0, 0, 0, 0.95) 60%, #000000 100%);
  pointer-events: none;
}

.preloader-center-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ==========================================
   ORB & ROTATING NEON BLUE RINGS
   ========================================== */
.preloader-orb-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
}

/* Base ring geometry */
.neon-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Outer segmented glowing neon ring (Matches image reference) */
.neon-ring-outer {
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top: 2.5px solid #00A8FF;
  border-right: 2.5px solid #168BFF;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  filter: drop-shadow(0 0 10px #168BFF) drop-shadow(0 0 22px rgba(0, 168, 255, 0.65));
  animation: neonRingRotate 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Inner subtle counter-rotating ring */
.neon-ring-mid {
  width: 90%;
  height: 90%;
  border: 1.5px solid rgba(22, 139, 255, 0.18);
  border-bottom: 2px solid #00A8FF;
  border-left: 1.5px solid #168BFF;
  filter: drop-shadow(0 0 8px rgba(22, 139, 255, 0.5));
  animation: neonRingRotateRev 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Soft ambient inner glow circle behind the V logo */
.neon-ring-ambient {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 139, 255, 0.16) 0%, rgba(0, 168, 255, 0.04) 65%, transparent 100%);
  border: 1px solid rgba(22, 139, 255, 0.12);
  box-shadow: 0 0 35px rgba(22, 139, 255, 0.25), inset 0 0 25px rgba(22, 139, 255, 0.15);
  animation: ambientOrbPulse 2.4s ease-in-out infinite alternate;
}

@keyframes neonRingRotate {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(200deg); }
  100% { transform: rotate(360deg); }
}

@keyframes neonRingRotateRev {
  0% { transform: rotate(360deg); }
  50% { transform: rotate(140deg); }
  100% { transform: rotate(0deg); }
}

@keyframes ambientOrbPulse {
  0% { transform: scale(0.97); opacity: 0.7; }
  100% { transform: scale(1.03); opacity: 1; filter: drop-shadow(0 0 12px rgba(22, 139, 255, 0.5)); }
}

/* ==========================================
   CENTER BRAND CONTENT (V LOGO & VERO YAZILIM AŞ)
   ========================================== */
.preloader-brand-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader-v-icon {
  width: 90px;
  height: 80px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-symbol-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 242, 254, 0.85)) drop-shadow(0 0 35px rgba(22, 139, 255, 0.65));
  animation: veroSymbolLivingPulse 2.4s ease-in-out infinite alternate;
  will-change: transform, filter;
}

@keyframes veroSymbolLivingPulse {
  0% {
    transform: scale(0.96);
    filter: drop-shadow(0 0 14px rgba(0, 242, 254, 0.75)) drop-shadow(0 0 28px rgba(22, 139, 255, 0.5));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 24px rgba(0, 242, 254, 1)) drop-shadow(0 0 45px rgba(22, 139, 255, 0.85)) drop-shadow(0 0 60px rgba(56, 189, 248, 0.5));
  }
  100% {
    transform: scale(0.96);
    filter: drop-shadow(0 0 14px rgba(0, 242, 254, 0.75)) drop-shadow(0 0 28px rgba(22, 139, 255, 0.5));
  }
}

.preloader-brand-name {
  font-family: var(--font-display), 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 5px;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.4), 0 0 28px rgba(22, 139, 255, 0.6);
}

.preloader-brand-sub {
  font-family: var(--font-mono), 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

/* ==========================================
   LOADING PROGRESS BAR & STATUS LABEL
   ========================================== */
.preloader-progress-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 220px;
}

.preloader-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #168BFF, #00A8FF);
  border-radius: 999px;
  position: relative;
  box-shadow: 0 0 10px #00A8FF, 0 0 18px #168BFF;
  transition: width 0.12s linear;
}

.progress-glow-head {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 12px #FFFFFF, 0 0 20px #00A8FF;
}

.preloader-status-label {
  font-family: var(--font-mono), 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: #94a3b8;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 520px) {
  .preloader-orb-wrapper {
    width: 230px;
    height: 230px;
    margin-bottom: 32px;
  }
  .preloader-v-icon {
    width: 64px;
    height: 56px;
  }
  .preloader-brand-name {
    font-size: 22px;
    letter-spacing: 4px;
  }
  .preloader-brand-sub {
    font-size: 9.5px;
    letter-spacing: 3px;
  }
  .preloader-progress-section {
    width: 190px;
  }
}

/* TOP ANNOUNCEMENT BAR */
.top-announcement-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  text-align: center;
}

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

.announcement-tag {
  background: var(--accent-gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.announcement-link {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
}

/* ==========================================================================
   PURE WHITE ELEGANT AMBIENT BACKGROUND WITH ULTRA-CLEAN SUBTLE MOTION
   ========================================================================== */
.site-ambient-white {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: #ffffff;
}

.white-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  pointer-events: none;
}

.white-glow-orb.orb-a {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.045) 0%, rgba(255, 255, 255, 0) 70%);
  top: -120px;
  right: 5%;
  animation: cleanOrbMotionA 18s ease-in-out infinite alternate;
}

.white-glow-orb.orb-b {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.035) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: 10%;
  left: -5%;
  animation: cleanOrbMotionB 22s ease-in-out infinite alternate;
}

@keyframes cleanOrbMotionA {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 40px) scale(1.08); }
  100% { transform: translate(-30px, 60px) scale(0.96); }
}

@keyframes cleanOrbMotionB {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -30px) scale(1.06); }
  100% { transform: translate(30px, 40px) scale(0.98); }
}

.white-clean-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
}

/* ==========================================================================
   CLEAN & PRESTIGIOUS ENTERPRISE HEADER
   ========================================================================== */
.enterprise-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999 !important;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #f1f5f9;
  padding: 14px 0;
  overflow: visible !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.enterprise-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  border-bottom-color: #e2e8f0;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible !important;
  position: relative;
}

/* OFFICIAL VERO LOGO & CONTINUOUS LIVING ANIMATION */
.enterprise-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s ease;
}

.vero-brand-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vero-brand-img {
  height: 42px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
}

/* Continuous Living Pulse & Neon Glow Animation */
.live-animated-logo {
  animation: veroLivingNeonGlow 3.2s ease-in-out infinite alternate;
  will-change: transform, filter;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.enterprise-logo:hover .live-animated-logo {
  transform: scale(1.05) translateY(-1px);
  filter: drop-shadow(0 0 16px rgba(0, 242, 254, 0.95))
          drop-shadow(0 0 32px rgba(22, 139, 255, 0.85))
          drop-shadow(0 0 50px rgba(56, 189, 248, 0.5));
}

.vero-logo-ambient-aura {
  position: absolute;
  inset: -8px;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 242, 254, 0.22) 0%, rgba(22, 139, 255, 0.1) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: veroAuraPulse 3.2s ease-in-out infinite alternate;
}

@keyframes veroLivingNeonGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 7px rgba(0, 242, 254, 0.55)) 
            drop-shadow(0 0 16px rgba(22, 139, 255, 0.35));
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.9)) 
            drop-shadow(0 0 30px rgba(22, 139, 255, 0.7))
            drop-shadow(0 0 45px rgba(56, 189, 248, 0.4));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 7px rgba(0, 242, 254, 0.55)) 
            drop-shadow(0 0 16px rgba(22, 139, 255, 0.35));
  }
}

@keyframes veroAuraPulse {
  0% {
    opacity: 0.35;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.35;
    transform: scale(0.92);
  }
}

.footer-logo .vero-brand-img {
  height: 48px;
  max-width: 195px;
}

@media (max-width: 768px) {
  .vero-brand-img {
    height: 34px;
    max-width: 140px;
  }
}

/* NAVIGATION & MEGA MENU */
.enterprise-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: visible !important;
}

.nav-item-dropdown {
  position: relative;
  overflow: visible !important;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item:hover {
  color: var(--accent-blue);
}

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

.dropdown-chevron {
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* MEGA MENU PANELS */
.mega-menu-panel {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.22s ease;
  background: rgba(11, 15, 25, 0.96) !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 99, 235, 0.15) !important;
  padding: 20px;
  margin-top: 10px;
  z-index: 1000000 !important;
  min-width: 540px;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
}

/* Invisible safe-bridge connecting nav item to panel so mouse never loses hover */
.mega-menu-panel::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.mega-menu-single {
  min-width: 300px;
  left: 0 !important;
  transform: translateY(10px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Controlled Open State (via CSS Hover / JS State Manager) */
@media (hover: hover) and (pointer: fine) {
  .nav-item-dropdown:hover .mega-menu-panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }
  .nav-item-dropdown:hover .mega-menu-single {
    transform: translateY(0) !important;
  }
  .nav-item-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
  }
}

.nav-item-dropdown.is-open .mega-menu-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.nav-item-dropdown.is-open .mega-menu-single {
  transform: translateY(0) !important;
}

.nav-item-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mega-menu-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #f1f5f9;
  background: rgba(18, 24, 38, 0.7);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-menu-card:hover {
  background: rgba(30, 41, 64, 0.9);
  border-color: rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
}

.mega-icon {
  font-size: 24px;
  background: rgba(37, 99, 235, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.mega-card-info strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 2px;
}

.mega-card-info span {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
  display: block;
}

.dropdown-subitem {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(18, 24, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dropdown-subitem:hover {
  background: rgba(30, 41, 64, 0.9);
  border-color: rgba(59, 130, 246, 0.4);
}

.dropdown-subitem strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #f8fafc;
}

.dropdown-subitem span {
  font-size: 11.5px;
  color: #94a3b8;
}

/* HEADER RIGHT ACTIONS: CLEAN & BALANCED */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-phone-link:hover {
  color: var(--accent-blue);
}

/* GLOWING CTA BUTTON WITH SHINE SWEEP */
.btn-glowing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-glowing-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  animation: btnShine 4s infinite;
}

@keyframes btnShine {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  25% { transform: translate(100%, 100%) rotate(30deg); }
  100% { transform: translate(100%, 100%) rotate(30deg); }
}

.btn-glowing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
  color: #ffffff;
}

/* ==========================================================================
   MUSICAL NOTE DROP TYPOGRAPHY SYSTEM
   (Harfler ve kelimeler şarkı notaları gibi ritmik ve zarif şekilde ekrana düşer)
   ========================================================================== */
.musical-drop-title {
  position: relative;
  overflow: visible;
  /* collapse any stray whitespace-only text nodes that the cascade JS misses */
  white-space: normal;
  word-spacing: normal;
}

/* Words are inline-block with controlled gap */
.note-word {
  display: inline;
  white-space: nowrap;
  margin-right: 0.22em;
}

/* Last word: no trailing margin */
.note-word:last-child { margin-right: 0; }

.note-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-50px) scale(0.65);
  animation: musicalNoteDrop 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--char-idx) * 26ms + 60ms);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
  cursor: default;
}

.note-char:hover {
  transform: translateY(-8px) scale(1.18);
  color: var(--accent-blue) !important;
}

@keyframes musicalNoteDrop {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.65);
  }
  65% {
    opacity: 1;
    transform: translateY(6px) scale(1.06);
  }
  85% {
    transform: translateY(-2px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* REPLAY RHYTHM CLASS */
.replay-rhythm .note-char {
  animation: none !important;
  opacity: 0;
  transform: translateY(-50px) scale(0.65);
}

/* BUTTONS */
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.25s var(--ease-out);
  border: none;
  cursor: pointer;
}

.btn-primary-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-glow-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

.btn-glow-hero:hover {
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.35);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  transition: all 0.25s var(--ease-out);
}

.btn-outline-dark:hover {
  border-color: var(--primary-dark);
  background: #f8fafc;
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 15.5px; }
.btn-full { width: 100%; }

/* ENTERPRISE AGENCY HERO SECTION */
.enterprise-hero-agency {
  position: relative;
  padding: 88px 0 0;
  text-align: left;
  overflow: hidden;
  background: radial-gradient(circle at 76% 17%, #dbeafe 0%, rgba(219, 234, 254, 0) 29%), linear-gradient(140deg, #f8fafc 0%, #fff 46%, #eff6ff 100%);
}

.enterprise-hero-agency > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  column-gap: 58px;
  align-items: center;
}

.hero-ambient-glow {
  position: absolute;
  top: -150px;
  left: 75%;
  transform: translateX(-50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.hero-agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-blue);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  margin-bottom: 24px;
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite;
}

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

.hero-agency-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--primary-dark);
  max-width: 620px;
  margin: 0 0 24px;
}

.highlight-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-agency-subtext {
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 570px;
  margin: 0 0 32px;
  line-height: 1.65;
}

.hero-agency-cta {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-proof-points { display: flex; gap: 18px; padding-top: 22px; border-top: 1px solid rgba(148, 163, 184, .34); }
.hero-proof-points div { display: grid; gap: 3px; }
.hero-proof-points strong { color: var(--accent-blue); font-family: var(--font-mono); font-size: 11px; letter-spacing: .5px; }
.hero-proof-points span { color: var(--text-muted); font-size: 11px; font-weight: 700; }

/* LAPTOP MOCKUP & PRESTIGE BADGES */
.hero-mockup-wrapper {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
}

.mockup-glow-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.laptop-mockup-container {
  position: relative;
  z-index: 2;
  background: #0f172a;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 70px -22px rgba(15, 23, 42, 0.38);
  overflow: hidden;
  text-align: left;
}

.mockup-header-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1e293b;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.mockup-url {
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 6px;
}

.mockup-screen-body {
  position: relative;
  overflow: hidden;
  background: #020617;
}

.mockup-screen-body img {
  width: 100%;
  height: 390px;
  max-height: none;
  object-fit: cover;
  display: block;
}

/* FLOATING PRESTIGE BADGES */
.float-agency-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  text-align: left;
  z-index: 10;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.float-agency-badge.badge-left {
  bottom: 30px;
  left: 20px;
}

.float-agency-badge.badge-right {
  top: 40px;
  right: 20px;
  animation-delay: 2s;
}

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

.badge-icon {
  font-size: 20px;
  background: #eff6ff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-agency-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
}

.float-agency-badge span {
  font-size: 11px;
  color: var(--accent-blue);
  font-weight: 600;
}

/* HERO SCROLL INDICATOR */
.hero-scroll-indicator {
  grid-column: 1 / -1;
  margin: 44px auto 0;
  display: inline-block;
}

.hero-scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.hero-scroll-indicator a:hover {
  color: var(--accent-blue);
}

.scroll-chevron {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* HERO TRUST LOGO STRIP */
.hero-trust-strip {
  margin-top: 64px;
  padding: 26px 0;
  border-top: 1px solid var(--border-subtle);
  background: rgba(255,255,255,.52);
}

.trust-strip-label { display: block; margin-bottom: 16px; text-align: center; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 1.3px; color: var(--text-light); }
.trust-logos-flex { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 32px; }
.logo-item { color: #64748b; font-family: var(--font-display); font-size: 13px; font-weight: 700; }

.trust-strip-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.trust-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-logo-item {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: -0.5px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.trust-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--primary-dark);
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-category-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.highlight-text { color: var(--accent-blue); }

.hero-description {
  font-size: 17.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.t-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.t-metric span {
  font-size: 12.5px;
  color: var(--text-muted);
}

.t-divider { width: 1px; height: 36px; background: var(--border-subtle); }

.visual-card-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.hero-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.float-img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.float-card strong { display: block; font-size: 13.5px; font-weight: 700; }
.float-card span { font-size: 11.5px; color: var(--accent-blue); font-weight: 600; }
.float-card-1 { top: 24px; left: -20px; }
.float-card-2 { bottom: 32px; right: -20px; }

/* SECTOR PRICING SECTION */
.section-padding { padding: 100px 0; }
.sector-pricing-section { background: #fff; }

.section-header { max-width: 750px; margin: 0 auto 48px; }
.section-header.text-center { text-align: center; }

.section-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p { font-size: 16px; color: var(--text-muted); }

/* MAIN TOP-LEVEL CATEGORY SELECTOR TABS */
.main-service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.main-tab {
  position: relative;
  background: var(--bg-body);
  border: 2px solid var(--border-subtle);
  border-radius: 20px;
  padding: 20px 20px 16px;
  /* Switch to flex-col so badge can live at bottom and text never overlaps */
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s var(--ease-out);
  min-height: 130px;
}

/* Top row: icon + text side by side */
.main-tab-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  /* Enough right room so a very long title never clips */
  width: 100%;
}

.main-tab:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.main-tab.active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.tab-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.tab-text {
  display: flex;
  flex-direction: column;
  min-width: 0; /* allow text to wrap instead of overflow */
}

.tab-text strong {
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 3px;
  /* Prevent very long words from overflowing */
  word-break: break-word;
  hyphens: auto;
}

.tab-text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.main-tab.active .tab-text span {
  color: #94a3b8;
}

/* Badge now sits at the BOTTOM of the card, not absolute-overlapping the title */
.tab-click-indicator {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--accent-blue);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
  /* Remove any absolute positioning that caused overlap */
  position: static;
  top: auto;
  right: auto;
  margin-top: auto;
}

.main-tab.active .tab-click-indicator {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}


/* INITIAL UNSELECTED PROMPT BOX */
.unselected-prompt-box {
  background: var(--bg-body);
  border: 2px dashed var(--border-strong);
  border-radius: 24px;
  padding: 60px 32px;
  text-align: center;
  margin-bottom: 48px;
}

.prompt-icon-anim {
  font-size: 40px;
  margin-bottom: 12px;
  animation: bounceDown 1.5s infinite alternate;
}

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

.unselected-prompt-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.unselected-prompt-box p {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* SUB CATEGORY PANELS (HIDDEN BY DEFAULT) */
.sub-category-panel {
  display: none;
  margin-bottom: 48px;
}

.sub-category-panel.active {
  display: block;
}

.panel-intro-text {
  margin-bottom: 24px;
  text-align: center;
}

.panel-intro-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.panel-intro-text p {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* SECTOR CARDS GRID & ONE-BY-ONE STAGGERED ANIMATION */
.sector-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.staggered-grid .sector-card {
  opacity: 0;
  animation: cardCascadeIn 0.5s var(--ease-out) forwards;
}

@keyframes cardCascadeIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.staggered-grid .sector-card:nth-child(1) { animation-delay: 0.02s; }
.staggered-grid .sector-card:nth-child(2) { animation-delay: 0.04s; }
.staggered-grid .sector-card:nth-child(3) { animation-delay: 0.06s; }
.staggered-grid .sector-card:nth-child(4) { animation-delay: 0.08s; }
.staggered-grid .sector-card:nth-child(5) { animation-delay: 0.10s; }
.staggered-grid .sector-card:nth-child(6) { animation-delay: 0.12s; }
.staggered-grid .sector-card:nth-child(7) { animation-delay: 0.14s; }
.staggered-grid .sector-card:nth-child(8) { animation-delay: 0.16s; }
.staggered-grid .sector-card:nth-child(9) { animation-delay: 0.18s; }
.staggered-grid .sector-card:nth-child(10) { animation-delay: 0.20s; }
.staggered-grid .sector-card:nth-child(11) { animation-delay: 0.22s; }
.staggered-grid .sector-card:nth-child(12) { animation-delay: 0.24s; }
.staggered-grid .sector-card:nth-child(13) { animation-delay: 0.26s; }
.staggered-grid .sector-card:nth-child(14) { animation-delay: 0.28s; }
.staggered-grid .sector-card:nth-child(15) { animation-delay: 0.30s; }
.staggered-grid .sector-card:nth-child(16) { animation-delay: 0.32s; }
.staggered-grid .sector-card:nth-child(17) { animation-delay: 0.34s; }
.staggered-grid .sector-card:nth-child(18) { animation-delay: 0.36s; }
.staggered-grid .sector-card:nth-child(19) { animation-delay: 0.38s; }
.staggered-grid .sector-card:nth-child(20) { animation-delay: 0.40s; }
.staggered-grid .sector-card:nth-child(21) { animation-delay: 0.42s; }
.staggered-grid .sector-card:nth-child(22) { animation-delay: 0.44s; }
.staggered-grid .sector-card:nth-child(23) { animation-delay: 0.46s; }
.staggered-grid .sector-card:nth-child(24) { animation-delay: 0.48s; }
.staggered-grid .sector-card:nth-child(25) { animation-delay: 0.50s; }
.staggered-grid .sector-card:nth-child(26) { animation-delay: 0.52s; }
.staggered-grid .sector-card:nth-child(27) { animation-delay: 0.54s; }
.staggered-grid .sector-card:nth-child(28) { animation-delay: 0.56s; }
.staggered-grid .sector-card:nth-child(29) { animation-delay: 0.58s; }
.staggered-grid .sector-card:nth-child(30) { animation-delay: 0.60s; }
.staggered-grid .sector-card:nth-child(31) { animation-delay: 0.62s; }
.staggered-grid .sector-card:nth-child(32) { animation-delay: 0.64s; }
.staggered-grid .sector-card:nth-child(33) { animation-delay: 0.66s; }
.staggered-grid .sector-card:nth-child(34) { animation-delay: 0.68s; }
.staggered-grid .sector-card:nth-child(35) { animation-delay: 0.70s; }

.sector-card {
  background: var(--bg-body);
  border: 2px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

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

.sector-card.active {
  border-color: var(--accent-blue);
  background: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
}

.sector-img-wrapper {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.sector-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.sector-card:hover .sector-img-wrapper img {
  transform: scale(1.08);
}

.sector-badge-pop {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent-blue);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.sector-card-body {
  padding: 18px;
}

.sector-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.sector-card-body p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sector-price-tag {
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
}

.sector-price-tag strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-blue);
}

/* DYNAMIC ADD-ONS & LIVE SUMMARY BOX (STANDALONE 2-COLUMN CONTAINER) */
.sector-calculator-box {
  display: none;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  margin-top: 56px;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  align-items: start;
}

.sector-calculator-box.active {
  display: grid;
  animation: fadeIn 0.4s ease forwards;
}

.sector-calc-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* WIDESCREEN UNCOMPRESSED PREVIEW CARD FOR SELECTED SECTOR */
.selected-sector-preview-card {
  display: flex;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 2px solid var(--accent-blue);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transition: all 0.3s var(--ease-out);
}

.preview-card-img-wrapper {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.preview-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-dark);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
}

.preview-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.preview-tag-pill {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-blue);
  background: #dbeafe;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.preview-card-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.preview-card-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.preview-price-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px dashed #cbd5e1;
  padding-top: 10px;
}

.preview-price-box strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-blue);
}

.addons-section-header h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.calc-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.addons-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* STICKY RIGHT COLUMN FOR LIVE BREAKDOWN CARD */
.sector-calc-right {
  position: sticky;
  top: 100px;
  align-self: start;
}

.live-summary-card {
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* DETAILED ADDONS REPORT BREAKDOWN */
.addons-report-block {
  background: rgba(5, 8, 16, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  padding-bottom: 8px;
}

.report-badge {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.report-badge.empty {
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}

.report-badge.active {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.report-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 2px;
}

.empty-report-item {
  font-size: 12px;
  color: #64748b;
  font-style: italic;
}

.report-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 8px;
  animation: fadeIn 0.25s ease forwards;
}

.r-item-name {
  color: #f8fafc;
  font-weight: 600;
  flex: 1;
  padding-right: 8px;
  line-height: 1.35;
}

.r-item-price {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 800;
  color: #4ade80;
  white-space: nowrap;
}

/* ADDON CHECKBOX ACTIVE STYLE & FLOATING TOAST ANIMATION */
.addon-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.addon-checkbox:hover {
  background: rgba(19, 27, 44, 0.95);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.addon-checkbox.checked {
  background: rgba(16, 185, 129, 0.09);
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.14), inset 0 0 15px rgba(34, 197, 94, 0.04);
}

.sec-addon-cb {
  width: 20px;
  height: 20px;
  accent-color: #22c55e;
  margin-right: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.cb-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cb-content strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
}

.cb-content span {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.4;
}

.addon-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: #38bdf8;
  padding-left: 12px;
  white-space: nowrap;
}

.addon-price.free {
  color: #4ade80;
  font-weight: 800;
}

.floating-addon-toast {
  position: absolute;
  right: 20px;
  top: -10px;
  background: #22c55e;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  pointer-events: none;
  animation: floatUpToast 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 10;
}

@keyframes floatUpToast {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.85);
  }
  25% {
    opacity: 1;
    transform: translateY(0) scale(1.05);
  }
  75% {
    opacity: 1;
    transform: translateY(-14px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-26px) scale(0.9);
  }
}

.summary-head {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-muted);
}

.summary-line strong {
  color: var(--primary-dark);
}

.summary-line-total {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.summary-line-total span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #60a5fa;
  text-transform: uppercase;
}

.total-amount-display {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(59, 130, 246, 0.5);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.vat-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: #94a3b8;
}

.delivery-badge-strip {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 12px;
  padding: 11px 14px;
  text-align: center;
  font-size: 13px;
  color: #fbbf24;
  font-weight: 600;
}

.delivery-badge-strip strong {
  color: #fef08a;
  font-weight: 800;
}

/* OTHER SECTIONS */
.section-alt { background: var(--bg-alt); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.solution-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
.card-media { position: relative; height: 200px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-tag { position: absolute; top: 12px; left: 12px; background: rgba(15, 23, 42, 0.85); color: #fff; font-family: var(--font-mono); font-size: 10px; padding: 4px 10px; border-radius: 6px; }
.card-content { padding: 24px; }
.card-content h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.card-content p { font-size: 13.5px; color: var(--text-muted); }

.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; font-size: 15.5px; font-weight: 700; color: var(--primary-dark); text-align: left; cursor: pointer; }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }

.contact-enterprise-box { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 28px; padding: 48px; }
.c-spec strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.c-spec span { font-size: 13px; color: var(--text-muted); }

.enterprise-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { font-size: 11px; font-weight: 700; color: var(--text-muted); }
.form-group input, .form-group textarea { background: var(--bg-body); border: 1px solid var(--border-subtle); padding: 12px 16px; border-radius: 10px; font-size: 14px; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-dark); background: #fff; }
.form-success-alert { display: none; padding: 12px; background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857; border-radius: 8px; font-size: 13px; text-align: center; }
.form-success-alert.show { display: block; }

.enterprise-footer { background: var(--primary-dark); color: #fff; padding: 80px 0 40px; }
.footer-top-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.f-desc { font-size: 13.5px; color: #94a3b8; margin-top: 12px; }
.f-col h4 { font-family: var(--font-mono); font-size: 11px; color: #94a3b8; margin-bottom: 16px; }
.f-col a, .f-col p { font-size: 13.5px; color: #cbd5e1; text-decoration: none; margin-bottom: 10px; display: block; }

.footer-bottom-bar { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-family: var(--font-mono); font-size: 11px; color: #94a3b8; }

@media (max-width: 1024px) {
  .main-service-tabs { grid-template-columns: 1fr; }
  .sector-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-calculator-box { grid-template-columns: 1fr; }
  .hero-split-grid, .solutions-grid, .contact-enterprise-box { grid-template-columns: 1fr; }
  .enterprise-hero-agency > .container { grid-template-columns: 1fr; max-width: 760px; text-align: center; }
  .hero-agency-badge { margin-left: auto; margin-right: auto; }
  .hero-agency-title, .hero-agency-subtext { margin-left: auto; margin-right: auto; }
  .hero-agency-cta { justify-content: center; }
  .hero-proof-points { justify-content: center; margin-bottom: 42px; }
  .hero-mockup-wrapper { max-width: 680px; width: 100%; margin: 0 auto; }
  .mega-menu-panel { min-width: 440px; }
  .float-agency-badge.badge-left { bottom: 15px; left: 10px; }
  .float-agency-badge.badge-right { top: 15px; right: 10px; }
}

@media (max-width: 768px) {
  .enterprise-nav { display: none; }
  .float-agency-badge { position: relative; inset: auto !important; margin: 10px auto; width: fit-content; }
}

@media (max-width: 640px) {
  .sector-categories-grid { grid-template-columns: 1fr; }
  .enterprise-nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .header-phone-link span { display: none; }
  .hero-agency-title { font-size: 32px; }
  .hero-agency-subtext { font-size: 15px; }
  .enterprise-hero-agency { padding-top: 54px; }
  .hero-proof-points { gap: 10px; justify-content: space-between; }
  .hero-proof-points span { font-size: 9px; }
  .mockup-screen-body img { height: 255px; }
  .mockup-url { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .trust-logos-grid { gap: 20px; }
}

/* Visual system refresh: pure white, clean, and spacious aesthetic */
:root { 
  --bg-body: #ffffff; 
  --bg-card: #ffffff; 
  --bg-alt: #fcfcfd; 
  --border-subtle: #f1f5f9; 
  --border-strong: #e2e8f0; 
  --text-main: #0f172a; 
  --text-muted: #64748b; 
  --primary-dark: #0f172a; 
  --accent-blue: #2563eb; 
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04); 
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.05); 
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.07); 
}

body.enterprise-body { 
  background: #ffffff; 
}

.top-announcement-bar { background: #0f172a; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.enterprise-header { background: rgba(255, 255, 255, 0.92); border-bottom: 1px solid #f1f5f9; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.enterprise-header.scrolled { padding: 10px 0; background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04); border-bottom-color: #e2e8f0; }

.enterprise-hero-agency { 
  background: #ffffff; 
  border-bottom: 1px solid #f8fafc;
}

.hero-agency-badge, .section-badge { 
  background: #f8fafc; 
  border-color: #e2e8f0; 
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03); 
  color: var(--accent-blue);
}

.highlight-gradient { 
  background: linear-gradient(120deg, #1d4ed8, #2563eb 50%, #3b82f6); 
  -webkit-background-clip: text; 
}

.btn-primary-dark, .btn-glowing-cta { 
  background: linear-gradient(135deg, #0f172a, #1d4ed8); 
  border: 0; 
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.2); 
}

.btn-outline-dark { 
  background: #ffffff; 
  border-color: #e2e8f0; 
  color: #0f172a;
}
.btn-outline-dark:hover { 
  background: #f8fafc; 
  border-color: #2563eb; 
}

.sector-pricing-section { 
  background: #ffffff; 
  border-top: 1px solid #f1f5f9; 
  border-bottom: 1px solid #f1f5f9; 
}

.section-alt { background: #fbfcfe; }
.main-tab, .sector-card, .contact-enterprise-box, .faq-item, .unselected-prompt-box { 
  background: #ffffff; 
  border-color: #f1f5f9; 
  box-shadow: var(--shadow-sm); 
}

.main-tab { border-radius: 14px; }
.main-tab:hover, .sector-card:hover { 
  border-color: #bfdbfe; 
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08); 
}
.main-tab.active { 
  background: linear-gradient(135deg, #0f172a, #1e40af); 
  border-color: transparent; 
}

.sector-card { border-radius: 16px; }
.sector-card.active { 
  border-color: #2563eb; 
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.12); 
}
.sector-img-wrapper { height: 162px; }
.sector-card-body { padding: 18px 18px 16px; }

.sector-calculator-box { 
  background: rgba(11, 15, 25, 0.85); 
  border-color: rgba(255, 255, 255, 0.08); 
  box-shadow: var(--shadow-lg); 
}
.selected-sector-preview-card { 
  border-color: rgba(59, 130, 246, 0.35); 
  background: linear-gradient(135deg, #0d1322, #090d16); 
}
.live-summary-card { 
  border-color: rgba(255, 255, 255, 0.08); 
  background: rgba(11, 15, 25, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6); 
}
.addon-checkbox { border-radius: 16px; }

.contact-enterprise-box { border-radius: 24px; box-shadow: var(--shadow-lg); }
.enterprise-form input, .enterprise-form textarea { 
  background: #f8fafc; 
  border-color: #e2e8f0; 
}
.enterprise-form input:focus, .enterprise-form textarea:focus { 
  border-color: #2563eb; 
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08); 
}
.enterprise-footer { background: #0f172a; }

@media (max-width: 640px) { 
  .section-padding { padding: 72px 0; }
  .sector-calculator-box, .contact-enterprise-box { padding: 24px; } 
  .language-switcher { order: -1; }
  .header-right-actions { gap: 10px; }
}

/* Language control */
.language-switcher { 
  display: flex; 
  align-items: center; 
  gap: 2px; 
  padding: 3px; 
  border: 1px solid #e2e8f0; 
  border-radius: 8px; 
  background: #f8fafc; 
}
.language-btn { 
  min-width: 28px; 
  min-height: 25px; 
  padding: 0 6px; 
  border: 0; 
  border-radius: 6px; 
  background: transparent; 
  color: #64748b; 
  cursor: pointer; 
  font: 700 10px var(--font-mono); 
  letter-spacing: .4px; 
  transition: all .2s; 
}
.language-btn:hover { color: #1d4ed8; }
.language-btn.active { 
  background: #0f172a; 
  color: #fff; 
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15); 
}

/* Focused Vero logo entrance. The legacy preloader markup stays as fallback. */
.site-preloader { z-index:9999; background:#05070d; }
.site-preloader .preloader-stage { display:none; }
.preloader-logo-lockup { position:relative; z-index:3; display:grid; justify-items:center; color:#f8fafc; }
.preloader-flight-mark { width:168px; height:145px; display:grid; place-items:center; filter:drop-shadow(0 0 26px rgba(185,205,255,.25)); animation:markBreathe 1.7s ease-in-out infinite; transform-origin:center; }
.preloader-flight-mark svg { width:100%; height:100%; overflow:visible; }
.preloader-wordmark { margin-top:15px; font-family:var(--font-display); font-size:clamp(40px,6vw,64px); font-weight:700; letter-spacing:.28em; line-height:1; color:#f8fafc; text-shadow:0 0 18px rgba(255,255,255,.18); }
.preloader-wordmark-sub { margin-top:12px; padding-left:.55em; color:#9aa8c0; font:500 11px var(--font-mono); letter-spacing:.55em; }
.preloader-logo-lockup::before { content:''; position:absolute; width:310px; height:310px; z-index:-1; border-radius:50%; background:radial-gradient(circle,rgba(59,130,246,.2),transparent 65%); filter:blur(12px); animation:lockupAura 2s ease-in-out infinite alternate; }
.preloader-flight-mark.is-flying { position:fixed; z-index:10001; margin:0; animation:none; transition:transform 860ms cubic-bezier(.22,.9,.28,1),opacity 650ms ease 180ms; will-change:transform,opacity; }
.preloader-flight-mark.is-flying svg { filter:drop-shadow(0 0 18px rgba(255,255,255,.7)); }
.site-preloader.logo-resolved .preloader-wordmark { animation:wordmarkSettle .35s ease both; }
@keyframes markBreathe { 50% { filter:drop-shadow(0 0 36px rgba(185,205,255,.52)); transform:scale(1.035); } }
@keyframes lockupAura { to { transform:scale(1.15); opacity:.6; } }
@keyframes wordmarkSettle { from { letter-spacing:.42em; opacity:.5; } to { letter-spacing:.28em; opacity:1; } }

/* REAL-TIME DYNAMIC GEOLOCATION WELCOME BADGE */
.preloader-location-badge {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(11, 19, 38, 0.85);
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 20px rgba(59, 130, 246, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #e2e8f0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: locBadgeFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
  user-select: none;
}
.preloader-location-badge.loc-resolved {
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(8, 24, 38, 0.88);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(16, 185, 129, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.loc-radar-beacon {
  position: relative;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-radar-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  transition: all 0.4s ease;
}
.preloader-location-badge.loc-resolved .loc-radar-core {
  background: #10b981;
  box-shadow: 0 0 14px #10b981, 0 0 4px #fff;
}
.loc-radar-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #38bdf8;
  animation: locPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}
.preloader-location-badge.loc-resolved .loc-radar-ping {
  background: #10b981;
}
@keyframes locPing {
  75%, 100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes locBadgeFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.loc-radar-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.loc-radar-text .loc-scanning {
  color: #94a3b8;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
}
.loc-radar-text .loc-city {
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #38bdf8, #60a5fa 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}
.loc-radar-text .loc-divider {
  color: #64748b;
  font-weight: 400;
}
.loc-radar-text .loc-welcome {
  color: #f8fafc;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.loc-radar-text .loc-icon {
  font-size: 13px;
  display: inline-block;
  transform: translateY(-0.5px);
}
@media (max-width: 576px) {
  .preloader-location-badge {
    margin-top: 18px;
    padding: 6px 15px;
    font-size: 12px;
  }
}

/* [logo-symbol rules removed — replaced by .vero-brand-img system] */

.enterprise-hero-agency { overflow:hidden; }
.enterprise-hero-agency::before { content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 15% 22%,rgba(59,130,246,.16),transparent 22rem),radial-gradient(circle at 83% 68%,rgba(99,102,241,.16),transparent 24rem),linear-gradient(rgba(87,112,151,.075) 1px,transparent 1px),linear-gradient(90deg,rgba(87,112,151,.075) 1px,transparent 1px); background-size:auto,auto,44px 44px,44px 44px; mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.54)); }
.enterprise-hero-agency > .container { max-width:1280px; min-height:580px; grid-template-columns:minmax(0,1fr) minmax(440px,1fr); gap:clamp(36px,5vw,76px); }
.hero-agency-title { max-width:590px; font-size:clamp(42px,4.4vw,66px); text-wrap:balance; }.hero-agency-subtext { max-width:550px; }.hero-agency-cta { align-items:center; }.hero-mockup-wrapper { align-self:center; width:100%; }
.laptop-mockup-container { transform:perspective(1400px) rotateY(-3deg) rotateX(1deg); transform-origin:center; }.float-agency-badge.badge-left { left:-16px; bottom:28px; }.float-agency-badge.badge-right { right:-16px; top:30px; }
@media (max-width:1024px) { .enterprise-hero-agency > .container { min-height:auto; grid-template-columns:1fr; }.laptop-mockup-container { transform:none; }.hero-mockup-wrapper { max-width:680px; }.float-agency-badge.badge-left { left:10px; }.float-agency-badge.badge-right { right:10px; } }
@media (prefers-reduced-motion:reduce) { .preloader-flight-mark,.preloader-logo-lockup::before { animation:none; }.preloader-flight-mark.is-flying { transition:none; } }

/* Layered site canvas: a calm indigo mesh replaces the flat white backdrop. */
.site-ambient-white {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(rgba(54, 83, 132, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 83, 132, .045) 1px, transparent 1px),
    linear-gradient(135deg, #eef4ff 0%, #f8faff 43%, #f0efff 100%);
  background-size: 52px 52px, 52px 52px, auto;
}
.white-glow-orb {
  position:absolute;
  border-radius:50%;
  filter:blur(18px);
  opacity:.72;
  mix-blend-mode:multiply;
  will-change:transform;
}
.white-glow-orb.orb-a {
  width:clamp(420px,48vw,760px); height:clamp(420px,48vw,760px);
  top:-18%; left:-12%;
  background:radial-gradient(circle,rgba(96,165,250,.36) 0%,rgba(147,197,253,.15) 38%,transparent 70%);
  animation:ambientOrbOne 18s ease-in-out infinite alternate;
}
.white-glow-orb.orb-b {
  width:clamp(420px,46vw,740px); height:clamp(420px,46vw,740px);
  right:-14%; top:36%;
  background:radial-gradient(circle,rgba(129,140,248,.29) 0%,rgba(196,181,253,.14) 42%,transparent 70%);
  animation:ambientOrbTwo 22s ease-in-out infinite alternate;
}
.white-clean-grid { position:absolute; inset:0; opacity:.35; background:radial-gradient(circle at 50% 30%,transparent 0 18%,rgba(255,255,255,.4) 58%,rgba(255,255,255,.82) 100%); }
@keyframes ambientOrbOne { from { transform:translate3d(0,0,0) scale(1); } to { transform:translate3d(20vw,12vh,0) scale(1.18); } }
@keyframes ambientOrbTwo { from { transform:translate3d(0,0,0) scale(1); } to { transform:translate3d(-20vw,-11vh,0) scale(1.15); } }

body.enterprise-body { background:transparent; }
.top-announcement-bar { position:relative; z-index:99990; }
.enterprise-header { position:sticky; z-index:999999 !important; }
main { position:relative; z-index:1; }
.enterprise-footer { position:relative; z-index:10; }
.enterprise-hero-agency { background:linear-gradient(110deg,rgba(250,252,255,.74),rgba(238,245,255,.46)); border-bottom-color:rgba(191,219,254,.45); }
.sector-pricing-section { background:rgba(255,255,255,.64); backdrop-filter:blur(7px); }
.section-alt { background:rgba(239,246,255,.54); }
.section-padding:not(.sector-pricing-section):not(.section-alt) { background:rgba(255,255,255,.28); }
.main-tab,.sector-card,.faq-item,.contact-enterprise-box,.unselected-prompt-box,.sector-calculator-box { background:rgba(255,255,255,.82); backdrop-filter:blur(12px); }
.enterprise-footer { position:relative; background:linear-gradient(125deg,#081426,#112d57); }
@media (prefers-reduced-motion:reduce) { .white-glow-orb { animation:none; } }

/* Unified surface palette: header, hero and content now share one blue-slate family. */
:root { --bg-body:#f5f8fc; --bg-alt:#edf3f9; --bg-card:#ffffff; --border-subtle:#dbe5f0; --border-strong:#c6d5e5; --text-main:#14243a; --text-muted:#607187; --primary-dark:#12263f; --accent-blue:#2563eb; }
html { background:#f5f8fc; }
body.enterprise-body { background:#f5f8fc; }
.site-ambient-white {
  background:
    linear-gradient(rgba(77,104,143,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(77,104,143,.035) 1px,transparent 1px),
    #f5f8fc;
  background-size:52px 52px,52px 52px,auto;
}
.white-glow-orb { opacity:.48; mix-blend-mode:normal; }
.white-glow-orb.orb-a { background:radial-gradient(circle,rgba(96,165,250,.23),rgba(191,219,254,.1) 42%,transparent 70%); }
.white-glow-orb.orb-b { background:radial-gradient(circle,rgba(125,165,220,.17),rgba(191,219,254,.08) 42%,transparent 70%); }
.enterprise-header,.enterprise-header.scrolled { background:rgba(245,248,252,.92); border-bottom-color:#dbe5f0; }
.top-announcement-bar { background:#12263f; }
.enterprise-hero-agency { background:linear-gradient(180deg,rgba(245,248,252,.86),rgba(239,245,251,.68)); border-bottom-color:#dbe5f0; }
.enterprise-hero-agency::before { background:radial-gradient(circle at 15% 22%,rgba(96,165,250,.11),transparent 22rem),radial-gradient(circle at 83% 68%,rgba(147,197,253,.1),transparent 24rem),linear-gradient(rgba(77,104,143,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(77,104,143,.04) 1px,transparent 1px); background-size:auto,auto,44px 44px,44px 44px; }
.sector-pricing-section { background:rgba(248,251,254,.68); border-color:#dbe5f0; }
.section-alt { background:rgba(237,243,249,.72); }
.section-padding:not(.sector-pricing-section):not(.section-alt) { background:rgba(245,248,252,.52); }
.main-tab,.sector-card,.faq-item,.contact-enterprise-box,.unselected-prompt-box,.sector-calculator-box { background:rgba(255,255,255,.9); border-color:#dbe5f0; }
.enterprise-footer { background:linear-gradient(135deg,#10233b,#18375c); }

/* ====== TRUE BLACK & MIDNIGHT THEME (ZERO PURPLE) ====== */
:root { 
  --bg-body:#05070d; 
  --bg-card:#0b0f19; 
  --bg-alt:#080b12; 
  --border-subtle:rgba(255,255,255,.07); 
  --border-strong:rgba(59,130,246,.35); 
  --text-main:#f1f5f9; 
  --text-muted:#94a3b8; 
  --text-light:#64748b; 
  --primary-dark:#f8fafc; 
  --accent-blue:#3b82f6; 
  --shadow-sm:0 8px 24px rgba(0,0,0,.45); 
  --shadow-md:0 18px 45px rgba(0,0,0,.6); 
  --shadow-lg:0 30px 75px rgba(0,0,0,.75); 
}
html, body.enterprise-body { background:#05070d; color:var(--text-main); }
.site-ambient-white { display: none !important; }
.electric-field { display: none !important; }

.top-announcement-bar { background:rgba(5,7,13,.96); border-bottom-color:rgba(255,255,255,.06); }
.enterprise-header,.enterprise-header.scrolled { background:rgba(5,7,13,.82); backdrop-filter:blur(24px); border-bottom-color:rgba(255,255,255,.08); }
/* [logo-brand rule removed — replaced by .vero-brand-img] */
.logo-sub { color:#64748b; }
.nav-item { color:#cbd5e1; }.nav-item:hover { background:rgba(59,130,246,.1); color:#fff; }
.enterprise-hero-agency { background:transparent; border-bottom-color:rgba(255,255,255,.06); }
.hero-agency-title,.section-header h2,.panel-intro-text h3,.sector-card-body h3,.preview-card-info h3,.addons-section-header h3,.unselected-prompt-box h3,.faq-question,.contact-enterprise-box h2 { color:#f8fafc; }
.hero-agency-subtext,.section-header p,.panel-intro-text p,.sector-card-body p,.calc-sub,.preview-card-info p,.faq-answer,.c-spec span { color:#94a3b8; }
.hero-agency-badge,.section-badge { background:rgba(15,23,42,.8); border-color:rgba(59,130,246,.3); color:#93c5fd; }
.hero-proof-points { border-top-color:rgba(255,255,255,.08); }.hero-proof-points span { color:#94a3b8; }
.btn-primary-dark,.btn-glowing-cta { color:#fff; background:linear-gradient(135deg,#2563eb,#1d4ed8); box-shadow:0 12px 28px rgba(37,99,235,.35); }
.btn-outline-dark { color:#e2e8f0; background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.14); }
.sector-pricing-section,.section-alt,.section-padding:not(.sector-pricing-section):not(.section-alt) { background:rgba(8,11,18,.6); border-color:rgba(255,255,255,.06); }
.main-tab,.sector-card,.faq-item,.contact-enterprise-box,.unselected-prompt-box,.sector-calculator-box,.live-summary-card { background:rgba(11,15,25,.82); border-color:rgba(255,255,255,.07); }
.main-tab:hover,.sector-card:hover { border-color:rgba(59,130,246,.45); box-shadow:0 18px 38px rgba(0,0,0,.6); }
.main-tab.active { background:linear-gradient(135deg,#1e3a8a,#2563eb); }
.tab-text span,.sector-price-tag,.preview-price-box { color:#94a3b8; }
.selected-sector-preview-card { background:linear-gradient(135deg,#0d1322,#090d16); border-color:rgba(59,130,246,.4); }
.preview-tag-pill { background:rgba(37,99,235,.2); color:#93c5fd; }
.form-group input,.form-group textarea,.enterprise-form input,.enterprise-form textarea { color:#f8fafc; background:#070a12; border-color:rgba(255,255,255,.12); }
.enterprise-form input:focus,.enterprise-form textarea:focus { background:#0a0f1c; border-color:rgba(59,130,246,.5); }
.enterprise-footer { background:#040509; }
.f-col a,.f-col p { color:#94a3b8; }
.language-switcher { background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.1); }
.language-btn { color:#94a3b8; }.language-btn.active { background:#2563eb; }

.sector-pricing-section {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background: rgba(8, 12, 20, 0.75) !important;
  border-top:1px solid rgba(255,255,255,.07) !important;
  border-bottom:1px solid rgba(255,255,255,.07) !important;
}
.sector-pricing-section .section-header h2 { color:#f8fafc; }
.sector-pricing-section .section-header p { color:#94a3b8; }
.sector-pricing-section .main-service-tabs { padding:12px; border:1px solid rgba(255,255,255,.08); border-radius:24px; background:rgba(5,7,13,.5); backdrop-filter:blur(12px); }
.sector-pricing-section .main-tab { background:rgba(11,15,25,.82); border-color:rgba(255,255,255,.08); }
.sector-pricing-section .main-tab.active { background:linear-gradient(135deg,#1e3a8a,#2563eb); }


/* ==========================================================================
   DARK HERO — 2-COLUMN GRID
   ========================================================================== */
.hero-dark {
  position: relative;
  min-height: 90vh;
  background: #080b14;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 80px; /* below sticky header */
}
.hero-dark-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 50%, transparent 100%);
}
.hero-dark-glow-l {
  position: absolute;
  top: -80px; left: -5%;
  width: 55%; height: 80%;
  background: radial-gradient(ellipse at 40% 30%, rgba(37,99,235,0.12) 0%, transparent 65%);
  filter: blur(28px);
}
.hero-dark-glow-r {
  position: absolute;
  top: 10%; right: -5%;
  width: 45%; height: 70%;
  background: radial-gradient(ellipse at 60% 40%, rgba(15,23,42,0.5) 0%, transparent 65%);
  filter: blur(28px);
}

.hero-dark-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 70vh;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}
.hero-dark-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Pill badge */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border: 1px solid rgba(59,130,246,0.3);
  background: rgba(37,99,235,0.08);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 24px;
  width: fit-content;
}

/* Main H1 dark */
.hero-dark-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #f8fafc;
  margin: 0 0 22px;
}
.hero-dark-gradient {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #a5b4fc 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Sub */
.hero-dark-sub {
  font-size: 16px;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 0 32px;
  line-height: 1.7;
}
/* CTA buttons */
.hero-dark-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: #2563eb;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,99,235,.35), 0 0 0 1px rgba(255,255,255,.08) inset;
  transition: all .22s var(--ease-out);
}
.btn-hero-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 32px rgba(37,99,235,.55), 0 0 20px rgba(96,165,250,.3);
  transform: translateY(-2px);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: rgba(255,255,255,.06);
  color: #cbd5e1;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
  transition: all .22s var(--ease-out);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.12);
  color: #f1f5f9;
  border-color: rgba(255,255,255,.28);
}
/* Proof points adapted for dark */
.hero-dark .hero-proof-points {
  display: flex;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-dark .hero-proof-points div { display: grid; gap: 3px; }
.hero-dark .hero-proof-points strong { color: #60a5fa; font-family: var(--font-mono); font-size: 11px; letter-spacing: .5px; }
.hero-dark .hero-proof-points span { color: #64748b; font-size: 11px; font-weight: 600; }
/* RIGHT COL — mockup glow shield */
.hero-dark-right { display: flex; align-items: center; justify-content: center; }
.hero-dark-mockup { position: relative; width: 100%; }
.mockup-glow-shield {
  position: absolute;
  inset: -20px;
  border-radius: 24px;
  background: radial-gradient(ellipse at 50% 50%, rgba(37,99,235,.22) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}
.hero-dark .laptop-mockup-container {
  filter: drop-shadow(0 20px 40px rgba(37,99,235,.2));
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}
/* Trust strip adapted */
.hero-dark .hero-trust-strip {
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
}
.hero-dark .trust-strip-label { color: #475569; }
.hero-dark .logo-item { color: #64748b; border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.04); }
/* Scroll indicator adapted */
.hero-dark .hero-scroll-indicator a { color: #64748b; }
.hero-dark .hero-scroll-indicator a:hover { color: #94a3b8; }

/* Override old enterprise-hero if it still appears somewhere */
.site-dark-canvas {
  display: none;
}
/* Force dark body background only under hero */
#hero.hero-dark ~ * { background-color: var(--bg-body); }

/* ==========================================================================
   FOOTER — 4-COLUMN GRID OVERRIDES
   ========================================================================== */
.enterprise-footer {
  background: #05070c;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #fff;
  padding: 72px 0 0;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 52px;
}
/* [footer .logo-symbol rules removed — replaced by .vero-brand-img] */
.f-col-brand .f-desc { font-size: 13.5px; color: #64748b; margin-top: 14px; line-height: 1.65; }
.f-social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.f-social-btn {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #94a3b8;
  font-size: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all .2s;
}
.f-social-btn:hover { background: rgba(59,130,246,.18); border-color: rgba(59,130,246,.4); color: #60a5fa; }
.f-col h4 { font-family: var(--font-mono); font-size: 10.5px; color: #64748b; margin-bottom: 18px; letter-spacing: .1em; }
.f-col a, .f-col p { font-size: 13.5px; color: #94a3b8; text-decoration: none; margin-bottom: 12px; display: block; transition: color .18s; }
.f-col a:hover { color: #60a5fa; }
.f-working-hours { margin-top: 12px; }
.f-working-hours span { font-size: 12px; color: #475569; font-family: var(--font-mono); }
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-family: var(--font-mono);
  font-size: 11px;
  color: #475569;
}
.f-legal-links {
  display: flex;
  gap: 20px;
}
.f-legal-links a {
  color: #475569;
  text-decoration: none;
  font-size: 11px;
  font-family: var(--font-mono);
  transition: color .18s;
}
.f-legal-links a:hover { color: #94a3b8; }

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 14px; text-align: center; }
  .hero-dark-inner { grid-template-columns: 1fr; min-height: auto; padding: 48px 20px 32px; }
  .hero-dark-h1 { font-size: 34px; }
  .hero-dark .laptop-mockup-container { transform: none; }
}
@media (max-width: 900px) {
  .hero-dark-inner { grid-template-columns: 1fr; }
  .hero-dark-right { margin-top: 32px; }
  .hero-dark .laptop-mockup-container { transform: none; }
}

/* ==========================================================================
   HERO → CALCULATOR TRANSITION FIX (dark-theme compatible)
   ========================================================================== */

/* Trust strip — zero extra gap */
.hero-dark .hero-trust-strip {
  margin-top: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  background: transparent;
}

/* Gradient bridge: dark hero → dark calculator (NO white) */
.hero-dark::after {
  content: '';
  display: block;
  height: 60px;
  background: linear-gradient(to bottom, #090d16 0%, rgba(9,17,31,.97) 100%);
  margin-top: -1px;
}

/* Calculator section — keep the existing dark gradient, just fix spacing */
.sector-pricing-section {
  background: #05060a !important;
  border-top: none !important;
  padding-top: 52px !important;
  padding-bottom: 96px !important;
}

.sector-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
  pointer-events: none;
}

.sector-bg-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(37,99,235,.12), transparent 27rem),
    radial-gradient(circle at 87% 82%, rgba(56,189,248,.08), transparent 28rem),
    linear-gradient(135deg, rgba(5,6,10,.88), rgba(5,6,10,.95));
}

.sector-pricing-section .container {
  position: relative;
  z-index: 1;
}

.script-dev-note {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #93c5fd;
  opacity: 0.85;
}

/* 4. Section header margin compressed */
.sector-pricing-section .section-header {
  margin-bottom: 36px;
}

/* 5. Dark section badge inside calculator matches palette */
.sector-pricing-section .section-badge {
  background: rgba(15,23,42,.85);
  border-color: rgba(59,130,246,.3);
  color: #93c5fd;
}


/* 6. Tablet: trust strip also tight */
@media (max-width: 768px) {
  .hero-dark::after { height: 32px; }
  .sector-pricing-section { padding-top: 36px !important; }
}

/* Fix: restore proper dark gradient background for the calculator section
   (overrides the flat #05060a set above, using the same radial gradient
   that was established in the dark-electric block at line ~2869) */
.sector-pricing-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(37,99,235,.19), transparent 27rem),
    radial-gradient(circle at 87% 82%, rgba(99,102,241,.13), transparent 28rem),
    linear-gradient(135deg, rgba(9,17,31,.98), rgba(5,10,19,.99)) !important;
  border-top: 1px solid rgba(96,165,250,.2) !important;
}

/* ==========================================================================
/* ==========================================================================
   MINIMAL PRECISION NEON DOT CURSOR
   ========================================================================== */

/* 1. Hide default cursor on fine pointer devices when custom cursor is active */
@media (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor input,
  html.has-custom-cursor textarea,
  html.has-custom-cursor select {
    cursor: none !important;
  }
}

.custom-cross-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 2147483646;
  opacity: 0;
  will-change: transform;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.2s ease;
}

.custom-cross-cursor.visible {
  opacity: 1;
}

/* Center Precision Neon Dot */
.cursor-pointer-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #00f2fe;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px #00f2fe, 0 0 20px #168bff;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.2s ease,
              box-shadow 0.2s ease;
}

/* Hover over clickable links & buttons */
.custom-cross-cursor.is-active .cursor-pointer-dot {
  transform: translate(-50%, -50%) scale(1.8);
  background: #38bdf8;
  box-shadow: 0 0 14px #38bdf8, 0 0 28px rgba(0, 168, 255, 0.7);
}

/* Click impulse */
.custom-cross-cursor.is-clicking .cursor-pointer-dot {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ffffff;
  box-shadow: 0 0 18px #ffffff, 0 0 35px #00f2fe;
}

/* While preloader is active: conceal custom cursor */
html.is-loading .custom-cross-cursor {
  display: none !important;
}

/* Mobile & Touch Devices: Disable custom cursor cleanly */
@media (pointer: coarse) {
  .custom-cross-cursor { display: none !important; }
  .has-custom-cursor, .has-custom-cursor * { cursor: auto !important; }
}

/* ==========================================================================
   HERO STATS ROW + H1 INLINE GRADIENT FIX
   ========================================================================== */

/* Stats row: 250+ / 8+ yıl / %97 */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 3px;
}

.hero-stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.hero-stat span {
  font-size: 10.5px;
  color: #64748b;
  font-family: var(--font-mono);
  letter-spacing: .04em;
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* H1 inline gradient span fix — ensure 100% visibility with musical characters */
.hero-dark-h1 .hero-dark-gradient,
.hero-dark-h1 .highlight-gradient,
.hero-dark-gradient,
.highlight-gradient {
  display: inline !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #38bdf8 !important;
  color: #38bdf8 !important;
  text-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}

.hero-dark-h1 .hero-dark-gradient .note-char,
.hero-dark-h1 .highlight-gradient .note-char {
  color: #38bdf8 !important;
  -webkit-text-fill-color: #38bdf8 !important;
}

/* hero-dark-sub strong */
.hero-dark-sub strong {
  color: #93c5fd;
  font-weight: 600;
}

/* Mobile stats row */
@media (max-width: 640px) {
  .hero-stats-row { flex-wrap: wrap; gap: 12px; padding: 14px; }
  .hero-stat-divider { display: none; }
  .hero-stat { flex: 0 0 30%; }
}

/* ==========================================================================
   ULTRA-PREMIUM ENTERPRISE HEADER & ANNOUNCEMENT BAR (DARK SLEEK PALETTE)
   ========================================================================== */

/* 1. TOP ANNOUNCEMENT BAR */
.top-announcement-bar {
  background: rgba(7, 10, 19, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 8px 16px !important;
  font-size: 12.5px;
  position: relative;
  z-index: 1002;
}

.top-announcement-bar .announcement-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #cbd5e1;
}

.announcement-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.12) !important;
  border: 1px solid rgba(96, 165, 250, 0.28) !important;
  color: #93c5fd !important;
  font-family: var(--font-mono);
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 3px 9px !important;
  border-radius: 999px !important;
}

.announcement-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: beaconPing 2s infinite ease-in-out;
}

@keyframes beaconPing {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #38bdf8; }
}

.announcement-text {
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: -0.1px;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #60a5fa !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.2s ease;
}

.announcement-link:hover {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(96, 165, 250, 0.45);
  color: #93c5fd !important;
  transform: translateX(2px);
}

/* 2. ENTERPRISE HEADER BAR */
.enterprise-header {
  background: rgba(8, 11, 20, 0.82) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding: 13px 0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.enterprise-header.scrolled {
  background: rgba(6, 9, 17, 0.94) !important;
  border-bottom-color: rgba(96, 165, 250, 0.15) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45) !important;
  padding: 9px 0 !important;
}

/* LOGO LOCKUP — using .vero-brand-img system */
.enterprise-logo {
  gap: 12px;
}
/* [.logo-symbol, .logo-brand, .logo-sub rules removed — replaced by .vero-brand-img] */

/* NAVIGATION LINKS */
.enterprise-nav {
  gap: 32px;
}

.enterprise-nav .nav-item {
  color: #cbd5e1 !important;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  letter-spacing: -0.1px;
  transition: all 0.2s ease;
}

.enterprise-nav .nav-item:hover {
  color: #60a5fa !important;
}

.enterprise-nav .nav-item::after {
  background: linear-gradient(90deg, #60a5fa, #38bdf8) !important;
  height: 2px;
}

.dropdown-chevron {
  stroke: #64748b;
  transition: stroke 0.2s ease, transform 0.25s ease;
}

.nav-item:hover .dropdown-chevron {
  stroke: #60a5fa;
}

/* MEGA MENU DARK THEME */
.mega-menu-panel {
  background: rgba(9, 13, 24, 0.97) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(37, 99, 235, 0.1) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
}

.mega-menu-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.mega-menu-card:hover {
  background: rgba(59, 130, 246, 0.08) !important;
  border-color: rgba(96, 165, 250, 0.3) !important;
  transform: translateY(-2px);
}

.mega-icon {
  background: rgba(37, 99, 235, 0.14) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
}

.mega-card-info strong {
  color: #f1f5f9 !important;
}

.mega-card-info span {
  color: #94a3b8 !important;
}

.dropdown-subitem {
  color: #cbd5e1 !important;
}

.dropdown-subitem:hover {
  background: rgba(59, 130, 246, 0.08) !important;
}

.dropdown-subitem strong {
  color: #f1f5f9 !important;
}

.dropdown-subitem span {
  color: #94a3b8 !important;
}

/* RIGHT HEADER ACTIONS */
.header-phone-link {
  color: #cbd5e1 !important;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.header-phone-link svg {
  color: #60a5fa;
  transition: transform 0.2s ease;
}

.header-phone-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-phone-link:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

/* GLOWING CTA BUTTON REFINEMENT */
.btn-glowing-cta {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 20px !important;
  border-radius: 9px !important;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-glowing-cta:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.65), 0 0 16px rgba(96, 165, 250, 0.4) !important;
  transform: translateY(-1.5px) !important;
}

/* LANGUAGE SWITCHER */
.language-switcher {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  padding: 3px !important;
  border-radius: 8px !important;
}

.language-btn {
  color: #94a3b8 !important;
  font-weight: 700;
  font-size: 10px;
  border-radius: 5px !important;
}

.language-btn:hover {
  color: #ffffff !important;
}

.language-btn.active {
  background: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4) !important;
}

/* ==========================================================================
   INTERACTIVE DARK FLUID WAVE CANVAS BACKGROUND
   Deep blackish-blue with interactive mouse-driven ripples & light waves
   ========================================================================== */
html, body.enterprise-body {
  background-color: #06080f !important;
  color: #f1f5f9;
}

.interactive-dark-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #06080f;
}

#interactiveWaveCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Subtle micro-grid overlay for high-tech depth */
.dark-mesh-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,0.85) 0%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,0.85) 0%, transparent 85%);
}

/* Let the interactive wave canvas breathe through all content sections */
.enterprise-hero-agency,
.hero-dark {
  background: transparent !important;
}

.hero-dark-bg {
  opacity: 0.45;
}

.hero-dark::after {
  display: none !important;
}

/* Make calculator and lower sections transparent so the dark background flows continuously without cutting off */
.sector-pricing-section {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: transparent !important;
}

.section-padding:not(.sector-pricing-section):not(.section-alt) {
  background: transparent !important;
}

/* Card glassmorphism against the continuous dark canvas */
.main-tab,
.sector-card,
.faq-item,
.contact-enterprise-box,
.unselected-prompt-box,
.sector-calculator-box {
  background: rgba(11, 15, 26, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.main-tab:hover,
.sector-card:hover {
  background: rgba(16, 22, 38, 0.95) !important;
  border-color: rgba(96, 165, 250, 0.45) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(37, 99, 235, 0.2) !important;
}

.enterprise-footer {
  position: relative;
  z-index: 10 !important;
  background: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.95);
}

/* ==========================================================================
   PROMINENT INTERACTIVE SCROLL-DOWN BUTTON (DESKTOP & MOBILE)
   ========================================================================== */
.hero-scroll-indicator {
  grid-column: 1 / -1;
  margin: 32px auto 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.hero-scroll-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(96, 165, 250, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 99, 235, 0.2);
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.scroll-btn-halo {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.25), transparent 70%);
  opacity: 0.6;
  animation: pulseHalo 2.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes pulseHalo {
  0%, 100% { transform: scale(0.92); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

.scroll-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.scroll-btn-label {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.bounce-arrow {
  animation: bounceArrowAnim 1.8s infinite ease-in-out;
}

@keyframes bounceArrowAnim {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

.hero-scroll-btn:hover {
  background: rgba(30, 58, 138, 0.4);
  border-color: rgba(96, 165, 250, 0.8);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.45);
  transform: translateY(-3px) scale(1.02);
}

.hero-scroll-btn:hover .scroll-btn-icon {
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.8);
}

/* Trust strip tight & seamless */
.hero-trust-strip {
  margin-top: 10px !important;
  padding: 16px 0 24px !important;
  border-top: none !important;
  background: transparent !important;
}

.trust-strip-label {
  color: #64748b !important;
  letter-spacing: 1.5px;
  font-size: 10px;
}

.hero-dark .logo-item {
  color: #94a3b8 !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

/* ==========================================================================
   MODERN ENTERPRISE SERVICE CARDS & TECH PROMPT REFINEMENT
   ========================================================================== */

/* Grid container for 3 cards */
.main-service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* Individual service card */
.main-tab {
  position: relative;
  background: rgba(11, 16, 28, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 18px !important;
  padding: 22px 24px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 154px !important;
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.main-tab:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(96, 165, 250, 0.45) !important;
  background: rgba(16, 23, 40, 0.95) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 28px rgba(37, 99, 235, 0.22) !important;
}

.main-tab.active {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(15, 23, 42, 0.95)) !important;
  border-color: rgba(96, 165, 250, 0.8) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 32px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Card Top: Icon + Title + Tag */
.main-tab-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.tab-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.25);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.main-tab:hover .tab-icon-wrap {
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(96, 165, 250, 0.6);
  color: #93c5fd;
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.4);
}

.main-tab.active .tab-icon-wrap {
  background: #2563eb;
  border-color: #60a5fa;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

.tab-text {
  flex: 1;
  min-width: 0;
}

.tab-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.tab-title-row strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.2;
}

.tab-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.25);
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.tab-text span {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.45;
  display: block;
}

.main-tab.active .tab-text span {
  color: #cbd5e1;
}

/* Card Action: Interactive Click Indicator */
.tab-action-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.tab-click-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.28);
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.main-tab:hover .tab-click-indicator {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(96, 165, 250, 0.6);
  color: #ffffff;
  padding-left: 16px;
  padding-right: 16px;
}

.tab-click-indicator svg {
  transition: transform 0.25s ease;
}

.main-tab:hover .tab-click-indicator svg {
  transform: translateX(3px);
}

.main-tab.active .tab-click-indicator {
  background: #2563eb;
  border-color: #60a5fa;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.5);
}

/* ==========================================================================
   UNSELECTED PROMPT BOX (TECH HUD PLACEHOLDER)
   ========================================================================== */
.unselected-prompt-box {
  position: relative;
  background: rgba(10, 14, 25, 0.8) !important;
  border: 1px dashed rgba(96, 165, 250, 0.3) !important;
  border-radius: 24px !important;
  padding: 56px 36px 48px !important;
  text-align: center;
  margin-bottom: 48px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(37, 99, 235, 0.04) !important;
}

.prompt-glow-orb {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 180px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}

.prompt-icon-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(30, 58, 138, 0.35));
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.35);
  animation: promptBounce 2s infinite ease-in-out;
}

@keyframes promptBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.unselected-prompt-box h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.unselected-prompt-box p {
  font-size: 14.5px;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.unselected-prompt-box p strong {
  color: #cbd5e1;
}

.prompt-hint-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.prompt-hint-chips span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .main-service-tabs { grid-template-columns: 1fr; gap: 16px; }
  .main-tab { min-height: auto !important; }
}

/* ==========================================================================
   DISCOUNT COUPON INPUT & LIVE SUMMARY INTEGRATION
   ========================================================================== */
.summary-coupon-box {
  margin: 18px 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.coupon-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.coupon-label svg {
  color: #60a5fa;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input-group input {
  flex: 1;
  background: rgba(5, 8, 16, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  color: #f8fafc !important;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.2s ease;
}

.coupon-input-group input:focus {
  border-color: #3b82f6 !important;
  outline: none;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
}

.btn-apply-coupon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  padding: 0 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-apply-coupon:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
}

.coupon-feedback {
  margin-top: 8px;
  font-size: 11.5px;
  line-height: 1.4;
  display: none;
}

.coupon-feedback.success {
  display: block;
  color: #4ade80;
}

.coupon-feedback.err {
  display: block;
  color: #f87171;
}

/* Discount row highlight */
.summary-line-discount {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 8px;
  padding: 8px 12px !important;
  margin: 10px 0;
}

.summary-line-discount span {
  color: #4ade80 !important;
  font-weight: 600;
}

.summary-line-discount strong {
  color: #4ade80 !important;
  font-size: 16px !important;
  font-family: var(--font-mono);
}

/* ==========================================================================
   ADMIN FOOTER BUTTON & ADMIN MODAL DASHBOARD
   ========================================================================== */
.admin-panel-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 12px;
}

.admin-panel-footer-btn:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(96, 165, 250, 0.4);
  color: #f1f5f9;
}

/* Fullscreen Admin Modal Overlay */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal Window */
.admin-modal-window {
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  background: #090e1a;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(37, 99, 235, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: adminModalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes adminModalPop {
  0% { transform: scale(0.94) translateY(10px); }
  100% { transform: scale(1) translateY(0); }
}

/* Header */
.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.6);
}

.admin-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-shield-icon {
  font-size: 26px;
}

.admin-title-wrap h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 2px 0;
}

.admin-title-wrap p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.admin-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.admin-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.4);
}

/* Body Content */
.admin-modal-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sub cards inside modal */
.admin-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px;
}

.admin-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 16px 0;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-card-head h4 {
  margin: 0;
}

.coupon-live-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
}

/* Create Form */
.admin-coupon-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.admin-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-input-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.admin-input-group input,
.admin-input-group select {
  background: rgba(5, 8, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 9px 12px;
  color: #f8fafc;
  font-size: 13px;
}

.admin-input-group input:focus,
.admin-input-group select:focus {
  border-color: #3b82f6;
  outline: none;
}

.admin-submit-group {
  justify-content: flex-end;
}

.btn-create-coupon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 40px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-create-coupon:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-1px);
}

/* Table */
.admin-coupons-table-wrapper {
  overflow-x: auto;
}

.admin-coupons-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.admin-coupons-table th {
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-coupons-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.admin-code-tag {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 12px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.admin-val-badge {
  color: #4ade80;
  font-family: var(--font-mono);
}

.btn-toggle-coupon {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.btn-toggle-coupon.is-active {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.btn-toggle-coupon.is-inactive {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.btn-delete-coupon {
  background: transparent;
  border: none;
  font-size: 15px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.btn-delete-coupon:hover {
  opacity: 1;
  transform: scale(1.15);
}

.admin-info-bar {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 12px;
  color: #93c5fd;
  line-height: 1.5;
}

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

/* ==========================================================================
   PREMIUM CONTACT SECTION & DIRECT WHATSAPP INTEGRATION
   ========================================================================== */
.contact-premium-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}

.modern-contact-card {
  position: relative;
  background: rgba(10, 14, 26, 0.88) !important;
  border: 1px solid rgba(56, 189, 248, 0.22) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 35px rgba(37, 99, 235, 0.18) !important;
  border-radius: 28px !important;
  padding: 52px !important;
  display: grid !important;
  grid-template-columns: 1.15fr 1.35fr !important;
  gap: 56px !important;
  overflow: hidden;
}

/* Internal glass glow orbs */
.contact-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.35;
}
.contact-glow-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, #2563eb, transparent 70%);
}
.contact-glow-2 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, #059669, transparent 70%);
}

.c-box-left, .c-box-right {
  position: relative;
  z-index: 1;
}

/* Left column header & badge */
.contact-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  margin-bottom: 20px;
}

.pulse-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: pulseDot 2s infinite;
}

.contact-header-badge .badge-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7dd3fc;
}

.contact-main-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #f8fafc;
  margin-bottom: 16px;
}

.highlight-cyan {
  color: #38bdf8;
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.45);
}

.contact-sub-text {
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 28px;
}

.contact-sub-text strong {
  color: #e2e8f0;
}

/* Contact Channels (WhatsApp & Direct Call) */
.modern-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.contact-channel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.channel-whatsapp:hover {
  border-color: rgba(34, 197, 94, 0.55);
  background: rgba(6, 40, 22, 0.55);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.2);
}

.channel-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon-box.whatsapp-glow {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.channel-icon-box.phone-glow {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.channel-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.channel-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #94a3b8;
  margin-bottom: 2px;
}

.channel-whatsapp .channel-tag { color: #4ade80; }
.channel-phone .channel-tag { color: #60a5fa; }

.channel-value {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.channel-sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.channel-arrow {
  font-size: 18px;
  color: #64748b;
  transition: transform 0.2s, color 0.2s;
}

.contact-channel-card:hover .channel-arrow {
  transform: translateX(4px);
  color: #ffffff;
}

/* Location Strip */
.contact-location-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.loc-pin {
  color: #f43f5e;
  display: flex;
  align-items: center;
}

.loc-details {
  display: flex;
  flex-direction: column;
}

.loc-details strong {
  font-size: 13px;
  color: #e2e8f0;
}

.loc-details span {
  font-size: 12px;
  color: #94a3b8;
}

.contact-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #94a3b8;
}

.contact-trust-tags span {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Right Form Card Container */
.form-container-card {
  background: rgba(13, 18, 33, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.form-card-header {
  margin-bottom: 24px;
}

.form-card-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.form-card-header p {
  font-size: 13px;
  color: #94a3b8;
}

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

.modern-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.modern-form label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #cbd5e1;
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  background: rgba(6, 9, 18, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
  font-family: inherit;
}

.modern-form input:focus,
.modern-form textarea:focus {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2) !important;
  background: rgba(10, 15, 30, 0.95) !important;
}

/* Quick Service Selector Pills */
.quick-service-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: inherit;
}

.service-pill-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.service-pill-btn.active {
  background: rgba(37, 99, 235, 0.25);
  border-color: #3b82f6;
  color: #93c5fd;
  font-weight: 600;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.3);
}

/* Form Action Buttons */
.contact-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.btn-glow-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
}

.btn-glow-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.55);
  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
}

.btn-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #15803d, #16a34a);
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.28);
}

.btn-whatsapp-inline:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.45);
}

.modern-form .form-success-alert {
  margin-top: 14px;
  background: rgba(34, 197, 94, 0.15) !important;
  border: 1px solid rgba(34, 197, 94, 0.4) !important;
  color: #4ade80 !important;
  border-radius: 12px;
  padding: 14px;
  font-size: 13.5px;
  text-align: center;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (ALWAYS ACCESSIBLE, ULTRA SLEEK)
   ========================================================================== */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.floating-whatsapp-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.45), 0 0 20px rgba(34, 197, 94, 0.25);
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.28s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.65), 0 0 30px rgba(34, 197, 94, 0.4);
}

.wa-beacon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.6);
  animation: waPulseRing 2.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

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

.wa-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Tooltip on hover */
.wa-tooltip {
  position: absolute;
  right: 76px;
  background: rgba(10, 15, 28, 0.94);
  border: 1px solid rgba(34, 197, 94, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 16px;
  border-radius: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.floating-whatsapp-btn:hover .wa-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.wa-tooltip-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.wa-tooltip-text {
  font-size: 13px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
}

.wa-tooltip-text small {
  font-weight: 500;
  font-size: 11px;
  color: #86efac;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .modern-contact-card {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 36px 24px !important;
  }
}

@media (max-width: 640px) {
  .modern-form .form-row {
    grid-template-columns: 1fr;
  }
  .quick-service-pills {
    grid-template-columns: 1fr;
  }
  .contact-action-buttons {
    grid-template-columns: 1fr;
  }
  .floating-whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .floating-whatsapp-btn {
    width: 54px;
    height: 54px;
  }
  .wa-tooltip {
    display: none;
  }
}

/* ==========================================================================
   INNER CORPORATE PAGES STYLING (Hakkımızda, Neden Vero Yazılım?, Kariyer)
   ========================================================================== */

/* Inner Page Hero */
.inner-page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: radial-gradient(circle at 50% -20%, rgba(37, 99, 235, 0.22) 0%, rgba(8, 12, 20, 0.95) 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  text-align: center;
}

.inner-hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.breadcrumb-nav a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: #38bdf8;
}

.breadcrumb-sep {
  color: #475569;
}

.breadcrumb-current {
  color: #38bdf8;
  font-weight: 700;
}

.inner-hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.inner-hero-title .highlight-blue {
  background: linear-gradient(135deg, #00f2fe 0%, #38bdf8 50%, #168bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inner-hero-desc {
  font-size: clamp(16px, 1.8vw, 19px);
  color: #94a3b8;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* Corporate Story & Value Cards */
.corporate-section {
  padding: 90px 0;
  position: relative;
}

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

.corp-story-box h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.corp-story-box p {
  font-size: 15.5px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 18px;
}

.corp-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 16px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: rgba(11, 15, 25, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 26px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(30, 58, 138, 0.4));
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14.5px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Stats Counter Grid */
.corp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  margin-top: 60px;
}

.corp-stat-item {
  text-align: center;
}

.corp-stat-val {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.corp-stat-lbl {
  font-size: 13.5px;
  color: #94a3b8;
  font-weight: 600;
}

/* Tech Stack Ecosystem */
.tech-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.tech-eco-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s ease;
}

.tech-eco-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.tech-eco-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.tech-eco-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #f8fafc;
}

/* Why Us Comparison Matrix */
.why-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 42px;
}

.why-comparison-table th, 
.why-comparison-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-comparison-table th {
  background: rgba(15, 23, 42, 0.8);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.why-comparison-table th.highlight-col,
.why-comparison-table td.highlight-col {
  background: rgba(37, 99, 235, 0.08);
  color: #ffffff;
}

.why-comparison-table td {
  font-size: 14.5px;
  color: #cbd5e1;
}

.why-comparison-table tr:last-child td {
  border-bottom: none;
}

.feature-check {
  color: #4ade80;
  font-weight: 800;
}

.feature-cross {
  color: #f87171;
}

/* Career Positions Grid */
.job-openings-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 42px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 15, 25, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 32px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(16, 24, 39, 0.95);
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.job-info h3 {
  font-size: 18.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.job-tags-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.job-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.job-badge.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.job-badge.badge-green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

/* Quick Application Form */
.quick-apply-card {
  background: rgba(11, 15, 25, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  margin-top: 60px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .corp-grid-2col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .corp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tech-ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ==========================================================================
   BLOG & SEO KNOWLEDGE HUB STYLING (OBSIDIAN DARK & NEON ACCENTS)
   ========================================================================== */
.blog-section {
  position: relative;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(59, 130, 246, 0.15);
}

.blog-card-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.blog-card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.25), transparent 70%);
  transition: opacity 0.35s ease;
}

.blog-card:hover .blog-card-thumb::before {
  opacity: 1;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.4), transparent 70%);
}

.blog-thumb-icon {
  font-size: 54px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.blog-card:hover .blog-thumb-icon {
  transform: scale(1.15) rotate(3deg);
}

.blog-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  backdrop-filter: blur(8px);
}

.blog-badge-top.badge-seo {
  border-color: rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.blog-badge-top.badge-price {
  border-color: rgba(234, 179, 8, 0.4);
  color: #fde047;
}

.blog-badge-top.badge-shop {
  border-color: rgba(168, 85, 247, 0.4);
  color: #d8b4fe;
}

.blog-card-body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.blog-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #f8fafc;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.blog-card:hover .blog-title {
  color: #60a5fa;
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #38bdf8;
}

.blog-author-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 500;
}

.blog-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e3a8a;
  color: #93c5fd;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

/* Category Filter Bar on blog.html */
.blog-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 16px;
}

.blog-filter-btn {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.55);
  color: #60a5fa;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

/* Featured Hero Article Banner */
.blog-featured-hero {
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.8), rgba(9, 13, 22, 0.95));
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 24px;
  padding: 38px 42px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.blog-featured-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
  pointer-events: none;
}

.featured-article-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.featured-article-title {
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.3;
  color: #f8fafc;
  margin-bottom: 16px;
}

.featured-article-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 24px;
}

.featured-article-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #64748b;
}

/* Article Reader Modal / In-Page Reader */
.article-reader-box {
  background: rgba(11, 15, 25, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  padding: 42px;
  margin-top: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: none;
}

.article-reader-box.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.article-reader-box h3 {
  font-size: 24px;
  color: #f8fafc;
  margin: 28px 0 14px;
}

.article-reader-box p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.article-reader-box ul,
.article-reader-box ol {
  margin: 16px 0 24px 24px;
  color: #cbd5e1;
  line-height: 1.8;
}

.article-reader-box li {
  margin-bottom: 8px;
}

.article-keytakeaway {
  background: rgba(30, 58, 138, 0.25);
  border-left: 4px solid #3b82f6;
  border-radius: 0 14px 14px 0;
  padding: 18px 24px;
  margin: 24px 0;
  color: #bfdbfe;
  font-size: 15px;
}

.article-cta-strip {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 16px;
  padding: 24px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-featured-hero {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-featured-hero {
    padding: 24px 20px;
  }
  .featured-article-title {
    font-size: 22px;
  }
  .article-cta-strip {
    flex-direction: column;
    text-align: center;
  }
}


