/* ============================================================
   JK MANPOWER — Main Stylesheet
   System fonts · Mobile-first · Fast · No external deps
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand */
  --c-blue:       #1e3a8a;   /* primary blue (from logo) */
  --c-blue-mid:   #2563eb;
  --c-blue-light: #eff6ff;
  --c-red:        #dc2626;
  --c-green:      #16a34a;
  --c-green-light:#f0fdf4;
  --c-wa:         #25d366;
  --c-wa-dark:    #128c7e;
  --c-orange:     #ea580c;
  --c-amber:      #d97706;

  /* Neutrals */
  --c-dark:       #0f172a;
  --c-text:       #1e293b;
  --c-text-2:     #475569;
  --c-text-3:     #94a3b8;
  --c-border:     #e2e8f0;
  --c-surface:    #f8fafc;
  --c-white:      #ffffff;

  /* Typography — system stack only */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  /* Type scale */
  --ts-xs:   0.75rem;    /* 12px */
  --ts-sm:   0.875rem;   /* 14px */
  --ts-base: 1rem;       /* 16px */
  --ts-lg:   1.125rem;   /* 18px */
  --ts-xl:   1.25rem;    /* 20px */
  --ts-2xl:  1.5rem;     /* 24px */
  --ts-3xl:  1.875rem;   /* 30px */
  --ts-4xl:  2.25rem;    /* 36px */
  --ts-5xl:  3rem;       /* 48px */

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-sm: 760px;
  --header-h: 82px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: 220ms;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--ts-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
address { font-style: normal; }

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -60px; left: 0; background: var(--c-blue);
  color: #fff; padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) 0;
  z-index: 9999; transition: top var(--dur);
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
*:focus-visible {
  outline: 2px solid var(--c-blue-mid);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-20) 0; }
