@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --purple:     #6B21A8;
  --purple2:    #7C3AED;
  --purple3:    #5B21B6;
  --purple-lt:  #7C3AED;
  --purple-sky: #F5F3FF;
  --purple-100: #EDE9FE;
  --purple-200: #DDD6FE;
  --navy:       #1E1B4B;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-900:   #0F172A;
  --border:     #E2E8F0;
  --tr: 0.22s ease;
}

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

/* ── LAYOUT ── */
.w { max-width: 1180px; margin: 0 auto; padding: 0 5%; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; font-family: 'Albert Sans', sans-serif;
  font-size: 14px; font-weight: 700; border-radius: 6px;
  border: none; cursor: pointer; transition: all var(--tr);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple3); box-shadow: 0 6px 20px rgba(107,33,168,0.35); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--purple); font-weight: 700; }
.btn-white:hover { background: var(--purple-sky); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }
.btn-outline { background: transparent; color: var(--purple); border: 1.5px solid var(--purple-200); font-weight: 700; }
.btn-outline:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--tr); }
.btn:hover svg { transform: translateX(3px); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 990;
  height: 70px; display: flex; align-items: center;
  padding: 0 5%; transition: all var(--tr);
}
nav.solid { background: #fff; box-shadow: 0 1px 0 var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1180px; margin: 0 auto; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--gray-700); transition: color var(--tr); }
.nav-links a:hover, .nav-links a.act { color: var(--purple); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* light-top nav (used on hero pages with purple hero) */
nav.light-top .nav-links a { color: rgba(255,255,255,0.85); }
nav.light-top .nav-links a:hover, nav.light-top .nav-links a.act { color: #fff; }
nav.light-top.solid .nav-links a { color: var(--gray-700); }
nav.light-top.solid .nav-links a:hover { color: var(--purple); }

.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.ham span { width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; display: block; transition: all .3s; }
nav.light-top .ham span { background: #fff; }
nav.light-top.solid .ham span { background: var(--gray-700); }

.mob {
  display: none; flex-direction: column; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0; background: #fff;
  z-index: 989; padding: 2rem 5%; overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mob.open { display: flex; }
.mob a { font-size: 17px; font-weight: 700; color: var(--gray-900); padding: 1rem 0; border-bottom: 1px solid var(--border); transition: color var(--tr); }
.mob a:hover { color: var(--purple); }
.mob .btn { margin-top: 1.5rem; justify-content: center; }

@media(max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .ham { display: flex; }
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #fff;
  padding: 5rem 5% 2.5rem;
  font-family: 'Albert Sans', sans-serif;
}
.ft { max-width: 1180px; margin: 0 auto; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; }
.ft-brand img { height: 42px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.ft-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); max-width: 260px; margin-bottom: 1rem; }
.ft-email { font-size: 14px; color: rgba(255,255,255,0.55); }
.ft-email a { color: #C4B5FD; font-weight: 600; }
.ft-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.ft-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.ft-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--tr); }
.ft-col ul li a:hover { color: #fff; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ft-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

@media(max-width: 900px) { .ft-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width: 560px) { .ft-top { grid-template-columns: 1fr; } }

/* ── SECTION LABELS ── */
.tag {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 12px;
}
.tag.white { color: #C4B5FD; }

/* ── STATS BAR ── */
.stats-bar { background: var(--gray-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: 26px 16px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n { font-size: 28px; font-weight: 900; color: var(--purple); letter-spacing: -0.03em; display: block; line-height: 1.1; margin-bottom: 4px; }
.stat-l { font-size: 11.5px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
@media(max-width: 720px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } .stat { border-bottom: 1px solid var(--border); } }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  border: 1px solid var(--border); border-radius: 10px; padding: 28px;
  transition: all var(--tr); background: #fff;
}
.svc-card:hover { border-color: var(--purple-200); box-shadow: 0 8px 32px rgba(107,33,168,0.1); transform: translateY(-3px); }
.svc-icon {
  width: 48px; height: 48px; background: var(--purple-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.svc-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--purple); transition: gap var(--tr); }
.svc-link:hover { gap: 9px; }

@media(max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
@media(max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }
.rv.d4 { transition-delay: 0.32s; }
.rv.d5 { transition-delay: 0.4s; }
.rv.d6 { transition-delay: 0.48s; }
.rv.in { opacity: 1; transform: none; }

/* ── MISC ── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px; padding: 7px 14px; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 26px;
}
.pill-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-100); border: 1px solid var(--purple-200);
  border-radius: 4px; padding: 7px 14px; font-size: 12px; font-weight: 700;
  color: var(--purple); letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 26px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(145deg, var(--purple) 0%, var(--purple2) 50%, #4C1D95 100%);
  padding: 9.5rem 5% 5.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px),
                    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px);
}
.page-hero::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 580px; line-height: 1.75; }

/* ── SECTION ── */
.section { padding: 72px 5%; }
.section.bg-light { background: var(--gray-50); }
.section.bg-purple { background: linear-gradient(145deg, var(--purple) 0%, var(--purple2) 60%, #4C1D95 100%); }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--gray-900); letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.18; }
.section-head h2.white { color: #fff; }
.section-head p { font-size: 16px; color: var(--gray-600); line-height: 1.7; max-width: 600px; }
.section-head p.white { color: rgba(255,255,255,0.65); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(145deg, var(--purple) 0%, var(--purple2) 60%, #4C1D95 100%);
  padding: 72px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px),
                    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.02) 80px);
}
.cta-band::after {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 65%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── WHY LIST ── */
.why-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.why-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px 28px; border-bottom: 1px solid var(--border); background: #fff; transition: background var(--tr); }
.why-item:last-child { border-bottom: none; }
.why-item:hover { background: var(--purple-sky); }
.why-num { font-size: 13px; font-weight: 800; color: var(--purple); font-family: 'Albert Sans', sans-serif; min-width: 28px; margin-top: 2px; }
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

@media(max-width: 1024px) { .grid-2 { grid-template-columns: 1fr; gap: 36px; } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 720px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media(max-width: 500px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--purple), var(--purple-200)); }
.tl-item { position: relative; padding-bottom: 28px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -33px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--purple); border: 2px solid #fff; box-shadow: 0 0 0 3px var(--purple-200); }
.tl-year { font-size: 11px; font-weight: 800; color: var(--purple); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; display: block; }
.tl-item h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.tl-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ── VALUES ── */
.val-card { border: 1px solid var(--border); border-radius: 10px; padding: 28px; background: #fff; transition: all var(--tr); }
.val-card:hover { border-color: var(--purple-200); box-shadow: 0 8px 28px rgba(107,33,168,0.09); transform: translateY(-2px); }
.val-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.val-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.val-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ── OFFICES ── */
.office-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.office-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 18px 16px; text-align: center; transition: all var(--tr); }
.office-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }
.office-card .flag { font-size: 22px; display: block; margin-bottom: 8px; }
.office-card h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.office-card p { font-size: 12px; color: rgba(255,255,255,0.5); }
.hq-badge { display: inline-block; background: rgba(196,181,253,0.2); border: 1px solid rgba(196,181,253,0.35); border-radius: 3px; font-size: 9px; font-weight: 800; color: #C4B5FD; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 7px; margin-top: 5px; }
@media(max-width: 900px) { .office-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── INDUSTRY CARDS ── */
.ind-card { border: 1px solid var(--border); border-radius: 10px; padding: 28px; background: #fff; transition: all var(--tr); }
.ind-card:hover { border-color: var(--purple-200); box-shadow: 0 8px 28px rgba(107,33,168,0.09); transform: translateY(-2px); }
.ind-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.ind-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.ind-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 14px; }
.ind-caps { display: flex; flex-direction: column; gap: 7px; }
.ind-caps li { font-size: 13px; color: var(--gray-600); display: flex; gap: 8px; align-items: flex-start; }
.ind-caps li::before { content: '→'; color: var(--purple); flex-shrink: 0; font-weight: 700; }

/* ── SERVICE DETAIL ── */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--border); }
.svc-detail:last-child { border-bottom: none; }
.svc-detail-icon { background: linear-gradient(145deg, var(--purple), var(--purple2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 64px; min-height: 280px; position: relative; overflow: hidden; }
.svc-detail-icon::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.04) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.04) 40px); }
.svc-detail h2 { font-size: 28px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; letter-spacing: -0.02em; line-height: 1.2; }
.svc-detail > div > p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.svc-bullets { display: flex; flex-direction: column; gap: 10px; }
.svc-bullets li { font-size: 14px; color: var(--gray-700); display: flex; gap: 10px; align-items: flex-start; }
.svc-bullets li::before { content: '✓'; color: var(--purple); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
@media(max-width: 1024px) { .svc-detail { grid-template-columns: 1fr; gap: 28px; } .svc-detail-icon { min-height: 180px; } }

/* ── JOB CARDS ── */
.job-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.job-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 28px; border-bottom: 1px solid var(--border); background: #fff; transition: background var(--tr); flex-wrap: wrap; }
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: var(--purple-sky); }
.job-dept { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); margin-bottom: 4px; }
.job-row h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.job-row .loc { font-size: 13px; color: var(--gray-400); }
.job-badge { background: var(--purple-100); border: 1px solid var(--purple-200); border-radius: 4px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: var(--purple); white-space: nowrap; }

/* ── PERK CARDS ── */
.perk-card { border: 1px solid var(--border); border-radius: 10px; padding: 28px; background: #fff; }
.perk-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.perk-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.perk-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ── CONTACT ── */
.contact-info-box { background: var(--gray-50); border: 1px solid var(--border); border-radius: 10px; padding: 32px; }
.ci-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.ci-row:last-child { margin-bottom: 0; }
.ci-icon { width: 42px; height: 42px; background: var(--purple-100); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-row h4 { font-size: 11px; font-weight: 800; color: var(--gray-400); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.ci-row p { font-size: 14px; color: var(--gray-700); line-height: 1.6; }
.ci-row a { color: var(--purple); font-weight: 700; }

/* ── FORM ── */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-600); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px; background: var(--gray-50); border: 1px solid var(--border);
  border-radius: 6px; color: var(--gray-900); font-family: 'Albert Sans', sans-serif;
  font-size: 15px; transition: all var(--tr); outline: none; appearance: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 3px rgba(107,33,168,0.08); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select option { background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-success { display: none; text-align: center; padding: 2.5rem; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 10px; }
.form-success span { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.form-success h3 { font-size: 18px; font-weight: 700; color: #166534; margin-bottom: 6px; }
.form-success p { font-size: 14px; color: #166534; opacity: 0.75; }
