/* ================================================
   ALESSA GROUP — Stylesheet v3 — All fixes applied
   ================================================ */
:root {
  --blue-900: #0a1628;
  --blue-800: #0d1f3c;
  --blue-700: #0f2a52;
  --blue-600: #1040a0;
  --blue-500: #1a56d6;
  --blue-400: #2d6ee0;
  --blue-300: #4a8af5;
  --blue-200: #7eb3ff;
  --blue-100: #c7deff;
  --teal-500: #0891b2;
  --teal-400: #22d3ee;
  --white: #ffffff;
  --gray-100: #f3f6fb;
  --gray-200: #e5ecf6;
  --text-dark: #0a1628;
  --text-muted: #6b82a0;
  --text-light: rgba(255, 255, 255, 0.8);
  --gp: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  --gh: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-600) 100%);
  --gd: linear-gradient(180deg, var(--blue-900) 0%, #0b1e3a 100%);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --sh-sm: 0 2px 12px rgba(10, 22, 40, .08);
  --sh-md: 0 8px 32px rgba(10, 22, 40, .12);
  --sh-lg: 0 16px 48px rgba(10, 22, 40, .18);
  --sh-blue: 0 8px 32px rgba(26, 86, 214, .3);
  --t: 0.3s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

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

input,
textarea,
select {
  font-family: inherit
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1
}

h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600
}

[data-lucide] {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem
}

.section-title.light {
  color: var(--white)
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 1rem
}

.section-desc.light {
  color: var(--text-light)
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(26, 86, 214, .08);
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: .8rem
}

.section-label.light {
  color: var(--teal-400);
  background: rgba(34, 211, 238, .1)
}

.gradient-text {
  background: var(--gp);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem
}

.section-pad {
  padding: 100px 0
}

.dark-section {
  background: var(--gd)
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem
}

.section-header .section-desc {
  margin: 0 auto
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 3rem
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--t);
  cursor: pointer
}

.btn [data-lucide] {
  width: 18px;
  height: 18px
}

.btn-primary {
  background: var(--gp);
  color: white;
  box-shadow: var(--sh-blue)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 86, 214, .4)
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid var(--blue-400)
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem
}

.btn-full {
  width: 100%;
  justify-content: center
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--t)
}

.navbar.scrolled {
  background: rgba(10, 22, 40, .95);
  backdrop-filter: blur(20px);
  padding: .8rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3)
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gp);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Playfair Display', serif
}

.logo-text {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em
}

.logo-text span {
  color: var(--blue-300)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto
}

.nav-links a {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--t);
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gp);
  transform: scaleX(0);
  transition: var(--t)
}

.nav-links a:hover,
.nav-links a.active {
  color: white
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1)
}

.nav-cta {
  display: flex;
  align-items: center;
  padding: .5rem 1.4rem;
  background: var(--gp);
  color: white;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  transition: var(--t)
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--sh-blue)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--t)
}

/* =====================================================
   FIX 1+2+3: HERO SLIDER — text-only transition,
   controls below text, dots no overlap
   ===================================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Static background — always visible, no flash */
.slider-static-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gh);
}

.slider-static-bg .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 22, 40, .85) 0%, rgba(15, 42, 82, .7) 60%, rgba(26, 86, 214, .35) 100%);
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 8s ease-in-out infinite
}

.o1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 86, 214, .4) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  animation-delay: 0s
}

.o2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 145, 178, .3) 0%, transparent 70%);
  bottom: 160px;
  left: -80px;
  animation-delay: 3s
}

.o3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(74, 138, 245, .2) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation-delay: 5s
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .07;
  background-image: linear-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .4) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Text wrap — centered, takes full remaining space */
.slider-text-wrap {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 0;
  /* top: navbar height */
  width: 100%;
}

/* Each panel: stacked at same position, only opacity+transform transitions */
.slide-panel {
  position: absolute;
  width: 100%;
  max-width: 900px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}

