/* ============================================================
   Rebixs LLC — Premium Animated Single Page  (v2)
   Font: Plus Jakarta Sans  ·  Palette: Royal Purple × Gold × Coral
   ============================================================ */
:root {
  --primary: #391561;
  --primary-2: #45236a;
  --accent: #c9a445;
  --accent-light: #e3c877;
  --coral: #ff6b57;
  --teal: #14b8a6;
  --blue: #3b82f6;
  --pink: #ec4899;
  --violet: #8b5cf6;
  --gold: #c9a445;
  --ink: #221833;
  --muted: #6b6478;
  --bg: #faf8fc;
  --bg-alt: #f4eff9;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(57, 21, 97, .28);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-logo: 'Playfair Display', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.hide-sm { }

h1, h2, h3 { font-family: var(--font-body); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h-small { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.eyebrow { text-transform: uppercase; letter-spacing: .32em; font-size: .72rem; font-weight: 700; color: var(--coral); margin-bottom: 14px; }
.section-dark .eyebrow { color: var(--accent-light); }
.lead { font-size: 1.06rem; color: var(--muted); font-weight: 400; }
.arr { display: inline-block; transition: transform .3s var(--ease); }
a:hover .arr, button:hover .arr { transform: translateX(5px); }

/* Animated gradient headline text */
.grad-text {
  background: linear-gradient(90deg, var(--violet), var(--coral), var(--accent), var(--violet));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 6s ease infinite;
}
.grad-text-gold {
  background: linear-gradient(90deg, var(--accent), #fff3c9, var(--coral), var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 6s ease infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50% } 50% { background-position: 100% 50% } }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300;
  background: linear-gradient(90deg, var(--accent), var(--coral), var(--violet)); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 100px; font-weight: 700; font-size: .92rem; border: 1px solid transparent; cursor: pointer; transition: all .35s var(--ease); font-family: var(--font-body); position: relative; overflow: hidden; }
.btn-accent { background: linear-gradient(120deg, var(--accent), var(--accent-light)); color: var(--primary); box-shadow: 0 10px 30px -10px rgba(201,164,69,.55); }
.btn-accent:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -10px rgba(201,164,69,.75); }
.btn-primary { background: linear-gradient(120deg, var(--primary), var(--violet)); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.link-btn { background: none; border: none; color: var(--coral); font-weight: 700; cursor: pointer; font-size: inherit; font-family: inherit; }
/* shine sweep */
.btn-shine::after { content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; transform: skewX(-25deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); animation: shine 3.4s ease infinite; }
@keyframes shine { 0%, 60% { left: -80% } 100% { left: 130% } }

/* ============================================================
   3-LEVEL HEADER
   ============================================================ */
.header-stack { position: relative; z-index: 120; }

/* Level 1 — topbar */
.topbar { background: #23083f; color: rgba(255,255,255,.75); font-size: .8rem; padding: 8px 0; position: relative; overflow: hidden; }
.topbar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(201,164,69,.14), transparent); background-size: 200% 100%; animation: gradShift 8s linear infinite; pointer-events: none; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; position: relative; z-index: 1; }
.topbar-contact { display: flex; gap: 22px; }
.topbar-contact a:hover { color: var(--accent-light); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-note { color: rgba(255,255,255,.55); }

/* social icons (shared topbar + footer) */
.social-icons { display: flex; gap: 8px; }
.social-icons a { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; transition: all .3s var(--ease); }
.social-icons a svg { width: 13px; height: 13px; }
.social-icons a:hover { background: linear-gradient(135deg, var(--accent), var(--coral)); color: #fff; transform: translateY(-3px) rotate(6deg); }

/* CSS text logo (bindal-style) */
.logo-rebixs { display: flex; flex-direction: column; align-items: center; line-height: 1; padding: 2px 6px; transition: transform .3s var(--ease); }
.logo-rebixs:hover { transform: translateY(-2px); }
.lr-est { font-size: 8px; font-weight: 800; letter-spacing: 3.2px; color: var(--accent-light); margin-bottom: 3px; }
.lr-name { font-family: var(--font-logo); font-weight: 700; font-size: 34px; color: #fff; position: relative; padding-right: 14px; letter-spacing: .5px; }
.lr-spark { width: 13px; height: 13px; position: absolute; top: -2px; right: 0; color: var(--accent); animation: sparkPulse 2.6s ease-in-out infinite; }
@keyframes sparkPulse { 0%,100% { transform: scale(1); opacity: 1 } 50% { transform: scale(1.25); opacity: .7 } }
.logo-rebixs:hover .lr-name { text-shadow: 0 0 22px rgba(201,164,69,.5); }
.lr-tag { font-size: 7.5px; font-weight: 700; letter-spacing: 3.4px; color: rgba(255,255,255,.85); margin-top: 4px; white-space: nowrap; }
.lr-drawer { font-size: 26px; color: var(--primary); padding-right: 0; }

/* Level 2 — logo bar */
.midbar { background: linear-gradient(120deg, var(--primary) 0%, var(--primary-2) 55%, var(--primary) 100%); padding: 12px 0; position: relative; }
.midbar::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,164,69,.6), transparent); }
.midbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-ctas { display: flex; align-items: center; gap: 14px; }
.header-ctas .btn { padding: 11px 24px; font-size: .85rem; }

/* Level 3 — nav bar, fixes to top on scroll (position: sticky) */
.site-header { background: #fff; border-bottom: 1px solid #ece5f5; position: sticky; top: 0; z-index: 110; transition: box-shadow .35s; }
.site-header.scrolled { box-shadow: 0 10px 34px -14px rgba(57,21,97,.35); }
.header-inner { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 3px 0; position: relative; min-height: 52px; }
.brand-mini { position: absolute; left: 0; top: 50%; transform: translateY(calc(-50% + 8px)); opacity: 0; transition: all .35s var(--ease); pointer-events: none; }
.brand-mini .lr-name { color: var(--primary); font-size: 24px; padding-right: 0; }
.site-header.scrolled .brand-mini { opacity: 1; transform: translateY(-50%); pointer-events: auto; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link { padding: 14px 14px; font-size: .9rem; font-weight: 600; color: var(--ink); position: relative; transition: color .25s; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--coral)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--primary); }
.nav-ctas { position: absolute; right: 0; top: 50%; transform: translateY(calc(-50% + 8px)); opacity: 0; pointer-events: none; transition: all .35s var(--ease); display: flex; gap: 10px; }
.site-header.scrolled .nav-ctas { opacity: 1; transform: translateY(-50%); pointer-events: auto; }
.nav-cta { padding: 9px 20px; font-size: .82rem; }
.nav-mobile-head { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO — background image slider
   ============================================================ */
.hero { position: relative; min-height: 92svh; display: flex; flex-direction: column; justify-content: center; color: #fff; overflow: hidden; }
.hero-slides-bg { position: absolute; inset: 0; }
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.12); transition: opacity 1.4s ease; }
.hero-bg-img.active { opacity: 1; animation: kenburns 7.5s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.12) } to { transform: scale(1.02) } }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(35,8,63,.95) 0%, rgba(57,21,97,.85) 40%, rgba(57,21,97,.45) 75%, rgba(255,107,87,.25) 100%); }
.hero-overlay::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(180deg, transparent, #000 45%); }

.hero-shapes .sh { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .45; animation: float 12s ease-in-out infinite; }
.sh1 { width: 360px; height: 360px; background: rgba(201,164,69,.35); top: -8%; right: -5%; }
.sh2 { width: 280px; height: 280px; background: rgba(255,107,87,.4); bottom: 4%; left: -7%; animation-delay: -4s; }
.sh3 { width: 200px; height: 200px; background: rgba(139,92,246,.5); top: 38%; left: 52%; animation-delay: -8s; }
.sh4 { width: 130px; height: 130px; background: rgba(20,184,166,.4); top: 16%; left: 28%; animation-delay: -2s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg) } 50% { transform: translateY(-38px) rotate(8deg) } }

