/* ==========================================================================
   GROWTH PE CHARCHA — DESIGN SYSTEM & STYLESHEET
   Clean Light / White Theme with Brand Orange & Gold Accents
   ========================================================================== */

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

:root {
  /* Brand Palette — Derived from Official Growth Pe Charcha Logo */
  --primary: #FF6B1A;
  --primary-hover: #E8590C;
  --primary-dark: #C2410C;
  --primary-light: #FFF7ED;
  --primary-50: #FFF1E6;
  --primary-glow: rgba(255, 107, 26, 0.28);
  
  /* Secondary Color: Royal Navy Blue (Exact shade from 'PE' & logo chat bubble dots) */
  --secondary: #233876;
  --secondary-hover: #1A2B5E;
  --secondary-dark: #121D40;
  --secondary-light: #EEF2FF;
  --secondary-glow: rgba(35, 56, 118, 0.28);
  
  --accent-gold: #F59E0B;
  --accent-gold-light: #FEF3C7;
  --accent-emerald: #10B981;
  --accent-emerald-light: #ECFDF5;

  /* Neutrals (Light Clean Theme) */
  --dark: #0F172A;
  --dark-soft: #1E293B;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --bg-page: #FAFAFD;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-elevated: #FFFFFF;

  --border-color: #E2E8F0;
  --border-subtle: #F1F5F9;
  --border-focus: #FF6B1A;

  /* Elevation & Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 20px -3px rgba(15, 23, 42, 0.07), 0 2px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 18px 40px -8px rgba(15, 23, 42, 0.09), 0 6px 14px -3px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.14);
  --shadow-glow: 0 12px 32px -4px var(--primary-glow);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE TYPOGRAPHY
   ========================================================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.24) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 140%;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A3D 100%);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-glow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -4px rgba(255, 107, 26, 0.45);
  background: linear-gradient(135deg, var(--primary-hover) 0%, #FF7626 100%);
}

.btn-secondary {
  background: var(--secondary-light);
  color: var(--secondary) !important;
  border: 1.5px solid rgba(35, 56, 118, 0.2);
  box-shadow: var(--shadow-xs);
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px var(--secondary-glow);
}

.btn-white {
  background: #FFFFFF;
  color: var(--primary) !important;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  box-shadow: 0 10px 24px -4px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(37, 211, 102, 0.5);
}

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

.btn-lg {
  padding: 16px 34px;
  font-size: 16.5px;
}

/* Eyebrow / Badges */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  border: 1px solid rgba(255, 107, 26, 0.25);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-blue,
.eyebrow-purple {
  background: var(--secondary-light);
  border-color: rgba(35, 56, 118, 0.22);
  color: var(--secondary);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-subtle);
  color: var(--text-muted);
}

/* Section Common Header */
.section {
  padding: 96px 0;
  position: relative;
}

.section-tight {
  padding: 64px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head.text-left {
  text-align: left;
  margin: 0 0 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-head h2 span {
  color: var(--primary);
  position: relative;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition);
}

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

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

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

.brand-logo .brand-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-logo .brand-title span {
  color: var(--primary);
}

.brand-logo .brand-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px;
  flex-direction: column;
  justify-content: space-around;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-menu {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-smooth), opacity var(--transition), visibility var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.mobile-nav-list a {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-list a.active {
  color: var(--primary);
}

.mobile-contact-strip {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-page);
  border-radius: var(--radius-md);
}

.mobile-contact-strip p {
  font-size: 13.5px;
  margin-bottom: 6px;
}

.mobile-contact-strip a {
  color: var(--dark);
  font-weight: 600;
}

/* ==========================================================================
   PAGE HERO (SUBPAGES)
   ========================================================================== */

.page-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-page) 100%);
  padding: 72px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, rgba(91,47,224,0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
  margin: 12px 0 16px;
  color: var(--dark);
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--text-muted);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 10px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

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

.breadcrumbs .sep {
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   HOME HERO SECTION
   ========================================================================== */

#home-hero {
  padding: 48px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, rgba(255, 107, 26, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 15% 80%, rgba(91, 47, 224, 0.05) 0%, transparent 45%),
              #FFFFFF;
  border-bottom: 1px solid var(--border-color);
}

.home-hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.home-hero-left h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--dark);
}

.home-hero-left h1 .highlight-orange {
  color: var(--primary);
}

.home-hero-left .hero-sub {
  font-size: 1.15rem;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 540px;
}

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

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark-soft);
}

.hero-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* Hero Art Interactive */
.hero-art-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 107, 26, 0.25);
  animation: rotateClockwise 40s linear infinite;
}

.hero-ring-1 {
  width: 100%;
  height: 100%;
}

.hero-ring-2 {
  width: 72%;
  height: 72%;
  border-color: rgba(35, 56, 118, 0.25);
  animation: rotateCounterClockwise 32s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes coreBadgeFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 20px 45px -10px rgba(255, 107, 26, 0.5), 0 4px 14px rgba(35, 56, 118, 0.15);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -8px rgba(255, 107, 26, 0.65), 0 0 26px rgba(35, 56, 118, 0.25);
  }
}

.hero-core-badge {
  position: relative;
  z-index: 10;
  width: 126px;
  height: 126px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, #E8590C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 48px -8px rgba(255, 107, 26, 0.58), 0 4px 14px rgba(35, 56, 118, 0.16);
  border: 4px solid #FFFFFF;
  padding: 14px;
  animation: coreBadgeFloat 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.38s ease;
}

.hero-core-badge:hover {
  transform: translateY(-8px) scale(1.08);
}

.hero-core-badge img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.22));
}

/* ==========================================================================
   ULTRA-PREMIUM CIRCULAR SERVICE ORBIT & POP SYSTEM
   ========================================================================== */

/* 1. Ambient Center Halos */
.hero-center-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  margin-top: -110px;
  margin-left: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.28) 0%, rgba(35, 56, 118, 0.18) 55%, transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 4;
}

.hero-center-halo.halo-pulse {
  animation: haloPulseWave 4.5s ease-in-out infinite;
}

@keyframes haloPulseWave {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.85;
  }
}

/* 2. Inner Concentric Guide Ring */
.services-orbit-ring-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  border-radius: 50%;
  border: 1px dotted rgba(35, 56, 118, 0.18);
  pointer-events: none;
  z-index: 6;
}

