/* ============================================
   DNL DYNAMIC SOLUTIONS - MAIN STYLESHEET
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --white:         #FFFFFF;
  --off-white:     #F8F9FA;
  --light-gray:    #F1F4F9;
  --orange:        #FF6B00;
  --orange-light:  #FF8C38;
  --orange-glow:   rgba(255,107,0,0.15);
  --blue:          #0066FF;
  --blue-light:    #3B82F6;
  --blue-glow:     rgba(0,102,255,0.15);
  --dark:          #0A0A1A;
  --dark-card:     #111827;
  --dark-border:   #1E2A3A;
  --text-dark:     #0D1117;
  --text-muted:    #6B7280;
  --text-light:    #E5E7EB;
  --grad-orange-blue: linear-gradient(135deg, #FF6B00, #0066FF);
  --grad-blue-orange: linear-gradient(135deg, #0066FF, #FF6B00);
  --grad-orange:   linear-gradient(135deg, #FF6B00, #FF8C38);
  --grad-blue:     linear-gradient(135deg, #0066FF, #1E40AF);
  
  --font-body:     'Poppins', sans-serif;
  --font-heading:  'Montserrat', sans-serif;
}

/* ============================================
   BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
  width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

li {
  color: #000000;
}

::selection {
  background: var(--orange);
  color: white;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* CURSOR ANIMATION REMOVED */

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--grad-orange-blue);
  z-index: 99999;
  width: 0%;
  transition: width 0.1s;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -1px;
}

.nav-logo .d { color: var(--orange); }
.nav-logo .n { color: var(--blue); }
.nav-logo .l { color: var(--orange-light); }
.nav-logo .rest { color: var(--text-dark); }

#navbar.on-dark .nav-link { color: #000000 !important; }
#navbar.scrolled .nav-logo .rest { color: var(--text-dark) !important; }
#navbar.scrolled .nav-link { color: var(--text-dark) !important; }

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light) !important;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  padding: 6px 0 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--orange) !important;
}

.btn-cta {
  background: var(--orange) !important;
  color: white !important;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border: none !important;
  border-radius: 8px;
  padding: 10px 22px !important;
  transition: all 0.3s ease !important;
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--blue) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,102,255,0.3) !important;
  color: white !important;
}

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 24px;
  display: none;
  border: 1px solid #E5E7EB;
}

.services-dropdown:hover .mega-dropdown,
.mega-dropdown:hover {
  display: block;
}

.mega-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  color: var(--text-dark);
}

.mega-dropdown-item:hover {
  background: var(--light-gray);
  color: var(--orange);
  transform: translateX(4px);
}

.mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: white;
}

.mega-icon.orange { background: var(--orange); }
.mega-icon.blue { background: var(--blue); }

.mega-item-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.mega-item-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 100%);
  height: 100%;
  background: var(--dark);
  z-index: 9999;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 30px;
  overflow-y: auto;
}

.mobile-drawer.open { right: 0; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.drawer-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  color: var(--text-light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--dark-border);
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--orange); }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  background: black;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb-orange {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.25) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero-orb-blue {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.25) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 10s ease-in-out infinite reverse;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1.5px solid var(--orange);
  border-radius: 50px;
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-headline {
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.typed-text { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

.btn-primary-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255,107,0,0.4);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border: none;
  cursor: pointer;
}

.btn-primary-orange:hover {
  background: var(--blue);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,102,255,0.4);
  color: white;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: white;
  border: 1.5px solid white;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: white;
  color: var(--text-dark);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ============================================
   MARQUEE TRUST STRIP
   ============================================ */
.marquee-section {
  background: white;
  padding: 32px 0;
  border-bottom: 1px solid #E5E7EB;
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

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

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: var(--light-gray);
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  margin-right: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 8px;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-blue {
  background: var(--blue-glow);
  color: var(--blue);
  border: 1px solid rgba(0,102,255,0.2);
}

.badge-orange {
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.2);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

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

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(0,102,255,0.12);
  border-color: var(--blue);
  transform: translateY(-8px);
  text-decoration: none;
  color: inherit;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.icon-blue { background: var(--blue); }
.icon-orange { background: var(--orange); }

.service-card:hover .icon-blue { background: var(--orange); }
.service-card:hover .icon-orange { background: var(--blue); }

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-link {
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

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

/* ============================================
   WHY DNL SECTION
   ============================================ */
.why-section {
  min-height: 500px;
}

.why-dark {
  background: var(--dark);
  padding: 80px 60px;
}

.why-white {
  background: white;
  padding: 80px 60px;
}

.gradient-accent-line {
  height: 3px;
  width: 80px;
  background: var(--grad-orange-blue);
  border-radius: 3px;
  margin: 24px 0;
}

.feature-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  border-left: 3px solid var(--orange);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.feature-card:nth-child(even) { border-left-color: var(--blue); }

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}

.process-number {
  font-family: 'Syne', sans-serif;
  font-size: 70px;
  font-weight: 800;
  color: #F1F4F9;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  transition: color 0.3s ease;
  user-select: none;
}

.process-step:hover .process-number { color: var(--orange-glow); }

.process-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px var(--orange-glow);
}

.process-step:hover .process-dot {
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-glow);
}

.process-connector {
  position: absolute;
  top: 60px;
  right: 0;
  width: 50%;
  height: 2px;
  border-top: 2px dashed var(--orange);
  opacity: 0.4;
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.process-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  color: var(--orange);
  line-height: 0.7;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 15px;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.stars { color: var(--orange); letter-spacing: 2px; }

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}