.hero-content { position: relative; z-index: 2; padding: 70px 0 40px; }
.hero-slider { position: relative; min-height: 340px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; max-width: 760px; }
.hero-slide.active { opacity: 1; visibility: visible; position: relative; }
.hero-slide.active .hero-eyebrow { animation: riseIn .8s var(--ease) both .1s; }
.hero-slide.active .hero-title   { animation: riseIn .9s var(--ease) both .25s; }
.hero-slide.active .hero-sub     { animation: riseIn .9s var(--ease) both .4s; }
.hero-slide.active .hero-actions { animation: riseIn .9s var(--ease) both .55s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(34px) } to { opacity: 1; transform: none } }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .34em; font-size: .72rem; color: var(--accent-light); margin-bottom: 20px; font-weight: 700;
  padding: 8px 18px; border: 1px solid rgba(227,200,119,.35); border-radius: 100px; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); position: relative; }
.pulse-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--coral); animation: ping 1.6s ease infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: 1 } 100% { transform: scale(1.8); opacity: 0 } }

.hero-title { font-size: clamp(2.3rem, 5.4vw, 4.1rem); font-weight: 800; margin-bottom: 20px; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 34px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 26px; margin-top: 44px; flex-wrap: wrap; }
.hero-dots { display: flex; gap: 10px; }
.hero-dots button { width: 40px; height: 5px; border-radius: 5px; border: none; background: rgba(255,255,255,.25); cursor: pointer; position: relative; overflow: hidden; transition: width .35s var(--ease); }
.hero-dots button i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--accent), var(--coral)); transform: scaleX(0); transform-origin: left; }
.hero-dots button.active { width: 64px; }
.hero-dots button.active i { animation: dotFill 7.5s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1) } }

.hero-quickstats { display: flex; gap: 34px; }
.hq-stat { text-align: right; }
.hq-stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--accent-light); }
.hq-stat span { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.6); }

