/* ================================================================
   TECH EVANGELIST PVT. LTD. — Main Stylesheet
   ================================================================ */

/* ===== DESIGN TOKENS (CSS VARIABLES) ===== */
:root {
  /* --- Brand Colors --- */
  --primary: #1a3c6e;
  --primary-dark: #142e54;
  --accent: #2eb872;
  --accent-light: #eaf8f0;
  --color-green: #2eb872;
  --color-teal: #0ea968;
  --color-purple: #6f42c1;
  --color-coral: #2eb872;
  --color-sky: #1ba0d7;

  /* --- Text Colors --- */
  --heading: #1a1a2e;
  --body: #4a4a6a;
  --muted: #6c757d;
  --white: #ffffff;

  /* --- Background Colors --- */
  --bg-white: #ffffff;
  --bg-gray: #f7f8fa;
  --bg-blue-tint: #eef3fb;

  /* --- UI Tokens --- */
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 60, 110, 0.08);
  --shadow-lg: 0 10px 30px rgba(26, 60, 110, 0.12);
  --radius: 12px;

  /* --- OEM Brand Colors --- */
  --brand-cisco: #1ba0d7;
  --brand-lenovo: #2eb872;
  --brand-hp: #0096d6;
  --brand-dlink: #00529b;
  --brand-bosch: #2eb872;
  --brand-brother: #003595;
  --brand-xerox: #2eb872;
  --brand-ricoh: #2eb872;
  --brand-samsung: #1428a0;
  --brand-lexmark: #2eb872;

  /* --- Font Sizes --- */
  --fs-xxs: 0.75rem;
  /* 12px */
  --fs-xs: 0.8125rem;
  /* 13px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-body: 0.9375rem;
  /* 15px */
  --fs-base: 1rem;
  /* 16px */
  --fs-md: 1.0625rem;
  /* 17px */
  --fs-lg: 1.125rem;
  /* 18px */
  --fs-xl: 1.25rem;
  /* 20px */
  --fs-2xl: 1.375rem;
  /* 22px */
  --fs-3xl: 1.5rem;
  /* 24px */
  --fs-4xl: 1.875rem;
  /* 30px */
  --fs-stat: 2.75rem;
  /* 44px */
  --fs-big: 5rem;
  /* 80px */
  --fs-hero: clamp(2.25rem, 4vw, 3.25rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.25rem);
  --fs-h3: 1.25rem;

  /* --- Font Weights --- */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--heading);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  color: var(--body);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.bg-white {
  background: var(--bg-white);
}

.bg-gray {
  background: var(--bg-gray);
}

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

.section-head .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  font-size: var(--fs-md);
  color: var(--muted);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #279c61;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

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

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  transition: all 0.25s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-inner {
  padding: 10px 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 16px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.25s ease;
}

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

.brand-logo-img {
  /* height: 164px;
  width: 350px; */
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-logo-img--footer {
  height: 60px;
  opacity: 0.9;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-lg);
  position: relative;
}

.brand-logo::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 16px;
  background: var(--color-green);
  border-radius: 2px;
}

.brand-logo span {
  margin-left: 8px;
}

.brand-text {
  line-height: 1.1;
}

.brand-text .name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.brand-text .sub {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: var(--fw-medium);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-subbar {}

.nav-subbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 24px 5px;
  display: flex;
  justify-content: flex-end;
}

.nav-iso-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  /* background: #eef3fb;
  border: 1px solid #c7d8f0;
  border-radius: 999px; */
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.nav-iso-pill i {
  color: var(--accent);
  font-size: 16px;
}

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

.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--heading);
  font-weight: var(--fw-medium);
  font-size: 0.78rem;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--bg-gray);
}

.nav-cta {
  margin-left: 8px;
  padding: 8px 14px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: #279c61 !important;
  color: var(--white) !important;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 0 !important;
  background: none !important;
  color: #25D366 !important;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-whatsapp i {
  font-size: 42px;
  line-height: 1;
}

.nav-whatsapp:hover {
  color: #1ebe5d !important;
  transform: scale(1.1);
  background: none !important;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--body);
}

