/* ============================================================
   TRANZWAVE TECHNOLOGIES — Main Stylesheet
   Color Theme: Lavender & White | Professional Corporate
   ============================================================ */

/* ── Reset & Box Sizing ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── CSS Custom Properties ── */
:root {
  /* Lavender Palette */
  --lav-50:  #F5F3FF;
  --lav-100: #EDE9FE;
  --lav-200: #DDD6FE;
  --lav-300: #C4B5FD;
  --lav-400: #A78BFA;
  --lav-500: #8B5CF6;
  --lav-600: #7C3AED;
  --lav-700: #6D28D9;
  --lav-800: #5B21B6;
  --lav-900: #4C1D95;

  /* Semantic */
  --primary:       #7C3AED;
  --primary-light: #A78BFA;
  --primary-dark:  #5B21B6;
  --primary-bg:    #F5F3FF;

  /* Neutrals */
  --white:    #FFFFFF;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --dark:     #1E1B4B;

  /* Status */
  --success: #10B981;
  --warning: #F59E0B;
  --error:   #EF4444;

  /* Typography */
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* Layout */
  --max-width: 1280px;
  --section-v: 90px;
  --topbar-h: 40px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   30px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(124,58,237,.08);
  --shadow-md: 0 4px 24px rgba(124,58,237,.14);
  --shadow-lg: 0 12px 48px rgba(124,58,237,.2);
  --shadow-xl: 0 24px 64px rgba(124,58,237,.26);

  /* Transitions */
  --t: all .3s ease;
  --t-slow: all .55s ease;
}

/* ── Base ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
h5 { font-size: 1.05rem; }
p  { line-height: 1.8; }
a  { text-decoration: none; color: var(--primary); transition: var(--t); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── Container ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ─────────────────────────────────────
   TOP CONTACT BAR
───────────────────────────────────── */
.top-contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-h);
  background: #150f3f;
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 1100;
}
.top-contact-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lav-200);
  font-size: .86rem;
  font-weight: 600;
}
.top-contact-phone:hover { color: #FFFFFF; }
.top-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lav-200);
  font-size: .84rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.top-contact-email:hover { color: #FFFFFF; }
.top-contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.top-contact-social a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--lav-200);
  background: rgba(255,255,255,.08);
  font-size: .78rem;
}
.top-contact-social a:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,.2);
}

/* ── Section Spacing ── */
.section-py { padding: var(--section-v) 0; }
.section-py-sm { padding: 60px 0; }

/* ── Section Header ── */
.section-tag {
  display: inline-block;
  background: var(--lav-100);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--r-full);
  margin: 14px auto;
}

/* ── Backgrounds ── */
.bg-white   { background: var(--white); }
.bg-lavender { background: var(--lav-50); }
.bg-primary  { background: var(--primary); }
.bg-dark     { background: var(--dark); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .92rem;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary  { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,.38); }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white    { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--lav-100); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: .84rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ─────────────────────────────────────
   NAVBAR
───────────────────────────────────── */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lav-100);
  transition: var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--lav-400));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .b-name {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 1.35rem; color: var(--dark);
}
.brand-text .b-tag {
  font-size: .85rem; color: var(--primary); font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.navbar-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.95rem; font-weight: 500; color: var(--gray-700);
  padding: 8px 12px; border-radius: var(--r-sm);
  transition: var(--t); background: none; border: none;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--lav-50); }
.nav-link i { font-size: .65rem; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px); left: 0;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--lav-100);
  min-width: 260px;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: var(--t);
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-inner { padding: 8px; }
.dropdown-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; color: var(--gray-700); font-size: .9rem;
  font-weight: 500; border-radius: var(--r-sm); transition: var(--t);
}
.dropdown-link:hover { background: var(--lav-50); color: var(--primary); }
.dropdown-icon {
  width: 34px; height: 34px;
  background: var(--lav-100); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: .8rem; flex-shrink: 0;
  transition: var(--t);
}
.dropdown-link:hover .dropdown-icon { background: var(--primary); color: white; }