@keyframes marquee { to { transform: translateX(-50%) } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 104px 0; position: relative; overflow: hidden; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background:
  radial-gradient(900px 500px at 88% 0%, rgba(255,107,87,.14), transparent 55%),
  radial-gradient(700px 420px at 5% 100%, rgba(139,92,246,.25), transparent 55%),
  linear-gradient(150deg, #23083f, var(--primary) 55%, var(--primary-2)); color: #fff; overflow: hidden; }
.section-dark .lead, .section-dark p { color: rgba(255,255,255,.78); }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.dark-orbs i { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .4; animation: float 14s ease-in-out infinite; pointer-events: none; }
.dark-orbs i:first-child { width: 320px; height: 320px; background: rgba(201,164,69,.3); top: -10%; right: -4%; }
.dark-orbs i:last-child { width: 260px; height: 260px; background: rgba(255,107,87,.35); bottom: -8%; left: -5%; animation-delay: -6s; }

/* Reveal on scroll (with direction variants) */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .85s ease var(--d, 0ms), transform .85s var(--ease) var(--d, 0ms); }
.form-intro[data-reveal]:not(.revealed) { transform: translateX(-46px); }
.site-form[data-reveal]:not(.revealed), .contact-shell[data-reveal]:not(.revealed) { transform: translateX(46px); }
.about-media[data-reveal]:not(.revealed) { transform: translateX(-50px) rotate(-1.5deg); }
.section-head[data-reveal]:not(.revealed) { transform: translateY(30px) scale(.96); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* Section heading underline draw */
.section-head h2 { position: relative; display: inline-block; padding-bottom: 16px; }
.section-head h2::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); height: 3px; width: 0; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--coral)); transition: width .9s var(--ease) .35s; }
.section-head.revealed h2::after { width: 74px; }

/* Ambient floating blobs behind light sections */
.section > .container { position: relative; z-index: 1; }
#services::before, #careers::before {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(139,92,246,.12), transparent 65%);
  top: 6%; right: -140px; animation: float 13s ease-in-out infinite; }
#process::before, #about::before {
  content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,107,87,.1), transparent 65%);
  bottom: 4%; left: -120px; animation: float 15s ease-in-out infinite reverse; }

/* Card color accents (multi-color) */
.c-violet { --card-c: var(--violet); }
.c-gold   { --card-c: var(--gold); }
.c-coral  { --card-c: var(--coral); }
.c-teal   { --card-c: var(--teal); }
.c-blue   { --card-c: var(--blue); }
.c-pink   { --card-c: var(--pink); }