.slide-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.slide-panel.exit {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .5s ease, transform .5s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1.5rem
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite
}

.hero-title {
  font-size: 58px;
  color: white;
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 1.3rem
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* Slider nav — positioned between text and stats bar */
.slider-nav {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: .8rem 0;
  flex-shrink: 0;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  backdrop-filter: blur(10px)
}

.slider-btn:hover {
  background: var(--gp);
  border-color: transparent
}

.slider-btn [data-lucide] {
  width: 20px;
  height: 20px
}

.slider-dots {
  display: flex;
  gap: .5rem;
  align-items: center
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .3);
  transition: all .3s ease;
  cursor: pointer;
  border: none
}

.dot.active {
  width: 28px;
  background: white
}

/* Stats bar — pinned at very bottom */
.hero-stats-bar {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: .8rem 1rem;
  flex-shrink: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .4rem 2.5rem
}

.stat-top {
  display: flex;
  align-items: baseline;
  gap: .1rem
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1
}

.stat-suffix {
  color: var(--teal-400);
  font-size: 1.3rem;
  font-weight: 700
}

.stat-label {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .2rem;
  letter-spacing: .05em
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0
}

/* PAGE HERO — FIX 6: darker background + grid overlay */
.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(160deg, #050d1a 0%, #071630 40%, #0a1e45 80%, #0c2660 100%);
}

/* strong grid on page heroes */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .35;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 30% 50%, rgba(26, 86, 214, .3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(8, 145, 178, .2) 0%, transparent 50%);
}

.page-hero .orb {
  position: absolute;
  z-index: 2
}

.page-hero .slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(5, 13, 26, .45)
}

.page-hero-content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  font-weight: 900;
  margin-bottom: 1rem
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .68);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .8s ease forwards
}

/* ANIMATIONS */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7
  }

  50% {
    transform: scale(1.1);
    opacity: 1
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

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

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

@keyframes pinPulse {

  0%,
  100% {
    r: 13;
    opacity: .5
  }

  50% {
    r: 20;
    opacity: .15
  }
}

.delay-1 {
  animation-delay: .15s
}

.delay-2 {
  animation-delay: .3s
}

.delay-3 {
  animation-delay: .45s
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal.delay-1 {
  transition-delay: .15s
}

.reveal.delay-2 {
  transition-delay: .3s
}

.reveal.delay-3 {
  transition-delay: .45s
}

/* =====================================================
   FIX 4: WHO WE ARE — structured visual infographic
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center
}

.av-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.av-top-row,
.av-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.av-stat-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--sh-sm);
  transition: var(--t);
}

.av-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-200)
}

.av-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white
}

.av-stat-icon [data-lucide] {
  width: 20px;
  height: 20px
}

.av-stat-icon.blue {
  background: var(--blue-500)
}

.av-stat-icon.teal {
  background: var(--teal-500)
}

.av-stat-icon.green {
  background: #10b981
}

.av-stat-icon.purple {
  background: #7c3aed
}

.av-stat-card strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-dark)
}

.av-stat-card small {
  display: block;
  font-size: .75rem;
  color: var(--text-muted)
}

.av-center-card {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-blue);
}

.av-center-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 70%);
  border-radius: 50%;
}

.av-center-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, .15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.av-center-icon [data-lucide] {
  width: 30px;
  height: 30px;
  color: var(--teal-400)
}

.av-center-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.av-center-card p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
  margin-bottom: 1.2rem
}

.av-cert {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .12);
  color: var(--teal-400);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.av-cert [data-lucide] {
  width: 13px;
  height: 13px
}

.av-center-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: .8rem
}

.av-cs-item {
  text-align: center
}

.av-cs-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: white
}

.av-cs-lbl {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .6)
}

.av-cs-div {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .2)
}

.about-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.af-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: var(--gray-100);
  border-radius: var(--r-sm);
  padding: 1rem;
  transition: var(--t)
}

.af-item:hover {
  background: var(--gray-200)
}

.af-icon {
  width: 36px;
  height: 36px;
  background: var(--gp);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.af-icon [data-lucide] {
  width: 18px;
  height: 18px;
  color: white
}

.af-item h5 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .15rem
}

.af-item p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.4
}

/* SERVICES PILLARS */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.pillar-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  transition: var(--t);
  position: relative;
  overflow: hidden
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 86, 214, .3)
}

