*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0f2d5e;
  --primary-mid: #1a4080;
  --primary-light: #2356a8;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-dark: #080f1e;
  --bg-dark2: #0d1a2e;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.12s ease, opacity 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { transform: translate(-50%,-50%) scale(1.6); border-color: var(--gold-light); }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 4px; justify-content: center;
}
.loader-logo span:last-child { color: var(--gold); }
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  border-radius: 99px;
  animation: fill 1.4s ease forwards;
}
@keyframes fill { to { width: 100%; } }

/* ── TYPOGRAPHY ── */
h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.1; }
h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
h5 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; color: rgba(255,255,255,0.6); }
p { color: var(--text-muted); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.eyebrow.light { color: var(--gold); }

.grad-text {
  background: linear-gradient(135deg, var(--gold) 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
em { font-style: italic; color: var(--primary-light); }

.section { padding: 100px 0; }
.bg-dark { background: var(--bg-dark); }
.bg-soft { background: var(--bg-soft); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.section-head { margin-bottom: 60px; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { max-width: 500px; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,0.55); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 500;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 10px;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-light {
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 10px;
  display: inline-flex;
}
.loader-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  color: #fff; line-height: 1;
  flex-shrink: 0;
}
.logo-mark span { color: var(--gold); }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.lw1 { font-weight: 700; font-size: 0.85rem; color: #fff; }
.lw2 { font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.navbar.scrolled .lw1 { color: var(--text); }
.navbar.scrolled .lw2 { color: var(--text-muted); }
.nav-links { display: flex; list-style: none; gap: 2px; margin-left: auto; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 7px 13px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); background: var(--bg-soft); }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--primary);
  padding: 9px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 4px;
}
.ham-line { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.navbar.scrolled .ham-line { background: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-scene { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.blob1 { width: 600px; height: 600px; background: #1a4080; top: -150px; right: -100px; animation: blobMove 12s ease-in-out infinite alternate; }
.blob2 { width: 400px; height: 400px; background: #7c3aed; bottom: -100px; left: -80px; animation: blobMove 15s ease-in-out infinite alternate-reverse; }
.blob3 { width: 300px; height: 300px; background: var(--gold); top: 40%; left: 40%; opacity: 0.1; animation: blobMove 10s ease-in-out infinite alternate; }
@keyframes blobMove {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-layout {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; padding: 120px 28px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem; font-weight: 500;
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.pill-dot {
  width: 7px; height: 7px;
  background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 6px #22c55e;
}
.hero-text h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-text h1 .line { display: block; }
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-glow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: #0f172a;
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none; cursor: none;
  transition: all 0.25s;
  border: none;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-glow:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(245,158,11,0.5); }
.btn-glow.full { width: 100%; justify-content: center; border-radius: 12px; font-size: 1rem; padding: 15px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8);
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.05); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text);
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: none;
  border: 1.5px solid var(--border);
  transition: all 0.25s; background: var(--bg);
}
.btn-ghost-dark:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg-dark);
  object-fit: cover;
  margin-left: -10px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 2px; }
.trust-text p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; }
.trust-text strong { color: rgba(255,255,255,0.9); }

/* Hero visual */
.hero-visual { position: relative; height: 460px; }
.hv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 18px 20px;
  position: absolute;
  color: #fff;
}
.hv-main { top: 0; right: 0; width: 300px; }
.hvc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hvc-avatar-wrap { position: relative; flex-shrink: 0; }
.hvc-avatar { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; }
.hvc-badge {
  position: absolute; bottom: -4px; right: -4px;
  width: 20px; height: 20px;
  background: #22c55e; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; border: 2px solid var(--bg-dark);
}
.hvc-top strong { display: block; font-size: 0.9rem; font-weight: 700; }
.hvc-top p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; }
.hvc-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  padding: 8px 10px; background: rgba(255,255,255,0.05);
  border-radius: 8px; margin-bottom: 10px;
}
.hvc-location i { color: var(--gold); font-size: 0.85rem; }
.hvc-tags { display: flex; gap: 6px; }
.tag { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.tag-green { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.tag-blue { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.2); }

.hv-stats { bottom: 50px; left: 0; display: flex; align-items: center; gap: 20px; padding: 16px 24px; }
.hv-stat { text-align: center; }
.hv-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; }
.hv-unit { font-size: 1rem; color: var(--gold); font-weight: 700; }
.hv-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hv-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.hv-ping {
  bottom: 0; right: 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  padding: 10px 16px; white-space: nowrap;
}
.hv-ping strong { color: #fff; }
.ping-dot {
  width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: ping 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hv-globe {
  position: absolute; top: 110px; left: -20px; width: 200px;
  opacity: 0.85;
}
.globe-svg { width: 100%; }

.scroll-ind {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50% { transform: scaleY(0.7) translateY(6px); opacity: 0.5; }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 20px;
  animation: marquee 22s linear infinite;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.marquee-track i { font-size: 0.55rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.img-mosaic {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 12px;
}
.mosaic-item {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
}
.m1 { grid-column: 1 / 3; }
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  display: flex; align-items: flex-end; padding: 14px;
}
.mosaic-overlay span {
  color: #fff; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.mosaic-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary);
  color: #fff; border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(15,45,94,0.3);
}
.mosaic-float i { font-size: 1.4rem; color: var(--gold); }
.mosaic-float strong { display: block; font-size: 1.3rem; font-family: 'Syne',sans-serif; font-weight: 800; }
.mosaic-float span { font-size: 0.75rem; color: rgba(255,255,255,0.65); }

.about-right { padding-right: 10px; }
.about-right h2 { margin: 0.5rem 0 1rem; }
.about-right .lead-p { font-size: 1.02rem; color: var(--text-muted); margin-bottom: 1rem; }
.about-right p { margin-bottom: 1.5rem; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 1.5rem; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(15,45,94,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem;
}
.pillar strong { display: block; font-size: 0.95rem; margin-bottom: 2px; color: var(--text); }
.pillar p { font-size: 0.85rem; margin: 0; }

/* ── STATS BAR ── */
.stats-bar { background: var(--primary); padding: 52px 0; }
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.sbar-item { text-align: center; padding: 8px 40px; }
.sbar-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.sbar-suffix { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.sbar-label { display: block; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.sbar-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.12); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.srv-card {
  padding: 36px 30px;
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: background 0.3s;
  cursor: none;
}
.srv-card:hover { background: rgba(255,255,255,0.06); }
.srv-card.srv-featured { background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.15); }
.srv-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.srv-icon {
  font-size: 1.5rem; color: var(--gold);
  margin-bottom: 14px;
}
.srv-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.05rem; }
.srv-card p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.srv-arrow {
  position: absolute; top: 28px; right: 24px;
  color: rgba(255,255,255,0.1); font-size: 1.1rem;
  transition: color 0.3s, transform 0.3s;
}
.srv-card:hover .srv-arrow { color: var(--gold); transform: translate(3px,-3px); }

/* ── INDUSTRIES ── */
.industries-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 20px;
}
.ind-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ind-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.ind-img-wrap { position: relative; height: 200px; overflow: hidden; }
.ind-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ind-card:hover .ind-img-wrap img { transform: scale(1.06); }
.ind-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.55));
}
.ind-body { padding: 28px; background: var(--bg); }
.ind-icon {
  width: 46px; height: 46px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary);
  margin-bottom: 14px;
}
.ind-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.ind-body p { font-size: 0.9rem; margin-bottom: 16px; }
.ind-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.ind-list li {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.84rem; color: var(--text-muted); font-weight: 500;
}
.ind-list i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }

/* ── PROCESS ── */
.process-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
}
.process-line {
  position: absolute;
  top: 38px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(245,158,11,0.2));
}
.process-step {
  text-align: center; padding: 0 20px;
  position: relative;
}
.ps-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  color: var(--gold); letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.ps-icon {
  width: 76px; height: 76px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 20px;
  transition: background 0.3s, border-color 0.3s;
  position: relative; z-index: 1;
}
.process-step:hover .ps-icon { background: rgba(245,158,11,0.1); border-color: var(--gold); }
.process-step h4 { color: #fff; margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.review-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,0,0,0.08); }
.review-card.rc-accent {
  background: var(--primary);
  border-color: var(--primary);
}
.rc-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.rc-text {
  font-size: 0.9rem; line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}
.rc-accent .rc-text { color: rgba(255,255,255,0.7); }
.rc-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.rc-accent .rc-author { border-top-color: rgba(255,255,255,0.1); }
.rc-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.rc-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.rc-accent .rc-author strong { color: #fff; }
.rc-author span { font-size: 0.76rem; color: var(--text-light); }
.rc-accent .rc-author span { color: rgba(255,255,255,0.5); }

.reviews-summary {
  display: flex; align-items: center; gap: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 460px;
  margin: 0 auto;
}
.rs-score {
  font-family: 'Syne', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.rs-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 4px; }
.rs-total { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.rs-platforms { display: flex; gap: 8px; }
.rs-platforms span {
  font-size: 0.72rem; font-weight: 700;
  background: #fff; border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 50px;
  color: var(--text-muted);
}

/* ── WORKERS SECTION ── */
.workers-section { background: var(--bg-soft); }

.workers-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 70px;
}
.wb-left { padding: 52px 48px; }
.wb-tag {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(245,158,11,0.25);
  margin-bottom: 1rem;
}
.wb-left h2 { margin-bottom: 1rem; }
.wb-left p { margin-bottom: 1.8rem; max-width: 420px; }
.wb-perks { display: flex; flex-direction: column; gap: 12px; }
.wb-perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text);
  font-weight: 500;
}
.wb-perk i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.wb-right { position: relative; height: 100%; min-height: 380px; }
.wb-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.wb-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.wb-img-badge i { color: var(--gold); font-size: 1.2rem; }
.wb-img-badge strong { display: block; font-size: 0.88rem; color: var(--text); }
.wb-img-badge span { font-size: 0.76rem; color: var(--text-muted); }