/* 3. Main Rotating Orbit Ring (Spacious 470px Diameter with Generous Clearance) */
.services-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 470px;
  height: 470px;
  margin-top: -235px;
  margin-left: -235px;
  border-radius: 50%;
  border: 1.5px dashed rgba(35, 56, 118, 0.22);
  box-shadow: 0 0 45px rgba(255, 107, 26, 0.07), inset 0 0 35px rgba(35, 56, 118, 0.05);
  animation: rotateOrbitRing 50s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: animation-play-state 0.35s ease;
  z-index: 8;
  pointer-events: auto;
}

/* Glowing Satellite Beacon on Orbit Track */
.services-orbit-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px 3px var(--primary), 0 0 20px 6px rgba(255, 107, 26, 0.45);
}

.services-orbit-ring:hover {
  animation-play-state: paused;
}

.services-orbit-ring:hover .orbit-counter-wrap,
.services-orbit-ring:hover .orbit-badge-card {
  animation-play-state: paused;
}

@keyframes rotateOrbitRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterRotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* 4. Node Coordinates: 5 Major Services with 72° Spacing & Ample Clearance */
.orbit-node {
  position: absolute;
  text-decoration: none;
  z-index: 12;
  cursor: pointer;
  will-change: transform;
}

.node-major-1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.node-major-2 { top: 34.5%; left: 97.5%; transform: translate(-50%, -50%); }
.node-major-3 { top: 90.5%; left: 79.4%; transform: translate(-50%, -50%); }
.node-major-4 { top: 90.5%; left: 20.6%; transform: translate(-50%, -50%); }
.node-major-5 { top: 34.5%; left: 2.5%; transform: translate(-50%, -50%); }

/* 6-node fallback compatibility */
.node-pos-1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
.node-pos-2 { top: 25%; left: 93%; transform: translate(-50%, -50%); }
.node-pos-3 { top: 75%; left: 93%; transform: translate(-50%, -50%); }
.node-pos-4 { top: 100%; left: 50%; transform: translate(-50%, -50%); }
.node-pos-5 { top: 75%; left: 7%; transform: translate(-50%, -50%); }
.node-pos-6 { top: 25%; left: 7%; transform: translate(-50%, -50%); }

/* 5. Counter-Rotation Layer (Ensures 100% Horizontal Upright Orientation) */
.orbit-counter-wrap {
  animation: counterRotateBadge 50s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  display: block;
}

/* 6. Ultra-Silky Glassmorphic Orbit Cards */
.orbit-badge-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 8px 22px -4px rgba(15, 23, 42, 0.09), 0 2px 6px rgba(35, 56, 118, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: serviceBadgePop 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform, box-shadow;
  transform: translate3d(0, 0, 0);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.36s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease;
}

/* Synchronized Silk Staggered Delays (1.0s interval across 5 major services) */
.pop-stagger-1 { animation-delay: 0s; }
.pop-stagger-2 { animation-delay: 1.0s; }
.pop-stagger-3 { animation-delay: 2.0s; }
.pop-stagger-4 { animation-delay: 3.0s; }
.pop-stagger-5 { animation-delay: 4.0s; }
.pop-stagger-6 { animation-delay: 4.5s; }

@keyframes serviceBadgePop {
  0%, 100% {
    transform: scale(1) translateY(0);
    box-shadow: 0 8px 22px -4px rgba(15, 23, 42, 0.09), 0 2px 6px rgba(35, 56, 118, 0.05);
    border-color: rgba(255, 255, 255, 0.9);
  }
  50% {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 18px 36px -6px rgba(255, 107, 26, 0.34), 0 6px 18px rgba(35, 56, 118, 0.16);
    border-color: rgba(255, 107, 26, 0.5);
  }
}

.orbit-badge-card:hover {
  transform: scale(1.18) translateY(-6px) !important;
  box-shadow: 0 22px 48px -6px rgba(35, 56, 118, 0.32), 0 8px 20px rgba(255, 107, 26, 0.25);
  border-color: var(--secondary);
}

.orbit-card-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.orbit-card-text {
  display: flex;
  flex-direction: column;
}

.orbit-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--dark);
  line-height: 1.2;
}

.orbit-card-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.orbit-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: 2px;
  flex-shrink: 0;
}

.dot-orange {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.dot-blue {
  background: var(--secondary);
  box-shadow: 0 0 8px var(--secondary);
}

.dot-emerald {
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.dot-gold {
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.orbit-badge-card.tag-orange { border-left: 3px solid var(--primary); }
.orbit-badge-card.tag-blue { border-left: 3px solid var(--secondary); }
.orbit-badge-card.tag-emerald { border-left: 3px solid var(--accent-emerald); }
.orbit-badge-card.tag-gold { border-left: 3px solid var(--accent-gold); }

/* Central Badge Extended Details */
.badge-brand-title {
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  margin-top: 6px;
  line-height: 1.2;
}

.badge-brand-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Dark Theme Support */
body.dark-theme .orbit-badge-card {
  background: rgba(14, 23, 46, 0.94);
  border-color: rgba(30, 46, 92, 0.85);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

body.dark-theme .orbit-card-title {
  color: #F8FAFC;
}

body.dark-theme .orbit-card-icon-wrap {
  background: #142247;
  border-color: #1E2E5C;
}

/* Fallback / legacy class */
.float-tag { display: none; }

/* ==========================================================================
   STATS COUNTER STRIP
   ========================================================================== */

.stats-strip {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  padding: 44px 0;
}

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

.stat-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  border-right: 1px solid var(--border-color);
}

.stat-box:last-child {
  border-right: none;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.stat-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-info p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES GRID & CARDS
   ========================================================================== */

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

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.4);
  box-shadow: var(--shadow-lg);
}

.service-card .svc-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: all var(--transition);
}

.service-card:hover .svc-icon-wrap {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 22px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.service-features-list li .tick {
  color: var(--accent-emerald);
  font-weight: bold;
}

.service-card .service-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-card .service-link:hover {
  gap: 10px;
}

/* ==========================================================================
   INTEGRATED MARKETING ECOSYSTEM (SERVICES.HTML)
   ========================================================================== */
.integrated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

.integrated-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.integrated-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 26, 0.35);
}

