/* ============================================================
   TECHSTAS GLOBAL INNOVATIONS — ENTERPRISE DESIGN SYSTEM 2.0
   Fortune 500 · AI-Era · Premium Green Identity
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS & CSS VARIABLES
   ============================================================ */
:root {
  /* --- Brand Colors --- */
  --tgi-primary:        #488f82;
  --tgi-primary-dark:   #357568;
  --tgi-primary-light:  #5aaa9c;
  --tgi-dark:           #06322c;
  --tgi-darker:         #041f1a;
  --tgi-accent:         #2dd4aa;
  --tgi-accent-glow:    rgba(45,212,170,0.35);
  --tgi-accent-alt:     #10b981;

  /* --- Green Scale --- */
  --tgi-50:   #f0fdf8;
  --tgi-100:  #d1fae5;
  --tgi-200:  #a7f3d0;
  --tgi-300:  #6ee7b7;
  --tgi-400:  #34d399;
  --tgi-500:  #10b981;
  --tgi-600:  #059669;
  --tgi-700:  #047857;
  --tgi-800:  #065f46;
  --tgi-900:  #064e3b;

  /* --- Neutral Scale --- */
  --neu-50:   #f8fafc;
  --neu-100:  #f1f5f9;
  --neu-200:  #e2e8f0;
  --neu-300:  #cbd5e1;
  --neu-400:  #94a3b8;
  --neu-500:  #64748b;
  --neu-600:  #475569;
  --neu-700:  #334155;
  --neu-800:  #1e293b;
  --neu-900:  #0f172a;

  /* --- Gradients --- */
  --grad-brand:   linear-gradient(135deg, #488f82 0%, #06322c 100%);
  --grad-accent:  linear-gradient(135deg, #2dd4aa 0%, #488f82 60%, #06322c 100%);
  --grad-hero:    linear-gradient(135deg, rgba(4,31,26,0.96) 0%, rgba(6,50,44,0.88) 50%, rgba(72,143,130,0.75) 100%);
  --grad-card:    linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  --grad-dark:    linear-gradient(180deg, #041f1a 0%, #06322c 100%);
  --grad-light:   linear-gradient(180deg, #f0fdf8 0%, #ffffff 100%);
  --grad-shine:   linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);

  /* --- Shadows --- */
  --shadow-xs:    0 1px 2px rgba(6,50,44,0.06);
  --shadow-sm:    0 2px 8px rgba(6,50,44,0.08), 0 1px 3px rgba(6,50,44,0.06);
  --shadow-md:    0 4px 16px rgba(6,50,44,0.1), 0 8px 24px rgba(6,50,44,0.08);
  --shadow-lg:    0 8px 32px rgba(6,50,44,0.12), 0 16px 48px rgba(6,50,44,0.1);
  --shadow-xl:    0 16px 48px rgba(6,50,44,0.16), 0 32px 80px rgba(6,50,44,0.14);
  --shadow-glow:  0 0 32px rgba(72,143,130,0.3), 0 0 64px rgba(72,143,130,0.12);
  --shadow-glow-sm: 0 0 16px rgba(72,143,130,0.25);
  --shadow-accent: 0 8px 32px rgba(45,212,170,0.2);
  --shadow-dark:  0 4px 24px rgba(4,31,26,0.5);

  /* --- Typography --- */
  --font-primary:   'Syne', 'Inter', system-ui, sans-serif;
  --font-secondary: 'Inter', system-ui, sans-serif;

  /* --- Spacing — tightened to prevent blank gaps --- */
  --section-pt: 72px;
  --section-pb: 72px;
  --section-pt-sm: 40px;
  --section-pb-sm: 40px;

  /* --- Borders --- */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;
  --border-light: 1px solid rgba(72,143,130,0.15);
  --border-medium: 1px solid rgba(72,143,130,0.25);
  --border-dark: 1px solid rgba(72,143,130,0.4);
  --border-glass: 1px solid rgba(255,255,255,0.12);

  /* --- Transitions --- */
  --t-fast:    0.15s ease;
  --t-base:    0.25s ease;
  --t-slow:    0.4s ease;
  --t-bounce:  0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-spring:  0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* --- Z-index scale --- */
  --z-below:   -1;
  --z-base:     0;
  --z-raised:  10;
  --z-dropdown: 100;
  --z-sticky:  200;
  --z-modal:   300;
  --z-toast:   400;
}


/* ============================================================
   2. BASE RESETS & GLOBAL ENHANCEMENTS
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--neu-800);
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: var(--neu-100); }
::-webkit-scrollbar-thumb  { background: var(--tgi-primary); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--tgi-dark); }

/* Selection color */
::selection {
  background: var(--tgi-accent);
  color: var(--tgi-darker);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--t-base); }


/* ============================================================
   3. TYPOGRAPHY SYSTEM
   ============================================================ */
.ent-display {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--tgi-darker);
}

.ent-h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ent-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.ent-h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.ent-h4 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
}