/* ---------- Dual paths ---------- */
.section-paths { padding: 84px 0; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.path-card { position: relative; border-radius: 24px; padding: 44px 40px; color: #fff; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); display: block; }
.path-employer { background: linear-gradient(135deg, var(--primary), var(--violet)); }
.path-seeker { background: linear-gradient(135deg, #9a3d2b, var(--coral)); }
.path-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 30px 60px -20px rgba(57,21,97,.5); }
.path-icon { font-size: 2rem; margin-bottom: 18px; }
.path-tag { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .26em; color: rgba(255,255,255,.75); }
.path-card h3 { font-size: 1.6rem; margin: 10px 0 12px; }
.path-card p { color: rgba(255,255,255,.82); margin-bottom: 22px; max-width: 400px; }
.path-link { display: inline-flex; align-items: center; gap: 8px; background: #fff; padding: 13px 28px; border-radius: 100px; font-weight: 800; font-size: .92rem; box-shadow: 0 10px 26px -10px rgba(0,0,0,.4); transition: all .35s var(--ease); }
.path-employer .path-link { color: var(--primary); }
.path-seeker .path-link { color: #c2402e; }
.path-card:hover .path-link { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 38px -12px rgba(0,0,0,.5); }
.path-glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.14); filter: blur(50px); top: -80px; right: -60px; transition: transform .6s var(--ease); }
.path-card:hover .path-glow { transform: scale(1.5); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr)); gap: 26px; }
.service-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; background: var(--white); border: 1px solid #ece5f5; border-radius: var(--radius); padding: 40px 34px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s; overflow: hidden; will-change: transform; }
.service-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--card-c, var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.service-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-num { position: absolute; top: 24px; right: 28px; font-size: 2.3rem; font-weight: 800; color: #f0e9f8; transition: color .4s; }
.service-card:hover .service-num { color: color-mix(in srgb, var(--card-c) 30%, transparent); }
.service-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: color-mix(in srgb, var(--card-c) 14%, #fff); color: var(--card-c); margin-bottom: 24px; transition: all .4s var(--ease); }
.service-card:hover .service-icon { background: var(--card-c); color: #fff; transform: rotate(-8deg) scale(1.06); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: .94rem; margin-bottom: 22px; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 800; color: var(--card-c, var(--primary));
  padding: 10px 20px; border-radius: 100px; background: color-mix(in srgb, var(--card-c) 10%, #fff);
  border: 1.5px solid color-mix(in srgb, var(--card-c) 30%, transparent); transition: all .35s var(--ease); cursor: pointer; }
.service-link:hover, .service-card:hover .service-link { background: var(--card-c); border-color: var(--card-c); color: #fff; transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--card-c) 60%, transparent); }

/* ---------- Industries (premium image cards) ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.industry-card { position: relative; border-radius: 24px; overflow: hidden; height: 340px; cursor: pointer; border: 1px solid rgba(255,255,255,.14); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.industry-card:hover { transform: translateY(-10px); border-color: rgba(201,164,69,.65); box-shadow: 0 34px 64px -24px rgba(0,0,0,.6), 0 0 0 1px rgba(201,164,69,.25); }
.industry-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .9s var(--ease); }
.industry-card:hover .industry-img { transform: scale(1.1); }
.industry-veil { position: absolute; inset: 0; background: linear-gradient(185deg, rgba(35,8,63,.1) 30%, rgba(35,8,63,.92) 85%); transition: background .5s; }
.industry-card:hover .industry-veil { background: linear-gradient(185deg, rgba(57,21,97,.25) 20%, rgba(35,8,63,.96) 85%); }
.industry-num { position: absolute; top: 20px; right: 24px; font-weight: 800; font-size: 1rem; color: rgba(255,255,255,.55);
  padding: 6px 14px; border-radius: 100px; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); }
.industry-chip { position: absolute; top: 20px; left: 20px; width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); color: var(--accent-light); transition: all .4s var(--ease); }
.industry-chip svg { width: 26px; height: 26px; }
.industry-card:hover .industry-chip { background: linear-gradient(135deg, var(--accent), var(--coral)); color: #fff; transform: rotate(-8deg) scale(1.08); border-color: transparent; }
.industry-body { position: absolute; inset: auto 0 0 0; padding: 26px; text-align: left; }
.industry-card h3 { font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.industry-more { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 800; color: var(--accent-light);
  opacity: 0; transform: translateY(10px); transition: all .4s var(--ease) .05s; }
.industry-card:hover .industry-more { opacity: 1; transform: none; }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } .industry-card { height: 280px; } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 26px; }
.process-step { position: relative; background: var(--white); border: 1px solid #ece5f5; border-radius: var(--radius); padding: 38px 30px; transition: all .45s var(--ease); }
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--card-c) 40%, transparent); }
.step-num { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px; position: relative;
  background: color-mix(in srgb, var(--card-c) 14%, #fff); color: var(--card-c); font-weight: 800; font-size: 1.2rem; }
.step-num::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px dashed color-mix(in srgb, var(--card-c) 45%, transparent); animation: spinSlow 14s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg) } }
.process-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: .92rem; }
.step-connector { position: absolute; top: 62px; right: -26px; width: 26px; height: 2px; background: repeating-linear-gradient(90deg, #d8cdea 0 6px, transparent 6px 12px); }

/* ---------- About (upgraded) ---------- */
.about-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-section { overflow: hidden; }
.about-media { position: relative; }
.about-img-frame { position: relative; }
.about-img-main { height: 500px; border-radius: 30px 90px 30px 30px; background-size: cover; background-position: center; box-shadow: 0 40px 80px -30px rgba(57,21,97,.45); position: relative; overflow: hidden; }
.about-img-main::after { content: ''; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(57,21,97,.35), transparent 50%, rgba(255,107,87,.15)); }
.about-ring { position: absolute; inset: -14px; border-radius: 36px 100px 36px 36px; border: 2px dashed rgba(201,164,69,.45); pointer-events: none; animation: ringPulse 5s ease-in-out infinite; }
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity: .6 } 50% { transform: scale(1.015); opacity: 1 } }
.about-badge { position: absolute; bottom: -26px; right: -14px; display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--primary), var(--violet)); color: #fff; border-radius: 20px; padding: 20px 26px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.18); }
.ab-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; background: rgba(255,255,255,.14); }
.about-badge strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--accent-light); line-height: 1.1; }
.about-badge span { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.75); }
.about-badge2 { position: absolute; top: 26px; left: -22px; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border: 1px solid #ece5f5; border-radius: 100px; padding: 12px 22px;
  font-size: .8rem; font-weight: 800; color: var(--primary); box-shadow: 0 14px 34px -14px rgba(57,21,97,.35); }
