/* ============================================================
   NielloSoft — "Luminous Dark" redesign
   Display: Sora · Body: DM Sans · Accent: luminous green
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --green: #00e5a0;
  --green-2: #2ff5c1;
  --green-dark: #00b683;
  --green-glow: rgba(0, 229, 160, 0.35);

  --bg: #05090e;
  --bg-soft: #080e15;
  --surface: #0b131c;
  --surface-2: #0f1925;
  --surface-3: #142233;
  --line: rgba(255, 255, 255, 0.07);
  --line-green: rgba(0, 229, 160, 0.18);

  --white: #f2f6fa;
  --gray: #8497ac;
  --gray-soft: #b4c2d2;

  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Legacy aliases — keep inline styles in PHP pages working */
  --dark: var(--bg);
  --dark2: var(--surface);
  --dark3: var(--surface-2);
  --dark4: var(--surface-3);
  --border: var(--line-green);
  --light-gray: var(--gray-soft);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.4s var(--ease);
  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Ambient grid texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 0%, transparent 75%);
}

a { text-decoration: none; color: inherit; transition: color var(--t); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-green { color: var(--green); }
.text-gray { color: var(--gray); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

section { padding: 120px 32px; position: relative; z-index: 1; }
.dark-section { background: var(--bg-soft); }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
.navbar.scrolled {
  height: 68px;
  background: rgba(5, 9, 14, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #04110c;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(140deg, var(--green) 0%, var(--green-2) 100%);
  box-shadow: 0 6px 20px var(--green-glow);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.logo-text span { color: var(--green); }
.logo-tagline {
  display: block;
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-menu li { list-style: none; }
.nav-menu a:not(.nav-cta) {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-soft);
  border-radius: 100px;
  transition: color var(--t), background var(--t);
}
.nav-menu a:not(.nav-cta):hover { color: var(--white); }
.nav-menu a.active:not(.nav-cta) {
  color: var(--green);
  background: rgba(0, 229, 160, 0.1);
}
.nav-cta {
  margin-left: 6px;
  padding: 11px 22px !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: #04110c !important;
  background: linear-gradient(140deg, var(--green), var(--green-2));
  box-shadow: 0 6px 20px var(--green-glow);
  transition: transform var(--t), box-shadow var(--t);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px var(--green-glow); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
}
.btn i { font-size: 13px; transition: transform var(--t); }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
  color: #04110c;
  background: linear-gradient(140deg, var(--green) 0%, var(--green-2) 100%);
  box-shadow: 0 8px 26px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 38px var(--green-glow); }

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 38px; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 180px 32px 110px;
}
.hero-home { padding: 190px 32px 120px; }
.hero-sm { padding: 170px 32px 90px; min-height: auto !important; }

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 10%, rgba(0, 229, 160, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 70% at 10% 90%, rgba(47, 245, 193, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 160, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 160, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, #000, transparent 70%);
  z-index: 0;
}
.glow-dot {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow), transparent 65%);
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
  animation: float 9s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.06); }
}

.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 22px 0;
  background: linear-gradient(180deg, #ffffff 30%, #9fb6c9 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rise 0.8s var(--ease) both;
}
.hero-content > p {
  font-size: 1.12rem;
  color: var(--gray-soft);
  max-width: 540px;
  line-height: 1.8;
  animation: rise 0.8s 0.1s var(--ease) both;
}
.hero-content .btn-group { animation: rise 0.8s 0.2s var(--ease) both; }

@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid var(--line-green);
  animation: rise 0.8s var(--ease) both;
}
.hero-badge i { font-size: 12px; }