.ent-body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--neu-600);
}

.ent-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neu-600);
}

.ent-caption {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--neu-500);
}

.ent-overline {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tgi-primary);
}

/* Gradient Text */
.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #2dd4aa 0%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================================
   4. SECTION UTILITIES
   ============================================================ */
.ent-section {
  padding: var(--section-pt) 0 var(--section-pb);
  position: relative;
}

.ent-section-sm {
  padding: var(--section-pt-sm) 0 var(--section-pb-sm);
}

/* Section Label + Heading Pattern */
.ent-section-header {
  margin-bottom: 48px;
}

.ent-section-header .ent-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.ent-section-header .ent-overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

/* Dark section variant */
.ent-section-dark {
  background: var(--grad-dark);
  color: #fff;
}

.ent-section-dark .ent-overline { color: var(--tgi-accent); }
.ent-section-dark .ent-body,
.ent-section-dark .ent-body-lg,
.ent-section-dark p { color: rgba(255,255,255,0.75); }

/* Subtle section variant */
.ent-section-subtle {
  background: var(--tgi-50);
}

/* Dotted grid background */
.ent-bg-grid {
  background-image: radial-gradient(circle, rgba(72,143,130,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.ent-bg-grid-dark {
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}


/* ============================================================
   5. ENTERPRISE TOPBAR
   ============================================================ */
.ent-topbar {
  background: var(--tgi-darker);
  padding: 8px 0;
  position: relative;
  z-index: var(--z-sticky);
}

.ent-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.ent-topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ent-topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--t-fast);
}

.ent-topbar-contact a:hover { color: var(--tgi-accent); }
.ent-topbar-contact a img,
.ent-topbar-contact a i { opacity: 0.7; }

.ent-topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ent-topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: all var(--t-base);
  border: var(--border-glass);
}

.ent-topbar-social a:hover {
  background: var(--tgi-accent);
  color: var(--tgi-darker);
  border-color: var(--tgi-accent);
}


/* ============================================================
   6. ENTERPRISE NAVIGATION
   ============================================================ */
.ent-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-light);
  transition: all var(--t-slow);
}

.ent-header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: var(--shadow-md);
}

.ent-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.ent-logo img {
  height: 56px;
  width: auto;
  transition: opacity var(--t-base);
}

.ent-logo:hover img { opacity: 0.85; }

/* Primary Nav */
.ent-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.ent-nav > li { position: relative; }

.ent-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neu-700);
  border-radius: var(--radius-sm);
  transition: all var(--t-base);
  letter-spacing: 0.02em;
}

.ent-nav > li > a i {
  font-size: 0.75rem;
  transition: transform var(--t-base);
}

.ent-nav > li > a:hover,
.ent-nav > li.active > a {
  color: var(--tgi-dark);
  background: var(--tgi-50);
}

.ent-nav > li.active > a { color: var(--tgi-primary); }

/* Mega Menu Dropdown */
.ent-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: var(--border-light);
  padding: 28px;
  padding-top: 36px; /* 8px visual gap now inside — no hover gap */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-slow);
  transform: translateX(-50%) translateY(8px);
  z-index: var(--z-dropdown);
}

.ent-nav > li:hover .ent-mega-menu,
.ent-nav > li:focus-within .ent-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ent-nav > li:hover > a > i { transform: rotate(180deg); }

.ent-mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ent-mega-group h6 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tgi-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: var(--border-light);
}

.ent-mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin-bottom: 2px;
  border-radius: var(--radius-sm);
  color: var(--neu-700);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--t-base);
}

.ent-mega-link .icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--tgi-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--tgi-primary);
  transition: all var(--t-base);
}

.ent-mega-link:hover {
  background: var(--tgi-50);
  color: var(--tgi-dark);
}

.ent-mega-link:hover .icon {
  background: var(--tgi-primary);
  color: #fff;
}

/* Nav CTA Buttons */
.ent-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

/* Mobile toggle */
.ent-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.ent-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tgi-dark);
  border-radius: 2px;
  transition: all var(--t-base);
}


/* ============================================================
   7. BUTTON SYSTEM
   ============================================================ */
.btn-enterprise {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-bounce);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-enterprise::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shine);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-enterprise:hover::after { transform: translateX(100%); }

/* Primary */
.btn-ent-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-glow-sm);
}

.btn-ent-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn-ent-primary:active { transform: translateY(0); }

