/* ============================================================
   AUDIENCE TARGET — Main Stylesheet
   Version: 1.0 | audiencetarget.net
   ============================================================ */

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

/* ── 1. CSS Custom Properties ────────────────────────────── */
:root {
  --blue-deep:      #0B1E3D;
  --blue-mid:       #133572;
  --blue-bright:    #1A4BAF;
  --blue-light:     #2E6BE6;
  --red-primary:    #D72638;
  --red-hover:      #B81C2C;
  --red-glow:       rgba(215,38,56,0.25);
  --teal-accent:    #00C9B1;
  --white:          #FFFFFF;
  --grey-100:       #F5F7FA;
  --grey-200:       #E9EDF5;
  --grey-300:       #C8D0E0;
  --grey-500:       #8892A4;
  --grey-700:       #4A5568;
  --dark:           #0A1628;
  --dark-card:      #0F2040;
  --gradient-hero:  linear-gradient(135deg, #0B1E3D 0%, #133572 50%, #1A1A2E 100%);
  --gradient-blue:  linear-gradient(135deg, #133572, #2E6BE6);
  --gradient-red:   linear-gradient(135deg, #D72638, #FF6B6B);
  --gradient-cta:   linear-gradient(135deg, #D72638 0%, #B81C2C 100%);
  --shadow-sm:      0 2px 8px rgba(11,30,61,0.08);
  --shadow-md:      0 8px 32px rgba(11,30,61,0.14);
  --shadow-lg:      0 20px 60px rgba(11,30,61,0.20);
  --shadow-glow-blue: 0 0 40px rgba(46,107,230,0.3);
  --shadow-glow-red:  0 0 40px rgba(215,38,56,0.3);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Open Sans', sans-serif;
  --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.18s cubic-bezier(0.4,0,0.2,1);
}

/* ── 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-body);
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
section { position: relative; }

/* ── 3. Typography ───────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--blue-deep); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p  { line-height: 1.8; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red-primary);
  border-radius: 2px;
}

.section-title { margin-bottom: 1.2rem; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-500);
  max-width: 580px;
  margin: 0 auto 3rem;
}
.section-center { text-align: center; }
.section-center .section-label { margin-left: auto; margin-right: auto; }

.highlight-blue  { color: var(--blue-bright); }
.highlight-red   { color: var(--red-primary); }
.highlight-grad  {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 4. Layout Utilities ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 860px; }

.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ── 5. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(215,38,56,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(215,38,56,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue-bright);
  border: 2px solid var(--blue-bright);
}
.btn-outline:hover {
  background: var(--blue-bright);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,107,230,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--grey-700);
  padding: 14px 24px;
}
.btn-ghost:hover { color: var(--blue-bright); }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── 6. Navigation ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(11,30,61,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--red-primary); }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--red-primary);
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.87rem;
  color: var(--grey-700);
  font-weight: 600;
}
.dropdown-menu a:hover { background: var(--grey-100); color: var(--blue-bright); }
.dropdown-menu a svg { width: 18px; height: 18px; color: var(--blue-light); }

.nav-cta { margin-left: 8px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue-deep);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-menu a:hover { color: var(--red-primary); }
.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ── 7. Hero Section ─────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,107,230,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,107,230,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,38,56,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
}
.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,107,230,0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  z-index: 1;
}
.hero-content { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-left { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215,38,56,0.15);
  border: 1px solid rgba(215,38,56,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF7A8A;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(215,38,56,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(215,38,56,0); }
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-title .line-accent { color: var(--red-primary); }
.hero-title .line-blue {
  background: linear-gradient(90deg, #5B9BFF, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red-primary); }
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Visual Right */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
}
.hero-orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(46,107,230,0.25), rgba(11,30,61,0.8));
  border: 1px solid rgba(46,107,230,0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: float-orb 6s ease-in-out infinite;
}
@keyframes float-orb {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-52%) scale(1.03); }
}
.hero-orb-inner {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(215,38,56,0.2), rgba(19,53,114,0.6));
  border: 1px solid rgba(215,38,56,0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: float-orb 6s ease-in-out 1.5s infinite reverse;
}
.hero-ring-1 {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px dashed rgba(46,107,230,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: spin-ring 20s linear infinite;
}
.hero-ring-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px dashed rgba(215,38,56,0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: spin-ring 30s linear infinite reverse;
}
@keyframes spin-ring { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-icon-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(46,107,230,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  z-index: 5;
}
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-card 5s ease-in-out infinite;
  z-index: 10;
}
.hero-floating-card:nth-child(6) { top: 8%; left: 2%; animation-delay: 0s; }
.hero-floating-card:nth-child(7) { top: 12%; right: 0%; animation-delay: 1.2s; }
.hero-floating-card:nth-child(8) { bottom: 18%; left: 0%; animation-delay: 2.4s; }
.hero-floating-card:nth-child(9) { bottom: 10%; right: 2%; animation-delay: 0.8s; }
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon.blue { background: rgba(46,107,230,0.25); color: #7BA8FF; }
.fc-icon.red  { background: rgba(215,38,56,0.25); color: #FF7A8A; }
.fc-icon.teal { background: rgba(0,201,177,0.2); color: var(--teal-accent); }
.fc-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fc-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5px;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim { 0%,100% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } }
.scroll-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ── 8. Trusted Brands Strip ─────────────────────────────── */
#brands {
  background: var(--grey-100);
  padding: 36px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
}
.brands-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 20px;
  text-align: center;
}
.brands-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll-brands 24s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes scroll-brands {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-item {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--grey-300);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.brand-item:hover { color: var(--blue-mid); }
.brand-item svg { opacity: 0.6; }

/* ── 9. Services Section ─────────────────────────────────── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,107,230,0.2);
}
.service-card-featured {
  background: var(--gradient-hero);
  border-color: rgba(46,107,230,0.3);
  color: var(--white);
}
.service-card-featured::before { background: var(--gradient-red); }
.service-card-featured h3,
.service-card-featured p,
.service-card-featured .service-list li { color: rgba(255,255,255,0.85); }
.service-card-featured h3 { color: var(--white); }
.service-card-featured .service-num { color: rgba(255,255,255,0.15); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.service-icon svg { width: 28px; height: 28px; }
.service-icon.blue-ic { background: rgba(46,107,230,0.1); color: var(--blue-bright); }
.service-icon.red-ic  { background: rgba(215,38,56,0.1); color: var(--red-primary); }
.service-icon.teal-ic { background: rgba(0,201,177,0.1); color: var(--teal-accent); }
.service-icon.dark-ic { background: rgba(255,255,255,0.1); color: var(--white); }

.service-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--grey-200);
  line-height: 1;
  position: absolute;
  bottom: 28px;
  right: 24px;
  z-index: 0;
  transition: color 0.3s;
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; position: relative; z-index: 1; }
.service-card p { font-size: 0.94rem; margin-bottom: 20px; position: relative; z-index: 1; line-height: 1.7; }
.service-list { position: relative; z-index: 1; }
.service-list li {
  font-size: 0.87rem;
  color: var(--grey-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
}
.service-card-featured .service-list li { border-bottom-color: rgba(255,255,255,0.1); }
.service-card-featured .service-list li::before { background: var(--red-primary); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-bright);
  margin-top: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}
.service-link:hover { gap: 10px; color: var(--red-primary); }
.service-link svg { width: 16px; height: 16px; }
.service-card-featured .service-link { color: rgba(255,255,255,0.8); }
.service-card-featured .service-link:hover { color: #FF7A8A; }

/* Services CTA Row */
.services-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
  flex-wrap: wrap;
}