.integrated-card-icon {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  word-break: break-word;
}

.integrated-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.integrated-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991px) {
  .integrated-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .integrated-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .integrated-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }
  .integrated-card-icon {
    font-size: 1.2rem;
  }
}

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

@media (max-width: 640px) {
  .form-grid-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.highlights-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .highlights-grid-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ==========================================================================
   ABOUT PREVIEW / STORY SECTION
   ========================================================================== */

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

.about-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin: 12px 0 20px;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 15.5px;
}

.feature-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 34px;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-soft);
}

.feature-check-item .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.about-visual-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-visual-card .stats-badge-float {
  position: absolute;
  top: -20px;
  right: 30px;
  background: var(--dark);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-visual-card .stats-badge-float span {
  color: var(--primary);
  font-size: 20px;
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

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

.step-number {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-light);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 10px auto 18px;
}

.process-step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   PORTFOLIO SECTION & CARDS
   ========================================================================== */

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

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

.portfolio-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 26, 0.35);
}

.portfolio-media {
  position: relative;
  background: #F1F5F9;
  height: 210px;
  overflow: hidden;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.06);
}

.portfolio-tag-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--dark);
  border: 1px solid var(--border-color);
}

.portfolio-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.portfolio-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.portfolio-metric {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.metric-lbl {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

/* ==========================================================================
   PRICING PLANS & TOGGLE
   ========================================================================== */

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.pricing-toggle-container {
  display: inline-flex;
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 5px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.pricing-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(33.333% - 3.33px);
  height: calc(100% - 10px);
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition);
  box-shadow: var(--shadow-glow);
}

.pricing-opt-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-main);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-opt-btn.active {
  color: #FFFFFF;
}

.discount-pill {
  background: #FEF3C7;
  color: #B45309;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  border: 1px solid #FDE68A;
}

.pricing-opt-btn.active .discount-pill {
  background: #FFFFFF;
  color: var(--primary);
  border-color: #FFFFFF;
}

.yearly-bonus-banner {
  max-width: 820px;
  margin: 0 auto 48px;
  background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 100%);
  border: 1px dashed var(--primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14.5px;
  color: #9A3412;
  display: none;
}

.yearly-bonus-banner.show {
  display: block;
}

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

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

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

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A3D 100%);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-header .plan-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.plan-strike {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 6px;
}

.pricing-amount-row .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-amount-row .duration {
  font-size: 14px;
  color: var(--text-muted);
}

.save-pill-note {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-emerald);
  margin-bottom: 16px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  min-height: 48px;
}

.plan-features-list {
  margin-bottom: 34px;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.5;
}

.plan-features-list li .plan-check {
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
}

/* Comparison Table */
.comparison-wrap {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 48px;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row.head {
  background: #F8FAFC;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}

.compare-row .col-gpc {
  color: var(--primary);
  font-weight: 600;
  text-align: center;
}

.compare-row .col-others {
  color: var(--text-light);
  text-align: center;
}

.compare-icon-yes {
  color: var(--accent-emerald);
  font-size: 18px;
  font-weight: 800;
}

.compare-icon-no {
  color: #EF4444;
  font-size: 16px;
  font-weight: 700;
}

/* ==========================================================================
   INTERACTIVE ROI & GROWTH CALCULATOR
   ========================================================================== */

.roi-calculator-wrap {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 48px;
}

.calc-inputs-pane {
  padding: 48px 44px;
}

.calc-group {
  margin-bottom: 32px;
}

.calc-group:last-child {
  margin-bottom: 0;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 14px;
}

.calc-val-display {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #E2E8F0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  accent-color: var(--primary);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(255, 107, 26, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

.budget-presets-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.budget-preset-btn {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.budget-preset-btn:hover,
.budget-preset-btn.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.calc-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.calc-pill-opt {
  background: var(--bg-page);
  border: 1.5px solid var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.calc-pill-opt:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.calc-pill-opt.active {
  background: var(--secondary-light);
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 2px 8px var(--secondary-glow);
}

.calc-results-pane {
  background: linear-gradient(135deg, #0A1128 0%, #172554 60%, #1E3A8A 100%);
  padding: 48px 40px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.calc-results-pane::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.calc-results-head span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.calc-results-head h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 24px;
}

.result-stat-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.result-stat-box .res-lbl {
  font-size: 12px;
  color: #94A3B8;
  display: block;
  margin-bottom: 4px;
}

.result-stat-box .res-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.result-stat-box .res-num.highlight {
  color: #FF8A3D;
}

.calc-cta-btn {
  width: 100%;
  margin-top: 18px;
  box-shadow: 0 12px 28px rgba(255, 107, 26, 0.4);
}

/* ==========================================================================
   FREE 15-POINT AUDIT LEAD STRIP
   ========================================================================== */

.free-audit-strip {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border-radius: var(--radius-xl);
  padding: 38px 44px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-strip-left {
  max-width: 480px;
}

.audit-strip-left h3 {
  color: #FFFFFF;
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.audit-strip-left p {
  color: #94A3B8;
  font-size: 14px;
}

.audit-strip-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  max-width: 520px;
}

.audit-strip-form input {
  flex: 1;
  min-width: 200px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--dark);
  outline: none;
}

.audit-strip-form input:focus {
  border-color: var(--primary);
}

/* ==========================================================================
   DARK THEME SYSTEM TOKENS
   ========================================================================== */

body.dark-theme {
  --dark: #F8FAFC;
  --dark-soft: #E2E8F0;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-light: #64748B;

  --bg-page: #060B19;
  --bg-surface: #0C142A;
  --bg-subtle: #111D3D;
  --bg-elevated: #14224A;

  --border-color: #1A2850;
  --border-subtle: #142247;

  background-color: var(--bg-page);
  color: var(--text-main);
}

body.dark-theme .site-header {
  background: rgba(12, 20, 42, 0.95);
  border-color: var(--border-color);
}

body.dark-theme .site-header.scrolled {
  background: rgba(7, 13, 27, 0.95);
}

body.dark-theme .service-card,
body.dark-theme .portfolio-card,
body.dark-theme .pricing-card,
body.dark-theme .blog-card,
body.dark-theme .culture-card,
body.dark-theme .contact-card-form,
body.dark-theme .contact-info-card,
body.dark-theme .founder-card,
body.dark-theme .faq-item,
body.dark-theme .stat-box,
body.dark-theme .roi-calculator-wrap,
body.dark-theme .comparison-wrap {
  background: var(--bg-surface);
  border-color: var(--border-color);
}

body.dark-theme .pricing-card .pricing-header .plan-title,
body.dark-theme .founder-content h3,
body.dark-theme .faq-question span,
body.dark-theme .calc-label,
body.dark-theme .calc-pill-opt,
body.dark-theme .nav-link {
  color: #F8FAFC;
}

body.dark-theme .pricing-toggle-container {
  background: var(--bg-subtle);
  border-color: var(--border-color);
}

body.dark-theme .pricing-opt-btn {
  color: #CBD5E1;
}

body.dark-theme .calc-slider {
  background: var(--bg-subtle);
}

body.dark-theme .calc-pill-opt {
  background: var(--bg-subtle);
  border-color: var(--border-color);
}

body.dark-theme .compare-row.head {
  background: var(--bg-subtle);
  color: #F8FAFC;
}

body.dark-theme .mobile-menu {
  background: var(--bg-surface);
  border-color: var(--border-color);
}

body.dark-theme .mobile-nav-list a {
  color: #F8FAFC;
  border-color: var(--border-subtle);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  font-size: 16px;
  transition: all var(--transition-fast);
  margin-right: 8px;
}

.theme-toggle-btn:hover {
  background: var(--secondary-light);
  border-color: var(--secondary);
  transform: rotate(18deg);
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */

.testimonials-section {
  background: linear-gradient(180deg, var(--bg-page) 0%, #FFFFFF 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonial-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  padding: 40px 20px;
}

.testimonial-slide {
  display: none;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-quote-mark {
  font-size: 54px;
  line-height: 1;
  color: var(--primary);
  font-family: 'Outfit', serif;
  margin-bottom: 16px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author .name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
}

.testimonial-author .role {
  font-size: 13.5px;
  color: var(--text-muted);
}

.testimonial-nav-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--dark);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.slider-arrow-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   BLOG CARDS & GRID
   ========================================================================== */

.blog-featured-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 48px;
  transition: all var(--transition);
}

.blog-featured-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 26, 0.35);
}

.blog-featured-media {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  min-height: 280px;
}

.blog-featured-media .feat-icon-badge {
  font-size: 54px;
}

.blog-featured-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.blog-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 26, 0.35);
}

.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

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

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-cat-badge {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11.5px;
}

.blog-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   CONTACT US FORM & INFO
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card-form {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact-card-form h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.contact-card-form p {
  margin-bottom: 28px;
  font-size: 14.5px;
}

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

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group label span {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 14.5px;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.18);
}

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

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

.contact-info-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.contact-card-body p {
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-card-body a {
  color: var(--primary);
  font-weight: 600;
}

.map-card-embed {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  height: 240px;
}

.map-card-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.faq-tab-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-tab-btn.active,
.faq-tab-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #FFFFFF;
}

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

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.25s ease;
}

/* ==========================================================================
   CAREERS SECTION & JOBS
   ========================================================================== */

.careers-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.culture-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition);
}