/* Actions & Hamburger */
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: calc(var(--topbar-h) + 80px); left: 0; width: 100%;
  background: var(--white); padding: 16px 20px 24px;
  box-shadow: var(--shadow-lg); z-index: 998;
  max-height: calc(100vh - (var(--topbar-h) + 80px)); overflow-y: auto;
  border-top: 1px solid var(--lav-100);
}
.mobile-nav.open { display: block; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  display: block; padding: 12px 16px;
  color: var(--gray-700); font-weight: 500; font-size: .95rem;
  border-radius: var(--r-sm); transition: var(--t);
}
.mobile-nav-link:hover { background: var(--lav-50); color: var(--primary); }
.mobile-nav-sub { padding-left: 18px; flex-direction: column; gap: 2px; }
.mobile-nav-sub .mobile-nav-link { font-size: .9rem; color: var(--gray-500); }
.mobile-sep { margin: 8px 0; border: none; border-top: 1px solid var(--lav-100); }

/* ─────────────────────────────────────
   HERO — HOME
───────────────────────────────────── */
.hero {
  min-height: 78vh;
  background: linear-gradient(135deg, #3B1A78 0%, var(--lav-800) 35%, var(--lav-600) 70%, var(--lav-400) 100%);
  display: flex; align-items: center;
  padding-top: calc(72px + var(--topbar-h));
  position: relative; overflow: hidden;
}
.hero-blob-1 {
  position: absolute; top: -15%; right: -8%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -20%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 60px; align-items: center;
}
.hero-content {
  padding: 40px 0;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  color: var(--lav-200);
  padding: 7px 16px; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 22px;
}
.hero h1 { color: white; font-weight: 800; margin-bottom: 20px; }
.hero h1 span { color: var(--lav-300); }
.hero-subtext {
  color: var(--lav-200); font-size: 1.05rem;
  margin-bottom: 16px; max-width: 980px;
}
.hero-specialists { margin: 20px auto 14px; width: 100%; max-width: 980px; }
.specialists-label {
  color: var(--lav-200);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  align-items: center;
  gap: 8px;
}
.specialists-label i { color: var(--lav-300); }
.specialists-marquee {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  padding: 10px 0;
}
.specialists-track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding-left: 12px;
  animation: specialistScroll 24s linear infinite;
}
.specialists-marquee:hover .specialists-track {
  animation-play-state: paused;
}
.specialist-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  color: #FFFFFF;
  font-size: .78rem;
  font-weight: 600;
  background: rgba(124,58,237,.34);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
}
.typing-wrapper {
  color: var(--lav-200); font-size: 1rem; margin-bottom: 36px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; max-width: 100%;
  justify-content: center;
}
.hero-typing { margin-bottom: 24px; }
.hero-typing .typing-text { color: #FFFFFF; }
.typing-text { color: var(--lav-300); font-weight: 600; white-space: normal; word-break: break-word; }
.typing-cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: var(--lav-300); animation: blink .8s step-end infinite;
}

@keyframes specialistScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.expertise-showcase {
  background: linear-gradient(135deg, #3B1A78 0%, var(--lav-800) 55%, var(--lav-700) 100%);
}
.expertise-showcase .section-header h2,
.expertise-showcase .section-header p,
.expertise-showcase .section-tag {
  color: white;
}
.expertise-showcase .divider {
  background: var(--lav-300);
}

/* Core Areas & Tech Stack */
.core-areas, .tech-stack {
  margin: 28px 0;
  padding: 16px;
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--lav-300);
  border-radius: 8px;
}
.core-title, .tech-title {
  color: var(--lav-200);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.core-title i, .tech-title i {
  color: var(--lav-300);
}
.core-tags, .tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.core-tag, .tech-item {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(124, 58, 237, .15);
  color: var(--lav-200);
  border: 1px solid rgba(124, 58, 237, .3);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
}
.core-tag:hover, .tech-item:hover {
  background: rgba(124, 58, 237, .25);
  border-color: var(--lav-300);
}

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-xl);
  padding: 28px; width: 100%; max-width: 420px;
  color: white;
}
.hero-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.hc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hc-label { margin-left: auto; font-size: .72rem; color: var(--lav-300); font-weight: 600; }
.mini-chart { display: flex; align-items: flex-end; gap: 5px; height: 72px; margin-bottom: 16px; }
.mini-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,.25);
  transition: var(--t);
}
.mini-bar:hover { background: rgba(255,255,255,.6); }
.hero-card-stat { display: flex; justify-content: space-between; align-items: center; }
.hcs-value { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.hcs-label { font-size: .72rem; color: var(--lav-300); margin-top: 3px; }
.hcs-badge {
  background: rgba(16,185,129,.2); color: #6EE7B7;
  padding: 4px 12px; border-radius: var(--r-full); font-size: .72rem; font-weight: 700;
}
.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.hero-stat-mini {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md); padding: 16px; text-align: center;
}
.hero-stat-mini .sv { font-size: 1.5rem; font-weight: 800; color: white; line-height: 1; }
.hero-stat-mini .sl { font-size: .7rem; color: var(--lav-300); margin-top: 4px; }

