/* =============================================
   TALENTCORE TECHNOLOGIES — DESIGN SYSTEM 2026
   ============================================= */
:root {
  /* Brand Colors */
  --blue-dark:   #0B2B6E;
  --blue:        #1756C8;
  --blue-mid:    #2563EB;
  --blue-light:  #3B82F6;
  --blue-pale:   #EFF6FF;
  --accent:      #F97316;
  --accent-pale: #FFF7ED;
  --green:       #16A34A;
  --green-pale:  #F0FDF4;

  /* Neutrals */
  --white:       #FFFFFF;
  --offwhite:    #F8FAFC;
  --gray-50:     #F1F5F9;
  --gray-100:    #E2E8F0;
  --gray-200:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --gray-900:    #0F172A;

  /* Typography */
  --font-head:   'Bricolage Grotesque', sans-serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --max-w:       1160px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-blue: 0 8px 28px rgba(37,99,235,0.25);
  --shadow-accent: 0 8px 28px rgba(249,115,22,0.3);

  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ---- LAYOUT ---- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section  { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.18; }
.display { font-size: clamp(40px,5.5vw,68px); font-weight: 800; letter-spacing: -0.03em; }
.h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 700; letter-spacing: -0.025em; }
.h3 { font-size: clamp(22px,2.5vw,30px); font-weight: 700; }
.h4 { font-size: 20px; font-weight: 700; }
.h5 { font-size: 16px; font-weight: 700; }
.lead { font-size: 18px; color: var(--gray-500); line-height: 1.75; }
.muted { color: var(--gray-500); }
.blue { color: var(--blue); }
.accent-c { color: var(--accent); }
strong { font-weight: 700; }

/* ---- PILL / LABEL ---- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-full);
  background: var(--blue-pale); color: var(--blue);
  border: 1.5px solid rgba(37,99,235,0.2);
  margin-bottom: 18px;
}
.pill-accent { background: var(--accent-pale); color: var(--accent); border-color: rgba(249,115,22,0.2); }
.pill-green  { background: var(--green-pale); color: var(--green); border-color: rgba(22,163,74,0.2); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0.7; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-md);
  transition: var(--transition); white-space: nowrap; border: none; cursor: pointer;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.22s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 10px 36px rgba(37,99,235,0.35); transform: translateY(-1px); }

.btn-accent {
  background: var(--accent); color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover { background: #EA6B08; box-shadow: 0 10px 36px rgba(249,115,22,0.4); transform: translateY(-1px); }

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

.btn-ghost-dark {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.2); }

.btn-lg  { padding: 16px 34px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm  { padding: 9px 18px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-w   { width: 100%; justify-content: center; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-md);
  transition: var(--transition); border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-wa svg { width: 20px; height: 20px; }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(37,99,235,0.15); }

/* ---- SECTION HEADER ---- */
.sec-hd { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.sec-hd .pill { display: inline-flex; }
.sec-hd p { margin-top: 14px; }

/* ============================================================
   PAGE ROUTER
   ============================================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--gray-100);
  transition: var(--transition);
}
#nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--blue-dark);
  white-space: nowrap;
}
.main-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 900;
  box-shadow: 0 4px 14px rgba(37,99,235,0.4);
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--gray-700);
  padding: 8px 13px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-pale); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--gray-700); border-radius: 3px; transition: var(--transition); }

/* Mobile nav */
#mobileNav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 850;
  background: white; border-bottom: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-lg); padding: 16px 24px 24px;
}
#mobileNav.open { display: block; }
#mobileNav a { display: block; font-size: 16px; font-weight: 600; color: var(--gray-700); padding: 13px 16px; border-radius: var(--radius-sm); border-bottom: 1px solid var(--gray-50); }
#mobileNav a:hover { color: var(--blue); background: var(--blue-pale); }
#mobileNav .mn-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

/* ============================================================
   STICKY ELEMENTS
   ============================================================ */