.culture-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.culture-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}

.culture-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.culture-card p {
  font-size: 14px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.job-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-xs);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}

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

.job-details h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

/* ==========================================================================
   CALL TO ACTION BANNER (BOTTOM OF PAGES)
   ========================================================================== */

.cta-banner-section {
  padding: 72px 0;
}

.cta-banner-box {
  background: linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-box h2 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner-box h2 span {
  color: var(--primary);
}

.cta-banner-box p {
  color: #CBD5E1;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 34px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.cta-actions .btn {
  max-width: 100%;
}

@media (max-width: 768px) {
  .cta-banner-section {
    padding: 48px 0;
  }

  .cta-banner-box {
    padding: 44px 22px;
    border-radius: var(--radius-lg);
  }

  .cta-banner-box h2 {
    font-size: clamp(1.65rem, 5.5vw, 2.2rem);
  }

  .cta-banner-box p {
    font-size: 14.5px;
    margin-bottom: 26px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.35;
    box-sizing: border-box;
    word-break: break-word;
    display: inline-flex;
    justify-content: center;
    border-radius: var(--radius-md);
  }
}

@media (max-width: 480px) {
  .cta-banner-box {
    padding: 36px 16px;
    border-radius: var(--radius-md);
  }

  .cta-banner-box h2 {
    font-size: 1.45rem;
  }

  .cta-banner-box p {
    font-size: 13.5px;
    margin-bottom: 20px;
  }

  .cta-actions .btn {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #0B1120;
  color: #94A3B8;
  padding: 80px 0 36px;
  border-top: 1px solid #1E293B;
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr 1.2fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand img {
  height: 42px;
  margin-bottom: 18px;
}

.footer-brand .footer-tagline {
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

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

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

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #CBD5E1;
}

.footer-contact-item .footer-ic {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1E293B;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-social-icon:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #94A3B8;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Footer Newsletter / Free Audit CTA Column */
.footer-newsletter-col .footer-newsletter-desc {
  color: #94A3B8;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-newsletter-input {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 10px 14px;
  color: #CBD5E1;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter-input::placeholder {
  color: #64748B;
}

.footer-newsletter-input:focus {
  border-color: var(--primary);
}

.footer-newsletter-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #5b21b6));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}

.footer-newsletter-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.footer-wa-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-wa-link:hover {
  opacity: 0.8;
}

.footer-wa-link svg {
  width: 18px;
  height: 18px;
  fill: #25D366;
  flex-shrink: 0;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Fixed Bottom-Right)
   ========================================================================== */

.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  transition: transform var(--transition-fast);
}

.whatsapp-float-btn:hover {
  background: #20BA5A;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #EF4444;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  animation: pulseBadge 2.2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* WhatsApp Mini-Chat Popup Widget */
.whatsapp-chat-widget {
  position: fixed;
  bottom: 98px;
  right: 28px;
  width: 345px;
  max-width: calc(100vw - 32px);
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 24px 60px -10px rgba(15, 23, 42, 0.25), 0 8px 24px -4px rgba(37, 211, 102, 0.15);
  border: 1px solid var(--border-color);
  overflow: hidden;
  z-index: 9999;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease, visibility 0.28s ease;
}

.whatsapp-chat-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.chat-widget-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 16px 18px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-agent-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FFFFFF;
  flex-shrink: 0;
}

.chat-agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-agent-avatar .status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #25D366;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

.chat-agent-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.chat-agent-status {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
  padding: 4px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.chat-close-btn:hover {
  opacity: 1;
}

.chat-widget-body {
  background: #EFEAE2;
  padding: 18px 16px;
  max-height: 320px;
  overflow-y: auto;
  position: relative;
}

.chat-bubble-msg {
  background: #FFFFFF;
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--dark);
  line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
  position: relative;
}

.chat-bubble-msg .chat-time {
  display: block;
  text-align: right;
  font-size: 10.5px;
  color: #8696A0;
  margin-top: 4px;
}

.chat-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}

.chat-quick-chip {
  background: #FFFFFF;
  border: 1px solid #D1D7DB;
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #111B21;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.chat-quick-chip:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateX(3px);
}

.chat-widget-footer {
  background: #F0F2F5;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-input-field {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #D1D7DB;
  border-radius: var(--radius-full);
  padding: 9px 16px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
}

.chat-input-field:focus {
  border-color: #25D366;
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chat-send-btn:hover {
  background: #20BA5A;
  transform: scale(1.06);
}

.chat-send-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transform: translateX(1px);
}

@media (max-width: 640px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float-btn svg {
    width: 27px;
    height: 27px;
  }

  .whatsapp-chat-widget {
    bottom: 82px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

/* ==========================================================================
   FOUNDER & ABOUT PAGE EXTENDED STYLES
   ========================================================================== */

.founder-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  margin-bottom: 72px;
}

.founder-visual {
  position: relative;
  min-height: 520px;
  background: #0F172A;
  overflow: hidden;
}

.founder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.founder-visual:hover img {
  transform: scale(1.03);
}

.founder-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 80%);
}

.founder-visual-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  color: #FFFFFF;
}