/* ── 10. Stats / Results Section ─────────────────────────── */
#stats {
  background: var(--gradient-hero);
  overflow: hidden;
  position: relative;
}
#stats::before {
  content: '';
  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: 40px 40px;
}
.stats-inner { position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  background: rgba(11,30,61,0.5);
  transition: background 0.3s;
}
.stat-item:hover { background: rgba(19,53,114,0.7); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--red-primary); }
.stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(46,107,230,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #7BA8FF;
}
.stat-icon svg { width: 22px; height: 22px; }

/* ── 11. Our Ecosystem (Products) ────────────────────────── */
#ecosystem { background: var(--grey-100); }
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.eco-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.eco-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,107,230,0.2);
}
.eco-header {
  padding: 40px 40px 28px;
  position: relative;
  overflow: hidden;
}
.eco-header.blue-bg { background: var(--gradient-hero); }
.eco-header.red-bg  { background: linear-gradient(135deg, #1A0510 0%, #4A0D18 100%); }
.eco-header-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -150px;
  right: -100px;
}
.eco-header.blue-bg .eco-header-glow { background: radial-gradient(circle, rgba(46,107,230,0.35) 0%, transparent 70%); }
.eco-header.red-bg  .eco-header-glow { background: radial-gradient(circle, rgba(215,38,56,0.4) 0%, transparent 70%); }
.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.eco-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-accent); }
.eco-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}
.eco-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 2;
}
.eco-icon-large {
  position: absolute;
  bottom: -20px;
  right: 30px;
  font-size: 7rem;
  opacity: 0.08;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.eco-body { padding: 32px 40px 40px; flex: 1; display: flex; flex-direction: column; }
.eco-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
  flex: 1;
}
.eco-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.eco-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.eco-feature-icon.b { background: rgba(46,107,230,0.1); color: var(--blue-bright); }
.eco-feature-icon.r { background: rgba(215,38,56,0.1); color: var(--red-primary); }
.eco-feature-icon svg { width: 15px; height: 15px; }
.eco-feature-text h5 {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 2px;
}
.eco-feature-text p { font-size: 0.78rem; color: var(--grey-500); line-height: 1.5; }
.eco-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── 12. Process Section ─────────────────────────────────── */
#process { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--red-primary));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
  position: relative;
}
.step-circle svg { width: 32px; height: 32px; color: var(--grey-500); transition: color 0.3s; }
.process-step:hover .step-circle,
.process-step.active .step-circle {
  border-color: var(--blue-bright);
  background: var(--blue-bright);
  box-shadow: var(--shadow-glow-blue);
  transform: scale(1.1);
}
.process-step:hover .step-circle svg,
.process-step.active .step-circle svg { color: var(--white); }
.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--red-primary);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; color: var(--blue-deep); }
.process-step p { font-size: 0.83rem; color: var(--grey-500); line-height: 1.6; }