.ab2-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,.2); animation: sparkPulse 2s ease infinite; }
.float-anim { animation: float 7s ease-in-out infinite; }
.about-deco { position: absolute; border-radius: 50%; z-index: -1; }
.about-deco.d1 { width: 130px; height: 130px; border: 3px dashed rgba(201,164,69,.5); top: -40px; left: -40px; animation: spinSlow 20s linear infinite; }
.about-deco.d2 { width: 90px; height: 90px; background: linear-gradient(135deg, var(--coral), var(--pink)); opacity: .3; bottom: 40px; left: -34px; filter: blur(8px); animation: float 9s ease-in-out infinite; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy .lead { margin-bottom: 20px; }
.mission-card { position: relative; background: #fff; border: 1px solid #ece5f5; border-left: 4px solid var(--coral); border-radius: 16px; padding: 22px 24px 22px 58px; margin-bottom: 24px; box-shadow: 0 12px 30px -18px rgba(57,21,97,.25); }
.mission-mark { position: absolute; top: 14px; left: 18px; font-size: 1.9rem; line-height: 1;
  background: linear-gradient(120deg, var(--coral), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mission-card p { color: var(--muted); font-size: .94rem; font-style: italic; }
.about-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; }
.af-check { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; font-size: .7rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue)); box-shadow: 0 6px 14px -6px rgba(20,184,166,.6); }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 18px; margin-bottom: 32px; }
.stat-number { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 800;
  background: linear-gradient(120deg, var(--primary), var(--violet) 60%, var(--coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: 4px; }

/* ---------- Clients ---------- */
.clients-marquee { overflow: hidden; margin-top: 8px; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.clients-track { display: flex; gap: 60px; width: max-content; animation: marquee 30s linear infinite; align-items: center; padding: 10px 0; }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.client-logo { display: grid; place-items: center; min-width: 130px; }
.client-logo img { max-height: 52px; filter: grayscale(1) opacity(.6); transition: all .35s; }
.client-logo:hover img { filter: none; transform: scale(1.08); }
.client-logo span { font-weight: 700; font-size: 1.15rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testi-slider { position: relative; max-width: 840px; margin: 0 auto; text-align: center; min-height: 320px; }
.testi-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(24px) scale(.98); transition: all .7s var(--ease); }
.testi-slide.active { opacity: 1; visibility: visible; transform: none; position: relative; }
.testi-quote-mark { font-family: var(--font-logo); font-size: 5rem; line-height: .6; margin-bottom: 26px;
  background: linear-gradient(120deg, var(--accent), var(--coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.testi-quote { font-size: clamp(1rem, 1.8vw, 1.25rem); font-style: italic; font-weight: 300; color: rgba(255,255,255,.9) !important; margin-bottom: 30px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; text-align: left; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; color: var(--primary);
  background: linear-gradient(135deg, var(--accent), var(--accent-light)); box-shadow: 0 8px 20px -6px rgba(201,164,69,.6); }
.testi-author strong { display: block; color: var(--accent-light); font-size: .98rem; }
.testi-author span { font-size: .82rem; color: rgba(255,255,255,.6); }
.testi-nav { display: flex; gap: 12px; justify-content: center; margin-top: 38px; }
.testi-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; font-size: 1.1rem; cursor: pointer; transition: all .3s var(--ease); }
.testi-nav button:hover { background: linear-gradient(135deg, var(--accent), var(--coral)); border-color: transparent; transform: scale(1.1); }

/* ---------- Jobs ---------- */
.job-search { display: flex; align-items: center; gap: 12px; max-width: 560px; margin: 0 auto 36px; background: #fff; border: 1.5px solid #e4dcf0; border-radius: 100px; padding: 6px 8px 6px 22px; transition: all .3s; box-shadow: 0 10px 30px -18px rgba(57,21,97,.3); }
.job-search:focus-within { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,87,.12); }
.job-search input { flex: 1; border: none; outline: none; padding: 12px 4px; font-family: inherit; font-size: .95rem; background: none; }
.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1020px; margin: 0 auto; }
.job-card { display: flex; flex-direction: column; gap: 12px; background: var(--white); border: 1px solid #ece5f5; border-top: 4px solid var(--accent); border-radius: var(--radius); padding: 28px 30px; transition: all .4s var(--ease); position: relative; overflow: hidden; }
.job-card::after { content: ''; position: absolute; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(201,164,69,.1), transparent 70%); top: -50px; right: -50px; }
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--coral); }
.job-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.job-top h3 { font-size: 1.15rem; }
.job-type-badge { flex-shrink: 0; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--primary);
  background: color-mix(in srgb, var(--violet) 12%, #fff); border: 1px solid color-mix(in srgb, var(--violet) 30%, transparent); padding: 5px 13px; border-radius: 100px; }
.job-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: .8rem; color: var(--muted); }
.job-card p { font-size: .9rem; color: var(--muted); flex: 1; }
.btn-apply { white-space: nowrap; align-self: flex-start; padding: 11px 26px; font-size: .85rem; }
.jobs-actions { text-align: center; margin-top: 40px; }
.jobs-cta { margin-top: 18px; color: var(--muted); }
.jobs-none { text-align: center; color: var(--muted); padding: 28px 0; grid-column: 1 / -1; }
/* Jobs page filters */
.jobs-filters { display: flex; gap: 14px; max-width: 860px; margin: 0 auto 40px; flex-wrap: wrap; justify-content: center; }
.jobs-filters .job-search { margin: 0; flex: 1; min-width: 260px; }
.jobs-filters select { padding: 13px 18px; border-radius: 100px; border: 1.5px solid #e4dcf0; background: #fff; font-family: inherit; font-size: .9rem; font-weight: 600; color: var(--ink); cursor: pointer; box-shadow: 0 10px 30px -18px rgba(57,21,97,.3); }
.jobs-filters select:focus { outline: none; border-color: var(--coral); }
.page-hero { background: radial-gradient(900px 400px at 80% 0%, rgba(255,107,87,.18), transparent 55%), linear-gradient(140deg, #23083f, var(--primary) 60%, var(--primary-2)); color: #fff; padding: 90px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* ---------- Contact — premium split card ---------- */
.contact-shell { display: grid; grid-template-columns: .85fr 1.15fr; border-radius: 30px; overflow: hidden;
  background: #fff; box-shadow: 0 40px 90px -30px rgba(57,21,97,.4); border: 1px solid #ece5f5; }
.contact-left { position: relative; padding: 54px 44px; color: #fff; overflow: hidden;
  background: radial-gradient(600px 300px at 90% -10%, rgba(255,107,87,.35), transparent 60%),
              linear-gradient(160deg, #23083f, var(--primary) 55%, var(--primary-2)); }
.cl-deco i { position: absolute; border-radius: 50%; pointer-events: none; }
.cl-deco i:first-child { width: 220px; height: 220px; border: 2px dashed rgba(201,164,69,.35); bottom: -80px; right: -80px; animation: spinSlow 24s linear infinite; }
.cl-deco i:last-child { width: 140px; height: 140px; background: rgba(255,107,87,.2); filter: blur(40px); top: 10%; right: -30px; animation: float 10s ease-in-out infinite; }
.contact-left h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; position: relative; }
.cl-sub { color: rgba(255,255,255,.72); font-size: .95rem; margin-bottom: 30px; position: relative; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; position: relative; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); transition: all .35s var(--ease); }
.contact-card:hover { transform: translateX(6px); border-color: rgba(201,164,69,.55); background: rgba(255,255,255,.12); }
.cc-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--coral)); color: #fff; box-shadow: 0 10px 24px -10px rgba(201,164,69,.6); }
.contact-card em { display: block; font-style: normal; font-size: .66rem; text-transform: uppercase; letter-spacing: .18em; color: var(--accent-light); }
.contact-card strong { display: block; font-size: .93rem; color: #fff; font-weight: 700; }
.contact-social { margin-top: 28px; position: relative; }
.contact-social a { width: 38px; height: 38px; }
.contact-form { border: none !important; border-radius: 0 !important; box-shadow: none !important; padding: 54px 48px !important; }
@media (max-width: 960px) {
  .contact-shell { grid-template-columns: 1fr; }
  .contact-left { padding: 40px 28px; }
  .contact-form { padding: 34px 24px !important; }
}

/* ---------- Posts ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.post-card { background: var(--white); border: 1px solid #ece5f5; border-radius: var(--radius); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); display: flex; flex-direction: column; will-change: transform; }
.post-card:hover { box-shadow: var(--shadow); }
.post-img { height: 200px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.post-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(35,8,63,.45)); }
.post-cat { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: .64rem; letter-spacing: .2em; font-weight: 800; color: #fff; text-transform: uppercase;
  background: linear-gradient(120deg, var(--coral), var(--pink)); padding: 6px 14px; border-radius: 100px; }
.post-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-body h3 { font-size: 1.15rem; }
.post-body p { font-size: .9rem; color: var(--muted); flex: 1; }
.post-date { font-size: .78rem; font-weight: 700; color: var(--coral); }

/* ---------- Forms ---------- */
.form-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.form-intro h2 { margin-bottom: 18px; }
.form-perks { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.contact-details { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; font-size: .95rem; }
.contact-details strong { color: var(--coral); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; }
.site-form { display: flex; flex-direction: column; gap: 18px; background: var(--white); border: 1px solid #ece5f5; border-radius: calc(var(--radius) + 6px); padding: 40px; box-shadow: var(--shadow); }
.site-form.glass { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); backdrop-filter: blur(14px); box-shadow: none; }
.site-form label { display: flex; flex-direction: column; gap: 8px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.section-dark .site-form label { color: rgba(255,255,255,.65); }
.site-form input, .site-form select, .site-form textarea { padding: 13px 16px; border-radius: 12px; border: 1.5px solid #e4dcf0; background: var(--bg); font-family: var(--font-body); font-size: .95rem; color: var(--ink); transition: all .3s; }
.site-form.glass input, .site-form.glass select, .site-form.glass textarea { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.site-form.glass option { color: var(--ink); }
.site-form input:focus, .site-form select:focus, .site-form textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,87,.13); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; padding: 0 !important; border: 0 !important; }
.form-status { font-size: .9rem; min-height: 1.2em; margin: 0; }
.form-status.ok { color: #2c9c5e; }
.form-status.err { color: #d64545; }
.section-dark .form-status.ok { color: #7ee2a8; }

/* ---------- Locations ---------- */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.location-card { background: var(--white); border: 1px solid #ece5f5; border-radius: var(--radius); padding: 34px 28px; transition: all .4s var(--ease); position: relative; overflow: hidden; }
.location-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--accent), var(--coral), var(--violet)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.location-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.location-card:hover::after { transform: scaleX(1); }
.loc-pin { font-size: 1.6rem; margin-bottom: 14px; }
.location-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.location-card strong { font-size: .74rem; color: var(--coral); text-transform: uppercase; letter-spacing: .12em; display: block; margin-bottom: 10px; }
.location-card p { font-size: .9rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, #23083f, var(--primary) 45%, #7a2d4e 80%, var(--coral) 130%); color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 30px 30px; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER — designed, multi-layer
   ============================================================ */
/* Animated wave divider (3 drifting layers) */
.wave-divider { position: relative; height: 90px; overflow: hidden; line-height: 0; background: var(--bg-alt); margin-bottom: -1px; }
.wave-divider .wave { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; will-change: transform; }
.wave-back  { fill: rgba(57,21,97,.35);  animation: waveDrift 16s linear infinite; }
.wave-mid   { fill: rgba(69,35,106,.55); animation: waveDrift 11s linear infinite reverse; }
.wave-front { fill: #1c0636;             animation: waveDrift 8s  linear infinite; }
@keyframes waveDrift { to { transform: translateX(-50%); } }

.site-footer { position: relative; background: linear-gradient(165deg, #1c0636, #23083f 40%, var(--primary)); color: rgba(255,255,255,.75); overflow: hidden; }
.footer-shapes i { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; pointer-events: none; animation: float 14s ease-in-out infinite; }
.footer-shapes i:nth-child(1) { width: 300px; height: 300px; background: rgba(201,164,69,.35); top: 10%; right: -6%; }
.footer-shapes i:nth-child(2) { width: 240px; height: 240px; background: rgba(255,107,87,.3); bottom: 10%; left: -5%; animation-delay: -5s; }
.footer-shapes i:nth-child(3) { width: 160px; height: 160px; background: rgba(139,92,246,.4); top: 45%; left: 45%; animation-delay: -9s; }

.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1.1fr; gap: 44px; padding: 30px 0 56px; position: relative; z-index: 1; }
.logo-footer { align-items: flex-start; margin-bottom: 16px; }
.logo-footer .lr-tag { color: rgba(255,255,255,.6); }
.footer-brand p { font-size: .92rem; max-width: 300px; }
.footer-social { margin-top: 22px; }
.footer-social a { width: 36px; height: 36px; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .24em; color: var(--accent-light); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--coral)); }
.footer-col a { display: block; font-size: .9rem; padding: 5px 0; color: rgba(255,255,255,.62); transition: all .3s; position: relative; padding-left: 0; }
.footer-col a::before { content: '→'; position: absolute; left: -16px; opacity: 0; color: var(--coral); transition: all .3s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 18px; }
.footer-col a:hover::before { left: 0; opacity: 1; }
.footer-contact-col p { font-size: .88rem; padding: 5px 0; }

.footer-bottom { position: relative; z-index: 1; background: var(--bg-alt); }
.footer-bottom-inner { display: flex; justify-content: center; align-items: center; padding: 18px 0; font-size: .85rem; color: var(--muted); }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 400; background: rgba(26, 8, 48, .74); backdrop-filter: blur(8px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: all .35s; padding: 20px; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: 22px; padding: 44px; width: min(560px, 100%); max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(30px) scale(.96); transition: transform .45s var(--ease); }
.modal-overlay.open .modal { transform: none; }
.modal h3 { font-size: 1.5rem; margin-bottom: 24px; }
.modal .site-form { padding: 0; border: none; box-shadow: none; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid #e4dcf0; background: none; cursor: pointer; font-size: .9rem; color: var(--muted); transition: all .3s; }
.modal-close:hover { background: var(--coral); color: #fff; border-color: var(--coral); transform: rotate(90deg); }

/* ---------- Back to top ---------- */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px; border-radius: 50%; border: none; background: linear-gradient(135deg, var(--primary), var(--coral)); color: #fff; font-size: 1.15rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .4s var(--ease); box-shadow: var(--shadow); z-index: 90; }
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { transform: translateY(-5px) scale(1.06); }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .nav-link { padding: 12px 9px; font-size: .84rem; }
}
@media (max-width: 960px) {
  .about-wrap, .form-wrap { grid-template-columns: 1fr; gap: 46px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .hero-quickstats { gap: 22px; }
  .hq-stat strong { font-size: 1.3rem; }
}
@media (max-width: 900px) {
  .hide-sm { display: none !important; }
  .nav-toggle { display: flex; }
  .site-header { position: static; border: none; box-shadow: none !important; }
  .site-header .header-inner { min-height: 0; padding: 0; }
  .brand-mini, .nav-ctas { display: none !important; }
  /* Off-canvas drawer */
  .main-nav { position: fixed; top: 0; right: -100%; width: min(330px, 84vw); height: 100vh; height: 100dvh;
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px; padding: 26px 30px;
    background: #fff; transition: right .45s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.35); z-index: 250; overflow-y: auto; }
  .main-nav.open { right: 0; }
  .nav-mobile-head { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #eee5f6; }
  .nav-mobile-head button { background: none; border: none; font-size: 1.15rem; cursor: pointer; color: var(--muted); width: 36px; height: 36px; border-radius: 50%; border: 1px solid #e4dcf0; }
  .main-nav .nav-link { font-size: 1.05rem; padding: 13px 0; width: 100%; color: var(--ink); border-bottom: 1px solid #f5f0fa; }
  .main-nav .nav-link:hover { color: var(--primary); }
  .main-nav .nav-link::after { display: none; }
  .topbar-note { display: none; }
  .topbar { font-size: .72rem; }
  .topbar-inner { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .lr-name { font-size: 28px; }
  .lr-tag { letter-spacing: 2.4px; }
  .hero-eyebrow { letter-spacing: .2em; font-size: .62rem; text-align: left; }
  .hq-stat { text-align: left; }
  .hero-quickstats { flex-wrap: wrap; }
  .contact-card strong { word-break: break-word; }
  .testi-slider { min-height: 0; }
  .testi-quote { font-size: 1rem; }
  .industry-card h3 { font-size: 1.1rem; }
  .about-badge strong { font-size: 1.3rem; }
  .job-top { flex-direction: column; }
  .btn-apply { align-self: stretch; justify-content: center; }
  .section { padding: 66px 0; }
  .section-head { margin-bottom: 42px; }
  .grid-2 { grid-template-columns: 1fr; }
  .site-form { padding: 26px 22px; }
  .hero { min-height: 78svh; }
  .hero-slider { min-height: 430px; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 30px; }
  .about-img-main { height: 320px; border-radius: 24px 60px 24px 24px; }
  .about-badge { right: 0; padding: 14px 18px; }
  .about-badge2 { left: 0; top: 14px; }
  .about-features { grid-template-columns: 1fr; }
  .path-card { padding: 32px 26px; }
  .modal { padding: 30px 22px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .jobs-filters { flex-direction: column; }
  .jobs-filters select { width: 100%; }
  .back-top { bottom: 18px; right: 18px; width: 44px; height: 44px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .topbar-contact { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .header-ctas .btn { display: none; }
  .container { width: 94%; }
  .hero-title { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
  .hero-sub { font-size: .95rem; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 1.6rem; }
  .path-card { padding: 26px 20px; }
  .path-card h3 { font-size: 1.3rem; }
  .service-card { padding: 28px 22px; }
  .process-step { padding: 28px 22px; }
  .industry-card { height: 240px; }
  .contact-left { padding: 32px 20px; }
  .contact-form { padding: 28px 18px !important; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-features { gap: 8px; }
  .page-hero { padding: 60px 0 46px; }
  .wave-divider { height: 56px; }
  .footer-brand p { max-width: 100%; }
  .modal { padding: 26px 16px; border-radius: 16px; }
  .back-top { width: 40px; height: 40px; font-size: 1rem; }
}
/* ============================================================
   MOTION LAYER — idle micro-animations everywhere
   ============================================================ */
@keyframes bobSlow { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }
@keyframes wiggle { 0%,100% { transform: rotate(0) } 25% { transform: rotate(-6deg) } 75% { transform: rotate(6deg) } }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 10px 30px -10px rgba(201,164,69,.55) }
  50% { box-shadow: 0 14px 42px -8px rgba(201,164,69,.85), 0 0 0 6px rgba(201,164,69,.08) }
}
@keyframes bounceIn { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }

/* Icons gently breathe */
.service-icon { animation: bobSlow 5s ease-in-out infinite; }
.service-card:nth-child(2n) .service-icon { animation-delay: -1.6s; }
.service-card:nth-child(3n) .service-icon { animation-delay: -3.2s; }
.path-icon { animation: bobSlow 4.5s ease-in-out infinite; display: inline-block; }
.path-card:hover .path-icon { animation: wiggle .6s ease-in-out; }
.cc-icon { animation: bobSlow 6s ease-in-out infinite; }
.industry-chip { animation: bobSlow 5.5s ease-in-out infinite; }
.industry-card:hover .industry-chip { animation: none; }

/* Primary CTAs pulse softly */
.btn-accent { animation: glowPulse 3.4s ease-in-out infinite; }
.btn-accent:hover { animation-play-state: paused; }

/* Step number rings already spin — add number pop on hover */
.process-step:hover .step-num { transform: scale(1.12) rotate(-6deg); transition: transform .35s var(--ease); }

/* Testimonial quote mark heartbeat */
.testi-quote-mark { animation: bobSlow 4s ease-in-out infinite; }

/* Job type badge shimmer sweep */
.job-type-badge { position: relative; overflow: hidden; }
.job-type-badge::after { content: ''; position: absolute; top: 0; left: -80%; width: 60%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent); animation: shine 4.2s ease infinite; }

/* Back-to-top bounce when visible */
.back-top.show { animation: bounceIn 2.4s ease-in-out infinite; }
.back-top.show:hover { animation: none; }

/* Footer column headings underline pulse */
.footer-col h4::after { animation: growLine 3.6s ease-in-out infinite; }
@keyframes growLine { 0%,100% { width: 34px } 50% { width: 54px } }

/* Hero CTA arrow nudge */
.hero-actions .btn .arr { animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: translateX(0) } 50% { transform: translateX(5px) } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