.dropdown-menu a:hover {
  background: var(--bg-gray);
  color: var(--primary);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--heading);
  transition: 0.3s;
}

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

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

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

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(150deg, #eef5ff 0%, #ffffff 45%, #f0fdf8 100%);
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow.g1 {
  width: 520px;
  height: 520px;
  background: rgba(26, 60, 110, .07);
  top: -140px;
  left: -80px;
}

.hero-glow.g2 {
  width: 420px;
  height: 420px;
  background: rgba(46, 184, 114, .08);
  bottom: -80px;
  right: -60px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero text */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #eef3fb;
  border: 1px solid #c7d8f0;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-badge-pill i {
  color: var(--accent);
}

.hero h1 {
  font-size: var(--fs-hero);
  margin-bottom: 20px;
  color: var(--heading);
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p.lead {
  font-size: var(--fs-lg);
  color: var(--body);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.75;
}

.hero p.lead strong {
  color: var(--primary);
  font-weight: var(--fw-bold);
}

.lead-sub {
  display: block;
  margin-top: 14px;
  font-size: var(--fs-sm);
  color: var(--muted);
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  line-height: 1.65;
}

.lead-sub strong {
  font-weight: var(--fw-semibold);
}

.lead-link strong {
  background: linear-gradient(90deg, #f58529, #dd2a7b, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.lead-link {
  text-decoration: none;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-secondary-dark {
  padding: 12px 24px;
  background: var(--primary);
  color: #fff !important;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s ease, transform .2s ease;
}

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

.btn-ghost-dark {
  padding: 12px 24px;
  background: transparent;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s ease, color .2s ease;
}

.btn-ghost-dark:hover {
  background: var(--primary);
  color: #fff !important;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-bottom: 32px;
}

.hero-trust i {
  color: var(--accent);
  font-size: 18px;
}

/* Mini stat strip */
.hero-mini-stats {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hms {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  min-width: 90px;
  gap: 3px;
  box-shadow: var(--shadow-sm);
}

.hms-num {
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hms-num i {
  font-size: 1.3rem;
  color: var(--accent);
}

.hms-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

/* 3D Network Visual */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.net-visual {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}

.net-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.nsvg-line {
  stroke: rgba(26, 60, 110, .2);
  stroke-width: 1.4;
  stroke-dasharray: 8 5;
  animation: dash-flow 4s linear infinite;
}

.nsvg-line:nth-child(2) {
  animation-delay: -.6s;
}

.nsvg-line:nth-child(3) {
  animation-delay: -1.2s;
}

.nsvg-line:nth-child(4) {
  animation-delay: -1.8s;
}

.nsvg-line:nth-child(5) {
  animation-delay: -2.4s;
}

.nsvg-line:nth-child(6) {
  animation-delay: -3s;
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -26;
  }
}

/* ===== EARTH GLOBE (Three.js WebGL) ===== */
.earth-canvas-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(46, 184, 114, .55)) drop-shadow(0 0 48px rgba(46, 184, 114, .2));
}

@keyframes core-glow {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(13, 148, 136, .55), 0 0 80px rgba(13, 148, 136, .2);
  }

  50% {
    box-shadow: 0 0 60px rgba(13, 148, 136, .8), 0 0 120px rgba(13, 148, 136, .35);
  }
}

/* Service nodes */
.net-node {
  position: absolute;
  text-align: center;
  z-index: 3;
  width: 72px;
}

.nn-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 6px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(26, 60, 110, .1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  transition: all .3s ease;
  animation: float-node 5s ease-in-out infinite;
}

.nn-lbl {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.net-node:hover .nn-icon {
  background: var(--accent-light);
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(46, 184, 114, .2);
}

/* Node positions (circle r=150 centered at 200,200 in 400x400) */
.nn-1 {
  top: 15px;
  left: 164px;
}

.nn-2 {
  top: 90px;
  left: 294px;
}

.nn-3 {
  top: 240px;
  left: 294px;
}

.nn-4 {
  top: 315px;
  left: 164px;
}

.nn-5 {
  top: 240px;
  left: 34px;
}

.nn-6 {
  top: 90px;
  left: 34px;
}

/* Staggered float animations */
.nn-1 .nn-icon {
  animation-delay: 0s;
}

.nn-2 .nn-icon {
  animation-delay: -.8s;
}

.nn-3 .nn-icon {
  animation-delay: -1.6s;
}

.nn-4 .nn-icon {
  animation-delay: -2.4s;
}

.nn-5 .nn-icon {
  animation-delay: -3.2s;
}

.nn-6 .nn-icon {
  animation-delay: -4s;
}

@keyframes float-node {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .net-visual {
    width: 320px;
    height: 320px;
  }

  .nn-1 {
    top: 8px;
    left: 124px;
  }

  .nn-2 {
    top: 66px;
    left: 238px;
  }

  .nn-3 {
    top: 190px;
    left: 238px;
  }

  .nn-4 {
    top: 252px;
    left: 124px;
  }

  .nn-5 {
    top: 190px;
    left: 10px;
  }

  .nn-6 {
    top: 66px;
    left: 10px;
  }
}

@media (max-width: 768px) {
  .hero-right {
    display: none;
  }

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

  .hero-mini-stats {
    gap: 8px;
  }

  .hms {
    min-width: 80px;
    padding: 8px 12px;
  }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-gray);
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-label {
  font-weight: var(--fw-semibold);
  color: var(--heading);
  font-size: var(--fs-body);
  text-align: center;
  margin-bottom: 20px;
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 28px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}

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

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

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  min-width: 150px;
  height: 90px;
  flex-shrink: 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.marquee-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.marquee-item img {
  max-height: 68px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.marquee-item:hover img {
  opacity: 0.85;
}

/* Client marquee — larger logos */
#clients .marquee-item {
  height: 120px;
  min-width: 190px;
  padding: 16px 40px;
}

#clients .marquee-item img {
  max-height: 95px;
  max-width: 210px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-white);
  padding: 190px 0 64px;
  color: var(--heading);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  margin-bottom: 20px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.breadcrumb i {
  font-size: 12px;
  color: var(--muted);
}

.page-hero .eyebrow {
  color: var(--accent);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--heading);
  margin-bottom: 16px;
}

.page-hero .lead {
  font-size: var(--fs-lg);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 32px;
}

.page-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.services-page-body {
  padding-top: 0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 88px 0 48px;
  }

  .page-hero h1 {
    font-size: var(--fs-2xl);
  }
}