/* Accent */
.btn-ent-accent {
  background: var(--tgi-accent);
  color: var(--tgi-darker);
  box-shadow: var(--shadow-accent);
}

.btn-ent-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(45,212,170,0.35);
  color: var(--tgi-darker);
}

/* Outline */
.btn-ent-outline {
  background: transparent;
  color: var(--tgi-primary);
  border-color: var(--tgi-primary);
}

.btn-ent-outline:hover {
  background: var(--tgi-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Ghost (on dark bg) */
.btn-ent-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn-ent-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* Size variants */
.btn-enterprise.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-enterprise.btn-sm { padding: 9px 20px; font-size: 0.8125rem; }
.btn-enterprise.btn-xl { padding: 20px 48px; font-size: 1.0625rem; }

/* Icon button */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
}


/* ============================================================
   8. BADGE / TAG / CHIP COMPONENTS
   ============================================================ */
.ent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(72,143,130,0.12);
  color: var(--tgi-primary-dark);
  border: 1px solid rgba(72,143,130,0.2);
}

.badge-accent {
  background: rgba(45,212,170,0.12);
  color: var(--tgi-600);
  border: 1px solid rgba(45,212,170,0.25);
}

.badge-dark {
  background: var(--tgi-dark);
  color: var(--tgi-accent);
}

.badge-new {
  background: linear-gradient(135deg, #2dd4aa, #10b981);
  color: white;
}

/* Feature pill */
.ent-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--tgi-50);
  border: var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tgi-dark);
}

.ent-pill i {
  color: var(--tgi-primary);
  font-size: 1rem;
}


/* ============================================================
   9. CARD SYSTEM
   ============================================================ */
.ent-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-slow);
  overflow: hidden;
  position: relative;
}

.ent-card:hover {
  border-color: rgba(72,143,130,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Glass card */
.ent-card-glass {
  background: rgba(255,255,255,0.06);
  border: var(--border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
  transition: all var(--t-slow);
}

.ent-card-glass:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* Service wing card */
.ent-service-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-slow);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.ent-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.ent-service-card:hover::before { transform: scaleX(1); }

.ent-service-card:hover {
  border-color: rgba(72,143,130,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.ent-service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--tgi-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.625rem;
  color: var(--tgi-primary);
  transition: all var(--t-slow);
  border: var(--border-light);
}

.ent-service-card:hover .ent-service-icon {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow-sm);
}

.ent-service-card h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--tgi-darker);
  margin-bottom: 10px;
  line-height: 1.35;
}

.ent-service-card p {
  font-size: 0.875rem;
  color: var(--neu-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.ent-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tgi-primary);
  transition: all var(--t-base);
}

.ent-service-card-link:hover {
  color: var(--tgi-dark);
  gap: 10px;
}

/* Stats card */
.ent-stat-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.05);
  border: var(--border-glass);
  backdrop-filter: blur(12px);
  transition: all var(--t-slow);
}

.ent-stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-sm);
}

.ent-stat-number {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.ent-stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  display: block;
}

/* Sector card */
.ent-sector-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: var(--border-light);
  transition: all var(--t-slow);
  cursor: pointer;
  position: relative;
}

.ent-sector-card:hover {
  border-color: var(--tgi-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.ent-sector-icon-wrap {
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ent-sector-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-sm);
}

.ent-sector-card-body { padding: 0 24px 24px; }

.ent-sector-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tgi-darker);
  margin-bottom: 6px;
}

.ent-sector-card-body p {
  font-size: 0.8125rem;
  color: var(--neu-500);
  line-height: 1.6;
}

.ent-sector-footer {
  padding: 14px 24px;
  border-top: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ent-sector-footer span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tgi-primary);
}

.ent-sector-footer i { color: var(--tgi-primary); font-size: 1rem; }


/* ============================================================
   10. ENTERPRISE HERO SECTION
   ============================================================ */
.ent-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ent-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ent-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

/* Animated grid overlay */
.ent-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(72,143,130,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72,143,130,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.ent-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.ent-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(45,212,170,0.12);
  border: 1px solid rgba(45,212,170,0.3);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tgi-accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ent-hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tgi-accent);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.ent-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
  max-width: 780px;
}

.ent-hero p {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
}

.ent-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.ent-hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ent-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ent-hero-stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--tgi-accent);
  line-height: 1;
}

.ent-hero-stat span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.hero-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Floating elements */
.hero-float-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  position: absolute;
  box-shadow: var(--shadow-dark);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero-float-card:nth-child(2) { animation-delay: 1s; }
.hero-float-card:nth-child(3) { animation-delay: 2s; }


/* ============================================================
   11. STATS STRIP
   ============================================================ */