/* ─────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #3B1A78 0%, var(--lav-800) 50%, var(--lav-600) 100%);
  padding: calc(148px + var(--topbar-h)) 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p { color: var(--lav-200); font-size: 1.05rem; max-width: 600px; margin: 0 auto 22px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--lav-300); font-size: .84rem; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: var(--lav-500); font-size: .84rem; }
.breadcrumb .current { color: var(--lav-200); font-size: .84rem; }

/* ─────────────────────────────────────
   STATS STRIP
───────────────────────────────────── */
.stats-strip { padding: 56px 0; border-bottom: 1px solid var(--lav-100); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: var(--lav-200);
}
.stat-num {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
  color: var(--primary); line-height: 1; margin-bottom: 6px;
}
.stat-lbl { color: var(--gray-500); font-size: .88rem; font-weight: 500; }

/* ─────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.service-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-split-grid > * {
  min-width: 0;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--lav-100);
  transition: var(--t); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--lav-400));
  transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--lav-200); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 64px; height: 64px; border-radius: var(--r-md);
  background: var(--lav-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 22px; transition: var(--t);
}
.service-card:hover .svc-icon { background: var(--primary); color: white; transform: scale(1.08); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.75; margin-bottom: 18px; }
.svc-list { margin-bottom: 22px; }
.svc-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem; color: var(--gray-600); padding: 4px 0;
}
.svc-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: .88rem; font-weight: 600; transition: var(--t);
}
.svc-link:hover { gap: 10px; }

/* ─────────────────────────────────────
   FEATURES / WHY US
───────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.feature-item { display: flex; gap: 18px; }
.feat-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--lav-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; transition: var(--t);
}
.feature-item:hover .feat-icon { background: var(--primary); color: white; }
.feat-body h4 { margin-bottom: 5px; }
.feat-body p { color: var(--gray-500); font-size: .88rem; line-height: 1.65; }

/* ─────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────── */
.process-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; position: relative; }
.process-row::before {
  content: ''; position: absolute; top: 36px; left: 10%; width: 80%;
  height: 2px; background: var(--lav-200); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--lav-200); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-weight: 800; font-size: 1.1rem;
  color: var(--primary); font-family: var(--font-heading);
  transition: var(--t);
}
.process-step:hover .step-circle { background: var(--primary); border-color: var(--primary); color: white; transform: scale(1.08); }
.process-step h5 { font-size: .95rem; margin-bottom: 6px; }
.process-step p { color: var(--gray-500); font-size: .8rem; line-height: 1.6; }