/* ===== ABOUT (HOME SNIPPET) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-grid h2 {
  margin-bottom: 16px;
}

.about-grid p {
  margin-bottom: 16px;
  font-size: var(--fs-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  margin-bottom: 14px;
}

.feature-card h4 {
  font-size: var(--fs-base);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-blue-tint);
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.service-card:nth-child(2) .service-icon {
  background: #e6faf3;
  color: var(--color-teal);
}

.service-card:nth-child(3) .service-icon {
  background: var(--accent-light);
  color: var(--accent);
}

.service-card:nth-child(4) .service-icon {
  background: #f3eafd;
  color: var(--color-purple);
}

.service-card:nth-child(5) .service-icon {
  background: #eaf8f0;
  color: var(--color-coral);
}

.service-card:nth-child(6) .service-icon {
  background: #e6f6ff;
  color: var(--color-sky);
}

.service-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: var(--fs-body);
  margin-bottom: 16px;
  color: var(--muted);
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}

.service-card .learn-more:hover {
  gap: 8px;
}

/* ===== EXPANDABLE SERVICE CARDS ===== */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.svc-card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
}

.svc-card-num {
  font-size: var(--fs-xxs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-gray);
  padding: 3px 10px;
  border-radius: 20px;
}

.svc-card-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-card-intro {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.65;
  flex: 1;
}

/* Expand/collapse body */
.svc-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-expand.open {
  max-height: 1400px;
}

.svc-list-head {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary);
  margin: 18px 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.svc-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.svc-pills li {
  background: var(--accent-light);
  color: var(--primary-dark);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: var(--fs-xs);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-pills li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  line-height: 1;
  font-family: inherit;
}

/* Sub-categories (Digital Campus) */
.svc-subcats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
}