.ent-stats-strip {
  background: var(--grad-dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.ent-stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(72,143,130,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 70% 50%, rgba(45,212,170,0.1) 0%, transparent 60%);
}

.ent-stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.ent-stats-strip-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.ent-stats-strip-item:last-child { border-right: none; }

.ent-stats-strip-item .num {
  display: block;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--tgi-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.ent-stats-strip-item .lbl {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.4;
}


/* ============================================================
   12. SERVICES WINGS SECTION
   ============================================================ */
.ent-wings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) { .ent-wings-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .ent-wings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .ent-wings-grid { grid-template-columns: 1fr; } }


/* ============================================================
   13. SECTORS GRID
   ============================================================ */
.ent-sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1199px) { .ent-sectors-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 991px)  { .ent-sectors-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px)  { .ent-sectors-grid { grid-template-columns: repeat(2, 1fr); } }


/* ============================================================
   14. ENTERPRISE PROCESS / TIMELINE
   ============================================================ */
.ent-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.ent-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tgi-primary), transparent);
  z-index: 0;
}

.ent-process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.ent-process-num {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--grad-brand);
  border: 6px solid var(--tgi-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow-sm);
  transition: all var(--t-bounce);
}

.ent-process-step:hover .ent-process-num {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.ent-process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tgi-darker);
  margin-bottom: 8px;
}

.ent-process-step p {
  font-size: 0.875rem;
  color: var(--neu-500);
  line-height: 1.6;
}


/* ============================================================
   15. TECH STACK SECTION
   ============================================================ */
.ent-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ent-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: var(--border-light);
  width: 88px;
  transition: all var(--t-slow);
  cursor: default;
}

.ent-tech-item:hover {
  border-color: var(--tgi-primary);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-4px);
  background: var(--tgi-50);
}

.ent-tech-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.ent-tech-item span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--neu-600);
  text-align: center;
  line-height: 1.3;
}


/* ============================================================
   16. CLIENTS SECTION
   ============================================================ */
.ent-client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.ent-client-logo {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  filter: grayscale(0.4);
  min-height: 80px;
}

.ent-client-logo:hover {
  filter: grayscale(0);
  border-color: var(--tgi-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.ent-client-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}


/* ============================================================
   17. CTA SECTIONS
   ============================================================ */
.ent-cta-section {
  background: var(--grad-dark);
  padding: var(--section-pt) 0 var(--section-pb);
  position: relative;
  overflow: hidden;
}

.ent-cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72,143,130,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.ent-cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,170,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ent-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ent-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.ent-cta-inner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ent-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================================
   18. ENTERPRISE FOOTER
   ============================================================ */
.ent-footer {
  background: var(--tgi-darker);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.ent-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72,143,130,0.5), transparent);
}

.ent-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ent-footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.ent-footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.ent-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.ent-footer-contact-item i {
  color: var(--tgi-accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ent-footer-contact-item a,
.ent-footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-base);
}

.ent-footer-contact-item a:hover { color: var(--tgi-accent); }

.ent-footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ent-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ent-footer-links li {
  margin-bottom: 8px;
}

.ent-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--t-base);
}

.ent-footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t-base);
  color: var(--tgi-accent);
  font-size: 0.75rem;
}

.ent-footer-links a:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 4px;
}

.ent-footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.ent-footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.ent-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  border: var(--border-glass);
  transition: all var(--t-base);
}

.ent-footer-social a:hover {
  background: var(--tgi-accent);
  color: var(--tgi-darker);
  border-color: var(--tgi-accent);
  transform: translateY(-2px);
}

.ent-footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ent-footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.ent-footer-bottom a { color: var(--tgi-accent); }

.ent-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.ent-footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--t-base);
}

.ent-footer-bottom-links a:hover { color: var(--tgi-accent); }

.ent-footer-newsletter {
  margin-top: 20px;
}

.ent-footer-newsletter p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.ent-newsletter-form {
  display: flex;
  gap: 8px;
}

.ent-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: border-color var(--t-base);
  font-family: var(--font-primary);
}

.ent-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.ent-newsletter-form input:focus { border-color: var(--tgi-accent); }

.ent-newsletter-form button {
  background: var(--tgi-accent);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: var(--tgi-darker);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  font-family: var(--font-primary);
}

.ent-newsletter-form button:hover {
  background: var(--tgi-300);
  transform: scale(1.03);
}


/* ============================================================
   19. MARQUEE / SCROLL TICKER
   ============================================================ */
.ent-marquee {
  overflow: hidden;
  background: var(--grad-dark);
  padding: 16px 0;
  border-top: var(--border-dark);
  border-bottom: var(--border-dark);
}