.testimonial-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ============================================
   STATS COUNTER BAND
   ============================================ */
.stats-band {
  background: var(--orange);
  padding: 70px 0;
}

.stat-item {
  text-align: center;
  color: white;
  padding: 0 30px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.3);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  opacity: 0.85;
  font-weight: 500;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-top: 3px solid var(--orange);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: white;
  margin: 0 auto 20px;
}

.team-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.team-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.team-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin: 0 4px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.team-social a:hover {
  background: var(--orange);
  color: white;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.blog-banner {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-banner-img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-banner-img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-body {
  padding: 24px;
}

.blog-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-date {
  font-size: 12px;
  color: var(--text-muted);
}

.blog-read-more {
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-read-more:hover { color: var(--blue); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-orb-left {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  filter: blur(40px);
}

.cta-orb-right {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,102,255,0.2) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(40px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  padding-top: 70px;
  border-top: 2px solid;
  border-image: var(--grad-orange-blue) 1;
}

.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-right: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255,107,0,0.3);
}

.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 0;
}

.footer-link:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-newsletter input {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: white;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  width: 100%;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.3s;
  font-family: 'Inter', sans-serif;
}

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

.footer-newsletter input::placeholder { color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  margin-top: 50px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

/* ============================================
   SCROLL TO TOP + WHATSAPP
   ============================================ */
#scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 8000;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

#whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 8000;
  transition: all 0.3s ease;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  color: white;
}

/* ============================================
   PAGE TRANSITION OVERLAY
   ============================================ */
#page-transition {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 99997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   INNER PAGE HERO
   ============================================ */
.inner-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.inner-hero.blue-grad {
  background: var(--grad-blue);
}

.inner-hero.orange-grad {
  background: var(--grad-orange-blue);
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.breadcrumb-custom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-custom a:hover { color: white; }

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.pricing-card.popular {
  border-color: var(--orange);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,107,0,0.2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.pricing-feature i {
  color: var(--orange);
  flex-shrink: 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--orange); }

.faq-question.open { color: var(--orange); }

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--orange);
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ============================================
   UTILITY
   ============================================ */
.section-py { padding: 90px 0; }
.section-py-sm { padding: 60px 0; }

.grad-text {
  background: var(--grad-orange-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-orange-full {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-orange-full:hover {
  background: var(--blue);
  transform: translateY(-1px);
  color: white;
}

/* Contact Form */
.contact-field {
  position: relative;
  margin-bottom: 28px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #E5E7EB;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: transparent;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--orange);
}

.contact-field label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}

.contact-field input:focus ~ label,
.contact-field input:not(:placeholder-shown) ~ label,
.contact-field textarea:focus ~ label,
.contact-field textarea:not(:placeholder-shown) ~ label {
  top: -16px;
  font-size: 12px;
  color: var(--orange);
}

/* Toast notification */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #10B981;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.toast-notification.show { transform: translateX(0); }
.toast-notification.error { background: #EF4444; }

/* Shake animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.shake { animation: shake 0.4s ease; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .mega-dropdown { width: 480px; }
}

@media (max-width: 991px) {
  .section-py { padding: 70px 0; }
  .why-dark, .why-white { padding: 60px 40px; }
  .stat-item { padding: 20px 0; }
  .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  .hero-headline { font-size: 38px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; margin-bottom: 30px; }
  .hero-stats { gap: 24px; justify-content: space-between; }
  .hero-stat-number { font-size: 28px; }
  .why-dark, .why-white { padding: 50px 20px; }
  .section-py { padding: 60px 0; }
  .section-title { font-size: 32px; }
  .mega-dropdown { display: none !important; }
  .cta-banner { padding: 60px 20px; }
  
  /* Prevent horizontal scroll from large orbs or animations */
  #hero, .cta-banner, section, .marquee-section { overflow: hidden; }
  
  /* Reduce gutters on mobile for more space */
  .row.g-5 { --bs-gutter-x: 1.5rem; }
  .row.g-4 { --bs-gutter-x: 1rem; }

  /* Ensure cards take full width if they would otherwise look cramped */
  .col-6.col-lg-3 { width: 100%; flex: 0 0 100%; }
}

@media (max-width: 576px) {
  .hero-headline { font-size: 32px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stats > div { flex: 0 0 100%; }
  .btn-primary-orange, .btn-outline-white { width: 100%; justify-content: center; }
  .testimonial-card { padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
  .stat-item:last-child { border-bottom: none; }
}
/* ============================================
   NEWSLETTER POPUP & MODAL
   ============================================ */
.newsletter-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.newsletter-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.newsletter-modal {
    background: white;
    width: 95%;
    max-width: 480px;
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    transform: scale(0.9) translateY(40px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.newsletter-modal-overlay.active .newsletter-modal {
    transform: scale(1) translateY(0);
}
.success-icon-wrap {
    width: 80px;
    height: 80px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(255,107,0,0.3);
}
.newsletter-modal h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}
.newsletter-modal p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.modal-close-btn {
    background: var(--blue);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}
.modal-close-btn:hover {
    background: var(--orange);
    transform: scale(1.05);
}

/* Spinner for button */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}
@keyframes spin-loader {
    to { transform: rotate(360deg); }
}
.loader-spin {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin-loader .6s linear infinite;
    margin-right: 8px;
}