.svc-subcat-name {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.svc-subcat-name::before {
  content: '';
  width: 3px;
  height: 13px;
  background: var(--accent);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

/* Read More / Show Less button */
.svc-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: none;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit;
  align-self: flex-start;
}

.svc-more-btn:hover {
  background: var(--accent);
  color: #fff;
}

.svc-more-btn i {
  transition: transform 0.3s ease;
}

.svc-more-btn.open i {
  transform: rotate(180deg);
}

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

@media (max-width: 640px) {
  .svc-cards-grid { grid-template-columns: 1fr; }
}

/* ===== STATS BAR (DARK BLUE) ===== */
.stats-bar {
  background: var(--primary);
  color: var(--white);
  padding: 64px 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}

.stats-bar .stat .num {
  font-size: 2.2rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  white-space: nowrap;
}

.stats-bar .stat .num span {
  color: var(--accent);
}

.stats-bar .stat .label {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
}

.stats-bar .stat {
  padding: 0 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* ===== INDUSTRIES ===== */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 12px;
  text-align: center;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card i {
  font-size: 1.75rem;
  color: var(--primary);
}

.industry-card:hover i {
  color: var(--accent);
}

.industry-card span {
  font-weight: var(--fw-semibold);
  color: var(--heading);
  font-size: var(--fs-sm);
}

.industries-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

/* ===== OUR CLIENTS ===== */
.clients-section {
  padding-bottom: 72px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.client-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.client-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.client-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.client-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
}

.client-sector {
  font-size: var(--fs-xxs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  background: var(--bg-gray);
  padding: 3px 10px;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

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

/* ===== CANEXXA SUBSIDIARY SPOTLIGHT ===== */
.canexxa-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.canexxa-card .label-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 999px;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.canexxa-card h2 {
  margin-bottom: 6px;
}

.canexxa-card .subname {
  color: var(--accent);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  margin-bottom: 16px;
}

.canexxa-card p {
  margin-bottom: 20px;
  font-size: var(--fs-body);
}

.canexxa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.canexxa-pills span {
  padding: 6px 14px;
  background: var(--white);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
}

.canexxa-visual {
  background: linear-gradient(135deg, var(--accent-light) 0%, #d8f2e3 100%);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 240px;
}

.canexxa-visual .logo {
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}

.canexxa-logo-center {
  display: block;
  margin: 0 auto;
}

.canexxa-visual .ctitle {
  font-weight: var(--fw-bold);
  color: var(--heading);
  font-size: var(--fs-lg);
}

.canexxa-visual .ctag {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.canexxa-visual .badge-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.canexxa-visual .badge-row span {
  padding: 4px 10px;
  background: var(--white);
  border-radius: 6px;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
}

.canexxa-visual .badge-row span.accent-text {
  color: var(--accent);
}

.canexxa-visual .badge-row span.primary-text {
  color: var(--primary);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  margin-bottom: 8px;
  color: var(--heading);
}

.cta-banner p {
  color: var(--body);
  font-size: var(--fs-md);
  margin: 0;
}

.cta-banner .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-cta-pad {
  padding: 48px 0 80px;
}

/* ===== ABOUT PAGE ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, var(--bg-blue-tint) 0%, #dde8f5 100%);
  border-radius: var(--radius);
  min-height: 380px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.about-image .big-num {
  font-size: var(--fs-big);
  font-weight: var(--fw-extrabold);
  color: var(--primary);
  line-height: 1;
}

.about-image .label {
  color: var(--muted);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-sm);
}

.about-image .divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.about-image .sub {
  color: var(--heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-lg);
  text-align: center;
  max-width: 320px;
}

/* Vision Banner */
.vision-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2a6e 100%);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.vision-banner::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 20px;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.vision-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--white);
}

.vision-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.vision-statement {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Mission Block */
.mission-block {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 40px;
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.mission-header i {
  font-size: 22px;
  color: var(--accent);
}

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

.mission-point {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 20px;
  border-top: 3px solid var(--accent);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mission-point:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.mp-icon {
  width: 44px;
  height: 44px;
  background: #e8f8ef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 14px;
}

.mission-point h4 {
  font-size: var(--fs-body);
  margin-bottom: 8px;
  color: var(--heading);
}

.mission-point p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
}

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

@media (max-width: 768px) {
  .vision-banner {
    padding: 40px 24px;
  }

  .vision-statement {
    font-size: var(--fs-lg);
  }

  .mission-block {
    padding: 28px 20px;
  }

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

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

.strength-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s ease;
}

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

.strength-card .ic {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-blue-tint);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-3xl);
  margin-bottom: 16px;
}

.strength-card h4 {
  font-size: var(--fs-md);
  margin-bottom: 8px;
}

.strength-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: stretch;
}

.cert-iso {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-blue-tint) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cert-iso .seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.cert-iso h4 {
  font-size: var(--fs-xl);
  color: var(--primary);
}

.cert-iso p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}

.partner-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.partner-block h4 {
  margin-bottom: 14px;
}

.partner-block p {
  margin-bottom: 16px;
  font-size: var(--fs-body);
  color: var(--muted);
}

.subsidiary-box {
  background: var(--white);
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.subsidiary-box .icon-wrap {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.subsidiary-box .info h3 {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: var(--fs-3xl);
}

.subsidiary-box .info .role {
  font-weight: var(--fw-semibold);
  color: var(--heading);
  margin-bottom: 10px;
  font-size: var(--fs-body);
}

.subsidiary-box .info p {
  font-size: var(--fs-body);
  margin: 0;
}

/* ===== SERVICES DETAIL BLOCKS ===== */
.service-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  margin-bottom: 32px;
}

.service-block.gray-bg {
  background: var(--bg-gray);
}

.service-block .head-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.service-block .badge {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-block .badge.blue {
  background: var(--bg-blue-tint);
  color: var(--primary);
}

.service-block .badge.teal {
  background: #e6faf3;
  color: var(--color-teal);
}

.service-block .badge.orange {
  background: var(--accent-light);
  color: var(--accent);
}

.service-block .badge.purple {
  background: #f3eafd;
  color: var(--color-purple);
}

.service-block .badge.green {
  background: #e6f7e9;
  color: var(--color-green);
}

.service-block .badge.coral {
  background: #eaf8f0;
  color: var(--color-coral);
}

.service-block .head-row h2 {
  margin: 0;
}

.service-block .head-row .tag {
  margin-left: auto;
  padding: 6px 14px;
  background: var(--bg-gray);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--muted);
}

.service-block .body-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-block .body-grid p {
  margin-bottom: 14px;
  font-size: var(--fs-base);
}

.service-block .solutions-list {
  background: var(--bg-gray);
  border-radius: 10px;
  padding: 24px;
}

.service-block.gray-bg .solutions-list {
  background: var(--white);
}

.service-block .solutions-list h4 {
  margin-bottom: 14px;
  font-size: var(--fs-base);
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-block .solutions-list ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: var(--fs-body);
  color: var(--body);
  border-bottom: 1px dashed var(--border);
}

.service-block .solutions-list ul li:last-child {
  border-bottom: none;
}

.service-block .solutions-list ul li::before {
  content: "\ea5e";
  font-family: "tabler-icons";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--color-teal);
  font-size: var(--fs-lg);
}

.service-block .brand-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.service-block .brand-row .label {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: var(--fw-semibold);
  margin-right: 6px;
}

.service-block .highlight-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  margin-bottom: 14px;
}