.ent-marquee-inner {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 0;
}

.ent-marquee-inner:hover { animation-play-state: paused; }

.ent-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ent-marquee-item i {
  color: var(--tgi-accent);
  font-size: 0.75rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ============================================================
   20. FEATURE SECTIONS
   ============================================================ */
.ent-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ent-feature-grid.reverse { direction: rtl; }
.ent-feature-grid.reverse > * { direction: ltr; }

.ent-feature-visual {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}

.ent-feature-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

.ent-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ent-feature-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.ent-feature-list .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--tgi-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tgi-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  border: var(--border-light);
}

.ent-feature-list .text h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tgi-darker);
  margin-bottom: 4px;
}

.ent-feature-list .text p {
  font-size: 0.875rem;
  color: var(--neu-500);
  line-height: 1.6;
  margin: 0;
}


/* ============================================================
   21. WHY CHOOSE US
   ============================================================ */
.ent-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ent-why-card {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}

.ent-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: transform var(--t-slow);
}

.ent-why-card:hover::after { transform: scaleX(1); }

.ent-why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(72,143,130,0.25);
}

.ent-why-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.ent-why-card h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--tgi-darker);
  margin-bottom: 10px;
}

.ent-why-card p {
  font-size: 0.875rem;
  color: var(--neu-500);
  line-height: 1.65;
  margin: 0;
}


/* ============================================================
   22. TESTIMONIAL SECTION
   ============================================================ */
.ent-testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-slow);
  position: relative;
}

.ent-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 6rem;
  font-weight: 900;
  color: var(--tgi-100);
  line-height: 1;
  font-family: Georgia, serif;
}

.ent-testimonial-card:hover {
  border-color: var(--tgi-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ent-testimonial-text {
  font-size: 0.9375rem;
  color: var(--neu-600);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ent-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ent-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--tgi-100);
}

.ent-testimonial-author h6 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--tgi-darker);
  margin-bottom: 2px;
}

.ent-testimonial-author span {
  font-size: 0.8125rem;
  color: var(--tgi-primary);
}

.ent-stars {
  color: #f59e0b;
  font-size: 0.875rem;
  margin-bottom: 12px;
}


/* ============================================================
   23. AI / TECHNOLOGY SECTION SPECIAL
   ============================================================ */
.ent-ai-card {
  background: linear-gradient(145deg, var(--tgi-dark), var(--tgi-darker));
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: var(--border-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all var(--t-slow);
}

.ent-ai-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,170,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ent-ai-card:hover {
  border-color: var(--tgi-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.ent-ai-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(45,212,170,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--tgi-accent);
  margin-bottom: 20px;
  border: 1px solid rgba(45,212,170,0.2);
}

.ent-ai-card h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.ent-ai-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}


/* ============================================================
   24. PARTNERS MARQUEE BAND
   ============================================================ */
.ent-partners-band {
  padding: 48px 0;
  background: #fff;
  border-top: var(--border-light);
  border-bottom: var(--border-light);
  overflow: hidden;
}

.ent-partners-track {
  display: flex;
  gap: 48px;
  animation: partners-scroll 40s linear infinite;
}

.ent-partners-track:hover { animation-play-state: paused; }

.ent-partner-logo {
  flex-shrink: 0;
  height: 48px;
  opacity: 0.5;
  transition: opacity var(--t-base);
  object-fit: contain;
  filter: grayscale(1);
}

.ent-partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ============================================================
   25. WHATSAPP / BACK-TO-TOP / FLOATING UI
   ============================================================ */
.ent-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: var(--z-modal);
  transition: all var(--t-bounce);
}

.ent-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  color: #fff;
}

.ent-back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--grad-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.125rem;
  box-shadow: var(--shadow-glow-sm);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}

.ent-back-top.visible {
  opacity: 1;
  visibility: visible;
}

.ent-back-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}


/* ============================================================
   26. MOBILE RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .ent-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .ent-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
  :root {
    --section-pt: 72px;
    --section-pb: 72px;
  }

  .ent-header-inner { padding: 12px 0; }

  .ent-nav,
  .ent-nav-cta { display: none; }

  .ent-nav-toggle { display: flex; }

  .ent-mega-menu { display: none !important; }

  .ent-feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .ent-feature-grid.reverse { direction: ltr; }

  .ent-process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ent-process-grid::before { display: none; }

  .ent-stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .ent-stats-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ent-stats-strip-item:nth-child(3),
  .ent-stats-strip-item:last-child { border-bottom: none; }

  .ent-why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root {
    --section-pt: 56px;
    --section-pb: 56px;
    --section-pt-sm: 40px;
    --section-pb-sm: 40px;
  }

  .ent-topbar { padding: 6px 0; }
  .ent-footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .ent-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .ent-hero-stats { gap: 20px; }
  .hero-divider { display: none; }

  .ent-why-grid { grid-template-columns: 1fr; }
  .ent-client-grid { grid-template-columns: repeat(3, 1fr); }

  .ent-section-header { margin-bottom: 40px; }
}

@media (max-width: 575px) {
  .ent-cta-actions { flex-direction: column; align-items: stretch; }
  .ent-cta-actions .btn-enterprise { justify-content: center; }
  .ent-hero-actions { flex-direction: column; }
  .ent-client-grid { grid-template-columns: repeat(2, 1fr); }
  .ent-process-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   27. PRELOADER — Premium CSS v3.0
   ============================================================ */