.pillar-featured {
  background: rgba(26, 86, 214, .12);
  border-color: rgba(26, 86, 214, .25)
}

.pillar-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gp);
  color: white;
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 100px;
  letter-spacing: .08em
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem
}

.pillar-icon [data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--blue-300)
}

.pillar-card h3 {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .8rem
}

.pillar-card p {
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 1.2rem
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .65);
  font-size: .825rem
}

.pillar-list [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--teal-400);
  flex-shrink: 0
}

.pillar-link {
  color: var(--blue-300);
  font-size: .875rem;
  font-weight: 600;
  transition: var(--t);
  display: inline-flex;
  align-items: center;
  gap: .4rem
}

.pillar-link:hover {
  color: var(--teal-400)
}

.pillar-link [data-lucide] {
  width: 16px;
  height: 16px;
  transition: var(--t)
}

.pillar-link:hover [data-lucide] {
  transform: translateX(4px)
}

/* SECTORS */
.sectors-track {
  overflow: hidden;
  position: relative;
  padding: 1rem 0
}

.sectors-track::before,
.sectors-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none
}

.sectors-track::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent)
}

.sectors-track::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent)
}

.sectors-inner {
  display: flex;
  gap: 1rem;
  animation: scroll-left 35s linear infinite;
  width: max-content
}

.sector-tag {
  white-space: nowrap;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: .6rem 1.2rem;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: .5rem
}

.sector-tag [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--blue-400)
}

.sector-tag:hover {
  background: var(--blue-500);
  color: white;
  border-color: var(--blue-500)
}

.sector-tag:hover [data-lucide] {
  color: white
}

/* =====================================================
   FIX 5: VALUES — no horizontal scroll on mobile,
   equal height cards in 2-col grid
   ===================================================== */
.values-layout {
  position: relative
}

.tl-spine-bar {
  position: absolute;
  top: 62px;
  /* icon height + gap */
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue-600), var(--teal-400));
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s ease;
}

.tl-spine-bar.animate {
  transform: scaleX(1)
}

.values-grid-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
  position: relative;
  z-index: 1;
}

.val-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem
}

.val-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-200);
  transition: var(--t);
  z-index: 2;
  flex-shrink: 0;
}

.val-icon-wrap [data-lucide] {
  width: 22px;
  height: 22px
}

.val-item:hover .val-icon-wrap {
  background: var(--gp);
  border-color: transparent;
  color: white;
  transform: scale(1.1)
}

.val-dot-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-500);
  border: 3px solid var(--blue-900);
  z-index: 2;
  transition: var(--t);
  flex-shrink: 0;
}

.val-item:hover .val-dot-node {
  background: var(--teal-400);
  transform: scale(1.3)
}

.val-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: var(--t);
  width: 100%;
  flex: 1;
}

.val-item:hover .val-card {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(26, 86, 214, .3);
  transform: translateY(-4px)
}

.val-num {
  font-size: .65rem;
  font-weight: 700;
  color: var(--teal-400);
  letter-spacing: .1em;
  display: block;
  margin-bottom: .4rem
}

.val-card h4 {
  color: white;
  font-size: .88rem;
  margin-bottom: .4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600
}

.val-card p {
  color: rgba(255, 255, 255, .55);
  font-size: .76rem;
  line-height: 1.5
}

/* PARTNERS MARQUEE */
.partners-marquee {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  margin-top: 2rem
}

.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent)
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent)
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-left 40s linear infinite;
  width: max-content
}

.plc {
  flex-shrink: 0
}

.plc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  min-width: 160px;
  transition: var(--t);
  box-shadow: var(--sh-sm)
}

.plc-inner [data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--blue-400)
}

.plc-inner span {
  font-size: .825rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap
}

.plc:hover .plc-inner {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-300)
}

/* CTA */
.cta-card {
  background: var(--gh);
  border-radius: var(--r-xl);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .08)
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px)
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 86, 214, .4), transparent 70%);
  top: -100px;
  right: -100px
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 145, 178, .3), transparent 70%);
  bottom: -80px;
  left: -80px
}

.cta-content {
  position: relative;
  z-index: 1
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1rem
}

.cta-content p {
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0 auto 2rem
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* FOOTER */
.footer {
  background: var(--blue-900);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand p {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem
}

.footer-tagline {
  color: var(--blue-300) !important;
  font-style: italic
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem
}

.fsoc-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  transition: var(--t)
}

.fsoc-btn svg {
  width: 16px;
  height: 16px
}

.fsoc-btn:hover {
  background: var(--blue-500);
  color: white;
  border-color: var(--blue-500);
  transform: translateY(-2px)
}

.footer-col h5 {
  color: white;
  font-size: .9rem;
  margin-bottom: 1rem
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: .4rem
}

.footer-col ul li a [data-lucide] {
  width: 13px;
  height: 13px;
  opacity: .5
}

.footer-col ul li a:hover {
  color: var(--blue-300);
  padding-left: 4px
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
  margin-bottom: .5rem
}

.footer-contact-list [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--blue-400);
  flex-shrink: 0
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .45);
  transition: var(--t)
}

.footer-contact-list a:hover {
  color: var(--blue-300)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem
}

.footer-bottom p {
  color: rgba(255, 255, 255, .3);
  font-size: .8rem
}

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.excellence-banner {
  background: var(--gp);
  padding: .9rem 0
}

.excellence-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap
}

.excellence-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: white;
  font-size: .85rem;
  font-weight: 500
}

.excellence-item [data-lucide] {
  width: 16px;
  height: 16px;
  opacity: .8
}

.excellence-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .3)
}

.srv-sec-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 3rem
}

.srv-num {
  font-size: 5rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0
}

.srv-num.light {
  color: rgba(255, 255, 255, .08)
}

.srv-category {
  margin-bottom: 3.5rem
}

.srv-cat-label {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200)
}

.srv-cat-icon {
  width: 40px;
  height: 40px;
  background: var(--gp);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white
}

.srv-cat-icon [data-lucide] {
  width: 20px;
  height: 20px
}

.srv-cat-icon.teal {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400))
}

.srv-cat-label h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark)
}

.hard-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden
}

.hard-services-grid1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden
}

.hard-services-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden
}

.hs-card {
  background: white;
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--t)
}

.hs-card:hover {
  background: var(--gray-100)
}

.hs-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
  transition: var(--t)
}

.hs-icon [data-lucide] {
  width: 22px;
  height: 22px
}

.hs-card:hover .hs-icon {
  background: var(--gp);
  color: white
}

.hs-body h4 {
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: .4rem
}

.hs-body p {
  font-size: .825rem;
  color: var(--text-muted);
  line-height: 1.55
}

.soft-services-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem
}

.ss-featured {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--r-lg);
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden
}

.ss-featured::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26, 86, 214, .4), transparent 70%);
  border-radius: 50%
}

.ss-feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem
}

.ss-feat-icon [data-lucide] {
  width: 26px;
  height: 26px;
  color: var(--teal-400)
}

.ss-featured h4 {
  font-size: 1.15rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: .8rem;
  color: white
}

.ss-featured p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
  margin-bottom: 1.2rem
}

.ss-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .1);
  color: var(--teal-400);
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600
}

.ss-tag [data-lucide] {
  width: 13px;
  height: 13px
}