/* ── 13. Why Choose Us ───────────────────────────────────── */
#why-us { background: var(--grey-100); overflow: hidden; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-visual { position: relative; }
.why-main-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46,107,230,0.3);
}
.why-main-card::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,38,56,0.15) 0%, transparent 70%);
  bottom: -100px;
  right: -80px;
}
.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.why-card-chart { position: relative; z-index: 2; }
.chart-bar-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chart-bar-item { }
.chart-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.chart-bar-label { font-size: 0.83rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.chart-bar-value { font-size: 0.83rem; color: var(--white); font-weight: 800; font-family: var(--font-heading); }
.chart-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.chart-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gradient-blue);
  transform-origin: left;
  animation: grow-bar 1.8s cubic-bezier(0.4,0,0.2,1) both;
}
.chart-bar-fill.red-fill { background: var(--gradient-red); }
.chart-bar-fill.teal-fill { background: linear-gradient(90deg, var(--teal-accent), #00E5CC); }
@keyframes grow-bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.why-badge-floating {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}
.why-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(215,38,56,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  flex-shrink: 0;
}
.why-badge-icon svg { width: 24px; height: 24px; }
.why-badge-text-label { font-size: 0.75rem; color: var(--grey-500); font-weight: 600; }
.why-badge-text-val { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--blue-deep); }

.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.why-item:hover {
  border-color: rgba(46,107,230,0.2);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item-icon.blue { background: rgba(46,107,230,0.1); color: var(--blue-bright); }
.why-item-icon.red  { background: rgba(215,38,56,0.1); color: var(--red-primary); }
.why-item-icon.teal { background: rgba(0,201,177,0.1); color: var(--teal-accent); }
.why-item-icon svg { width: 24px; height: 24px; }
.why-item h4 { font-size: 1.02rem; margin-bottom: 6px; color: var(--blue-deep); }
.why-item p { font-size: 0.87rem; color: var(--grey-500); line-height: 1.65; }

/* ── 14. Case Studies ────────────────────────────────────── */
#case-studies { background: var(--white); }
.cs-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.cs-card {
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cs-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.cs-visual-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-visual-bg.v1 { background: linear-gradient(135deg, #0B1E3D, #1A4BAF); }
.cs-visual-bg.v2 { background: linear-gradient(135deg, #1A0510, #4A0D18); }
.cs-visual-bg.v3 { background: linear-gradient(135deg, #0A2618, #0A6640); }
.cs-visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cs-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.cs-icon-lg {
  font-size: 5rem;
  opacity: 0.15;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--white);
}
.cs-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.cs-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 10px;
}
.cs-body h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--blue-deep); }
.cs-body p { font-size: 0.88rem; color: var(--grey-500); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.cs-results {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--grey-200);
}
.cs-result-item { }
.cs-result-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1;
}
.cs-result-num span { color: var(--red-primary); }
.cs-result-label { font-size: 0.75rem; color: var(--grey-500); font-weight: 500; margin-top: 2px; }
.cs-small-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cs-card-mini { }
.cs-card-mini .cs-visual { height: 130px; }

/* ── 15. Testimonials ────────────────────────────────────── */
#testimonials { background: var(--grey-100); overflow: hidden; }
.testimonials-wrap { overflow: hidden; position: relative; }
.testimonials-slider { display: flex; gap: 24px; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-width: 380px;
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(46,107,230,0.15); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-star { color: #F6A623; font-size: 1.1rem; }
.testi-quote { font-size: 0.97rem; color: var(--grey-700); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; color: var(--blue-deep); }
.testi-role { font-size: 0.78rem; color: var(--grey-500); margin-top: 2px; }
.testi-controls { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--grey-700);
}
.testi-btn:hover { border-color: var(--blue-bright); color: var(--blue-bright); background: rgba(46,107,230,0.05); }
.testi-btn svg { width: 20px; height: 20px; }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active { background: var(--blue-bright); transform: scale(1.3); }

/* ── 16. About Section ───────────────────────────────────── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-mosaic { position: relative; }
.about-img-main {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-img-main-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.about-circuit-pattern {
  position: absolute;
  inset: 0;
  background-image: 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='%23ffffff' 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");
}
.about-stat-overlay {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}
.about-stat-overlay .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1;
}
.about-stat-overlay .num span { color: var(--red-primary); }
.about-stat-overlay .lbl { font-size: 0.75rem; color: var(--grey-500); font-weight: 500; margin-top: 4px; }
.about-stat-overlay-2 {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--gradient-cta);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-glow-red);
  text-align: center;
  min-width: 150px;
}
.about-stat-overlay-2 .num { color: var(--white); }
.about-stat-overlay-2 .lbl { color: rgba(255,255,255,0.75); }

.about-text h2 { margin-bottom: 20px; }
.about-text > p { font-size: 1.02rem; color: var(--grey-500); line-height: 1.85; margin-bottom: 32px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue-bright);
  transition: var(--transition);
}
.about-value:hover { background: rgba(46,107,230,0.06); border-left-color: var(--red-primary); }
.about-value svg { width: 20px; height: 20px; color: var(--blue-bright); flex-shrink: 0; margin-top: 2px; }
.about-value h5 { font-size: 0.88rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 2px; }
.about-value p  { font-size: 0.78rem; color: var(--grey-500); line-height: 1.5; }
.about-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── 17. Blog / Insights ─────────────────────────────────── */
#insights { background: var(--grey-100); }
.insights-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.insight-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.insight-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-thumb-bg { transform: scale(1.05); }
.insight-thumb-bg.t1 { background: linear-gradient(135deg, #0B1E3D, #1A4BAF); }
.insight-thumb-bg.t2 { background: linear-gradient(135deg, #1A0510, #4A0D18); }
.insight-thumb-bg.t3 { background: linear-gradient(135deg, #1A1200, #4A3800); }
.insight-cat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(11,30,61,0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.insight-body { padding: 24px; }
.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  color: var(--grey-500);
}
.insight-meta span { display: flex; align-items: center; gap: 4px; }
.insight-meta svg { width: 13px; height: 13px; }
.insight-card h4 { font-size: 1.05rem; color: var(--blue-deep); margin-bottom: 10px; line-height: 1.4; }
.insight-card p { font-size: 0.85rem; color: var(--grey-500); line-height: 1.7; margin-bottom: 16px; }
.insight-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-bright);
  transition: var(--transition-fast);
}
.insight-read-more:hover { gap: 10px; color: var(--red-primary); }
.insight-read-more svg { width: 14px; height: 14px; }
.insight-card.featured .insight-thumb { height: 260px; }

/* ── 18. FAQ Section ─────────────────────────────────────── */
#faq { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.faq-item {
  background: var(--grey-100);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(46,107,230,0.2); }
.faq-item.active {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(46,107,230,0.06);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.4;
  flex: 1;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--grey-700);
}
.faq-toggle svg { width: 16px; height: 16px; transition: transform 0.3s; }
.faq-item.active .faq-toggle { background: var(--blue-bright); color: var(--white); }
.faq-item.active .faq-toggle svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.8;
  padding-bottom: 20px;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--grey-300);
}
.faq-cta h3 { margin-bottom: 8px; }
.faq-cta p { color: var(--grey-500); font-size: 0.95rem; margin-bottom: 20px; }

/* ── 19. Contact Section ─────────────────────────────────── */
#contact { background: var(--grey-100); }
.contact-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  margin-top: 56px;
  border: 1px solid var(--grey-200);
}
.contact-left {
  background: var(--gradient-hero);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,38,56,0.18) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
}
.contact-left h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.contact-left p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ci-value { font-size: 0.92rem; color: var(--white); font-weight: 500; margin-top: 2px; }
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,0.2); color: var(--white); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }
.contact-right { padding: 56px 48px; }
.contact-right h3 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-right > p { font-size: 0.9rem; color: var(--grey-500); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.03em;
}
.form-label span { color: var(--red-primary); }
.form-input, .form-select, .form-textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--blue-deep);
  background: var(--grey-100);
  transition: var(--transition-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-bright);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46,107,230,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-300); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }
.form-check-group { display: flex; gap: 20px; flex-wrap: wrap; }
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--grey-700);
  font-weight: 500;
}
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue-bright); cursor: pointer; }
.form-submit { margin-top: 4px; }

/* ── 20. CTA Banner Section ──────────────────────────────── */
#cta-banner {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta-banner::before {
  content: '';
  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: 40px 40px;
}
.cta-banner-glow {
  position: absolute;
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(215,38,56,0.2) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
}
.cta-banner-inner h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-banner-inner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.8; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── 21. Footer ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-text span { color: var(--red-primary); }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-links a svg { width: 12px; height: 12px; color: var(--red-primary); opacity: 0; transition: opacity 0.2s; }
.footer-links a:hover svg { opacity: 1; }
.footer-newsletter { margin-top: 8px; }
.footer-newsletter p { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 12px; line-height: 1.6; }
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  padding: 12px 20px;
  background: var(--gradient-cta);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { filter: brightness(1.1); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy a { color: rgba(255,255,255,0.5); }
.footer-copy a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── 22. Scroll-Reveal Animations ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── 23. Loader ──────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--blue-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.loader-logo span { color: var(--red-primary); }
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gradient-red);
  border-radius: 2px;
  animation: load-fill 1.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes load-fill { from { width: 0; } to { width: 100%; } }