/* Job categories */
.job-cats-head { text-align: center; margin-bottom: 32px; }
.job-cats-head h3 { font-size: 1.4rem; margin-bottom: 6px; }
.job-cats-head p { font-size: 0.9rem; }
.job-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 70px;
}
.jcat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.jcat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--gold);
}
.jcat-icon {
  width: 46px; height: 46px;
  background: rgba(245,158,11,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
  margin-bottom: 12px;
}
.jcat h4 { font-size: 0.95rem; margin-bottom: 10px; color: var(--text); }
.jcat ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.jcat ul li {
  font-size: 0.82rem; color: var(--text-muted);
  padding-left: 14px; position: relative;
}
.jcat ul li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
}
.jcat-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(34,197,94,0.1);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Worker form */
.worker-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
}
.wf-left h3 { font-size: 1.5rem; margin: 0.5rem 0 0.8rem; }
.wf-left p { margin-bottom: 1.8rem; }
.wf-promise { display: flex; flex-direction: column; gap: 10px; }
.wfp-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
}
.wfp-item i {
  width: 22px; height: 22px;
  background: rgba(34,197,94,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: #16a34a;
  flex-shrink: 0;
}
.wf-form { display: flex; flex-direction: column; gap: 0; }
.wf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.wf-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.wf-group input,
.wf-group select,
.wf-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-soft);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wf-group input:focus,
.wf-group select:focus,
.wf-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.wf-note { text-align: center; font-size: 0.85rem; min-height: 22px; margin-top: 10px; }
.wf-note.ok { color: #16a34a; }
.wf-note.err { color: #dc2626; }

/* Nav link for join */
.nav-join { color: var(--gold) !important; font-weight: 700 !important; }

/* Responsive */
@media (max-width: 900px) {
  .workers-banner { grid-template-columns: 1fr; }
  .wb-right { min-height: 260px; }
  .job-cats { grid-template-columns: repeat(2, 1fr); }
  .worker-form-wrap { grid-template-columns: 1fr; padding: 32px 24px; }
}
@media (max-width: 600px) {
  .job-cats { grid-template-columns: 1fr; }
  .wf-row { grid-template-columns: 1fr; }
  .wb-left { padding: 32px 24px; }
}

/* ── CTA BAND ── */
.cta-band { background: var(--primary); padding: 80px 0; }
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.6); margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-left h2 { margin: 0.5rem 0 1rem; }
.contact-left > p { margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.cc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s;
}
.cc-nolink { cursor: default; }
.cc-item:not(.cc-nolink):hover { border-color: var(--primary); background: rgba(15,45,94,0.04); transform: translateX(4px); }
.cc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.phone-icon { background: rgba(34,197,94,0.1); color: #16a34a; }
.mail-icon { background: rgba(59,130,246,0.1); color: #2563eb; }
.location-icon { background: rgba(245,158,11,0.1); color: #d97706; }
.cc-item span { display: block; font-size: 0.74rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.cc-item strong { font-size: 0.88rem; color: var(--text); display: block; }
.cc-arrow { margin-left: auto; color: var(--text-light); font-size: 0.95rem; }

.map-graphic { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-graphic svg { width: 100%; display: block; }

/* Form */
.cform {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.cform h3 { font-size: 1.25rem; margin-bottom: 24px; color: var(--text); }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.cf-group input,
.cf-group select,
.cf-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,45,94,0.08);
}
.cf-feedback { text-align: center; font-size: 0.85rem; min-height: 22px; margin-top: 10px; }
.cf-feedback.ok { color: #16a34a; }
.cf-feedback.err { color: #dc2626; }

/* ── FOOTER ── */
.footer { background: var(--bg-dark); padding-top: 80px; position: relative; overflow: hidden; }
.footer-glow {
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(26,64,128,0.3), transparent 70%);
  pointer-events: none;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px; padding-bottom: 60px;
}
.ft-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-top: 14px; max-width: 260px; }
.ft-social { display: flex; gap: 10px; margin-top: 20px; }
.ft-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
}
.ft-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col a {
  text-decoration: none; font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.ft-col a:hover { color: #fff; }
.ft-contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.ft-contact-list i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ft-contact-list a { color: rgba(255,255,255,0.45); text-decoration: none; }
.ft-contact-list a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ── REVEAL ANIMATIONS ── */
[data-reveal], [data-reveal-right] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal-right] { transform: translateX(32px); }
[data-reveal].visible, [data-reveal-right].visible {
  opacity: 1; transform: none;
}

/* ── RESPONSIVE ── */

/* Tablet landscape */
@media (max-width: 1050px) {
  .hero-layout { grid-template-columns: 1fr; padding: 100px 28px 80px; }
  .hero-visual { display: none; }
  .hero-text { max-width: 600px; }
  .about-layout { grid-template-columns: 1fr; }
  .img-mosaic { max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-line { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .industries-layout { gap: 20px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-layout { padding: 90px 20px 70px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-trust { flex-wrap: wrap; gap: 10px; }

  /* About */
  .about-layout { gap: 40px; }
  .img-mosaic { max-width: 100%; grid-template-rows: 180px 150px; }
  .mosaic-float { right: 0; bottom: -16px; font-size: 0.85rem; }
  .about-pillars { gap: 12px; }

  /* Stats */
  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 0; }
  .sbar-item { padding: 16px 24px; flex: 0 0 50%; }
  .sbar-sep { display: none; }
  .sbar-num { font-size: 2.2rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; border-radius: var(--radius); }

  /* Industries */
  .industries-layout { grid-template-columns: 1fr; }
  .ind-img-wrap { height: 180px; }
  .ind-list { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-line { display: none; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { padding: 20px 24px; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-actions { justify-content: center; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .cform { padding: 24px 20px; }
  .cform-row { grid-template-columns: 1fr; }

  /* Workers section */
  .workers-banner { grid-template-columns: 1fr; border-radius: var(--radius); }
  .wb-left { padding: 32px 24px; }
  .wb-right { min-height: 220px; }
  .job-cats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .worker-form-wrap { grid-template-columns: 1fr; padding: 28px 20px; gap: 32px; }
  .wf-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
  .ft-brand { grid-column: 1 / -1; }
  .fb-inner { flex-direction: column; text-align: center; gap: 4px; }
}

/* Mobile */
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-layout { padding: 80px 16px 60px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
  .hero-pill { font-size: 0.7rem; padding: 6px 12px; }
  .hero-btns { flex-direction: column; }
  .btn-glow, .btn-ghost, .btn-ghost-dark { width: 100%; justify-content: center; border-radius: 12px; }
  .hero-trust { gap: 10px; }
  .trust-avatars img { width: 30px; height: 30px; }

  /* Marquee */
  .marquee-track { font-size: 0.72rem; }

  /* About */
  .img-mosaic { grid-template-columns: 1fr; grid-template-rows: 200px 160px 160px; }
  .m1 { grid-column: 1; }
  .mosaic-float { position: static; margin-top: 12px; border-radius: var(--radius); }

  /* Stats */
  .sbar-item { flex: 0 0 100%; padding: 12px 16px; }
  .sbar-num { font-size: 2rem; }

  /* Industries */
  .ind-list { grid-template-columns: 1fr; }

  /* Process */
  .process-track { grid-template-columns: 1fr; gap: 28px; }
  .ps-icon { width: 60px; height: 60px; font-size: 1.2rem; }

  /* Reviews */
  .rc-author { flex-wrap: wrap; }
  .reviews-summary { flex-direction: column; text-align: center; gap: 12px; }
  .rs-platforms { justify-content: center; }

  /* CTA */
  .cta-inner h2 { font-size: 1.5rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { justify-content: center; }

  /* Workers */
  .wb-perks { gap: 10px; }
  .job-cats { grid-template-columns: 1fr; }
  .jcat-badge { position: static; margin-top: 10px; display: inline-block; }
  .worker-form-wrap { padding: 24px 16px; }

  /* Contact */
  .cc-item strong { font-size: 0.8rem; word-break: break-all; }
  .map-graphic { display: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding-top: 52px; }
  .ft-social a { width: 32px; height: 32px; font-size: 0.85rem; }
}

/* ── MOBILE NAV ── */
.nav-links.open {
  display: flex; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,15,30,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 28px 28px;
  gap: 4px; z-index: 498;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links.open a { color: rgba(255,255,255,0.75); padding: 10px 14px; border-radius: 8px; font-size: 0.95rem; }
.nav-links.open a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.navbar.scrolled .nav-links.open { background: rgba(255,255,255,0.98); }
.navbar.scrolled .nav-links.open a { color: var(--text); }

/* Cursor: hide on mobile */
@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
  * { cursor: auto !important; }
}