.ent-preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--tgi-darker, #041f1a);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1),
              visibility 0.6s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

/* Radial glow background */
.ent-preloader::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%,
    rgba(72,143,130,.18) 0%, transparent 65%);
  animation: pl-glow-pulse 2.5s ease-in-out infinite;
}
/* Grid pattern */
.ent-preloader::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(72,143,130,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72,143,130,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ent-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Logo container */
.ent-preloader-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
}

/* Logo image */
.ent-preloader-logo {
  width: 96px; height: auto;
  filter: drop-shadow(0 0 24px rgba(45,212,170,.4));
  animation: pl-logo-in 0.7s cubic-bezier(.34,1.56,.64,1) both;
}

/* Brand wordmark */
.ent-preloader-name {
  font-family: 'Poppins', 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  animation: pl-fade-up 0.8s 0.2s ease both;
}
.ent-preloader-name span { color: var(--tgi-accent, #2dd4aa); }

/* Progress track */
.ent-preloader-track {
  width: 240px; height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px; overflow: hidden;
  position: relative;
}
/* Shimmer bar */
.ent-preloader-track::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(255,255,255,.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: pl-shimmer 1.5s linear infinite;
}

.ent-preloader-bar {
  height: 100%;
  background: linear-gradient(90deg, #488f82 0%, #2dd4aa 60%, #a7f3d0 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(45,212,170,.5);
  animation: pl-bar-fill 1.6s cubic-bezier(.4,0,.1,1) forwards;
}

/* Dots */
.ent-preloader-dots {
  display: flex; gap: 8px;
  animation: pl-fade-up 0.8s 0.35s ease both;
}
.ent-preloader-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(72,143,130,.5);
}
.ent-preloader-dots span:nth-child(1) { animation: pl-dot 1.2s 0s ease-in-out infinite; }
.ent-preloader-dots span:nth-child(2) { animation: pl-dot 1.2s 0.2s ease-in-out infinite; }
.ent-preloader-dots span:nth-child(3) { animation: pl-dot 1.2s 0.4s ease-in-out infinite; }

/* ── Keyframes ── */
@keyframes pl-logo-in {
  from { opacity: 0; transform: scale(.7) translateY(12px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
@keyframes pl-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pl-bar-fill {
  0%   { width: 0%;   }
  40%  { width: 65%;  }
  80%  { width: 88%;  }
  100% { width: 100%; }
}
@keyframes pl-shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}
@keyframes pl-dot {
  0%, 80%, 100% { transform: scale(.6); opacity: .3; }
  40%           { transform: scale(1);  opacity: 1;  background: #2dd4aa; }
}
@keyframes pl-glow-pulse {
  0%, 100% { opacity: .7; }
  50%      { opacity: 1; }
}


/* ============================================================
   28. MOBILE NAVIGATION OFFCANVAS
   ============================================================ */
.ent-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: var(--tgi-darker);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.ent-mobile-nav.open { transform: translateX(0); }

.ent-mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-slow);
  backdrop-filter: blur(4px);
}

.ent-mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.ent-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ent-mobile-nav-header img { height: 36px; }

.ent-mobile-close {
  background: rgba(255,255,255,0.08);
  border: var(--border-glass);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 1.125rem;
  transition: all var(--t-base);
}

.ent-mobile-close:hover { background: rgba(255,255,255,0.15); }

.ent-mobile-nav-links {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
}

.ent-mobile-nav-links li a {
  display: block;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all var(--t-base);
  border-left: 2px solid transparent;
}

.ent-mobile-nav-links li a:hover {
  color: var(--tgi-accent);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--tgi-accent);
  padding-left: 28px;
}

.ent-mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}


/* ============================================================
   29. UTILITY CLASSES
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.rounded-tgi { border-radius: var(--radius-xl); }
.shadow-tgi { box-shadow: var(--shadow-lg); }
.bg-tgi-dark { background: var(--tgi-dark); }
.bg-tgi-light { background: var(--tgi-50); }
.text-tgi { color: var(--tgi-primary); }
.text-tgi-dark { color: var(--tgi-dark); }
.text-tgi-accent { color: var(--tgi-accent); }

/* Divider with gradient */
.ent-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72,143,130,0.4), transparent);
  border: none;
  margin: 0;
}