/* ─────────────────────────────────────
   INDUSTRY GRID
───────────────────────────────────── */
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.industry-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 26px 20px; text-align: center;
  border: 1px solid var(--lav-100); transition: var(--t);
}
.industry-card:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.ind-icon { font-size: 2rem; color: var(--primary); margin-bottom: 12px; transition: var(--t); }
.industry-card h4 { font-size: .95rem; margin-bottom: 5px; transition: var(--t); }
.industry-card p { font-size: .78rem; color: var(--gray-500); transition: var(--t); }
.industry-card:hover .ind-icon,
.industry-card:hover h4,
.industry-card:hover p { color: white; }

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-slide { min-width: 100%; padding: 10px 20px; }
.testi-inner {
  background: var(--white); border-radius: var(--r-lg);
  padding: 44px; max-width: 820px; margin: 0 auto;
  box-shadow: var(--shadow-md); border: 1px solid var(--lav-100);
}
.testi-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 3px; margin-bottom: 20px; }
.testi-text {
  font-size: 1.05rem; color: var(--gray-700); line-height: 1.85;
  font-style: italic; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lav-200), var(--lav-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary); font-weight: 700; flex-shrink: 0;
}
.testi-info h5 { color: var(--dark); margin-bottom: 2px; }
.testi-info span { color: var(--gray-500); font-size: .84rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--lav-200); background: var(--white);
  color: var(--primary); cursor: pointer; transition: var(--t);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.sdot {
  width: 8px; height: 8px; border-radius: var(--r-full);
  background: var(--lav-200); cursor: pointer; transition: var(--t);
}
.sdot.active { background: var(--primary); width: 24px; }

/* ─────────────────────────────────────
   BLOG CARDS
───────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--lav-100); overflow: hidden; transition: var(--t);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 210px; background: var(--lav-100);
  display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary);
}
.blog-body { padding: 26px; }
.blog-tag {
  display: inline-block; background: var(--lav-100); color: var(--primary);
  font-size: .72rem; font-weight: 700; padding: 3px 12px;
  border-radius: var(--r-full); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .5px;
}
.blog-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.45; }
.blog-body p { color: var(--gray-500); font-size: .87rem; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; color: var(--gray-400); font-size: .78rem; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }

/* ─────────────────────────────────────
   CTA SECTION
───────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--lav-900) 0%, var(--primary) 50%, var(--lav-500) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -40%; left: -15%;
  width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: var(--lav-200); font-size: 1.02rem; max-width: 580px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer { background: #0F0D2E; }
.footer-top { padding: 46px 0 34px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(150px, .9fr) minmax(150px, .9fr) minmax(250px, 1.25fr);
  gap: 34px;
  align-items: start;
}
.footer-col { min-width: 0; }
.footer-brand {
  margin-bottom: 14px;
  display: inline-flex;
}
.footer-brand-text { margin-left: 12px; }
.footer-brand-name .b-name { color: white !important; }
.footer-desc { color: var(--gray-400); font-size: .9rem; line-height: 1.72; margin: 12px 0 20px; max-width: 46ch; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: var(--t);
}
.social-link:hover { background: var(--primary); color: white; }
.footer-col h5 {
  color: white; font-size: .95rem; font-weight: 700;
  margin-bottom: 14px; letter-spacing: .35px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--gray-400); font-size: .89rem; transition: var(--t);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--primary-light); }
.footer-links a:hover { color: var(--lav-300); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 11px; align-items: flex-start; }
.footer-contact li i { color: var(--lav-400); margin-top: 3px; width: 16px; flex-shrink: 0; font-size: .9rem; }
.footer-contact li span { color: var(--gray-400); font-size: .88rem; line-height: 1.58; }
.footer-contact li a { color: var(--gray-400); }
.footer-contact li a:hover { color: var(--lav-300); }
.footer-bottom {
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-bottom p { color: var(--gray-500); font-size: .84rem; line-height: 1.4; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: var(--gray-500); font-size: .84rem; transition: var(--t); }
.footer-bottom-links a:hover { color: var(--lav-300); }
.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-500);
  font-size: .84rem;
  white-space: nowrap;
}
.visitor-counter i { color: var(--lav-300); font-size: .8rem; }

/* ─────────────────────────────────────
   FORMS
───────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .86rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--lav-200); border-radius: var(--r-md);
  font-size: .9rem; color: var(--gray-700); background: var(--white);
  transition: var(--t); outline: none; font-family: var(--font-body);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.1); }
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-error { color: var(--error); font-size: .79rem; margin-top: 5px; display: none; }

/* ─────────────────────────────────────
   FAQ / ACCORDION
───────────────────────────────────── */
.faq-item { border: 1px solid var(--lav-100); border-radius: var(--r-md); overflow: hidden; margin-bottom: 12px; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; background: var(--white);
  font-weight: 600; color: var(--dark); font-size: .93rem; transition: var(--t); border: none; width: 100%; text-align: left; font-family: var(--font-body);
}
.faq-question:hover { background: var(--lav-50); color: var(--primary); }
.faq-question.active { background: var(--primary); color: white; }
.faq-question i { font-size: .75rem; transition: transform .3s; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  color: var(--gray-600); font-size: .9rem; line-height: 1.75;
  background: var(--white);
}
.faq-answer.open { padding: 18px 22px; max-height: 400px; }