/* Hero two-column (home) */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-panel { display: flex; animation: rise 0.9s 0.25s var(--ease) both; }
.hero-panel-inner {
  width: 100%;
  background: linear-gradient(160deg, rgba(15, 25, 37, 0.9), rgba(11, 19, 28, 0.75));
  border: 1px solid var(--line-green);
  border-radius: 22px;
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.hero-panel-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.hero-divider { height: 1px; background: var(--line); margin: 22px 0; }
.hero-regions { display: flex; flex-direction: column; gap: 9px; }
.hero-region {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--white);
  padding: 9px 14px;
  background: rgba(0, 229, 160, 0.05);
  border: 1px solid var(--line-green);
  border-radius: 10px;
  transition: transform var(--t), background var(--t);
}
.hero-region:hover { transform: translateX(4px); background: rgba(0, 229, 160, 0.1); }
.hero-region i { color: var(--green); font-size: 12px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tags span {
  font-size: 12px; font-weight: 600;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--gray-soft);
  transition: var(--t);
}
.hero-tags span:hover { border-color: var(--green); color: var(--green); }
.hero-panel-stat { display: flex; }
.hero-panel-stat > div { flex: 1; text-align: center; }
.hero-panel-stat > div + div { border-left: 1px solid var(--line); }
.hps-num {
  display: block; font-family: var(--font-head); font-size: 30px; font-weight: 700;
  background: linear-gradient(120deg, var(--green), var(--green-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hps-lbl { display: block; font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.stats-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0, 229, 160, 0.03); }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--green), var(--green-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1.8px; margin-top: 10px; }

/* ===================== SECTION HEADERS ===================== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.section-line {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 3px;
  margin: 24px 0;
}
.section-line.center { margin: 24px auto; background: linear-gradient(90deg, transparent, var(--green), transparent); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse > div:first-child { order: 2; }

/* ===================== BENEFITS ===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  position: relative;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0, 229, 160, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity var(--t);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-green);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-body { padding: 34px; position: relative; z-index: 1; }
.benefit-number {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid var(--line-green);
  border-radius: 12px;
  margin-bottom: 22px;
}
.benefit-title { font-family: var(--font-head); font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.benefit-desc { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-green);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.4);
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--green);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid var(--line-green);
  margin-bottom: 22px;
  transition: var(--t);
}
.service-card:hover .service-icon {
  background: linear-gradient(140deg, var(--green), var(--green-2));
  color: #04110c;
  transform: rotate(-6deg);
}
.service-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 600; line-height: 1.35; }

/* ===================== CHECKLIST ===================== */
.checklist { display: flex; flex-direction: column; gap: 15px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--gray-soft); line-height: 1.55;
}
.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--green);
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid var(--line-green);
  border-radius: 50%;
  margin-top: 2px;
}

/* ===================== TECH LEVELS ===================== */
.level-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t), border-color var(--t);
}
.level-card:hover { border-color: var(--line-green); transform: translateX(6px); }
.level-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--green);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid var(--line-green);
}
.level-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.level-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===================== IMPLEMENTATION ===================== */
.impl-steps { display: flex; flex-direction: column; gap: 12px; }
.impl-step {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform var(--t), border-color var(--t);
}
.impl-step:hover { transform: translateX(6px); border-color: var(--line-green); }
.impl-num { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--green); min-width: 38px; opacity: 0.7; }
.impl-text { font-size: 15px; font-weight: 500; }