/* Highlight box */
.ent-highlight {
  background: var(--tgi-50);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border-left: 3px solid var(--tgi-primary);
}

/* Number step badges */
.ent-step-badge {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--grad-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* Separator pill */
.ent-dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neu-300);
  display: inline-block;
  vertical-align: middle;
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--tgi-accent);
  outline-offset: 2px;
}


/* ============================================================
   30. PRINT STYLES
   ============================================================ */
@media print {
  .ent-topbar, .ent-header, .ent-footer,
  .ent-whatsapp, .ent-back-top,
  .mobile-footer-nav { display: none !important; }
}


/* ============================================================
   31. GLOBAL SPACING FIX — eliminate blank gaps between sections
   ============================================================ */

/* Collapse excess top/bottom margin on section headings */
.ent-section h2 + p,
.ent-section .ent-h2 + p,
section h2 + p { margin-top: 0; }

/* Remove double padding when sections stack */
.ent-section + .ent-section { padding-top: 0; }

/* Override any 120px+ inline padding that causes huge blank zones */
section[style*="padding-top: 120"],
section[style*="padding-top: 140"],
section[style*="padding-top: 160"] {
  padding-top: 72px !important;
}
section[style*="padding-bottom: 120"],
section[style*="padding-bottom: 140"],
section[style*="padding-bottom: 160"] {
  padding-bottom: 72px !important;
}

/* Tighten inner page hero on mobile */
@media (max-width: 768px) {
  .ent-section        { padding: 48px 0; }
  .ent-section-sm     { padding: 32px 0; }
  .ent-section-header { margin-bottom: 32px; }
}


/* ============================================================
   32. ICON ALIGNMENT SYSTEM — universal fix
   ============================================================ */

/* All Bootstrap Icons inline with text */
[class^="bi-"], [class*=" bi-"] {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  top: -0.05em; /* optical correction */
}

/* Icon boxes */
.ent-mega-link .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(72,143,130,.1);
  border-radius: 6px;
  font-size: 14px;
  flex-shrink: 0;
  transition: background var(--t-base);
}
.ent-mega-link:hover .icon {
  background: rgba(72,143,130,.2);
}

/* Icon + text alignment in cards */
.ent-card [class^="bi-"],
.ent-card [class*=" bi-"],
.tgi-card [class^="bi-"],
.tgi-card [class*=" bi-"] {
  vertical-align: middle;
}

/* CTA button icon alignment */
.btn-enterprise i,
.btn-tgi-primary i,
.btn-tgi-outline i {
  display: inline-flex;
  align-items: center;
  font-size: 0.9em;
}

/* Fix icon-in-list items */
.svc-list li i,
.svc-includes li i,
.pkg-features li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
}


/* ============================================================
   33. FONT CONSISTENCY — enforce Syne for all headings
   ============================================================ */
h1, h2, h3, h4,
.ent-display, .ent-h1, .ent-h2, .ent-h3, .ent-h4,
.tgi-sec-title, .tgi-page-title, .tgi-cta-title {
  font-family: 'Syne', 'Inter', system-ui, sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

p, li, a, span, label, input, textarea, select, button {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Remove old Poppins/Nunito fallbacks from specific overrides */
.ent-nav a,
.ent-mega-link,
.ent-topbar a {
  font-family: 'Inter', system-ui, sans-serif;
}


/* ============================================================
   34. GREEN GLOSSY FINISH — global brand polish
   ============================================================ */

/* Glossy shimmer on primary buttons */
.btn-ent-primary {
  position: relative; overflow: hidden;
}
.btn-ent-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,.18) 50%,
    transparent 60%
  );
  transform: skewX(-15deg);
  transition: left .6s ease;
}
.btn-ent-primary:hover::after { left: 120%; }

/* Green glow on accent elements */
.tgi-accent-glow-text {
  text-shadow: 0 0 20px rgba(45,212,170,.35);
}

/* Gradient border on key cards */
.ent-card-gradient-border {
  position: relative;
}
.ent-card-gradient-border::before {
  content: '';
  position: absolute; inset: 0;
  padding: 1px; border-radius: inherit;
  background: linear-gradient(135deg, rgba(72,143,130,.4), rgba(45,212,170,.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* WhatsApp Float */
.ent-whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9998;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  animation: wa-glow 3s ease-in-out infinite;
}
.ent-whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
@keyframes wa-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.65); }
}