/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition); border: none; cursor: pointer;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float-tip {
  position: absolute; right: 68px; background: var(--gray-900);
  color: white; font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.wa-float:hover .wa-float-tip { opacity: 1; }

/* Mobile sticky CTA */
.sticky-mob {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: white; border-top: 1.5px solid var(--gray-100);
  padding: 14px 20px; display: none;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.1);
}
@media(max-width:768px){ .sticky-mob { display: flex; gap: 10px; } }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 160px 0 96px;
  background: linear-gradient(165deg, #EFF6FF 0%, #DBEAFE 45%, #F0F9FF 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-full); padding: 7px 16px 7px 10px;
  font-size: 13px; font-weight: 700; color: var(--blue);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-badge-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 13px;
}
.hero-title { margin-bottom: 20px; }
.hero-title .highlight {
  color: var(--blue);
  position: relative; display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px; opacity: 0.4;
}
.hero-sub { margin-bottom: 36px; font-size: 18px; color: var(--gray-500); line-height: 1.75; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-proof { display: flex; align-items: center; gap: 16px; }
.proof-avatars { display: flex; }
.proof-av {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -12px;
  border: 2.5px solid white;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white;
}
.proof-av:first-child { margin-left: 0; }
.proof-text strong { font-size: 14px; font-weight: 700; color: var(--gray-900); display: block; }
.proof-text span { font-size: 13px; color: var(--gray-500); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-main-card {
  background: white; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 36px;
  border: 1.5px solid var(--gray-100);
  position: relative; overflow: hidden;
}
.hero-main-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), #60A5FA);
}
.hmc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hmc-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.hmc-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.hmc-sub { font-size: 12px; color: var(--gray-500); }
.hmc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hmc-metric {
  background: var(--offwhite); border-radius: var(--radius-md); padding: 16px;
  border: 1px solid var(--gray-100);
}
.hmc-metric-val { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--blue); line-height: 1; }
.hmc-metric-label { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.hmc-bar-row { margin-bottom: 12px; }
.hmc-bar-label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.hmc-bar-track { height: 7px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.hmc-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); }

/* Float cards on hero */
.hero-float {
  position: absolute;
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 14px 18px;
  border: 1px solid var(--gray-100);
  animation: bobble 4s ease-in-out infinite;
}
.hf1 { top: -16px; left: -20px; animation-delay: 0s; }
.hf2 { bottom: 30px; right: -20px; animation-delay: -2s; }
@keyframes bobble { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hf-icon { font-size: 20px; }
.hf-val { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--blue); }
.hf-lab { font-size: 11px; color: var(--gray-500); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--blue-dark); padding: 52px 0;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(37,99,235,0.4) 0%, transparent 50%, rgba(37,99,235,0.2) 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 8px 24px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.12); }
.stat-num { font-family: var(--font-head); font-size: 46px; font-weight: 800; color: white; line-height: 1; }
.stat-num span { color: #93C5FD; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 500; }

/* ============================================================
   PROBLEM → SOLUTION
   ============================================================ */
.prob-sol { background: var(--offwhite); }
.prob-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.prob-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.prob-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.prob-card-icon { font-size: 32px; margin-bottom: 14px; }
.prob-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.prob-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.prob-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 48px 0 32px; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--gray-400);
}
.prob-divider::before, .prob-divider::after { content: ''; flex: 1; height: 1.5px; background: var(--gray-100); }
.sol-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.sol-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border-radius: var(--radius-lg); padding: 24px;
  border: 1.5px solid rgba(37,99,235,0.12); box-shadow: var(--shadow-sm);
}
.sol-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.sol-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.sol-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.svc-card {
  background: white; border-radius: var(--radius-xl); padding: 36px;
  border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column; gap: 16px;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(37,99,235,0.15); }
.svc-icon-wrap {
  width: 62px; height: 62px; border-radius: 16px;
  background: var(--blue-pale); display: flex; align-items: center;
  justify-content: center; font-size: 28px;
  transition: var(--transition);
}
.svc-card:hover .svc-icon-wrap { background: var(--blue); }
.svc-card h3 { font-size: 21px; font-weight: 700; }
.svc-card p { font-size: 15px; color: var(--gray-500); line-height: 1.75; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag {
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border-radius: var(--radius-full); background: var(--blue-pale); color: var(--blue);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process { background: var(--blue-dark); color: white; position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
}
.process .sec-hd p { color: rgba(255,255,255,0.6); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 1; margin-top: 52px; }
.process-connector {
  position: absolute; top: 52px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.25), rgba(255,255,255,0.1));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.ps-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border: 3px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 800; color: white;
  box-shadow: 0 0 0 8px rgba(37,99,235,0.15);
}
.process-step h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.ps-icon { font-size: 28px; margin-bottom: 14px; }