.ss-side {
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.ss-item {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  transition: var(--t)
}

.ss-item:hover {
  transform: translateX(4px);
  border-color: var(--blue-300)
}

.ssi-icon {
  width: 38px;
  height: 38px;
  background: var(--gp);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white
}

.ssi-icon [data-lucide] {
  width: 18px;
  height: 18px
}

.ss-item h5 {
  font-size: .875rem;
  color: var(--text-dark);
  margin-bottom: .2rem
}

.ss-item p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5
}

.ops-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 2.5rem
}

.ops-banner-item {
  background: rgba(255, 255, 255, 0.838);
  padding: 2rem 1.5rem;
  text-align: center;
  /* transition: var(--t) */
}

.ops-banner-item:hover {
  background: rgba(255, 255, 255, .1)
}

.ops-b-icon {
  width: 48px;
  height: 48px;
  background: rgb(23 33 51);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--blue-300)
}

.ops-b-icon [data-lucide] {
  width: 22px;
  height: 22px
}

.ops-banner-item h4 {
  color: rgb(0, 0, 0);
  font-size: .95rem;
  margin-bottom: .4rem
}

.ops-banner-item p {
  color: rgba(0, 0, 0, 0.55);
  font-size: .825rem;
  line-height: 1.5
}

.methodology-strip {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: 2.5rem
}

.methodology-strip h3 {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center
}

.method-flow {
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.mf-step {
  flex: 1;
  text-align: center
}

.mf-num {
  width: 32px;
  height: 32px;
  background: var(--gp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .8rem;
  font-weight: 700;
  margin: 0 auto .8rem
}

.mf-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .8rem;
  color: var(--blue-300)
}

.mf-icon [data-lucide] {
  width: 22px;
  height: 22px
}

.mf-step h5 {
  color: white;
  font-size: .9rem;
  margin-bottom: .4rem
}

.mf-step p {
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
  line-height: 1.5
}

.mf-arrow {
  color: var(--blue-400);
  padding-top: 2rem;
  flex-shrink: 0
}

.mf-arrow [data-lucide] {
  width: 24px;
  height: 24px
}

/* =====================================================
   FIX 7: HC LIFECYCLE — better mobile layout
   ===================================================== */
.hc-lifecycle-pro {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200)
}

.hclp-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--gray-200)
}

.hclp-item:last-child {
  border-bottom: none
}

.hclp-item:nth-child(odd) .hclp-card {
  background: var(--gray-100)
}

.hclp-item:nth-child(even) .hclp-card {
  background: white
}

.hclp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem .5rem;
  background: var(--blue-900);
  gap: .6rem
}

.hclp-step-num {
  width: 36px;
  height: 36px;
  background: var(--gp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0
}

.hclp-step-line {
  width: 2px;
  flex: 1;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px
}

.hclp-step-line.last {
  display: none
}

.hclp-card {
  padding: 1.6rem 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--t)
}

.hclp-card:hover {
  background: var(--gray-200) !important
}

.hclp-icon {
  width: 44px;
  height: 44px;
  background: var(--gp);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white
}

.hclp-icon [data-lucide] {
  width: 22px;
  height: 22px
}

.hclp-card h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: .4rem
}

.hclp-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6
}

.hr-mgmt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem
}

.hr-mgmt-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--t)
}

.hr-mgmt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md)
}

.hrmc-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gp)
}

.hrmc-icon {
  width: 52px;
  height: 52px;
  background: var(--gp);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: white
}

.hrmc-icon [data-lucide] {
  width: 26px;
  height: 26px
}

.hr-mgmt-card h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: .6rem
}

.hr-mgmt-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65
}

.support-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem
}

.sb-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: var(--t)
}

.sb-item:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px)
}

.sb-large {
  grid-column: span 1;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(26, 86, 214, .12);
  border-color: rgba(26, 86, 214, .2)
}

.sb-wide {
  grid-column: span 2
}

.sb-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-300)
}

.sb-icon [data-lucide] {
  width: 24px;
  height: 24px
}

.sb-item h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: .5rem
}

.sb-item p {
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  line-height: 1.6
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  transition: var(--t)
}