/* ===================== ABOUT STATS (home) ===================== */
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-box {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform var(--t), border-color var(--t);
}
.about-stat-box:hover { transform: translateY(-5px); border-color: var(--line-green); }
.asb-num {
  font-family: var(--font-head); font-size: 38px; font-weight: 800; line-height: 1;
  background: linear-gradient(120deg, var(--green), var(--green-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.asb-lbl { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 10px; }

/* ===================== OUTSOURCING ===================== */
.outline-nav {
  position: sticky; top: 100px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.outline-nav h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.outline-nav ul { display: flex; flex-direction: column; gap: 4px; }
.outline-nav ul li a {
  display: block; padding: 11px 15px; font-size: 14px; color: var(--gray);
  border-radius: 10px; border-left: 2px solid transparent; transition: var(--t);
}
.outline-nav ul li a:hover, .outline-nav ul li a.active {
  background: rgba(0, 229, 160, 0.08); color: var(--green); border-left-color: var(--green);
}
.article-section { margin-bottom: 64px; scroll-margin-top: 110px; }
.article-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 22px;
  background: linear-gradient(120deg, var(--green), var(--green-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.article-section p { font-size: 15.5px; color: var(--gray-soft); line-height: 1.95; margin-bottom: 18px; }

.outsourcing-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 28px;
}
.outsourcing-stat {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 18px; text-align: center;
  transition: transform var(--t), border-color var(--t);
}
.outsourcing-stat:hover { transform: translateY(-5px); border-color: var(--line-green); }
.os-value {
  font-family: var(--font-head); font-size: 36px; font-weight: 800; line-height: 1; margin-bottom: 8px;
  background: linear-gradient(120deg, var(--green), var(--green-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.os-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; line-height: 1.4; }

.region-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.region-tag {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 18px; font-size: 14px; font-weight: 600; color: var(--white);
  background: rgba(0, 229, 160, 0.06);
  border: 1px solid var(--line-green);
  border-radius: 100px;
  transition: var(--t);
}
.region-tag:hover { background: rgba(0, 229, 160, 0.12); transform: translateY(-2px); }
.region-tag i { color: var(--green); }

.global-regions-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.gr-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.gr-item i { color: var(--green); }
.gr-sep { color: var(--gray); }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-card {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 18px;
  transition: transform var(--t), border-color var(--t);
}
.contact-info-card:hover { transform: translateX(6px); border-color: var(--line-green); }
.contact-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--green);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid var(--line-green);
}
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.contact-value { font-size: 16px; font-weight: 600; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--green);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid var(--line-green);
  transition: var(--t);
}
.social-link:hover { background: linear-gradient(140deg, var(--green), var(--green-2)); color: #04110c; transform: translateY(-3px); }

/* ===================== SKILL BARS ===================== */
.skill-bars { display: flex; flex-direction: column; gap: 26px; }
.skill-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.skill-name { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-soft); }
.skill-pct { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--green); }
.skill-bar { height: 8px; background: rgba(255, 255, 255, 0.05); border-radius: 100px; overflow: hidden; }
.skill-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  border-radius: 100px;
  box-shadow: 0 0 14px var(--green-glow);
  transition: width 1.4s var(--ease);
}

/* ===================== CTA ===================== */
.cta-section {
  position: relative;
  text-align: center;
  padding: 120px 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0, 229, 160, 0.14), transparent 60%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}
.cta-section .section-tag { display: block; }
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-section p { color: var(--gray-soft); max-width: 560px; margin: 0 auto 38px; font-size: 1.05rem; line-height: 1.8; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 80px 32px 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
}
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.85; margin: 22px 0; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-col h5 { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--gray); display: flex; align-items: center; gap: 9px; transition: var(--t); }
.footer-links a:hover { color: var(--green); transform: translateX(4px); }
.footer-links a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 11px; color: var(--green); }
.footer-links li[style] a::before { content: none; }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }

/* ===================== SCROLL REVEAL ===================== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  section { padding: 84px 24px; }
  .hero, .hero-home, .hero-sm { padding: 140px 24px 80px; }
  .navbar { padding: 0 20px; }
  .nav-menu {
    display: none;
    position: fixed; top: 80px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch;
    padding: 14px; border-radius: 20px; gap: 4px;
    background: rgba(8, 14, 21, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a:not(.nav-cta) { padding: 13px 16px; }
  .nav-cta { margin-left: 0; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > div:first-child { order: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .article-section h2 { font-size: 1.6rem; }
  section .container > div[style*="280px"] { grid-template-columns: 1fr !important; }
  .outline-nav { position: static; }
  .outsourcing-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn { width: 100%; justify-content: center; }
  .btn-group { width: 100%; }
}