/* ============================================================
   SUCCESS STORIES PREVIEW
   ============================================================ */
.placements-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.placement-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.placement-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pc-company {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue); background: var(--blue-pale);
  padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.pc-story { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.pc-person { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.pc-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.pc-name { font-size: 14px; font-weight: 700; }
.pc-role { font-size: 12px; color: var(--gray-500); }
.stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--offwhite); }
.testi-slider { position: relative; overflow: hidden; margin-top: 52px; }
.testi-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testi-card {
  min-width: calc(33.333% - 16px); background: white;
  border-radius: var(--radius-xl); padding: 36px;
  border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.testi-quote { font-size: 44px; line-height: 0.8; color: var(--blue-pale); font-family: Georgia, serif; margin-bottom: 10px; }
.testi-text { font-size: 15px; color: var(--gray-600,#475569); line-height: 1.8; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.ta-av {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 18px;
}
.ta-name { font-weight: 700; font-size: 15px; }
.ta-role { font-size: 13px; color: var(--gray-500); }
.testi-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.testi-dot.active { background: var(--blue); width: 28px; border-radius: 5px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--gray-100); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: var(--transition); background: white; }
.faq-item.open { border-color: rgba(37,99,235,0.25); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; cursor: pointer;
  font-size: 16px; font-weight: 700; color: var(--gray-900);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-toggle {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; border: none;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer; font-size: 18px; color: var(--gray-700);
}
.faq-item.open .faq-toggle { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body-inner { padding: 0 26px 22px; font-size: 15px; color: var(--gray-500); line-height: 1.8; }
.faq-item.open .faq-body { max-height: 500px; }

/* ============================================================
   HOME CTA BLOCK
   ============================================================ */
.cta-block {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  border-radius: var(--radius-xl); padding: 72px 64px;
  text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-block h2 { margin-bottom: 16px; font-size: clamp(28px,4vw,42px); }
.cta-block p { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-pale));
  aspect-ratio: 4/5; display: flex; flex-direction: column;
  justify-content: flex-end; position: relative;
  border: 1.5px solid rgba(37,99,235,0.12);
  box-shadow: var(--shadow-lg);
}
.about-img-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%);
}
.about-img-number {
  position: absolute; top: 40px; left: 40px;
  font-family: var(--font-head); font-size: 96px; font-weight: 800;
  color: rgba(37,99,235,0.08); line-height: 1; pointer-events: none;
}
.about-badges-list { position: relative; z-index: 1; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.ab-badge {
  display: flex; align-items: center; gap: 14px;
  background: white; border-radius: var(--radius-md); padding: 16px 20px;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.ab-icon { font-size: 24px; flex-shrink: 0; }
.ab-title { font-size: 15px; font-weight: 700; }
.ab-desc  { font-size: 12px; color: var(--gray-500); }
.about-text .pill { display: inline-flex; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray-500); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.values-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.value-row { display: flex; align-items: flex-start; gap: 14px; }
.v-check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-pale); border: 1.5px solid rgba(22,163,74,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 12px; font-weight: 700; margin-top: 1px;
}
.value-row strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.value-row p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* Mission & Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.mv-card { border-radius: var(--radius-lg); padding: 32px; }
.mv-mission { background: var(--blue-pale); border: 1.5px solid rgba(37,99,235,0.15); }
.mv-vision  { background: var(--accent-pale); border: 1.5px solid rgba(249,115,22,0.15); }
.mv-icon { font-size: 36px; margin-bottom: 14px; }
.mv-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.mv-mission h4 { color: var(--blue); }
.mv-vision h4  { color: var(--accent); }
.mv-card p { font-size: 14px; color: var(--gray-600,#475569); line-height: 1.7; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card { background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm); text-align: center; padding: 28px 20px; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tm-av {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 26px;
  border: 3px solid white; box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
.team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--blue); font-weight: 600; display: block; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   SERVICES PAGE (FULL)
   ============================================================ */
.svc-full-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 64px 0; border-bottom: 1.5px solid var(--gray-100);
}
.svc-full-block:last-of-type { border-bottom: none; }
.svc-full-block.reverse { direction: rtl; }
.svc-full-block.reverse > * { direction: ltr; }
.sfb-content .pill { display: inline-flex; }
.sfb-content h2 { margin-bottom: 14px; font-size: clamp(26px,3vw,38px); }
.sfb-content > p { color: var(--gray-500); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.sfb-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.sfb-feat { display: flex; align-items: flex-start; gap: 12px; }
.sfb-feat-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-pale); border: 1.5px solid rgba(22,163,74,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 11px; font-weight: 700; margin-top: 1px;
}
.sfb-feat-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.sfb-feat-text span { font-size: 13px; color: var(--gray-500); }
.sfb-visual {
  border-radius: var(--radius-xl); background: var(--blue-pale);
  border: 1.5px solid rgba(37,99,235,0.12); overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  padding: 32px; min-height: 340px; position: relative;
}
.sfb-visual-icon { font-size: 64px; text-align: center; margin-bottom: 8px; }
.sfb-stat-row { display: flex; gap: 12px; }
.sfb-stat {
  flex: 1; background: white; border-radius: var(--radius-md); padding: 16px;
  text-align: center; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.sfb-stat-val { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--blue); }
.sfb-stat-lbl { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* ============================================================
   SUCCESS STORIES PAGE (FULL)
   ============================================================ */
.stories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.story-card {
  background: white; border-radius: var(--radius-xl); padding: 32px;
  border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column;
}
.story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.sc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--green); background: var(--green-pale); border: 1px solid rgba(22,163,74,0.2); padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 16px; }
.sc-placed { font-size: 22px; font-weight: 800; font-family: var(--font-head); color: var(--blue-dark); margin-bottom: 4px; }
.sc-role { font-size: 14px; color: var(--gray-500); margin-bottom: 18px; }
.sc-quote { font-size: 14px; color: var(--gray-500); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 20px; }
.sc-person { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.sc-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.sc-name { font-size: 14px; font-weight: 700; }
.sc-bg   { font-size: 12px; color: var(--gray-500); }

/* Before / After */
.bvsa-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.bvsa-card { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.bvsa-before { background: #FEF2F2; padding: 20px 24px; border-bottom: 1.5px solid #FEE2E2; }
.bvsa-after  { background: var(--green-pale); padding: 20px 24px; border-top: 1.5px solid rgba(22,163,74,0.15); }
.bvsa-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.bvsa-before .bvsa-label { color: #EF4444; }
.bvsa-after  .bvsa-label { color: var(--green); }
.bvsa-text { font-size: 14px; font-weight: 600; color: var(--gray-700); }
.bvsa-arrow { background: white; padding: 10px; text-align: center; font-size: 18px; }

/* ============================================================
   COURSES PAGE
   ============================================================ */
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.course-card {
  background: white; border-radius: var(--radius-xl); overflow: hidden;
  border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.course-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(37,99,235,0.15); }
.cc-thumb {
  height: 130px; display: flex; align-items: center; justify-content: center;
  font-size: 52px; position: relative;
}
.ct-java   { background: linear-gradient(135deg, #EFF6FF, #BFDBFE); }
.ct-data   { background: linear-gradient(135deg, #F0F9FF, #BAE6FD); }
.ct-resume { background: linear-gradient(135deg, #FFF7ED, #FED7AA); }
.ct-mock   { background: linear-gradient(135deg, #F0FDF4, #BBF7D0); }
.ct-place  { background: linear-gradient(135deg, #EFF6FF, #DDD6FE); }
.ct-soft   { background: linear-gradient(135deg, #FFF1F2, #FECDD3); }
.cc-body { padding: 26px; }
.cc-tag { display: inline-flex; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 11px; border-radius: var(--radius-full); background: var(--blue-pale); color: var(--blue); margin-bottom: 12px; }
.cc-tag.hot { background: #FEF3C7; color: #D97706; }
.course-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.course-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 18px; }
.cc-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.cc-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-500); }
.cc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1.5px solid var(--gray-100); }
.cc-level { font-size: 12px; font-weight: 600; color: var(--gray-400); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info .pill { display: inline-flex; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray-500); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }
.cinfo-items { display: flex; flex-direction: column; gap: 18px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 16px; }
.cinfo-icon { width: 48px; height: 48px; border-radius: 13px; background: var(--blue-pale); border: 1.5px solid rgba(37,99,235,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cinfo-label { font-size: 12px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.cinfo-val { font-size: 15px; font-weight: 600; }
.cinfo-val a { color: var(--blue); }
.cinfo-val a:hover { text-decoration: underline; }
.hours-row { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.hours-pill { font-size: 13px; font-weight: 600; background: var(--blue-pale); color: var(--blue); padding: 6px 14px; border-radius: var(--radius-full); }

/* Contact form */
.cform {
  background: white; border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 48px;
  box-shadow: var(--shadow-lg);
}
.cform h3 { font-size: 26px; margin-bottom: 6px; }
.cform > p { color: var(--gray-500); font-size: 15px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 16px;
  background: var(--offwhite); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); color: var(--gray-900);
  font-family: var(--font-body); font-size: 15px;
  transition: var(--transition); outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); background: var(--blue-pale); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--gray-400); }
.fg select option { background: white; }
.fg textarea { resize: vertical; min-height: 110px; }
.form-trust { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; color: var(--gray-500); }

/* Map placeholder */
.map-placeholder {
  background: var(--gray-50); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
  margin-top: 28px; min-height: 180px; display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.map-placeholder span { font-size: 40px; }
.map-placeholder p { font-size: 14px; color: var(--gray-500); }
.map-placeholder a { color: var(--blue); font-weight: 600; font-size: 14px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.pg-hero {
  padding: 150px 0 72px; text-align: center;
  background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 45%, white 100%);
  position: relative; overflow: hidden;
}
.pg-hero::after {
  content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
}
.pg-hero .wrap { position: relative; z-index: 1; }
.pg-hero .pill { display: inline-flex; justify-content: center; }
.pg-hero h1 { margin-bottom: 18px; }
.pg-hero p { max-width: 600px; margin: 0 auto 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--gray-900); color: white;
  padding: 80px 0 36px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; max-width: 280px; }
.f-socials { display: flex; gap: 10px; }
.f-social {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition); color: white;
}
.f-social:hover { border-color: var(--blue); background: rgba(37,99,235,0.2); }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.f-legal { display: flex; gap: 20px; }
.f-legal a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.f-legal a:hover { color: white; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.bg-off  { background: var(--offwhite); }
.bg-blue { background: var(--blue-pale); }
.center  { text-align: center; }
.mt-8    { margin-top: 8px; }
.mt-16   { margin-top: 16px; }
.mt-24   { margin-top: 24px; }
.mt-40   { margin-top: 40px; }
.mt-52   { margin-top: 52px; }
.mb-0    { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px){
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-full-block { grid-template-columns: 1fr; gap: 32px; }
  .svc-full-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .stat-item + .stat-item { border: none; }
}
@media(max-width:768px){
  .section { padding: 68px 0; }
  .display { font-size: 36px; }
  .grid-2, .grid-3, .grid-4, .svc-grid, .prob-cards,
  .placements-grid, .stories-grid, .bvsa-grid, .courses-grid,
  .team-grid, .testi-track .testi-card, .mv-grid { grid-template-columns: 1fr !important; }
  .sol-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .cta-block { padding: 44px 28px; }
  .cform { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .testi-card { min-width: 100%; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media(min-width:769px){ .sticky-mob { display: none !important; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Toast */
#toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  background: var(--gray-900); color: white; padding: 14px 26px;
  border-radius: var(--radius-md); font-size: 15px; font-weight: 600;
  z-index: 9999; display: none; white-space: nowrap;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(22,163,74,0.4);
}
#toast.show { display: block; animation: fadeUp 0.3s ease; }

/* Modal */
#modal {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(15,23,42,0.7); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
#modal.open { display: flex; }
.modal-box {
  background: white; border-radius: var(--radius-xl); padding: 48px 44px;
  max-width: 500px; width: 100%; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  animation: fadeUp 0.3s ease;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--gray-100); color: var(--gray-700);
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--gray-200); }
.modal-box .pill { display: inline-flex; margin-bottom: 12px; }
.modal-box h3 { font-size: 26px; margin-bottom: 6px; }
.modal-box > p { font-size: 15px; color: var(--gray-500); margin-bottom: 28px; }