/* ─────────────────────────────────────
   TABS
───────────────────────────────────── */
.tabs-nav {
  display: flex; gap: 4px; border-bottom: 2px solid var(--lav-100);
  margin-bottom: 36px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab-btn {
  padding: 11px 22px; border: none; background: none;
  color: var(--gray-500); font-size: .88rem; font-weight: 600;
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: var(--t);
  white-space: nowrap; font-family: var(--font-body);
}
.tab-btn.active, .tab-btn:hover { color: var(--primary); border-bottom-color: var(--primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ─────────────────────────────────────
   FILTER BUTTONS
───────────────────────────────────── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px; border-radius: var(--r-full);
  border: 1.5px solid var(--lav-200); background: var(--white);
  color: var(--gray-600); font-size: .84rem; font-weight: 600;
  cursor: pointer; transition: var(--t); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

/* ─────────────────────────────────────
   CARD (Generic)
───────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--lav-100); overflow: hidden; transition: var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 26px; }
.card-tag {
  display: inline-block; background: var(--lav-100); color: var(--primary);
  font-size: .72rem; font-weight: 700; padding: 3px 12px;
  border-radius: var(--r-full); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px;
}

/* ─────────────────────────────────────
   TEAM CARDS
───────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--lav-100); overflow: hidden; transition: var(--t); text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 180px; background: linear-gradient(135deg, var(--lav-100), var(--lav-200));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--primary);
}
.team-body { padding: 22px; }
.team-body h4 { margin-bottom: 4px; }
.team-role { color: var(--primary); font-size: .83rem; font-weight: 600; margin-bottom: 10px; }
.team-body p { color: var(--gray-500); font-size: .83rem; line-height: 1.6; }
.team-socials { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.team-social {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lav-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; transition: var(--t);
}
.team-social:hover { background: var(--primary); color: white; }

/* ─────────────────────────────────────
   TIMELINE
───────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 16px; top: 0; bottom: 0;
  width: 2px; background: var(--lav-200);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.tl-dot {
  position: absolute; left: -40px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); border: 3px solid white;
  box-shadow: 0 0 0 3px var(--lav-200);
}
.tl-content {
  background: var(--white); border: 1px solid var(--lav-100);
  border-radius: var(--r-md); padding: 18px 22px;
}
.tl-date { font-size: .76rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.tl-content h4 { margin-bottom: 5px; }
.tl-content p { color: var(--gray-500); font-size: .86rem; }

/* ─────────────────────────────────────
   JOB LISTINGS
───────────────────────────────────── */
.job-card {
  background: var(--white); border: 1.5px solid var(--lav-100);
  border-radius: var(--r-lg); padding: 26px 28px;
  display: flex; align-items: flex-start; gap: 22px;
  transition: var(--t); margin-bottom: 16px;
}
.job-card:hover { border-color: var(--lav-300); box-shadow: var(--shadow-md); transform: translateX(4px); }
.job-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--lav-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.job-info { flex: 1; }
.job-info h4 { color: var(--dark); margin-bottom: 5px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.job-meta span { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--gray-500); }
.job-actions { flex-shrink: 0; display: flex; align-items: center; }

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
.contact-info-card {
  background: var(--lav-50); border-radius: var(--r-lg);
  padding: 30px; border: 1px solid var(--lav-100);
}
.ci-icon {
  width: 50px; height: 50px; border-radius: var(--r-md);
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px;
}
.contact-info-card h4 { margin-bottom: 6px; }
.contact-info-card p { color: var(--gray-500); font-size: .88rem; line-height: 1.65; }
.contact-info-card a { color: var(--primary); }
.map-frame {
  width: 100%; height: 380px; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--lav-100);
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ─────────────────────────────────────
   CASE STUDY CARDS
───────────────────────────────────── */
.cs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.cs-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--lav-100); overflow: hidden; transition: var(--t);
}
.cs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cs-header { padding: 28px; background: var(--lav-50); border-bottom: 1px solid var(--lav-100); }
.cs-body { padding: 28px; }
.cs-results { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.cs-result-badge {
  padding: 5px 14px; background: var(--primary); color: white;
  border-radius: var(--r-full); font-size: .75rem; font-weight: 700;
}

/* ─────────────────────────────────────
   TECH BADGES
───────────────────────────────────── */
.tech-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; background: var(--white);
  border: 1.5px solid var(--lav-200); border-radius: var(--r-md);
  font-size: .84rem; font-weight: 600; color: var(--gray-700); transition: var(--t);
}
.tech-badge:hover { border-color: var(--primary); color: var(--primary); background: var(--lav-50); }

/* ─────────────────────────────────────
   VALUE CARDS
───────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: var(--white); border-radius: var(--r-lg); padding: 32px 24px; text-align: center;
  border: 1px solid var(--lav-100); transition: var(--t);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lav-300); }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--lav-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 18px; transition: var(--t);
}
.value-card:hover .value-icon { background: var(--primary); color: white; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { color: var(--gray-500); font-size: .88rem; line-height: 1.7; }

/* ─────────────────────────────────────
   NEWSLETTER
───────────────────────────────────── */
.newsletter-box {
  background: linear-gradient(135deg, var(--primary), var(--lav-400));
  border-radius: var(--r-xl); padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.newsletter-box h2 { color: white; margin-bottom: 10px; }
.newsletter-box p { color: var(--lav-200); }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form .form-control { flex: 1; border-radius: var(--r-full); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.15); color: white; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────
   PROGRESS BARS
───────────────────────────────────── */
.progress-item { margin-bottom: 18px; }
.progress-header { display: flex; justify-content: space-between; font-size: .86rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.progress-bar { height: 7px; background: var(--lav-100); border-radius: var(--r-full); overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--lav-400)); border-radius: var(--r-full); width: 0; transition: width 1.5s ease; }

/* ─────────────────────────────────────
   BADGES
───────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 13px; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
}
.badge-primary  { background: var(--lav-100); color: var(--primary); }
.badge-success  { background: #D1FAE5; color: #059669; }
.badge-warning  { background: #FEF3C7; color: #D97706; }
.badge-info     { background: #DBEAFE; color: #2563EB; }

/* ─────────────────────────────────────
   BACK TO TOP
───────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; box-shadow: var(--shadow-md);
  transition: var(--t); opacity: 0; visibility: hidden; z-index: 600;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ─────────────────────────────────────
   PAGE LOADER
───────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  z-index: 9999; transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.loader-bar {
  width: 200px; height: 3px; background: var(--lav-100);
  border-radius: var(--r-full); overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--lav-400));
  border-radius: var(--r-full); animation: loader-anim 1.2s ease-in-out infinite;
}

/* ─────────────────────────────────────
   ANIMATIONS & KEYFRAMES
───────────────────────────────────── */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes loader-anim {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0);     }
  100% { transform: translateX(100%);  }
}
.float-anim { animation: float 4.5s ease-in-out infinite; }