.section-sm { padding: var(--sp-12) 0; }
.section-alt { background: var(--c-surface); }
.section-dark {
  background: linear-gradient(135deg, var(--c-dark) 0%, #1e293b 100%);
  color: var(--c-white);
}
.section-dark strong, .section-dark b { color: #fff; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--c-dark);
}
h1 { font-size: clamp(var(--ts-3xl), 4.5vw, var(--ts-5xl)); }
h2 { font-size: clamp(var(--ts-2xl), 3.5vw, var(--ts-4xl)); }
h3 { font-size: clamp(var(--ts-xl), 2.5vw, var(--ts-3xl)); }
h4 { font-size: var(--ts-xl); }
h5 { font-size: var(--ts-lg); }
p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }
.lead { font-size: var(--ts-lg); line-height: 1.75; color: var(--c-text-2); }
.eyebrow {
  font-size: var(--ts-xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-blue-mid); margin-bottom: var(--sp-3);
}
.section-intro { font-size: var(--ts-lg); color: var(--c-text-2); max-width: 680px; margin: var(--sp-4) auto 0; }
strong, b, mark { color: var(--c-dark); }
mark { background: rgba(37,99,235,.1); color: var(--c-blue); padding: .1em .2em; border-radius: 3px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--radius-sm);
  font-size: var(--ts-base); font-weight: 600; line-height: 1;
  transition: all var(--dur) var(--ease); white-space: nowrap;
  text-decoration: none; border: 2px solid transparent;
}
.btn-primary {
  background: var(--c-blue); color: #fff;
  box-shadow: 0 4px 14px rgba(30,58,138,.35);
}
.btn-primary:hover { background: #1e3a8a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,58,138,.45); }
.btn-wa {
  background: var(--c-wa); color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}
.btn-wa:hover { background: var(--c-wa-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn-outline:hover { background: var(--c-blue); color: #fff; }
.btn-white {
  background: #fff; color: var(--c-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.btn-white:hover { box-shadow: 0 4px 16px rgba(0,0,0,.2); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.25rem; font-size: var(--ts-lg); border-radius: var(--radius); }
.btn-sm { padding: .5rem 1.25rem; font-size: var(--ts-sm); }

/* ── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow var(--dur);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
  gap: var(--sp-4);
}
/* Logo */
.site-logo { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.site-logo img, .site-logo svg {
  width: 190px; height: 78px; object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: var(--ts-xl); font-weight: 800; color: var(--c-blue); line-height: 1.1; }
.logo-tag { font-size: var(--ts-xs); color: var(--c-text-2); font-weight: 500; letter-spacing: .02em; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: var(--sp-2); flex: 1; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: var(--sp-1); }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: .2rem;
  padding: .5rem .7rem; font-size: .85rem; font-weight: 600;
  color: var(--c-text); white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.nav-link:hover, .nav-link.active { color: var(--c-blue); background: var(--c-blue-light); }
.nav-arrow { width: 10px; height: 10px; fill: currentColor; transition: transform var(--dur); }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-cta {
  background: var(--c-wa); color: #fff !important; border-radius: var(--radius-sm);
  padding: .5rem .9rem; font-size: .8rem;
}
.nav-cta:hover { background: var(--c-wa-dark) !important; }
.nav-post {
  background: var(--c-blue); color: #fff !important; border-radius: var(--radius-sm);
  padding: .5rem .9rem; font-size: .8rem;
}
.nav-post:hover { background: #1e3a8a !important; }

/* Mega/Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); box-shadow: var(--shadow-xl);
  min-width: 420px; padding: var(--sp-3);
  padding-top: calc(var(--sp-3) + 10px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s var(--ease) .05s, transform .15s var(--ease) .05s;
  transform: translateX(-50%) translateY(4px);
  z-index: 200;
}
.dropdown::before {
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 14px;
  background: transparent;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.dropdown-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .9rem; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 500; color: var(--c-text);
  white-space: nowrap;
  transition: background var(--dur), color var(--dur);
}
.dropdown-link:hover { background: var(--c-blue-light); color: var(--c-blue); }
.dropdown-link.active { color: var(--c-blue); font-weight: 600; }
.dropdown-icon { font-size: 1rem; flex-shrink: 0; }

/* Mobile toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); border: 1px solid var(--c-border);
  background: none; padding: 0;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--c-text);
  border-radius: 2px; transition: transform var(--dur), opacity var(--dur);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--c-white); overflow-y: auto; z-index: 999;
  flex-direction: column; padding: var(--sp-4);
  border-top: 2px solid var(--c-blue);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem var(--sp-4); font-size: var(--ts-base); font-weight: 600;
  color: var(--c-text); border-bottom: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
}
.mobile-nav-link:hover { color: var(--c-blue); background: var(--c-blue-light); }
.mobile-sub-header {
  padding: .5rem var(--sp-4); font-size: var(--ts-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--c-text-3);
  margin-top: var(--sp-3);
}
.mobile-sub-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem var(--sp-6); font-size: var(--ts-sm); font-weight: 500;
  color: var(--c-text-2); border-bottom: 1px solid var(--c-border);
}
.mobile-sub-link:hover { color: var(--c-blue); background: var(--c-blue-light); }
.mobile-cta-row {
  display: flex; gap: var(--sp-3); padding: var(--sp-6) var(--sp-4);
  margin-top: auto;
}
.mobile-call-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem; background: var(--c-blue); color: #fff;
  border-radius: var(--radius); font-weight: 600; font-size: var(--ts-sm);
}
.mobile-wa-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem; background: var(--c-wa); color: #fff;
  border-radius: var(--radius); font-weight: 600; font-size: var(--ts-sm);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e40af 100%);
  color: var(--c-white); padding: var(--sp-20) 0 var(--sp-16);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: var(--ts-sm); font-weight: 600;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: var(--sp-4);
  backdrop-filter: blur(8px);
}
.hero h1 { color: var(--c-white); font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.18; margin-bottom: var(--sp-6); }
.hero h1 span { color: #60a5fa; }
.hero strong, .hero b { color: #fff; }
.hero p strong, .hero .lead strong { color: #fff; }
.hero .lead { color: rgba(255,255,255,.8); font-size: var(--ts-lg); margin-bottom: var(--sp-8); }
.hero-cta { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4);
  margin-top: var(--sp-8); padding-top: var(--sp-8); border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num { font-size: var(--ts-3xl); font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: var(--ts-xs); color: rgba(255,255,255,.6); margin-top: .2rem; text-transform: uppercase; letter-spacing: .06em; }
.hero-right { position: relative; display: flex; justify-content: center; }
.hero-logo-wrap {
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl); padding: var(--sp-8);
  text-align: center; max-width: 340px; width: 100%;
}
.hero-logo-wrap img { width: 260px; margin: 0 auto var(--sp-6); }
.hero-logo-tagline { color: rgba(255,255,255,.85); font-size: var(--ts-sm); font-weight: 500; }
.hero-trust {
  display: flex; gap: var(--sp-6); margin-top: var(--sp-6); justify-content: center; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: var(--ts-xs); color: rgba(255,255,255,.7); font-weight: 500;
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--c-white); border-bottom: 1px solid var(--c-border);
  padding: var(--sp-4) 0; box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-8); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: var(--ts-sm); font-weight: 600; color: var(--c-text-2);
}
.trust-item-icon { font-size: 1.25rem; }
.trust-divider { width: 1px; height: 32px; background: var(--c-border); }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 70%, #2563eb 100%);
  color: var(--c-white); padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
}
.page-hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,.06), transparent);
  pointer-events: none;
}
.page-hero h1 { color: var(--c-white); margin-bottom: var(--sp-4); text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.page-hero p, .page-hero .lead { color: rgba(255,255,255,.8); }
.page-hero strong, .page-hero b { color: #fff; }
.page-hero a:not(.btn) { color: #93c5fd; }
.page-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: var(--ts-sm); font-weight: 600;
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: var(--sp-4);
}

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb { margin-bottom: var(--sp-4); }
.breadcrumb-list { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.breadcrumb-item { font-size: var(--ts-sm); color: rgba(255,255,255,.6); }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-item.active { color: rgba(255,255,255,.5); }
.breadcrumb-sep { color: rgba(255,255,255,.35); }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: var(--sp-8);
  box-shadow: var(--shadow-sm); transition: box-shadow var(--dur), transform var(--dur);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-card {
  display: block; background: var(--c-white);
  border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: var(--sp-8); box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  text-decoration: none; color: var(--c-text);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--card-accent, var(--c-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--card-accent, var(--c-blue-light)); }
.service-icon { font-size: 2.25rem; margin-bottom: var(--sp-4); }
.service-card h3 { font-size: var(--ts-xl); margin-bottom: var(--sp-3); color: var(--c-dark); }
.service-card p { font-size: var(--ts-sm); color: var(--c-text-2); margin-bottom: var(--sp-4); line-height: 1.6; }
.service-card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: var(--ts-sm); font-weight: 700; color: var(--card-accent, var(--c-blue));
}
.service-tag {
  display: inline-block; font-size: var(--ts-xs); font-weight: 600;
  background: var(--c-blue-light); color: var(--c-blue-mid);
  padding: .2rem .6rem; border-radius: 100px; margin: .15rem;
}

/* ── WHY CHOOSE ──────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.why-item {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-6); background: var(--c-white);
  border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  transition: all var(--dur);
}
.why-item:hover { border-color: var(--c-blue-mid); box-shadow: var(--shadow); }
.why-icon {
  width: 48px; height: 48px; background: var(--c-blue-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.why-item h4 { font-size: var(--ts-base); margin-bottom: .35rem; color: var(--c-dark); }
.why-item p { font-size: var(--ts-sm); color: var(--c-text-2); margin: 0; line-height: 1.55; }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: 28px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px; background: linear-gradient(90deg, var(--c-blue-light), var(--c-blue), var(--c-blue-light));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--ts-xl); font-weight: 800; margin: 0 auto var(--sp-4);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.process-step h4 { font-size: var(--ts-base); margin-bottom: var(--sp-2); }
.process-step p { font-size: var(--ts-sm); color: var(--c-text-2); }

/* ── STATS DARK ──────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-8); text-align: center; }
.stat-num { font-size: clamp(var(--ts-3xl), 4vw, var(--ts-5xl)); font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: var(--ts-sm); color: rgba(255,255,255,.65); margin-top: .3rem; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonial-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: var(--sp-4); letter-spacing: .05em; }
.testimonial-text { font-size: var(--ts-sm); color: var(--c-text-2); line-height: 1.7; margin-bottom: var(--sp-6); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-mid));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: var(--ts-sm); font-weight: 700; flex-shrink: 0;
}
.author-name { font-size: var(--ts-sm); font-weight: 700; }
.author-role { font-size: var(--ts-xs); color: var(--c-text-3); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border: 1px solid var(--c-border); border-radius: var(--radius); margin-bottom: var(--sp-3); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-6); font-size: var(--ts-base); font-weight: 600;
  color: var(--c-dark); text-align: left; gap: var(--sp-4);
  background: var(--c-white); transition: background var(--dur);
}
.faq-question:hover { background: var(--c-blue-light); }
.faq-question[aria-expanded="true"] { color: var(--c-blue); background: var(--c-blue-light); }
.faq-arrow { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--dur); }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 var(--sp-6) var(--sp-6); font-size: var(--ts-sm); color: var(--c-text-2); line-height: 1.7; }
.faq-answer.open { display: block; }

/* ── NAP BOX ─────────────────────────────────────────────────── */
.nap-box {
  background: linear-gradient(135deg, var(--c-dark) 0%, #1e3a8a 100%);
  color: #fff; border-radius: var(--radius-lg); padding: var(--sp-8);
  box-shadow: var(--shadow-xl);
}
.nap-box strong, .nap-box b { color: #fff; }
.nap-box h3 { color: #fff; margin-bottom: var(--sp-6); }
.nap-item { display: flex; gap: var(--sp-4); margin-bottom: var(--sp-4); align-items: flex-start; }
.nap-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.nap-label { font-size: var(--ts-xs); color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; }
.nap-value { font-size: var(--ts-sm); color: rgba(255,255,255,.9); font-weight: 500; line-height: 1.5; }
.nap-value a { color: #60a5fa; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--c-blue) 0%, #1e40af 100%);
  color: #fff; padding: var(--sp-20) 0; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: var(--sp-4); }
.cta-section strong, .cta-section b { color: #fff; }
.cta-section p { color: rgba(255,255,255,.8); font-size: var(--ts-lg); max-width: 600px; margin: 0 auto var(--sp-8); }
.cta-buttons { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ── SKILLS / ROLES TABLE ────────────────────────────────────── */
.roles-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--c-border); border-radius: var(--radius);
  overflow: hidden; font-size: var(--ts-sm);
}
.roles-table th {
  background: var(--c-blue); color: #fff;
  padding: .9rem 1rem; text-align: left; font-weight: 600; font-size: var(--ts-sm);
}
.roles-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--c-border); vertical-align: top; }
.roles-table tr:last-child td { border-bottom: none; }
.roles-table tr:nth-child(even) td { background: var(--c-surface); }
.roles-table tr:hover td { background: var(--c-blue-light); }

/* ── FLOATING BUTTONS ────────────────────────────────────────── */
.float-wrap { position: fixed; z-index: 800; display: flex; flex-direction: column; gap: .6rem; }
.float-wrap.float-right { right: 1.25rem; bottom: 5.5rem; }
.float-wrap.float-left { left: 1.25rem; bottom: 5.5rem; }
.float-btn span { font-size: var(--ts-xs); }
.float-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1.1rem; border-radius: 100px;
  font-size: var(--ts-sm); font-weight: 600; color: #fff;
  box-shadow: var(--shadow-lg); transition: all var(--dur);
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-whatsapp { background: var(--c-wa); }
.btn-whatsapp:hover { background: var(--c-wa-dark); }
.btn-call { background: var(--c-blue); }
.btn-scroll {
  background: var(--c-dark); justify-content: center; padding: .7rem;
  width: 44px; height: 44px; border-radius: 50%;
  opacity: 0; pointer-events: none; transition: opacity var(--dur), transform var(--dur);
}
.btn-scroll.visible { opacity: 1; pointer-events: auto; }
.btn-scroll:hover { background: var(--c-blue); }
.wa-pulse { animation: wa-pulse 2.5s infinite; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); } }

/* ── COOKIE BANNER ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--c-dark); color: #fff;
  padding: var(--sp-4) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-6); flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: var(--ts-sm); color: rgba(255,255,255,.8); margin: 0; }
.cookie-banner a { color: #60a5fa; }
.cookie-btns { display: flex; gap: var(--sp-3); flex-shrink: 0; }
.cookie-accept {
  background: var(--c-green); color: #fff; border: none;
  padding: .5rem 1.25rem; border-radius: var(--radius-sm);
  font-size: var(--ts-sm); font-weight: 600; cursor: pointer;
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: .5rem 1.25rem; border-radius: var(--radius-sm);
  font-size: var(--ts-sm); cursor: pointer;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--c-dark); color: rgba(255,255,255,.8); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12); padding: var(--sp-16) 0 var(--sp-12);
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-brand .footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-name { font-size: var(--ts-xl); font-weight: 800; color: #fff; }
.footer-logo-tag { font-size: var(--ts-xs); color: rgba(255,255,255,.5); }
.footer-desc { font-size: var(--ts-sm); line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: var(--sp-6); }
.footer-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: var(--sp-6); }
.footer-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: var(--ts-xs); font-weight: 600;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); padding: .3rem .7rem; border-radius: 100px;
}
.footer-contact-item { display: flex; gap: .6rem; margin-bottom: .6rem; font-size: var(--ts-sm); }
.footer-contact-item a { color: #60a5fa; }
.footer-col h5 { font-size: var(--ts-sm); font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .07em; margin-bottom: var(--sp-4); }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: var(--ts-sm); color: rgba(255,255,255,.55); transition: color var(--dur); }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: .75rem; margin-top: var(--sp-4); }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: var(--ts-sm);
  transition: all var(--dur);
}
.social-link:hover { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: var(--sp-6) 0;
  padding-bottom: 6.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap; font-size: var(--ts-xs); color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── BLOG CARDS ──────────────────────────────────────────────── */
.blog-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--dur); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card-body { padding: var(--sp-6); }
.blog-tag { display: inline-block; font-size: var(--ts-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--c-blue-mid); background: var(--c-blue-light); padding: .25rem .6rem; border-radius: 100px; margin-bottom: var(--sp-3); }
.blog-title { font-size: var(--ts-lg); font-weight: 700; color: var(--c-dark); margin-bottom: var(--sp-3); line-height: 1.35; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--c-blue); }
.blog-excerpt { font-size: var(--ts-sm); color: var(--c-text-2); line-height: 1.65; margin-bottom: var(--sp-4); }
.blog-read-more { font-size: var(--ts-sm); font-weight: 700; color: var(--c-blue); }

/* ── COUNTRY FLAGS ───────────────────────────────────────────── */
.country-grid { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.country-pill {
  display: flex; align-items: center; gap: .5rem;
  background: var(--c-white); border: 1px solid var(--c-border);
  padding: .5rem 1rem; border-radius: 100px;
  font-size: var(--ts-sm); font-weight: 600; color: var(--c-text);
  box-shadow: var(--shadow-sm); transition: all var(--dur);
}
.country-pill:hover { border-color: var(--c-blue); color: var(--c-blue); box-shadow: var(--shadow); }
.country-flag { font-size: 1.25rem; }

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .site-header, .float-wrap, .cookie-banner, .mobile-nav { display: none !important; }
  body { padding-top: 0; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-link.nav-post { display: none; }
}
@media (max-width: 640px) {
  :root { --sp-16: 3rem; --sp-20: 4rem; }
  .grid-2, .grid-3, .grid-4, .why-grid, .stats-grid, .process-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: var(--sp-3); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .trust-bar-inner { gap: var(--sp-4); }
  .trust-divider { display: none; }
  .float-btn span { display: none; }
  .btn-call { padding: .7rem; border-radius: 50%; width: 44px; height: 44px; justify-content: center; }
}


/* ── TEXT REVEAL ANIMATION (SEO/AIO safe — CSS only, no CLS) ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.hero h1 { animation: fadeInUp .7s var(--ease) .1s both; }
.hero .lead { animation: fadeInUp .7s var(--ease) .25s both; }
.hero-cta { animation: fadeInUp .7s var(--ease) .4s both; }
.hero-stats { animation: fadeInUp .7s var(--ease) .55s both; }
.page-hero h1 { animation: fadeInUp .6s var(--ease) .1s both; }
.page-hero .lead { animation: fadeInUp .6s var(--ease) .2s both; }
.page-badge { animation: fadeInUp .5s var(--ease) both; }
.stat-num { animation: fadeInUp .5s var(--ease) both; }

/* ── FOOTER LOGO BIGGER ── */
.footer-brand .footer-logo img {
  width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius);
  background: #fff; padding: 4px; box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.footer-brand .footer-logo { gap: var(--sp-4); align-items: center; }

/* ── MOBILE: reduce sub-link font ── */
@media (max-width: 900px) {
  .mobile-sub-link { font-size: .78rem; }
  .dropdown { min-width: 320px; }
}
@media (max-width: 640px) {
  .mobile-sub-link { font-size: .72rem; padding: .5rem var(--sp-4); }
  .footer-brand .footer-logo img,
  .footer-brand .footer-logo svg { width: 160px; }
}