/* ===== PROJECTS / CASE STUDIES ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

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

.case-header {
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-blue-tint) 0%, #dde8f5 100%);
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.case-header.orange {
  background: linear-gradient(135deg, var(--accent-light) 0%, #d8f2e3 100%);
}

.case-header.teal {
  background: linear-gradient(135deg, #e6faf3 0%, #bff0dd 100%);
}

.case-header .icons {
  display: flex;
  gap: 8px;
}

.case-header .icons i {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: var(--fs-lg);
}

.case-header.orange .icons i {
  color: var(--accent);
}

.case-header.teal .icons i {
  color: var(--color-teal);
}

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

.case-tag {
  padding: 4px 10px;
  background: var(--white);
  border-radius: 6px;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  color: var(--primary);
}

.case-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.case-body h3 {
  font-size: var(--fs-lg);
}

.case-row {
  display: flex;
  gap: 10px;
}

.case-row .label {
  flex-shrink: 0;
  width: 80px;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  padding-top: 2px;
}

.case-row .val {
  font-size: 0.9rem;
  color: var(--body);
}

.case-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 48px;
}

.case-stats-bar .stat {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--border);
}

.case-stats-bar .stat:last-child {
  border-right: none;
}

.case-stats-bar .stat .num {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.case-stats-bar .stat .label {
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* ===== CLIENTS PAGE ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-type-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .25s ease;
}

.client-type-col:hover {
  box-shadow: var(--shadow-md);
}

.client-type-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  font-size: var(--fs-lg);
}

.client-type-col h3 i {
  color: var(--accent);
}

.client-type-col ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: var(--fs-body);
  color: var(--body);
}

.client-type-col ul li::before {
  content: "\eb7b";
  font-family: "tabler-icons";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary);
  font-size: var(--fs-base);
}

.trust-statement {
  text-align: center;
  max-width: 780px;
  margin: 48px auto 0;
  padding: 48px;
  background: var(--bg-blue-tint);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.trust-statement h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: var(--fs-2xl);
}

.trust-statement p {
  font-size: var(--fs-md);
}

.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 10px;
  font-weight: var(--fw-bold);
  color: var(--primary);
  font-size: var(--fs-body);
}

.trust-badge.orange {
  border-color: var(--accent);
  color: var(--accent);
}

.trust-badge i {
  font-size: var(--fs-xl);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-office-box {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px 10px;
  margin-bottom: 16px;
  background: var(--bg-gray);
}

.contact-office-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-xxs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--primary);
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.cob-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.cob-ic {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cob-row p {
  margin: 3px 0 0;
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.55;
}

.cob-row strong {
  font-size: var(--fs-sm);
  color: var(--heading);
}

.cob-row a {
  font-size: var(--fs-sm);
  color: var(--accent);
  font-weight: 500;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .25s ease;
}

.contact-info-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-info-card .ic {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
}

.contact-info-card h4 {
  font-size: var(--fs-base);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: var(--fs-body);
  color: var(--body);
  margin: 0;
}

.contact-info-card a {
  display: block;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h3 {
  margin-bottom: 6px;
}

.contact-form .sub {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: var(--fs-body);
}

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

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

.form-group.full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.form-group label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--heading);
}

.form-group label .req {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--heading);
  background: var(--white);
  transition: all .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group .err {
  color: var(--color-coral);
  font-size: var(--fs-xxs);
  display: none;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: var(--color-coral);
}

.form-group.invalid .err {
  display: block;
}

.form-note {
  color: var(--muted);
  font-size: var(--fs-xs);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-note i {
  color: var(--color-teal);
}

.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.svc-pill {
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  transition: all .2s ease;
}

.svc-pill:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  background: var(--color-teal);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform .3s ease;
}

.toast.show {
  transform: translateX(0);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  gap: 48px;
}

.footer-grid--top {
  grid-template-columns: 1.5fr 1fr 1fr;
}

.footer-contact-row-section {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 36px;
}

.footer-contact-heading {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--heading);
  margin-bottom: 20px;
  font-weight: var(--fw-bold);
}

.footer-contact-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--heading);
  margin-bottom: 20px;
  font-weight: var(--fw-bold);
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: var(--body);
  margin-bottom: 10px;
}

.footer-col li a {
  color: var(--body);
}

.footer-col li a:hover {
  color: var(--accent);
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand .tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  font-style: italic;
}

.footer-brand .iso-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  margin-bottom: 14px;
}

.footer-office-box {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px 8px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.04);
}

.footer-office-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-xxs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

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

.footer-map {
  margin: 12px 0;
  border-radius: 8px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 160px;
  display: block;
}

.footer-canexxa {
  margin-top: 16px;
  padding: 16px;
  background: var(--white);
  border: 1px dashed var(--accent);
  border-radius: 10px;
}

.footer-canexxa-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-canexxa .nm {
  font-weight: var(--fw-bold);
  color: var(--accent);
  font-size: var(--fs-sm);
}

.footer-canexxa .desc {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--muted);
}

.footer-bottom span {
  color: var(--accent);
  font-weight: var(--fw-semibold);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .industries-row {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .services-grid,
  .strengths-grid,
  .case-grid,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .about-grid,
  .about-intro-grid,
  .cert-grid,
  .contact-grid,
  .canexxa-card {
    grid-template-columns: 1fr;
  }

  .stats-bar .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stats-bar .stat:nth-child(3) {
    border-right: none;
  }

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

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

  .subsidiary-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-block .body-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE — MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .hero {
    padding: 120px 0 56px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }

  .nav-cta {
    margin: 8px 0 0 !important;
    text-align: center;
  }

  .nav-whatsapp {
    margin: 8px 0 0 !important;
    font-size: 26px !important;
  }

  .nav-subbar {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .strengths-grid,
  .case-grid,
  .clients-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .industries-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stats-bar .container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stats-bar .stat {
    border-right: none !important;
  }

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

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

  .case-stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .case-stats-bar .stat {
    border-right: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .case-stats-bar .stat:last-child,
  .case-stats-bar .stat:nth-last-child(2) {
    border-bottom: none;
  }

  .canexxa-card,
  .service-block,
  .contact-form,
  .trust-statement {
    padding: 28px;
  }

  .cta-banner {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  h1 {
    font-size: var(--fs-5xl) !important;
  }

  .hero-ctas .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ===== RESPONSIVE — SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .industries-row {
    grid-template-columns: 1fr !important;
  }

  .case-stats-bar {
    grid-template-columns: 1fr;
  }
}