/* Scroll Reveal */
.reveal        { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left   { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right  { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.revealed      { opacity: 1 !important; transform: none !important; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ─────────────────────────────────────
   CLIENTS STRIP
───────────────────────────────────── */
.clients-strip { padding: 48px 0; border-top: 1px solid var(--lav-100); border-bottom: 1px solid var(--lav-100); }
.clients-label { text-align: center; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-400); margin-bottom: 28px; }
.clients-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.client-logo {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: var(--gray-300); transition: var(--t); letter-spacing: .5px;
}
.client-logo:hover { color: var(--primary); }

/* ─────────────────────────────────────
   BENEFITS GRID
───────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.benefit-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: var(--r-md); padding: 24px;
  border: 1px solid var(--lav-100); transition: var(--t);
}
.benefit-card:hover { box-shadow: var(--shadow-md); border-color: var(--lav-200); }
.benefit-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--lav-100); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.benefit-card h5 { margin-bottom: 4px; }
.benefit-card p { color: var(--gray-500); font-size: .84rem; }

/* ─────────────────────────────────────
   FEATURED BLOG
───────────────────────────────────── */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
  background: var(--lav-50); border-radius: var(--r-xl); padding: 44px;
  border: 1px solid var(--lav-100); margin-bottom: 56px;
}
.bf-img {
  height: 280px; background: var(--lav-200); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center; font-size: 5rem; color: var(--primary);
}
.bf-body .blog-tag { margin-bottom: 14px; }
.bf-body h2 { font-size: 1.8rem; margin-bottom: 14px; }
.bf-body p { color: var(--gray-500); font-size: .92rem; margin-bottom: 22px; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 34px; }
  .process-row { grid-template-columns: repeat(3,1fr); }
  .process-row::before { display: none; }
}
@media (max-width: 992px) {
  :root { --section-v: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .navbar-actions .btn:not(.hamburger) { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; margin-bottom: 40px; }
  .service-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(3,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .newsletter-box { grid-template-columns: 1fr; gap: 28px; }
  .blog-featured { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }

  /* Global rescue rules for inline desktop grids used in page sections */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:1fr 1.2fr"],
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  [style*="gap:64px"] { gap: 32px !important; }
  [style*="gap:40px"] { gap: 24px !important; }
}
@media (max-width: 768px) {
  :root { --section-v: 56px; --topbar-h: 36px; }
  .top-contact-phone { display: none; }
  .top-contact-email { gap: 5px; font-size: .76rem; }
  .top-contact-email span { display: inline; }
  .top-contact-social { display: inline-flex; gap: 6px; }
  .top-contact-social a {
    width: 22px;
    height: 22px;
    font-size: .72rem;
  }
  .hero {
    min-height: auto;
    padding-top: calc(96px + var(--topbar-h));
    padding-bottom: 36px;
  }
  .hero-content,
  .hero-subtext,
  .hero-specialists,
  .typing-wrapper {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .hero-subtext {
    font-size: .95rem;
    line-height: 1.75;
  }
  .specialists-marquee {
    padding: 10px 12px;
    overflow: hidden;
    width: 100%;
  }
  .specialists-track {
    animation: specialistScroll 34s linear infinite;
    transform: translateX(0);
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    padding-left: 12px;
    justify-content: flex-start;
    width: max-content;
  }
  .specialist-pill {
    white-space: nowrap;
    text-align: left;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .cs-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .cta-actions { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-inner { justify-content: center; }
  .footer-col h5 { margin-bottom: 10px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .newsletter-box { padding: 36px 24px; }
  .process-row { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .services-overview-grid { gap: 16px; }
  .service-split-grid { gap: 24px; }

  /* Service 01 mobile fit fixes */
  #engineering .tabs-container,
  #engineering .tabs-nav,
  #engineering .tab-pane,
  #engineering .svc-list,
  #engineering .reveal-left,
  #engineering .reveal-right {
    min-width: 0;
    max-width: 100%;
  }

  #engineering .tabs-nav {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
    gap: 6px;
    border-bottom: none;
  }

  #engineering .tabs-nav::-webkit-scrollbar {
    height: 4px;
  }

  #engineering .tab-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    padding: 10px 12px;
    border: 1px solid var(--lav-200);
    border-radius: var(--r-sm);
    margin-bottom: 0;
  }

  #engineering .tab-btn.active,
  #engineering .tab-btn:hover {
    border-color: var(--primary);
    background: rgba(124,58,237,.06);
  }

  #engineering p,
  #engineering li,
  #engineering h2,
  #engineering h4 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  /* Prevent horizontal overflow from inline desktop-only constraints */
  [style*="min-width:240px"] { min-width: 0 !important; width: 100% !important; }
  [style*="white-space:nowrap"] { white-space: normal !important; }

  /* Keep card/content blocks inside viewport on narrow devices */
  [style*="padding:40px"] { padding: 24px !important; }
  [style*="padding:56px"],
  [style*="padding:48px"] { padding: 24px !important; }

  .brand-text .b-name { font-size: 1.15rem; }
  .brand-text .b-tag { font-size: .75rem; letter-spacing: 1px; }
  .navbar-inner { height: 74px; }
  .mobile-nav {
    top: calc(var(--topbar-h) + 74px);
    max-height: calc(100vh - (var(--topbar-h) + 74px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .specialists-track { animation: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: calc(92px + var(--topbar-h)); }
  .hero-badge { font-size: .7rem; letter-spacing: .6px; }
  .typing-wrapper { font-size: .9rem; }
  .specialists-track { animation-duration: 42s; }
  .container { max-width: 100%; }
  h1, h2, h3, p, .btn, .specialist-pill { overflow-wrap: anywhere; }
  .top-contact-phone { font-size: .74rem; gap: 6px; }
  .top-contact-social { gap: 5px; }
  .industry-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .process-row { grid-template-columns: 1fr; }
  .clients-row { gap: 28px; }
}

/* ─────────────────────────────────────
   SCROLLBAR & SELECTION
───────────────────────────────────── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--lav-50); }
::-webkit-scrollbar-thumb { background: var(--lav-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
::selection { background: var(--lav-300); color: var(--dark); }

/* ─────────────────────────────────────
   UTILITY EXTRAS
───────────────────────────────────── */
.text-primary { color: var(--primary) !important; }
.text-white   { color: white !important; }
.text-center  { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.w-full { width: 100%; }
.d-flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.highlight { color: var(--primary); }

/* ─────────────────────────────────────
   BLOG — READ MORE / META
───────────────────────────────────── */
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: .88rem; font-weight: 600;
  margin-top: 14px; transition: var(--transition);
}
.blog-read-more:hover { gap: 10px; color: var(--primary-dark); }
.blog-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--gray-400); }

/* ─────────────────────────────────────
   CAREERS — FEATURES & BENEFITS
───────────────────────────────────── */
.features-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feat-card {
  background: var(--white); border: 1px solid var(--lav-100);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; transition: var(--transition);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--lav-200); }
.feat-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--lav-100); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 16px; transition: var(--transition);
}
.feat-card:hover .feat-icon { background: var(--primary); color: white; }
.feat-card h4 { margin-bottom: 10px; font-size: 1rem; }
.feat-card p { color: var(--gray-500); font-size: .87rem; line-height: 1.65; }

.benefit-item {
  background: var(--white); border: 1px solid var(--lav-100);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
  transition: var(--transition);
}
.benefit-item:hover { box-shadow: var(--shadow-md); border-color: var(--lav-300); }
.benefit-item > i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; display: block; }
.benefit-item h5 { color: var(--dark); margin-bottom: 8px; }
.benefit-item p { color: var(--gray-500); font-size: .87rem; line-height: 1.65; }