.contact-info-card:hover {
  transform: translateX(4px);
  border-color: var(--blue-300)
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--gp);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white
}

.ci-icon [data-lucide] {
  width: 18px;
  height: 18px
}

.contact-info-card h5 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .2rem
}

.contact-info-card a,
.contact-info-card span {
  color: var(--text-dark);
  font-weight: 500;
  font-size: .95rem;
  transition: var(--t)
}

.contact-info-card a:hover {
  color: var(--blue-500)
}

.social-row {
  display: flex;
  gap: .75rem
}

.social-btn {
  width: 42px;
  height: 42px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--t)
}

.social-btn svg {
  width: 18px;
  height: 18px
}

.social-btn:hover {
  background: var(--blue-500);
  color: white;
  border-color: var(--blue-500);
  transform: translateY(-2px)
}

.form-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-lg)
}

.form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .3rem
}

.form-card>p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 2rem
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark)
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--gray-100);
  transition: var(--t);
  -webkit-appearance: none;
  outline: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 86, 214, .1)
}

.form-group textarea {
  resize: vertical
}

.form-success {
  text-align: center;
  padding: 2rem
}

.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1rem
}

.success-icon [data-lucide] {
  width: 30px;
  height: 30px
}

.form-success h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: .5rem
}

.form-success p {
  color: var(--text-muted);
  font-size: .9rem
}

/* =====================================================
   FIX 8: ACCURATE KSA MAP
   ===================================================== */
.map-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 3rem
}

.map-container {
  background: linear-gradient(145deg, #050e1f, #081628);
  border: 1px solid rgba(74, 138, 245, .2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.map-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(74, 138, 245, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 138, 245, .08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.ksa-map {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1
}

.ksa-shape {
  filter: drop-shadow(0 4px 20px rgba(26, 86, 214, .3))
}

.map-pin {
  cursor: pointer
}

.map-pin circle {
  transition: all .3s ease
}

.map-pin:hover circle:nth-child(2) {
  transform-origin: center
}

.pin-pulse {
  animation: pinPulse 2.5s ease-in-out infinite
}

@keyframes pinPulse {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: .12
  }
}

.map-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1
}

.ml-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .65);
  font-size: .8rem
}

.ml-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.ml-dot.main {
  background: #1a56d6;
  box-shadow: 0 0 8px rgba(26, 86, 214, .8)
}

.ml-dot.branch {
  background: #4a8af5;
  box-shadow: 0 0 6px rgba(74, 138, 245, .6)
}

.branches-list {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: 2rem
}

.branches-list h3 {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem
}

.bl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem
}

.bl-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .8rem;
  border-radius: var(--r-sm);
  transition: var(--t);
  color: rgba(255, 255, 255, .7);
  font-size: .85rem
}

.bl-item [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--blue-400);
  flex-shrink: 0
}

.bl-item:hover {
  background: rgba(255, 255, 255, .08);
  color: white
}

.bl-item.main-city {
  color: var(--teal-400);
  font-weight: 600
}