/* ── 24. Back to Top ─────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--blue-bright);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
}
#back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-top:hover { background: var(--red-primary); transform: translateY(-3px); box-shadow: var(--shadow-glow-red); }
#back-top svg { width: 20px; height: 20px; }

/* ── 25. Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(3,1fr); }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid .featured { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-small-grid { flex-direction: row; }
  .cs-card-mini { flex: 1; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-left { padding: 40px 32px; }
  .contact-right { padding: 40px 32px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card-featured { order: -1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .eco-features { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section-pad { padding: 64px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: row; gap: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .eco-cta-row { flex-direction: column; }
  .hero-floating-card { display: none; }
  .hero-orb { width: 260px; height: 260px; }
  .hero-orb-inner { width: 180px; height: 180px; }
  .hero-ring-1 { width: 310px; height: 310px; }
  .hero-ring-2 { width: 360px; height: 360px; }
  .testimonial-card { min-width: 300px; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ── 26. Utility Extras ──────────────────────────────────── */
.text-white  { color: var(--white) !important; }
.text-red    { color: var(--red-primary) !important; }
.text-blue   { color: var(--blue-bright) !important; }
.bg-dark     { background: var(--dark); }
.bg-deep     { background: var(--blue-deep); }
.mt-auto     { margin-top: auto; }
.w-full      { width: 100%; }
.rounded     { border-radius: var(--radius-sm); }
.rounded-lg  { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.z-10        { z-index: 10; }
.relative    { position: relative; }
.separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-200), transparent);
  margin: 0;
}

/* Counter animation */
.counter { display: inline-block; }
