/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'DM Sans', sans-serif; font-style: normal; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.container { width: 100%; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; max-width: 1320px; } }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.stagger-child {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.visible .stagger-child { opacity: 1; transform: translateY(0); }
.animate-on-scroll.visible .stagger-child:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll.visible .stagger-child:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll.visible .stagger-child:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll.visible .stagger-child:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll.visible .stagger-child:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll.visible .stagger-child:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.35s ease;
}
.navbar.scrolled { background: #0f0a3c; box-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.navbar.scrolled-light { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar.scrolled-light .logo-skilled { color: #0f0a3c; }
.navbar.scrolled-light .nav-links a { color: rgba(15,10,60,0.65); }
.navbar.scrolled-light .nav-links a:hover { color: #0f0a3c; }
.navbar.scrolled-light .mobile-toggle { color: #0f0a3c; }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
@media (min-width: 768px) { .navbar-inner { height: 80px; } }
.logo { display: flex; align-items: center; gap: 6px; }
.logo-skilled { font-size: 1.35rem; font-weight: 800; color: #fff; font-family: 'DM Sans', sans-serif; letter-spacing: -0.03em; text-transform: lowercase; }
.logo-careers { font-size: 1.35rem; font-weight: 800; color: #00D4AA; font-family: 'DM Sans', sans-serif; letter-spacing: -0.03em; text-transform: lowercase; }
@media (min-width: 768px) { .logo-skilled, .logo-careers { font-size: 1.6rem; } }

.nav-links { display: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: #00D4AA; transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; }
.btn-jobs {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem; border-radius: 9999px;
  background: #2D2BE5; color: #fff; font-size: 0.8125rem; font-weight: 600;
  transition: all 0.25s;
}
.btn-jobs:hover { background: #4240ff; transform: translateY(-1px); }
.btn-touch {
  padding: 0.6rem 1.25rem; border-radius: 9999px;
  background: #FF4D6A; color: #fff; font-size: 0.8125rem; font-weight: 600;
  transition: all 0.25s;
}
.btn-touch:hover { background: #ff6b83; transform: translateY(-1px); }

.mobile-toggle { display: flex; align-items: center; color: #fff; padding: 0.5rem; }
.mobile-menu {
  display: none; background: rgba(15,10,60,0.98); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 1.125rem; font-weight: 500; padding: 0.625rem 0; }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0.5rem; }
.mobile-menu-cta a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.25rem; border-radius: 9999px; font-weight: 600; color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   HERO — closely matching Investigo reference
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: #0f0a3c;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.15; mix-blend-mode: luminosity;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f0a3c 0%, rgba(15,10,60,0.95) 40%, rgba(15,10,60,0.7) 100%);
}

/* Horizontal slide word animation for hero H1 */
.rotating-word-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 4ch;
}
.rotating-words-track {
  display: inline-block;
  position: relative;
}
.rotating-words-track span {
  display: none;
  color: #00D4AA;
  animation: slideInWord 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.rotating-words-track span.active {
  display: inline;
}
@keyframes slideInWord {
  0% { opacity: 0; transform: translateX(-40px); filter: blur(6px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: 8rem; padding-bottom: 4rem;
  width: 100%;
  text-align: left;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) { .hero-content { padding-top: 6rem; padding-bottom: 4rem; } }
.hero-content-inner {
  max-width: 680px;
}

.hero h1 {
  font-size: 2.75rem; font-weight: 800; color: #fff; line-height: 1.06;
  letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.5rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 4.25rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 5rem; } }

.hero-subtitle {
  font-size: 1.0625rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem;
  font-weight: 400; letter-spacing: 0.01em;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.1875rem; } }

/* Tab-style CTA cards — matching Investigo's two-tab hero CTAs */
.hero-tabs {
  display: flex; gap: 0; margin-bottom: 2rem;
  flex-direction: column;
}
@media (min-width: 640px) { .hero-tabs { flex-direction: row; } }
.hero-tab {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; flex: 1;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
}
.hero-tab:first-child { border-radius: 1rem 1rem 0 0; }
.hero-tab:last-child { border-radius: 0 0 1rem 1rem; border-top: none; }
@media (min-width: 640px) {
  .hero-tab:first-child { border-radius: 1rem 0 0 1rem; }
  .hero-tab:last-child { border-radius: 0 1rem 1rem 0; border-top: 1px solid rgba(255,255,255,0.12); border-left: none; }
}
.hero-tab:hover { background: rgba(255,255,255,0.14); }
.hero-tab-label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.375rem;
}
.hero-tab-label.teal { color: #00D4AA; }
.hero-tab-label.coral { color: #FF4D6A; }
.hero-tab-text { color: #fff; font-weight: 600; font-size: 0.9375rem; }
.hero-tab-arrow {
  width: 44px; height: 44px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s;
}
.hero-tab-arrow.teal { background: #00D4AA; color: #0f0a3c; }
.hero-tab-arrow.coral { background: #2D2BE5; color: #fff; }
.hero-tab:hover .hero-tab-arrow { transform: scale(1.08); }

/* Google Reviews social proof */
.hero-social-proof {
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.75); font-size: 0.875rem;
}
.google-stars {
  display: flex; align-items: center; gap: 0.375rem;
}
.google-stars svg { flex-shrink: 0; }
.google-rating {
  display: flex; flex-direction: column; gap: 0.125rem;
}
.google-rating-score {
  font-weight: 700; font-size: 0.9375rem; color: #fff;
  display: flex; align-items: center; gap: 0.5rem;
}
.google-rating-text {
  font-size: 0.8125rem; color: rgba(255,255,255,0.5);
}

/* Bottom wave divider */
.hero-bottom-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 3; }
.hero-bottom-wave svg { width: 100%; height: 70px; }
@media (min-width: 768px) { .hero-bottom-wave svg { height: 100px; } }

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION — with wave decorations extending right
   ═══════════════════════════════════════════════════════════════ */
.about { position: relative; padding: 5rem 0 4rem; background: #fff; overflow: hidden; }
@media (min-width: 768px) { .about { padding: 7rem 0 5rem; } }
.about-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about h2 {
  font-size: 2rem; font-weight: 800; color: #0f0a3c; line-height: 1.1;
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
@media (min-width: 640px) { .about h2 { font-size: 2.5rem; } }
@media (min-width: 768px) { .about h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .about h2 { font-size: 3.25rem; } }
.about p { font-size: 1rem; color: #555; line-height: 1.75; margin-bottom: 1.25rem; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 9999px;
  border: 2px solid #0f0a3c; color: #0f0a3c; font-weight: 600; font-size: 0.875rem;
  transition: all 0.3s; margin-top: 0.5rem;
}
.btn-outline-dark:hover { background: #0f0a3c; color: #fff; }

/* Three small images row — matching Investigo about section */
.about-images-row {
  display: flex; gap: 1rem; margin-top: 2rem;
}
.about-images-row img {
  width: 120px; height: 120px; object-fit: cover; border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
  .about-images-row img { width: 140px; height: 140px; }
}

/* Wave decorations on right side of about section */
.about-waves { position: absolute; right: -40px; top: 0; bottom: 0; width: 50%; pointer-events: none; }
.about-waves svg { position: absolute; }
.about-wave-teal { right: 0; top: 5%; width: 500px; }
.about-wave-coral { right: 20px; bottom: 10%; width: 400px; }
@media (max-width: 1023px) { .about-waves { display: none; } }
@media (min-width: 1280px) {
  .about-wave-teal { width: 600px; }
  .about-wave-coral { width: 500px; }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED JOBS — matching Investigo's layout
   ═══════════════════════════════════════════════════════════════ */
.featured-jobs { padding: 4rem 0; background: #f5f5fa; }
@media (min-width: 768px) { .featured-jobs { padding: 5rem 0; } }

.jobs-top-bar {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .jobs-top-bar { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.jobs-top-bar h2 {
  font-size: 2rem; font-weight: 800; color: #0f0a3c; line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .jobs-top-bar h2 { font-size: 2.5rem; } }
@media (min-width: 768px) { .jobs-top-bar h2 { font-size: 3rem; } }

/* AI banner — matching Investigo's "Smarter job hunting starts here" */
.ai-banner {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border-radius: 1rem; padding: 1rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #eee;
  flex: 1; max-width: 500px;
}
.ai-banner-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #2D2BE5, #6366f1);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.ai-banner-text strong { display: block; font-size: 0.875rem; color: #0f0a3c; margin-bottom: 0.125rem; }
.ai-banner-text span { font-size: 0.8125rem; color: #888; }

.btn-outline-coral {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  border: 2px solid #FF4D6A; color: #FF4D6A; font-weight: 600; font-size: 0.875rem;
  transition: all 0.3s; white-space: nowrap;
}
.btn-outline-coral:hover { background: #FF4D6A; color: #fff; }

.jobs-header-row {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .jobs-header-row { flex-direction: row; align-items: center; justify-content: space-between; }
}

.jobs-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .jobs-grid { grid-template-columns: repeat(3, 1fr); } }

.job-card {
  background: #fff; border-radius: 1rem; border: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); overflow: hidden;
  transition: all 0.3s;
}
.job-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.job-card-bar { height: 5px; background: #FF4D6A; }
.job-card-body { padding: 1.5rem; }
.job-location { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: #999; margin-bottom: 0.75rem; }
.job-location i { color: #2D2BE5; }
.job-card h3 { font-weight: 700; font-size: 1.0625rem; color: #0f0a3c; margin-bottom: 0.5rem; transition: color 0.3s; line-height: 1.3; }
.job-card:hover h3 { color: #2D2BE5; }
.job-salary { font-size: 0.8125rem; color: #666; margin-bottom: 0.75rem; line-height: 1.5; }
.job-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.job-tag { padding: 0.25rem 0.75rem; border-radius: 9999px; background: #f5f5fa; font-size: 0.75rem; font-weight: 500; color: #0f0a3c; }
.job-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.875rem; border-top: 1px solid #f0f0f0; }
.job-posted { font-size: 0.75rem; color: #bbb; }
.job-arrow { color: #2D2BE5; opacity: 0; transition: opacity 0.3s; }
.job-card:hover .job-arrow { opacity: 1; }

.jobs-pagination { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; }
.page-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  border: 2px solid #ddd; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: #0f0a3c;
}
.page-btn:hover { border-color: #0f0a3c; }
.page-btn:disabled { opacity: 0.3; cursor: default; }
.page-dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; background: #ccc; transition: all 0.3s; }
.page-dot.active { background: #2D2BE5; transform: scale(1.3); }

/* ═══════════════════════════════════════════════════════════════
   RECRUITMENT SOLUTIONS — 50/50 split
   ═══════════════════════════════════════════════════════════════ */
.solutions { padding: 5rem 0; background: #fff; }
@media (min-width: 768px) { .solutions { padding: 7rem 0; } }
.solutions-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .solutions-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.badge {
  display: inline-block; padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 1.25rem;
}
.badge-green { background: #00D4AA; color: #0f0a3c; }
.badge-purple { background: #63204D; color: #fff; }

.solutions h2 {
  font-size: 2rem; font-weight: 800; color: #0f0a3c; line-height: 1.1;
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
@media (min-width: 640px) { .solutions h2 { font-size: 2.5rem; } }
@media (min-width: 768px) { .solutions h2 { font-size: 3rem; } }
.solutions .bold-text { font-size: 1.0625rem; font-weight: 700; color: #0f0a3c; margin-bottom: 1rem; }
.solutions p { color: #555; line-height: 1.75; margin-bottom: 2rem; }
.btn-filled-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 9999px;
  background: #0f0a3c; color: #fff; font-weight: 600; font-size: 0.875rem;
  transition: all 0.3s;
}
.btn-filled-dark:hover { background: #2D2BE5; transform: translateY(-1px); }
.solutions-img img {
  border-radius: 1.25rem; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ═══════════════════════════════════════════════════════════════
   EXPERTISE — image left, text right
   ═══════════════════════════════════════════════════════════════ */
.expertise { padding: 5rem 0; background: #f5f5fa; overflow: hidden; }
@media (min-width: 768px) { .expertise { padding: 7rem 0; } }
.expertise-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .expertise-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.expertise-img-wrapper { position: relative; order: 2; }
@media (min-width: 1024px) { .expertise-img-wrapper { order: 1; } }
.expertise-img-wrapper img {
  border-radius: 1.25rem; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  width: 100%; max-width: 28rem; margin: 0 auto;
}
@media (min-width: 1024px) { .expertise-img-wrapper img { margin: 0; } }
.expertise-img-wrapper .deco-blue {
  position: absolute; bottom: -1.5rem; left: -1.5rem; width: 7rem; height: 7rem;
  border-radius: 1rem; background: #2D2BE5; z-index: -1; opacity: 0.75;
}
.expertise-img-wrapper .deco-green {
  position: absolute; top: -1rem; right: -1rem; width: 5rem; height: 5rem;
  border-radius: 9999px; background: #00D4AA; z-index: -1; opacity: 0.55;
}
.expertise-text { order: 1; }
@media (min-width: 1024px) { .expertise-text { order: 2; } }
.expertise h2 {
  font-size: 2rem; font-weight: 800; color: #0f0a3c; line-height: 1.1;
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
@media (min-width: 640px) { .expertise h2 { font-size: 2.5rem; } }
@media (min-width: 768px) { .expertise h2 { font-size: 3rem; } }
.expertise .bold-text { font-size: 1.0625rem; font-weight: 700; color: #0f0a3c; margin-bottom: 1rem; }
.expertise p { color: #555; line-height: 1.75; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════════════
   REGISTER CTA
   ═══════════════════════════════════════════════════════════════ */
.register-cta { position: relative; padding: 5rem 0; overflow: hidden; text-align: center; }
@media (min-width: 768px) { .register-cta { padding: 7rem 0; } }
.register-cta-bg { position: absolute; inset: 0; background: #0f0a3c; }
.register-cta .wave-deco { position: absolute; pointer-events: none; }
.register-cta .wave-top-right { top: -20px; right: -20px; width: 450px; opacity: 0.15; }
.register-cta .wave-bottom-left { bottom: -20px; left: -20px; width: 350px; opacity: 0.12; }
.register-cta-content { position: relative; z-index: 2; }
.register-cta h2 {
  font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
@media (min-width: 640px) { .register-cta h2 { font-size: 2.5rem; } }
@media (min-width: 768px) { .register-cta h2 { font-size: 3rem; } }
.register-cta p { font-size: 1.0625rem; color: rgba(255,255,255,0.55); max-width: 40rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.btn-teal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.25rem; border-radius: 9999px;
  background: #00D4AA; color: #0f0a3c; font-weight: 700; font-size: 1.0625rem;
  transition: all 0.3s;
}
.btn-teal:hover { background: #00e6bb; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,170,0.3); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer { background: #080625; color: #fff; }
.footer-inner { padding: 4rem 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: #fff;
}
.footer-social a:hover { background: #2D2BE5; }
.footer h4 {
  font-weight: 700; font-size: 0.8125rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer ul a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer ul a:hover { color: #00D4AA; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact i { color: #00D4AA; flex-shrink: 0; margin-top: 2px; }
.footer-contact span, .footer-contact a { font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.footer-contact a:hover { color: #00D4AA; }

.footer-accreditations {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-bottom: 2rem;
}
.footer-accreditations .label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.35);
}
.footer-accreditations .tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-accreditations .tag {
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  background: rgba(255,255,255,0.04); font-size: 0.75rem; color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }
