:root {
  --primary: #7B61FF;
  --primary-dark: #5B41DF;
  --primary-light: #9B81FF;
  --secondary: #EDE9FF;
  --accent: #C4B5FD;
  --white: #FFFFFF;
  --gray-50: #F8F7FF;
  --gray-100: #F0EEFF;
  --gray-200: #E8E4FF;
  --gray-400: #9B8FC8;
  --gray-600: #6B5F9E;
  --gray-800: #2D1F6E;
  --gray-900: #1A0F4E;
  --text: #1A0F4E;
  --text-light: #6B5F9E;
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(123,97,255,0.15);
  --shadow-sm: 0 2px 16px rgba(123,97,255,0.08);
  --shadow-md: 0 8px 40px rgba(123,97,255,0.14);
  --shadow-lg: 0 20px 60px rgba(123,97,255,0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { font-size: 1rem; color: var(--text-light); line-height: 1.75; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { color: var(--gray-900); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; max-width: 620px; margin-bottom: 48px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(123,97,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 30px rgba(123,97,255,0.45); }
.btn-outline {
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  border: 1.5px solid var(--accent);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: var(--secondary); transform: translateY(-2px); }
.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  box-shadow: 0 4px 14px rgba(123,97,255,0.4);
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}
.nav-logo-tag {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--primary); background: var(--secondary); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray-800);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0630 0%, #1A0F4E 50%, #2D1F6E 100%);
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,97,255,0.35) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,181,253,0.2) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123,97,255,0.2) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation: floatOrb 12s ease-in-out infinite;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid lines overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,97,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,97,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: heroFadeIn 0.8s ease forwards; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,97,255,0.2);
  border: 1px solid rgba(123,97,255,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline .gradient-text {
  background: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 50%, #7B61FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  border-left: 2px solid rgba(123,97,255,0.4);
  padding-left: 16px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Hero slider controls */
.hero-slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dot.active {
  background: var(--primary-light);
  width: 28px;
  border-radius: 4px;
}

/* Floating shape */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 40vw);
  pointer-events: none;
}
.hero-card-float {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card-float:nth-child(2) { animation-delay: -3s; margin-left: 40px; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hcf-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.hcf-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: white; }
.hcf-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-top: 12px; overflow: hidden; }
.hcf-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--primary-light), var(--accent)); animation: barGrow 3s ease-in-out infinite; }
@keyframes barGrow { 0%, 100% { width: 60%; } 50% { width: 85%; } }
.hcf-row { display: flex; justify-content: space-between; align-items: center; }
.hcf-tag {
  display: inline-block;
  background: rgba(123,97,255,0.3);
  color: var(--accent);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}

/* ── SECTIONS COMMON ── */
section { padding: 96px 0; }

/* ── ABOUT ── */
#about { background: var(--gray-50); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-200) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-img-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}
.about-img-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.about-icon-main {
  width: 80px; height: 80px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}
.about-badge-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.about-badge-text { font-size: 0.75rem; color: var(--text-light); }
.about-badge-2 {
  position: absolute;
  top: -20px; left: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  color: white;
  text-align: center;
  min-width: 110px;
}
.about-badge-2 .ab-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.about-badge-2 .ab-text { font-size: 0.72rem; opacity: 0.8; }
.about-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.about-check {
  width: 22px; height: 22px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--primary);
}

/* ── WHAT WE DO ── */
#whatwedo { background: white; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.highlight-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.highlight-card:hover::before { transform: scaleX(1); }
.hc-icon {
  width: 52px; height: 52px;
  background: var(--secondary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.highlight-card:hover .hc-icon { background: var(--primary); }
.hc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.hc-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ── SERVICES ── */
#services { background: var(--gray-50); }
.service-category {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.sc-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.sc-icon {
  width: 56px; height: 56px;
  background: var(--secondary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.sc-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gray-900); }
.sc-desc { font-size: 0.9rem; color: var(--text-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.service-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); }
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .svc-icon { background: rgba(255,255,255,0.2); }
.service-card:hover .svc-name { color: white; }
.service-card:hover .svc-desc { color: rgba(255,255,255,0.75); }
.svc-icon {
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: background 0.3s;
}
.svc-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; transition: color 0.3s; }
.svc-desc { font-size: 0.82rem; color: var(--text-light); transition: color 0.3s; }

/* ── RECRUITMENT PROCESS ── */
#process { background: white; overflow: hidden; }
.process-timeline { position: relative; margin-top: 64px; }
.process-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--accent) 50%, var(--secondary) 100%);
  transform: translateX(-50%);
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 48px;
}
.process-step:nth-child(even) .ps-content { grid-column: 3; }
.process-step:nth-child(even) .ps-number { grid-column: 2; }
.process-step:nth-child(even) .ps-spacer { grid-column: 1; grid-row: 1; }
.ps-content {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.ps-content:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }
.ps-number {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 20px rgba(123,97,255,0.4);
  justify-self: center;
  z-index: 1;
}
.ps-spacer {}
.ps-icon { font-size: 1.5rem; margin-bottom: 10px; }
.ps-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.ps-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ── WHY CHOOSE US ── */
#why { background: linear-gradient(135deg, #0D0630 0%, #1A0F4E 100%); }
#why .section-label { background: rgba(123,97,255,0.2); color: var(--accent); }
#why .section-title { color: white; }
#why .section-sub { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,97,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(123,97,255,0.4); }
.why-card:hover::before { opacity: 1; }
.wc-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(123,97,255,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.wc-icon {
  width: 52px; height: 52px;
  background: rgba(123,97,255,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.why-card:hover .wc-icon { background: rgba(123,97,255,0.3); }
.wc-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 8px; }
.wc-text { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── OBJECTIVES ── */
#objectives { background: var(--gray-50); }
.obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.obj-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.obj-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: var(--accent); }
.obj-bullet {
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.obj-text { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* ── VALUES ── */
#values { background: white; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  cursor: default;
}
.value-card:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}
.value-card:hover .vc-icon { background: rgba(255,255,255,0.2); }
.value-card:hover .vc-title, .value-card:hover .vc-text { color: white; }
.value-card:hover .vc-text { color: rgba(255,255,255,0.75); }
.vc-icon {
  width: 60px; height: 60px;
  background: var(--secondary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: background 0.3s;
}
.vc-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; transition: color 0.3s; }
.vc-text { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; transition: color 0.3s; }

/* ── INDUSTRIES ── */
#industries { background: var(--gray-50); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.industry-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.industry-card:hover {
  border-color: var(--primary);
  background: var(--secondary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.ic-icon { font-size: 2.2rem; margin-bottom: 12px; }
.ic-name { font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: var(--gray-800); }

/* ── VISION MISSION ── */
#vision-mission { background: white; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.vm-card {
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.vm-card.vision {
  background: linear-gradient(135deg, #0D0630 0%, #1A0F4E 100%);
}
.vm-card.mission {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.vm-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.vm-card.mission .vm-icon { background: var(--secondary); }
.vm-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.vm-card.vision .vm-label { color: var(--accent); }
.vm-card.mission .vm-label { color: var(--primary); }
.vm-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.vm-card.vision .vm-title { color: white; }
.vm-card.mission .vm-title { color: var(--gray-900); }
.vm-text { line-height: 1.75; font-size: 0.95rem; }
.vm-card.vision .vm-text { color: rgba(255,255,255,0.65); }
.vm-card.mission .vm-text { color: var(--text-light); }
.vm-orb {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(123,97,255,0.3), transparent);
  border-radius: 50%;
  right: -60px; bottom: -60px;
  pointer-events: none;
}

/* ── CONTACT ── */
#contact { background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.contact-info { }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.ci-icon {
  width: 48px; height: 48px;
  background: var(--secondary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 4px; }
.ci-value { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gray-900); }
.map-placeholder {
  background: var(--gray-200);
  border-radius: var(--radius);
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
  border: 1px solid var(--gray-200);
  flex-direction: column;
  gap: 10px;
}
.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-800); letter-spacing: 0.05em; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--gray-50);
  outline: none;
  transition: all 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(123,97,255,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-btn { width: 100%; padding: 15px; font-size: 1rem; margin-top: 8px; }
.form-success {
  display: none;
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, #0D0630 0%, #1A0F4E 100%);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem; color: white;
}
.footer-logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; }
.footer-logo-tag { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.fci-icon { font-size: 0.9rem; margin-top: 2px; color: var(--accent); flex-shrink: 0; }
.fci-text { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── WHATSAPP ── */
#whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  z-index: 900;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  animation: waBounce 3s ease-in-out infinite;
}
#whatsapp-btn:hover { transform: scale(1.15); box-shadow: 0 8px 36px rgba(37,211,102,0.55); }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.wa-tooltip {
  position: absolute;
  right: 70px; top: 50%; transform: translateY(-50%);
  background: white;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
#whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* delay classes */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .about-grid { gap: 40px; }
  .process-line { left: 30px; }
  .process-step { grid-template-columns: 60px 1fr; }
  .process-step:nth-child(even) .ps-content { grid-column: 2; }
  .process-step:nth-child(even) .ps-number { grid-column: 1; grid-row: 1; }
  .process-step:nth-child(even) .ps-spacer { display: none; }
  .process-step .ps-spacer { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .about-grid, .vm-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  section { padding: 64px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
}