/*
Theme Name: DigitNtech
Theme URI: https://www.digitntech.com/
Author: Digit and Tech
Author URI: https://www.digitntech.com/
Description: Professional Digital Agency WordPress Theme for Digit and Tech - Web Design, Development, SEO & Digital Marketing Services
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: digitntech
Tags: business, professional, digital-agency, seo, responsive, custom-logo, custom-menu, full-width-template, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   1. CSS VARIABLES / DESIGN TOKENS
============================================================ */
:root {
  --primary:       #0a3cff;
  --primary-dark:  #0228cc;
  --secondary:     #7c3aed;
  --accent:        #06d6a0;
  --accent-2:      #ff6b35;
  --dark:          #0d0f1a;
  --dark-2:        #141628;
  --dark-3:        #1e2040;
  --mid:           #2d3060;
  --light:         #f4f6ff;
  --white:         #ffffff;
  --text-main:     #1a1d3a;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;
  --border:        #e5e7ff;
  --gradient-1:    linear-gradient(135deg, #0a3cff 0%, #7c3aed 100%);
  --gradient-2:    linear-gradient(135deg, #06d6a0 0%, #0a3cff 100%);
  --gradient-3:    linear-gradient(135deg, #ff6b35 0%, #f43f5e 100%);
  --gradient-dark: linear-gradient(135deg, #0d0f1a 0%, #141628 100%);
  --shadow-sm:     0 2px 8px rgba(10,60,255,.10);
  --shadow-md:     0 8px 30px rgba(10,60,255,.15);
  --shadow-lg:     0 20px 60px rgba(10,60,255,.20);
  --shadow-card:   0 4px 24px rgba(0,0,0,.08);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --font-main:     'Inter', 'Segoe UI', sans-serif;
  --font-heading:  'Poppins', 'Segoe UI', sans-serif;
  --transition:    0.3s ease;
}

/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-main);
  font-weight: 700;
}

/* ============================================================
   3. TYPOGRAPHY
============================================================ */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-muted); }
.lead { font-size: 1.2rem; line-height: 1.8; color: var(--text-muted); }
.text-white p, .text-white h1, .text-white h2, .text-white h3 { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.8); }

/* ============================================================
   4. LAYOUT UTILITIES
============================================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { padding: 0 15px; flex: 1; }
.col-2 { width: 50%; padding: 0 15px; }
.col-3 { width: 33.333%; padding: 0 15px; }
.col-4 { width: 25%; padding: 0 15px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }
.gap-4 { gap: 40px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.bg-gradient { background: var(--gradient-1); }

/* ============================================================
   5. SECTION HEADERS
============================================================ */
.section-header { margin-bottom: 60px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gradient-1);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }
.section-header.text-center .section-desc { margin: 0 auto; }