.bl-tag {
  background: var(--gp);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .4rem;
  border-radius: 4px;
  margin-left: auto
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media(max-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .hard-services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .soft-services-layout {
    grid-template-columns: 1fr
  }

  .ops-banner {
    grid-template-columns: repeat(2, 1fr)
  }

  .hr-mgmt-cards {
    grid-template-columns: 1fr
  }

  .support-bento {
    grid-template-columns: 1fr 1fr
  }

  .sb-large,
  .sb-wide {
    grid-column: span 1;
    grid-row: auto
  }

  .map-layout {
    grid-template-columns: 1fr
  }

  .values-grid-inner {
    grid-template-columns: repeat(3, 1fr)
  }

  .tl-spine-bar {
    display: none
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }
}

@media(max-width:480px) {
  .hero-slider {
    height: 90svh;
    min-height: 580px;
  }
}

@media(max-width:768px) {
  .section-pad {
    padding: 60px 0
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, .98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 200
  }

  /* Slider fixes mobile */
  .hero-slider {
    height: 100svh;
    min-height: 580px
  }

  .slider-text-wrap {
    padding: 90px 1.25rem 0;
    align-items: flex-start
  }

  .slide-panel {
    width: calc(100% - 2.5rem);
    max-width: 540px;
    left: 50%;
    right: auto;
    margin: 0;
    transform: translate(-50%, 18px);
  }

  .slide-panel.active {
    transform: translate(-50%, 0)
  }

  .slide-panel.exit {
    transform: translate(-50%, -12px)
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
    line-height: 1.5;
  }

  .hero-subtitle {
    font-size: .95rem
  }

  .nav-container {
    gap: 12rem;
  }

  .hero-actions {
    width: 100%
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center
  }

  .hero-stat {
    padding: .4rem 1.2rem
  }

  .stat-num {
    font-size: 1.6rem
  }

  .stat-sep {
    height: 28px
  }

  .slider-nav {
    padding: .5rem 0
  }

  /* Values — 2 col grid, equal height on mobile */
  .values-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: .7rem
  }

  .tl-spine-bar {
    display: none
  }

  .val-dot-node {
    display: none
  }

  /* About visual hidden on mobile (text only) */
  /* .about-visual {
    display: none
  } */

  .about-grid {
    grid-template-columns: 1fr
  }

  .af-row {
    grid-template-columns: 1fr
  }

  /* HC mobile */
  .hclp-item {
    grid-template-columns: 52px 1fr
  }

  .hclp-card {
    padding: 1.2rem 1rem;
    gap: .8rem
  }

  .hclp-step {
    padding: 1.2rem .4rem
  }

  .hclp-step-num {
    width: 30px;
    height: 30px;
    font-size: .75rem
  }

  .hr-mgmt-cards,
  .hclp-card {
    width: 100%
  }

  .support-bento {
    grid-template-columns: 1fr
  }

  .hard-services-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .cta-actions {
    flex-direction: column;
    align-items: center
  }

  .method-flow {
    flex-direction: column;
    align-items: center
  }

  .mf-arrow {
    transform: rotate(90deg)
  }

  .ops-banner {
    grid-template-columns: 1fr 1fr
  }

  .pillars-grid {
    grid-template-columns: 1fr
  }

  .bl-grid {
    grid-template-columns: 1fr
  }

  .srv-sec-header {
    flex-direction: column;
    gap: .5rem
  }

  .srv-num {
    font-size: 3rem
  }

  .soft-services-layout {
    grid-template-columns: 1fr
  }

  .map-layout {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {

  .about-visual .av-img-wrap {
    min-height: 320px !important;
    border-radius: 12px !important;
  }

  .about-visual img {
    min-height: 320px !important;
    border-radius: 12px !important;
  }

  /* الطبقة السفلية */
  .about-visual .av-img-wrap>div {
    padding: 1.2rem 1rem !important;
  }

  /* الحاوية الداخلية */
  .about-visual .av-img-wrap>div>div {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem !important;
  }

  /* البوكسات */
  .about-visual .av-img-wrap>div>div>div {
    padding: 0.6rem !important;
    border-radius: 8px !important;
  }

  /* الأرقام */
  .about-visual .av-img-wrap div[style*="font-size:1.5rem"] {
    font-size: 1.2rem !important;
  }

  /* النص الصغير */
  .about-visual .av-img-wrap div[style*="font-size:.78rem"] {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .about-visual .av-img-wrap>div>div>div:last-child {
    grid-column: span 2;
  }
}

@media(max-width:480px) {
  .slider-text-wrap {
    padding: 190px 1rem 0
  }

  .slide-panel {
    width: calc(100% - 2rem)
  }

  .hero-stats-bar {
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 20px;
  }

  .hero-stat {
    padding: .4rem .8rem
  }

  .stat-sep {
    display: none
  }

  .values-grid-inner {
    grid-template-columns: 1fr 1fr
  }
}

.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

.hs-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ── خلفيات السلايدات ── */
.hs-slide-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hs-slide-bg.hs-active {
  opacity: 1;
}

/* ── كل صورة داخل السلايد ── */
.hs-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hs-bg-img.hs-img-active {
  opacity: 1;
  animation: hs-kzoom 4s ease-in-out forwards;
}

@keyframes hs-kzoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.07);
  }
}