.founder-visual-caption .name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.founder-visual-caption .role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: uppercase;
}

.founder-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-content h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  margin-bottom: 20px;
  line-height: 1.25;
}

.founder-content h3 span {
  color: var(--primary);
}

.founder-bio p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
}

.credentials-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-soft);
}

.cred-chip svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.founder-quote-box {
  border-left: 3px solid var(--primary);
  padding-left: 18px;
  margin-top: 12px;
}

.founder-quote-box p {
  font-family: 'Outfit', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 6px;
}

.founder-quote-box span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Mission Banner */
.mission-box {
  background: linear-gradient(135deg, #0A1128 0%, #172554 50%, #1E3A8A 100%);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px -10px rgba(23, 37, 84, 0.45), 0 6px 18px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-box::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mission-box::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(35, 56, 118, 0.7) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mission-left h3 {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  line-height: 1.3;
}

.mission-left h3 span {
  color: var(--primary);
}

.mission-right p {
  color: #CBD5E1;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.mission-right p:last-child {
  margin-bottom: 0;
}

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

.value-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative;
}

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

.value-card .value-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.value-card .val-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Journey Timeline */
.journey-timeline {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.35;
}

.timeline-item {
  position: relative;
  padding-left: 74px;
  margin-bottom: 38px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
  border-color: var(--secondary);
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: inline-block;
}

.timeline-item:nth-child(even) .timeline-year {
  color: var(--secondary);
}

.timeline-item h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.timeline-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   SMOOTH & CLEAN ANIMATION SYSTEM
   ========================================================================== */

/* 1. Scroll-Triggered Reveal Transitions */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delay Classes */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* 2. Ultra-Smooth Card Hover Micro-Interactions */
.service-card,
.portfolio-card,
.pricing-card,
.value-card,
.blog-card,
.culture-card,
.contact-info-card,
.contact-card-form,
.stat-box {
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.36s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.09), 0 4px 14px -2px rgba(35, 56, 118, 0.08);
  border-color: rgba(35, 56, 118, 0.25);
}

.service-card:hover .svc-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-icon-wrap {
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px -8px rgba(15, 23, 42, 0.12), 0 6px 18px -4px rgba(35, 56, 118, 0.1);
  border-color: rgba(35, 56, 118, 0.22);
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.06);
}

.portfolio-media img {
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -6px rgba(35, 56, 118, 0.12);
  border-color: rgba(35, 56, 118, 0.3);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px -8px rgba(15, 23, 42, 0.1);
  border-color: rgba(35, 56, 118, 0.2);
}

.culture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(35, 56, 118, 0.06);
  border-color: rgba(35, 56, 118, 0.22);
}

/* 3. Form Input Smooth Focus */
.form-control {
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(35, 56, 118, 0.14);
}