/* ============================================================
   6. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,60,255,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,60,255,.4);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--gradient-1);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.btn-white:hover {
  background: var(--light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--gradient-3);
  color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }
.btn-icon { width: 20px; height: 20px; }

/* ============================================================
   7. HEADER / NAVIGATION
============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  transition: all 0.4s ease;
  padding: 18px 0;
}
#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(10,60,255,.12);
  padding: 10px 0;
}
#site-header.scrolled .nav-link { color: var(--text-main); }
#site-header.scrolled .site-logo .logo-text { color: var(--primary); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
}
.logo-text span { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 20px;
}
.dropdown-menu a .menu-icon { font-size: 1.1rem; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#site-header.scrolled .hamburger span { background: var(--text-main); }

/* ============================================================
   8. HERO SECTION
============================================================ */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a3cff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation-delay: -4s; }
.hero-blob-3 { width: 300px; height: 300px; background: var(--accent); top: 30%; left: 40%; animation-delay: -2s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,10px) scale(0.95); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,60,255,.2);
  border: 1px solid rgba(10,60,255,.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title .highlight {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.hero-stat-item .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-gif-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-gif-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 30px;
  text-align: center;
}
.hero-gif-card img, .hero-gif-card lottie-player {
  width: 100%;
  max-height: 380px;
  border-radius: var(--radius-lg);
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card-1 { bottom: 20px; left: -30px; animation-delay: 0s; }
.hero-float-card-2 { top: 20px; right: -20px; animation-delay: -2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-icon { font-size: 1.8rem; }
.float-text strong { display: block; font-size: 0.9rem; color: var(--text-main); }
.float-text span { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   9. MARQUEE / TRUSTED BY
============================================================ */
.marquee-section {
  background: var(--dark-2);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.marquee-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 40px;
  flex-shrink: 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: color var(--transition);
}
.marquee-item:hover { color: var(--accent); }
.marquee-item .tech-icon { font-size: 1.3rem; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   10. SERVICES SECTION
============================================================ */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-link { color: var(--white); }
.service-card:hover .service-icon-wrap { background: rgba(255,255,255,0.2); }
.service-card > * { position: relative; z-index: 1; }
.service-gif-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-gif-wrap img,
.service-gif-wrap lottie-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  transition: background var(--transition);
}
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: color var(--transition);
}
.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}
.service-link .arrow { transition: transform var(--transition); }
.service-link:hover .arrow { transform: translateX(4px); }
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
  transition: all var(--transition);
}
.service-card:hover .service-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ============================================================
   11. ABOUT SECTION
============================================================ */
.about-section { background: var(--light); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img, .about-img-main lottie-player { width: 100%; }
.about-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: floatCard 5s ease-in-out infinite;
}
.about-badge-float-1 { bottom: -20px; left: -20px; }
.about-badge-float-2 { top: -20px; right: -20px; animation-delay: -2.5s; }
.about-badge-float .badge-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.about-badge-float .badge-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.about-content {}
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.about-feature-item:hover { transform: translateX(8px); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}
.feature-content h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--text-main); }
.feature-content p { font-size: 0.875rem; margin-bottom: 0; color: var(--text-muted); }

/* ============================================================
   12. STATS / COUNTER SECTION
============================================================ */
.stats-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230a3cff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-card { text-align: center; padding: 40px 20px; }
.stat-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ============================================================
   13. WHY CHOOSE US
============================================================ */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.why-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.06;
  line-height: 1;
  font-family: var(--font-heading);
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.why-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }
.why-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }

/* ============================================================
   14. PROCESS SECTION
============================================================ */
.process-section { background: var(--light); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(10,60,255,.3);
  position: relative;
}
.step-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
}
.step-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 3px solid var(--white);
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   15. PORTFOLIO / WORK SECTION
============================================================ */
.portfolio-section { background: var(--dark); }
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-1);
  color: var(--white);
  border-color: transparent;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
}
.portfolio-img {
  height: 220px;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,60,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay a {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform var(--transition);
}
.portfolio-overlay a:hover { transform: scale(1.1); }
.portfolio-info { padding: 24px; }
.portfolio-category {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.portfolio-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.portfolio-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 0; }

/* ============================================================
   16. TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -10px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 1rem; font-weight: 700; color: var(--text-main); }
.author-role { font-size: 0.8rem; color: var(--text-muted); }
.star-rating { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: #f59e0b; font-size: 0.9rem; }

/* ============================================================
   17. CTA SECTION
============================================================ */
.cta-section {
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -300px;
  right: -200px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -200px;
  left: -100px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 0; max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   18. BLOG SECTION
============================================================ */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-img {
  height: 200px;
  overflow: hidden;
  background: var(--gradient-1);
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-date { font-size: 0.8rem; color: var(--text-light); }
.blog-title { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 10px; line-height: 1.4; }
.blog-title a { color: var(--text-main); }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-author { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   19. TECHNOLOGIES SECTION
============================================================ */
.tech-section { background: var(--dark-2); }
.tech-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.tech-tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.tech-tab-btn:hover, .tech-tab-btn.active {
  background: var(--gradient-1);
  color: var(--white);
  border-color: transparent;
}
.tech-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.tech-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  min-width: 100px;
}
.tech-icon-item:hover {
  background: rgba(10,60,255,0.2);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.tech-icon-item .tech-logo { font-size: 2.5rem; }
.tech-icon-item .tech-name { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ============================================================
   20. PRICING SECTION
============================================================ */
.pricing-section { background: var(--light); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.popular {
  background: var(--gradient-1);
  border-color: transparent;
  transform: scale(1.05);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-2);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-plan { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 16px; }
.pricing-card.popular .pricing-plan { color: rgba(255,255,255,0.8); }
.pricing-price { margin-bottom: 24px; }
.price-amount { font-size: 3.5rem; font-weight: 900; color: var(--text-main); font-family: var(--font-heading); }
.pricing-card.popular .price-amount { color: var(--white); }
.price-period { font-size: 1rem; color: var(--text-muted); }
.pricing-card.popular .price-period { color: rgba(255,255,255,0.7); }
.pricing-features { list-style: none; margin-bottom: 32px; text-align: left; }
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card.popular .pricing-features li { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.check-icon { color: var(--accent); font-size: 1rem; }
.pricing-card.popular .check-icon { color: var(--white); }

/* ============================================================
   21. FAQ SECTION
============================================================ */
.faq-section { background: var(--white); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--primary); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}
.faq-item.active .faq-question { background: var(--light); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: all var(--transition);
}
.faq-item.active .faq-toggle { background: var(--gradient-1); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 20px 24px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 0; }
.faq-visual { position: sticky; top: 120px; }
.faq-gif { border-radius: var(--radius-xl); overflow: hidden; }
.faq-gif img, .faq-gif lottie-player { width: 100%; }

/* ============================================================
   22. CONTACT SECTION
============================================================ */
.contact-section { background: var(--light); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info {}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--white);
}
.contact-detail h5 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.contact-detail p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--gradient-1);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  font-family: inherit;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10,60,255,.1);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   23. FOOTER
============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
  position: relative;
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand {}
.footer-logo { margin-bottom: 20px; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 28px; }
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-links a:hover::before { opacity: 1; }
.footer-newsletter {}
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--primary); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-copy a { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.85rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   24. SUBSCRIPTION POPUP
============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s ease;
}
.popup-overlay.active .popup-modal { transform: scale(1) translateY(0); }
.popup-visual {
  background: var(--gradient-1);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.popup-visual .popup-icon { font-size: 4rem; margin-bottom: 20px; }
.popup-visual h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.popup-visual p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.popup-visual lottie-player { width: 200px; height: 200px; margin: 0 auto 20px; }
.popup-content { padding: 48px 40px; }
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-main);
  transition: all var(--transition);
  z-index: 1;
}
.popup-close:hover { background: var(--primary); color: var(--white); transform: rotate(90deg); }
.popup-modal { position: relative; }
.popup-title { font-size: 1.5rem; font-weight: 800; color: var(--text-main); margin-bottom: 12px; }
.popup-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.popup-benefits { list-style: none; margin-bottom: 28px; }
.popup-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.popup-benefits li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.popup-form .popup-email {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 14px;
  transition: border-color var(--transition);
}
.popup-form .popup-email:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(10,60,255,.1); }
.popup-skip {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition);
}
.popup-skip:hover { color: var(--primary); }

/* ============================================================
   25. SCROLL TO TOP
============================================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(10,60,255,.4);
  transition: all var(--transition);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(10,60,255,.5); }

/* ============================================================
   26. FLOATING WHATSAPP / CONTACT BUTTON
============================================================ */
.float-contact {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9998;
}
.float-wa-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  transition: all var(--transition);
  animation: bounce 3s ease-in-out infinite;
}
.float-wa-btn:hover { transform: scale(1.1); color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   27. PAGE BANNER / HERO
============================================================ */
.page-banner {
  background: var(--gradient-dark);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0.15;
}
.page-banner-title { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }

/* ============================================================
   28. ANIMATIONS & TRANSITIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================================================
   29. MOBILE MENU OVERLAY
============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  padding: 40px;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mobile-close:hover { background: var(--primary); }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-links a {
  display: block;
  padding: 18px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-nav-bottom { margin-top: auto; padding-top: 40px; }

/* ============================================================
   30. RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav, .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .popup-modal { grid-template-columns: 1fr; }
  .popup-visual { display: none; }
  .col-2, .col-3, .col-4 { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 20px; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .scroll-to-top { bottom: 20px; right: 20px; }
  .float-contact { bottom: 20px; left: 20px; }
}