/* ─────────────────────────────────────
   CAREERS — JOB LIST & APPLY
───────────────────────────────────── */
.job-list { display: flex; flex-direction: column; gap: 0; }
.apply-wrapper {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; max-width: 760px; margin: 0 auto;
  box-shadow: var(--shadow-lg); border: 1px solid var(--lav-100);
}
.apply-form { width: 100%; }

/* ─────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start;
}
.contact-form-wrapper, .contact-info-wrapper { width: 100%; }
.contact-form {
  background: var(--lav-50); border-radius: var(--radius-xl);
  padding: 40px; border: 1px solid var(--lav-100);
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ci-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--lav-50); border: 1px solid var(--lav-100);
  border-radius: var(--radius-md); padding: 20px 24px;
  transition: var(--transition);
}
.ci-card:hover { border-color: var(--lav-300); box-shadow: var(--shadow-sm); }
.ci-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-body h5 { color: var(--dark); margin-bottom: 6px; font-size: .95rem; }
.ci-body p { color: var(--gray-600); font-size: .86rem; line-height: 1.6; margin: 0; }
.ci-body a { color: var(--primary); text-decoration: none; }
.ci-body a:hover { color: var(--primary-dark); }
.ci-social h5 { color: var(--dark); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ─────────────────────────────────────
   RESPONSIVE — NEW ELEMENTS
───────────────────────────────────── */
@media (max-width: 992px) {
  .features-grid-4 { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .apply-wrapper { padding: 28px 20px; }
  .contact-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .features-grid-4 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
