/* ═══════════════════════════════════════════════════════════
   StaffIQ Talent Solutions — Global Design System v2
   Theme: Deep Navy + Electric Violet + Warm Gold
   Font: Fraunces (display) + Inter (body)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand */
  --navy:       #0B1120;
  --navy-2:     #111827;
  --navy-3:     #1C2539;
  --violet:     #6D35C3;
  --violet-d:   #4E2290;
  --violet-l:   #F0E8FF;
  --violet-m:   #C4A0F0;
  --violet-g:   linear-gradient(135deg,#6D35C3 0%,#4E2290 100%);
  --blue:       #2563EB;
  --blue-l:     #EFF6FF;
  --gold:       #D4A017;
  --gold-l:     #FFFBEB;
  --gold-m:     #FCD34D;
  --teal:       #0D9488;
  --teal-l:     #F0FDFA;

  /* Levels */
  --l1:         #1D4ED8;
  --l1-l:       #EFF6FF;
  --l1-m:       #BFDBFE;
  --wkend:      #6D35C3;
  --wkend-l:    #F0E8FF;

  /* Backgrounds */
  --bg:         #FAFBFF;
  --bg-2:       #F4F5F9;
  --bg-3:       #EEEEF5;
  --white:      #FFFFFF;

  /* Text */
  --t1:         #0B1120;
  --t2:         #374151;
  --t3:         #6B7280;
  --t4:         #9CA3AF;

  /* UI */
  --border:     #E5E7EB;
  --border-2:   #D1D5DB;
  --green:      #059669;
  --green-l:    #ECFDF5;

  /* Typography */
  --ff-d:       'Fraunces', Georgia, serif;
  --ff-b:       'Inter', system-ui, sans-serif;

  /* Radii */
  --r-xs:       6px;
  --r-sm:       10px;
  --r:          16px;
  --r-lg:       24px;
  --r-xl:       36px;

  /* Shadows */
  --sh-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --sh:         0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --sh-lg:      0 20px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --sh-violet:  0 8px 32px rgba(109,53,195,0.24);

  /* Layout */
  --nav-h:      70px;
  --max-w:      1180px;
  --px:         clamp(1.25rem, 5vw, 3.5rem);
}

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

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--sh); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--px);
  height: 100%; display: flex; align-items: center;
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--t2);
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--violet); background: var(--violet-l); }
.nav-links a.active { color: var(--violet); font-weight: 600; }
.nav-cta {
  background: var(--violet) !important; color: white !important;
  padding: 9px 22px !important; border-radius: var(--r-sm) !important;
  font-weight: 600 !important; margin-left: 8px;
  box-shadow: var(--sh-violet) !important;
  transition: all .2s !important;
}
.nav-cta:hover { background: var(--violet-d) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--t1); border-radius: 2px; transition: all .25s; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section { padding: 96px var(--px); max-width: var(--max-w); margin: 0 auto; }
.section-sm { padding: 64px var(--px); max-width: var(--max-w); margin: 0 auto; }

/* ── SECTION HEADERS ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--violet); margin-bottom: 12px;
}
.eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--violet); border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: var(--ff-d); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300; line-height: 1.1; color: var(--t1);
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px; color: var(--t3); line-height: 1.8;
  max-width: 100%; margin-bottom: 56px; font-weight: 400;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-b); font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  transition: all .2s; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--violet); color: white; border-color: var(--violet); box-shadow: var(--sh-violet); }
.btn-primary:hover { background: var(--violet-d); border-color: var(--violet-d); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(109,53,195,0.3); }
.btn-outline { background: transparent; color: var(--t1); border-color: var(--border-2); }
.btn-outline:hover { border-color: var(--violet); color: var(--violet); background: var(--violet-l); }
.btn-gold { background: var(--gold); color: white; border-color: var(--gold); }
.btn-gold:hover { background: #b8890f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.3); }
.btn-white { background: white; color: var(--violet); border-color: rgba(255,255,255,0.3); }
.btn-white:hover { background: var(--violet-l); }
.btn-wa { background: #22C55E; color: white; border-color: #22C55E; }
.btn-wa:hover { background: #16A34A; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--r); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.badge-violet { background: var(--violet-l); color: var(--violet); }
.badge-blue  { background: var(--l1-l); color: var(--l1); }
.badge-green { background: var(--green-l); color: var(--green); }
.badge-gold  { background: var(--gold-l); color: var(--gold); }
.badge-wkend { background: var(--wkend-l); color: var(--wkend); }
.badge-navy  { background: var(--navy-3); color: rgba(255,255,255,.75); }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #22C55E;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(34,197,94,0.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(34,197,94,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── CHECK LIST ──────────────────────────────────────────── */
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-item::before {
  content: ''; flex-shrink: 0; margin-top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 72px var(--px) 64px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold-m); }
.page-hero .eyebrow::before { background: var(--gold-m); }
.page-hero h1 {
  font-family: var(--ff-d); font-size: clamp(2rem, 4.5vw, 3rem);
  color: white; font-weight: 300; margin-bottom: 14px; line-height: 1.1;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,.55); max-width: 100%; line-height: 1.75; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px var(--px) 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logo { height: 34px; opacity: .85; display: block; margin-bottom: 16px; }
.footer-brand-text { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.75; margin-bottom: 20px; }
.footer-cert { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-cert span { font-size: 10.5px; font-weight: 700; letter-spacing: .5px; padding: 4px 10px; border-radius: 6px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-links a:hover { color: white; }
.footer-contact-row { font-size: 13.5px; color: rgba(255,255,255,.45); margin-bottom: 9px; line-height: 1.5; }
.footer-contact-row strong { color: rgba(255,255,255,.65); display: block; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.25); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes shimmer { from { background-position: -200% 0; } to { background-position: 200% 0; } }
.anim-up { animation: fadeUp .65s ease forwards; }
.d1 { animation-delay: .1s; opacity: 0; }
.d2 { animation-delay: .2s; opacity: 0; }
.d3 { animation-delay: .3s; opacity: 0; }
.d4 { animation-delay: .4s; opacity: 0; }
.d5 { animation-delay: .5s; opacity: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 16px var(--px); gap: 4px; box-shadow: var(--sh);
  }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px var(--px); }
  .wa-float { bottom: 20px; right: 16px; }
}