/* ============================================================
   Section 35: TGI AI 3D Hero Visual Component
   ============================================================ */
.tgi-ai-visual {
  position: relative;
  width: min(420px, 100%);
  height: min(420px, 100%);
  aspect-ratio: 1;
  flex-shrink: 1;
  max-width: 420px;
}

/* Outer SVG Connection Lines */
.tgi-ai-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Central rotating core */
.tgi-ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tgi-ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(72,143,130,0.35);
}
.tgi-ai-ring-1 {
  width: 130px; height: 130px;
  border-color: rgba(72,143,130,0.4);
  animation: ai-spin-slow 12s linear infinite;
  border-top-color: #2dd4aa;
}
.tgi-ai-ring-2 {
  width: 100px; height: 100px;
  border-color: rgba(45,212,170,0.25);
  animation: ai-spin-slow 8s linear infinite reverse;
  border-right-color: #488f82;
}
.tgi-ai-ring-3 {
  width: 70px; height: 70px;
  border-color: rgba(72,143,130,0.2);
  animation: ai-spin-slow 5s linear infinite;
  border-bottom-color: #7dd6c8;
}

.tgi-ai-nucleus {
  position: absolute;
  width: 70px; height: 70px;
  background: radial-gradient(circle, rgba(45,212,170,0.25) 0%, rgba(6,50,44,0.6) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(45,212,170,0.4), inset 0 0 20px rgba(45,212,170,0.1);
  animation: ai-nucleus-pulse 3s ease-in-out infinite;
  z-index: 4;
}

@keyframes ai-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ai-nucleus-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(45,212,170,0.4), inset 0 0 20px rgba(45,212,170,0.1); }
  50%       { box-shadow: 0 0 60px rgba(45,212,170,0.7), inset 0 0 30px rgba(45,212,170,0.25); }
}

/* Floating peripheral nodes */
.tgi-ai-node {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(6,50,44,0.85);
  border: 1px solid rgba(72,143,130,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #2dd4aa;
  z-index: 5;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 12px rgba(72,143,130,0.15);
  transition: all 0.3s ease;
}
.tgi-ai-node:hover {
  background: rgba(72,143,130,0.3);
  border-color: #2dd4aa;
  box-shadow: 0 0 24px rgba(45,212,170,0.45);
  transform: scale(1.1);
}

/* Node positions around the centre */
.tgi-node-1 { top: 12px;  left: 50%; transform: translateX(-50%); animation: ai-float 4s ease-in-out infinite; }
.tgi-node-2 { top: 52px;  right: 28px; animation: ai-float 4.5s ease-in-out infinite 0.5s; }
.tgi-node-3 { bottom: 52px; right: 28px; animation: ai-float 3.8s ease-in-out infinite 1s; }
.tgi-node-4 { bottom: 12px; left: 50%; transform: translateX(-50%); animation: ai-float 4.2s ease-in-out infinite 1.5s; }
.tgi-node-5 { bottom: 52px; left: 28px; animation: ai-float 5s ease-in-out infinite 0.8s; }
.tgi-node-6 { top: 52px;  left: 28px; animation: ai-float 3.5s ease-in-out infinite 0.3s; }

@keyframes ai-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.tgi-node-1, .tgi-node-4 {
  /* override transform to keep X-centering + add Y-float */
}
.tgi-node-1 { animation: ai-float-cx 4s ease-in-out infinite; }
.tgi-node-4 { animation: ai-float-cx 4.2s ease-in-out infinite 1.5s; }
@keyframes ai-float-cx {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

/* Chip labels */
.tgi-ai-chip {
  position: absolute;
  background: rgba(6,50,44,0.9);
  border: 1px solid rgba(72,143,130,0.45);
  color: #7dd6c8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 6;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.tgi-chip-top {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  animation: ai-chip-glow 2.5s ease-in-out infinite;
}
.tgi-chip-bottom {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  animation: ai-chip-glow 2.5s ease-in-out infinite 1.25s;
}
@keyframes ai-chip-glow {
  0%, 100% { border-color: rgba(72,143,130,0.45); }
  50%       { border-color: rgba(45,212,170,0.8); box-shadow: 0 0 16px rgba(45,212,170,0.3); }
}

/* Responsive — hide visual on small screens already handled by d-none d-lg-flex */
@media (max-width: 1199px) {
  .tgi-ai-visual { width: 340px; height: 340px; }
  .tgi-ai-core { width: 110px; height: 110px; }
  .tgi-ai-ring-1 { width: 110px; height: 110px; }
  .tgi-ai-ring-2 { width: 84px; height: 84px; }
  .tgi-ai-ring-3 { width: 60px; height: 60px; }
}