/* 4. Filter Buttons & Tabs Micro-Animation */
.filter-btn,
.faq-tab-btn {
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover:not(.active),
.faq-tab-btn:hover:not(.active) {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.filter-btn.active,
.faq-tab-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #FFFFFF;
  box-shadow: 0 6px 18px -2px var(--secondary-glow);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1080px) {
  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .careers-culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-box:nth-child(2) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 868px) {
  .nav-links,
  .header-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .home-hero-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-visual {
    min-height: 380px;
  }

  .founder-content {
    padding: 36px 28px;
  }

  .mission-box {
    grid-template-columns: 1fr;
    padding: 38px 28px;
    gap: 24px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .roi-calculator-wrap {
    grid-template-columns: 1fr;
  }

  .calc-inputs-pane {
    padding: 32px 24px;
  }

  .calc-results-pane {
    padding: 36px 24px;
  }

  .free-audit-strip {
    padding: 30px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .audit-strip-form {
    width: 100%;
    max-width: 100%;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 14px 18px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .careers-culture-grid,
  .stats-grid,
  .process-steps,
  .calc-pills-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding-left: 56px;
  }

  .timeline-dot {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }

  .stat-box:last-child {
    border-bottom: none;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .hero-art-container {
    max-width: 320px;
    height: 320px;
    margin: 24px auto 0 auto;
  }

  .hero-core-badge {
    width: 110px;
    height: 110px;
    padding: 10px;
    border-radius: 24px;
  }

  .hero-core-badge img {
    width: 48px;
    height: 48px;
  }

  .hero-core-badge span {
    font-size: 9.5px;
  }

  .services-orbit-ring {
    width: 290px;
    height: 290px;
    margin-top: -145px;
    margin-left: -145px;
  }

  .services-orbit-ring-inner {
    width: 190px;
    height: 190px;
    margin-top: -95px;
    margin-left: -95px;
  }

  .hero-center-halo {
    width: 160px;
    height: 160px;
    margin-top: -80px;
    margin-left: -80px;
  }

  .orbit-badge-card {
    padding: 5px 9px;
    border-radius: 12px;
    gap: 6px;
  }

  .orbit-card-icon-wrap {
    width: 24px;
    height: 24px;
    font-size: 11px;
    border-radius: 6px;
  }

  .orbit-card-title {
    font-size: 10px;
  }

  .orbit-card-sub {
    display: none;
  }

  .orbit-card-dot {
    width: 5px;
    height: 5px;
  }
}

/* ==========================================================================
   ULTRA-SMOOTH CONSUMER EXPERIENCE & CONVERSION SYSTEM
   ========================================================================== */

/* 1. Top Reading Scroll Progress Bar */
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--primary) 0%, #FF8A3D 50%, var(--secondary) 100%);
  z-index: 10001;
  transition: width 0.08s ease-out;
  box-shadow: 0 0 10px rgba(255, 107, 26, 0.6);
}

/* 2. Ambient Cursor Light Glow Follower */
#ambientCursorGlow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.08) 0%, rgba(35, 56, 118, 0.05) 50%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9990;
  transition: opacity 0.4s ease;
  filter: blur(28px);
  opacity: 0;
}

body.dark-theme #ambientCursorGlow {
  background: radial-gradient(circle, rgba(255, 107, 26, 0.16) 0%, rgba(35, 56, 118, 0.18) 50%, transparent 70%);
}

@media (hover: none) {
  #ambientCursorGlow { display: none !important; }
}

/* 3. Floating Smooth Back-to-Top Rocket Button */
#backToTopBtn {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 50%;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#backToTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTopBtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.4);
}

#backToTopBtn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.dark-theme #backToTopBtn {
  background: var(--bg-surface);
  border-color: var(--border-color);
  color: #FFFFFF;
}

@media (max-width: 640px) {
  #backToTopBtn {
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* 4. Live Social Proof & Activity Toast (High Consumer Trust) */
#liveSocialProofToast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  max-width: 370px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.16), 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9995;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

#liveSocialProofToast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
  font-size: 13px;
  line-height: 1.35;
  color: var(--dark);
}

.toast-content strong {
  display: block;
  font-size: 13.5px;
  color: var(--dark);
  margin-bottom: 2px;
}

.toast-time {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.toast-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 2px 4px;
  line-height: 1;
}

.toast-close-btn:hover {
  color: var(--dark);
}

body.dark-theme #liveSocialProofToast {
  background: var(--bg-surface);
  border-color: var(--border-color);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

body.dark-theme .toast-content,
body.dark-theme .toast-content strong {
  color: #F8FAFC;
}

@media (max-width: 640px) {
  #liveSocialProofToast {
    bottom: 78px;
    left: 16px;
    right: 76px;
    max-width: none;
    padding: 10px 12px;
  }
  .toast-icon-badge {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .toast-content {
    font-size: 12px;
  }
}

/* 5. Interactive "Before vs After" Transformation Box */
.transformation-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 48px auto 0 auto;
  max-width: 960px;
}

.transformation-tabs-row {
  display: flex;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-color);
  padding: 8px;
  gap: 8px;
}

.trans-tab-btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
}

.trans-tab-btn.active {
  background: #FFFFFF;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trans-tab-btn.tab-gpc.active {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(255, 107, 26, 0.4);
}

.transformation-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 36px 32px;
}

.trans-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.trans-card .metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
  display: block;
}

.trans-card .metric-lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: block;
}

.trans-card .metric-desc {
  font-size: 13px;
  color: var(--text-main);
  margin-top: 8px;
  line-height: 1.45;
}

.trans-card.success .metric-val {
  color: var(--primary);
}

.trans-card.problem .metric-val {
  color: #EF4444;
}

body.dark-theme .transformation-box {
  background: var(--bg-surface);
  border-color: var(--border-color);
}

body.dark-theme .transformation-tabs-row {
  background: var(--bg-subtle);
}

body.dark-theme .trans-tab-btn.active:not(.tab-gpc) {
  background: var(--bg-surface);
  color: #FFFFFF;
}

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

@media (max-width: 540px) {
  .transformation-content-grid {
    grid-template-columns: 1fr;
  }
}

/* 6. FAQ Quick Search Bar */
.faq-search-wrap {
  max-width: 600px;
  margin: 0 auto 36px auto;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 14.5px;
  outline: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
  font-family: inherit;
}

.faq-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.2);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

body.dark-theme .faq-search-input {
  background: var(--bg-surface);
  border-color: var(--border-color);
  color: #F8FAFC;
}

/* ==========================================================================
   ENHANCEMENTS: Scroll Progress Bar, Back to Top & Social Proof Notification
   ========================================================================== */

/* 1. Top Reading Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #FF6B1A, #F59E0B, #8B5CF6, #3B82F6);
  z-index: 99999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(255, 107, 26, 0.5);
  pointer-events: none;
}

/* 2. Floating Back-to-Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 98px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px -4px rgba(255, 107, 26, 0.35);
}

.back-to-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

body.dark-theme .back-to-top-btn {
  background: #1E293B;
  color: #F8FAFC;
  border-color: #334155;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.4);
}

body.dark-theme .back-to-top-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

/* 3. Live Social Proof / Conversion Toast */
.social-proof-toast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(15, 23, 42, 0.04);
  border-radius: 16px;
  padding: 14px 18px 14px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.96);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.social-proof-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.social-proof-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.12), rgba(139, 92, 246, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
}

.social-proof-pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  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 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.social-proof-body {
  flex: 1;
  min-width: 0;
}

.social-proof-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 2px;
}