/* ── الطبقة الزرقاء ── */
.hs-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(8, 25, 75, 0.76) 0%,
      rgba(12, 55, 120, 0.58) 55%,
      rgba(5, 18, 60, 0.82) 100%);
  z-index: 1;
}

/* ── مؤشرات الصور الداخلية ── */
.hs-img-indicators {
  position: absolute;
  bottom: 18px;
  right: 20px;
  display: flex;
  gap: 5px;
  z-index: 12;
}

.hs-img-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hs-img-dot.hs-active {
  background: #60a5fa;
  width: 14px;
  border-radius: 3px;
}

/* ── Grid Overlay ── */
.hs-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
  z-index: 2;
}

/* ── Orbs ── */
.hs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 2;
}

.hs-orb-1 {
  width: 420px;
  height: 420px;
  background: #2563eb;
  top: -120px;
  left: -80px;
}

.hs-orb-2 {
  width: 320px;
  height: 320px;
  background: #7c3aed;
  bottom: 40px;
  right: 60px;
}

.hs-orb-3 {
  width: 200px;
  height: 200px;
  background: #0ea5e9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── منطقة النص ── */
.hs-text-wrap {
  position: relative;
  z-index: 10;
  padding: 80px 48px 24px;
}

/* ── بانلات النص ── */
.hs-panel {
  display: none;
}

.hs-panel.hs-active {
  display: block;
  animation: hs-fadeup 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes hs-fadeup {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Badge ── */
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #c7deff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hs-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 8px #60a5fa;
  flex-shrink: 0;
}

/* ── العنوان ── */
.hs-title {
  font-size: clamp(30px, 5.5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.13;
  margin: 0 0 18px;
  letter-spacing: -0.6px;
}

.hs-gradient-text {
  background: linear-gradient(90deg, #60b3ff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── الوصف ── */
.hs-subtitle {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.75;
  margin: 0 0 30px;
}

/* ── الأزرار ── */
.hs-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.hs-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hs-btn:active {
  transform: scale(0.97);
}

.hs-btn i,
.hs-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.hs-btn-primary {
  background: linear-gradient(135deg, #1d6fe9 0%, #3b5fff 100%);
  color: #ffffff;
}

.hs-btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}

/* ── شريط التنقل ── */
.hs-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 48px 32px;
}

.hs-nav-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hs-nav-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hs-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hs-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.hs-dot.hs-active {
  background: #60a5fa;
  width: 26px;
  border-radius: 4px;
}

/* ── Progress Bar ── */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #60b3ff, #a78bfa);
  z-index: 20;
  transition: width 0.1s linear;
}

/* ══════════════════════════
       RESPONSIVE – MOBILE
    ══════════════════════════ */
@media (max-width: 600px) {

  .hs-slider {
    min-height: 80svh;
  }

  .hs-text-wrap {
    padding: 100px 20px 110px;
  }

  .hs-badge {
    font-size: 11px;
    padding: 5px 12px;
    gap: 6px;
    white-space: normal;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .hs-title {
    font-size: clamp(26px, 8vw, 36px);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    word-break: break-word;
  }

  .hs-subtitle {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .hs-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hs-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .hs-nav {
    padding: 16px 20px 28px;
    gap: 12px;
  }

  .hs-nav-btn {
    width: 36px;
    height: 36px;
  }

  .hs-img-indicators {
    bottom: 14px;
    right: 14px;
  }

  .hs-orb-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    left: -60px;
  }

  .hs-orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20px;
    right: 20px;
  }

  .hs-orb-3 {
    width: 140px;
    height: 140px;
  }
}