.social-proof-time {
  font-size: 11.5px;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-proof-time span.verified {
  color: #10B981;
  font-weight: 600;
}

.social-proof-close {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  line-height: 1;
  transition: all 0.2s ease;
  margin-left: 2px;
}

.social-proof-close:hover {
  color: #0F172A;
  background: #F1F5F9;
}

body.dark-theme .social-proof-toast {
  background: #1E293B;
  border-color: #334155;
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.5);
}

body.dark-theme .social-proof-title {
  color: #F8FAFC;
}

body.dark-theme .social-proof-pulse-dot {
  border-color: #1E293B;
}

body.dark-theme .social-proof-close:hover {
  color: #F8FAFC;
  background: #334155;
}

@media (max-width: 640px) {
  .social-proof-toast {
    bottom: 96px;
    left: 16px;
    right: 16px;
    max-width: calc(100vw - 32px);
    padding: 10px 14px;
  }
  .back-to-top-btn {
    right: 88px;
    bottom: 26px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   CUSTOM PRICING BUILDER & PROPOSAL MODAL SYSTEM
   ========================================================================== */

/* Scope Builder Section */
.custom-builder-section {
  background: #F8FAFC;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
}

body.dark-theme .custom-builder-section {
  background: #0D1527;
}

.builder-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 40px;
}

.builder-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.builder-service-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  padding: 22px 24px;
  transition: all 0.25s ease;
  position: relative;
}

body.dark-theme .builder-service-card {
  background: #1E293B;
  border-color: #334155;
}

.builder-service-card.active {
  border-color: var(--primary);
  box-shadow: 0 8px 28px -6px rgba(255, 107, 26, 0.18);
}

.builder-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.builder-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.builder-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 107, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.builder-card-title-wrap h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

body.dark-theme .builder-card-title-wrap h4 {
  color: #F8FAFC;
}

.builder-card-title-wrap p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Custom Checkbox Toggle */
.builder-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
  flex-shrink: 0;
}

.builder-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.builder-slider-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CBD5E1;
  border-radius: 26px;
  transition: 0.25s;
}

.builder-slider-track:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.25s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.builder-toggle-switch input:checked + .builder-slider-track {
  background-color: var(--primary);
}

.builder-toggle-switch input:checked + .builder-slider-track:before {
  transform: translateX(22px);
}

/* Tier options within service card */
.builder-tiers-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.builder-tier-opt {
  background: #F8FAFC;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.dark-theme .builder-tier-opt {
  background: #0F172A;
  border-color: #334155;
}

.builder-tier-opt:hover {
  border-color: rgba(255, 107, 26, 0.5);
}

.builder-tier-opt.selected {
  background: rgba(255, 107, 26, 0.08);
  border-color: var(--primary);
}

.builder-tier-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

body.dark-theme .builder-tier-name {
  color: #F8FAFC;
}

.builder-tier-price {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary);
}

/* Sticky Summary Card */
.builder-summary-card {
  position: sticky;
  top: 100px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.08);
}

body.dark-theme .builder-summary-card {
  background: #1E293B;
  border-color: #334155;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.4);
}

.summary-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.summary-header span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.summary-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 4px;
}

body.dark-theme .summary-header h3 {
  color: #FFFFFF;
}

.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 80px;
}

.summary-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-muted);
}

.summary-item-row span.val {
  font-weight: 600;
  color: var(--text-dark);
}

body.dark-theme .summary-item-row span.val {
  color: #F8FAFC;
}

.summary-discount-badge {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.summary-total-row {
  border-top: 1.5px dashed var(--border-color);
  padding-top: 18px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.summary-total-row span.lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.summary-total-row span.total-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
}

body.dark-theme .summary-total-row span.total-num {
  color: #FFFFFF;
}

.builder-cta-btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   CUSTOM PROPOSAL ON-PAGE MODAL
   ========================================================================== */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

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

.custom-modal-dialog {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

body.dark-theme .custom-modal-dialog {
  background: #1E293B;
  border-color: #334155;
  color: #F8FAFC;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  font-size: 18px;
  color: #64748B;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

body.dark-theme .modal-close-btn {
  background: #334155;
  color: #CBD5E1;
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.modal-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 107, 26, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.modal-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

body.dark-theme .modal-header h3 {
  color: #FFFFFF;
}

.modal-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.modal-scope-preview {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.dark-theme .modal-scope-preview {
  background: #0F172A;
  border-color: #334155;
}

.modal-scope-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

body.dark-theme .modal-scope-title {
  color: #F8FAFC;
}

.modal-scope-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

.modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

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

.modal-form-group.full {
  grid-column: span 2;
}

.modal-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

body.dark-theme .modal-form-group label {
  color: #CBD5E1;
}

.modal-input {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

body.dark-theme .modal-input {
  background: #0F172A;
  border-color: #334155;
  color: #FFFFFF;
}

.modal-input:focus {
  border-color: var(--primary);
}

/* Modal Success Confirmation State */
.modal-success-pane {
  display: none;
  text-align: center;
  padding: 24px 0 10px;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-success-pane h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

body.dark-theme .modal-success-pane h3 {
  color: #FFFFFF;
}

.modal-success-pane p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.quote-voucher-box {
  background: #F8FAFC;
  border: 1.5px dashed var(--border-color);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: left;
  margin-bottom: 24px;
}

body.dark-theme .quote-voucher-box {
  background: #0F172A;
  border-color: #334155;
}

.quote-voucher-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.quote-voucher-row strong {
  color: var(--text-dark);
}

body.dark-theme .quote-voucher-row strong {
  color: #F8FAFC;
}

@media (max-width: 868px) {
  .builder-grid {
    grid-template-columns: 1fr;
  }
  .builder-summary-card {
    position: static;
  }
  .modal-form-grid {
    grid-template-columns: 1fr;
  }
  .modal-form-group.full {
    grid-column: span 1;
  }
}

/* ==========================================================================
   INDUSTRIES WE SCALE — ANIMATED SHOWCASE & MARQUEE
   ========================================================================== */

.industries-section {
  background: #0B1120;
  color: #F8FAFC;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1E293B;
  border-bottom: 1px solid #1E293B;
}

.industries-section .section-head h2 {
  color: #FFFFFF;
}

.industries-section .section-head p {
  color: #94A3B8;
}

/* Infinite Animated Marquee Ticker */
.industries-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 32px 0 54px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.industries-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.industries-marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(51, 65, 85, 0.8);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  color: #E2E8F0;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.marquee-badge:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 26, 0.12);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.marquee-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

/* Industries 8-Card Animated Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.industry-card {
  background: #131D33;
  border: 1.5px solid #1E293B;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.industry-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 26, 0.45);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 107, 26, 0.15);
}

.industry-card:hover:before {
  opacity: 1;
}

.industry-card-top {
  margin-bottom: 18px;
}

.industry-icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.industry-icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon-bubble {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary);
  background: rgba(255, 107, 26, 0.15);
}

.industry-tag-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.15);
  color: #A78BFA;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.35;
}

.industry-card p {
  font-size: 13.5px;
  color: #94A3B8;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Metric Pill Counter */
.industry-metric-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34D399;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 18px;
}

.industry-metric-chip .chip-icon {
  font-size: 15px;
}

/* Playbook Checkmarks List */
.industry-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-deliverables li {
  font-size: 12.5px;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-deliverables li span.chk {
  color: var(--primary);
  font-weight: 700;
}

.industry-cta-btn {
  width: 100%;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #F8FAFC;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.industry-card:hover .industry-cta-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.35);
}

/* Bottom Niche Banner */
.industry-bottom-banner {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-bottom-banner-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.industry-bottom-banner-text p {
  font-size: 13.5px;
  color: #94A3B8;
  margin: 0;
}

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

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industry-bottom-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   DYNAMIC BLOG ENGINE: SEARCH, CATEGORY CHIPS & ARTICLE MODAL
   ========================================================================== */

.blog-controls-wrap {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-search-bar {
  position: relative;
  max-width: 580px;
  width: 100%;
}

.blog-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}

body.dark-theme .blog-search-input {
  background: #1E293B;
  border-color: #334155;
  color: #F8FAFC;
}

.blog-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.2);
}

.blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.blog-filter-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-chip-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

body.dark-theme .blog-chip-btn {
  background: #1E293B;
  border-color: #334155;
  color: #94A3B8;
}

.blog-chip-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.blog-chip-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.3);
}

/* Article Reading Modal */
.article-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

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

.article-modal-dialog {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

body.dark-theme .article-modal-dialog {
  background: #1E293B;
  border-color: #334155;
  color: #F8FAFC;
}

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

.article-modal-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-main);
}

body.dark-theme .article-modal-body {
  color: #CBD5E1;
}

.article-modal-body h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 28px 0 12px;
}

body.dark-theme .article-modal-body h3 {
  color: #FFFFFF;
}

.article-modal-body p {
  margin-bottom: 18px;
}

.article-modal-body ul, .article-modal-body ol {
  margin: 0 0 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-modal-body li {
  list-style: disc;
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin: 32px 0 24px;
}

body.dark-theme .article-author-card {
  background: #0F172A;
  border-color: #334155;
}

.article-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-cta-box {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.12), rgba(139, 92, 246, 0.12));
  border: 1.5px solid rgba(255, 107, 26, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  margin-top: 28px;
}

.article-cta-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

body.dark-theme .article-cta-box h4 {
  color: #FFFFFF;
}

.article-cta-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .article-modal-dialog {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   ALL-PAGES MOBILE RESPONSIVENESS MASTER SUITE (ALL 9 PAGES)
   ========================================================================== */

/* 1. Global Touch & Container Scaling (Tablets & Mobile <= 768px) */
@media (max-width: 768px) {
  .wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 72px 0 40px;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 5.5vw, 2.4rem);
    line-height: 1.25;
  }

  /* Prevent iOS zoom on input focus by ensuring 16px font */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea,
  select {
    font-size: 16px !important;
  }

  /* Services Detail Items (services.html) */
  .services-detail-item {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 54px !important;
  }

  .services-detail-item:nth-child(even) .service-detail-visual {
    order: -1 !important;
  }

  .service-detail-visual {
    min-height: 240px !important;
    border-radius: 16px;
  }

  /* Comparison Matrix (pricing.html & index.html) */
  .comparison-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 16px;
  }

  .compare-row {
    min-width: 520px !important;
    padding: 14px 20px !important;
  }

  /* Culture & Perks Grid (careers.html) */
  .careers-culture-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Job Cards (careers.html) */
  .job-card {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
    padding: 24px 20px !important;
  }

  .job-card .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .job-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  /* Portfolio Filters (portfolio.html) */
  .portfolio-filter-row {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 10px !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 32px !important;
  }

  .portfolio-filter-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  /* Blog Filters (blog.html) */
  .blog-filter-chips {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .blog-chip-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  /* FAQ Layout (faq.html) */
  .faq-search-wrap {
    width: 100% !important;
  }
}

/* 2. Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  .header-wrap {
    padding: 12px 16px;
  }

  .brand-logo img {
    height: 34px !important;
  }

  .header-cta .btn {
    display: none !important;
  }

  /* Pricing Duration Toggle */
  .pricing-toggle-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 4px !important;
  }

  .pricing-opt-btn {
    padding: 8px 6px !important;
    font-size: 11.5px !important;
  }

  .pricing-opt-btn .discount-pill {
    font-size: 9.5px !important;
    padding: 2px 4px !important;
  }

  /* Custom Scope Builder Tiers */
  .builder-tiers-row {
    grid-template-columns: 1fr !important;
  }

  .builder-service-card {
    padding: 18px 16px !important;
  }

  /* ROI Calculator Presets */
  .budget-presets-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .budget-preset-btn {
    flex: 1 1 calc(33.333% - 8px) !important;
    padding: 8px !important;
    font-size: 12px !important;
    text-align: center !important;
  }

  .calc-pills-grid {
    grid-template-columns: 1fr !important;
  }

  /* Floating Navigation Controls */
  .whatsapp-float-btn {
    bottom: 20px !important;
    right: 18px !important;
    width: 52px !important;
    height: 52px !important;
  }

  .back-to-top-btn {
    bottom: 22px !important;
    right: 78px !important;
    width: 40px !important;
    height: 40px !important;
  }

  .social-proof-toast {
    bottom: 84px !important;
    left: 14px !important;
    right: 14px !important;
    max-width: calc(100vw - 28px) !important;
  }

  /* Modals */
  .custom-modal-dialog,
  .article-modal-dialog {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  .modal-header h3 {
    font-size: 19px !important;
  }
}





