/* ============================================================
   WALKINTECHNOINC — Design System
   Recruitment & Staffing Solutions
   Author: Digital Agency Build
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --brand: #1f5ce1;
  --brand-600: #1a4fc4;
  --brand-700: #1642a8;
  --brand-050: #eaf1fd;
  --accent: #000000;
  --accent-600: #111318;
  --accent-050: #eff1f5;

  /* Neutrals */
  --ink-900: #0b1220;
  --ink-800: #131b2c;
  --ink-700: #26324a;
  --ink-600: #3d4a66;
  --ink-500: #5b6884;
  --ink-400: #8b96ad;
  --ink-300: #c4ccdb;
  --ink-200: #e2e7ef;
  --ink-100: #eef1f6;
  --ink-050: #f6f8fb;
  --white: #ffffff;

  /* Semantic */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f6f8fb;
  --border: #e6eaf1;
  --success: #1f9a69;
  --warning: #f5a623;
  --error: #e2483d;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #1f5ce1 0%, #1a4fc4 55%, #1642a8 100%);
  --grad-warm: linear-gradient(135deg, #2c2f37 0%, #000000 100%);
  --grad-hero: radial-gradient(1200px 600px at 78% -8%, rgba(31,92,225,.20), transparent 60%),
               radial-gradient(900px 500px at 6% 4%, rgba(0,0,0,.10), transparent 55%);
  --grad-mesh: linear-gradient(160deg, #05070d 0%, #0e1830 48%, #0a1024 120%);

  /* Typography */
  --font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(11,18,32,.06);
  --sh-sm: 0 4px 14px rgba(11,18,32,.06);
  --sh-md: 0 12px 34px rgba(11,18,32,.09);
  --sh-lg: 0 26px 60px rgba(11,18,32,.14);
  --sh-brand: 0 18px 40px rgba(31,92,225,.30);
  --sh-accent: 0 18px 40px rgba(0,0,0,.28);

  /* Spacing scale (8pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  --container: 1200px;
  --nav-h: 74px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--brand); color: #fff; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-900); line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }
.display { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.03; letter-spacing: -.03em; font-weight: 800; }
h1, .h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2, .h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4, .h4 { font-size: 1.075rem; letter-spacing: -.01em; }
.lead { font-size: clamp(1.075rem, 1.6vw, 1.28rem); color: var(--ink-500); line-height: 1.6; }
.caption { font-size: .82rem; color: var(--ink-400); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--brand-700);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }
.eyebrow.on-dark { color: #9dbcff; }
.eyebrow.on-dark::before { background: #9dbcff; }
.text-grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-warm { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 4. LAYOUT ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section-head { max-width: 720px; margin-bottom: var(--s-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.grid { display: grid; gap: var(--s-5); }
.dark { background: var(--grad-mesh); color: var(--ink-200); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.alt { background: var(--surface-alt); }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 650; font-size: .98rem; letter-spacing: -.01em; white-space: nowrap;
  padding: .92rem 1.6rem; border-radius: var(--r-full);
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(31,92,225,.42); }
.btn-accent { background: var(--grad-warm); color: #fff; box-shadow: var(--sh-accent); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.btn-ghost { background: var(--white); color: var(--ink-800); border-color: var(--border); box-shadow: var(--sh-xs); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--ink-300); box-shadow: var(--sh-sm); }
.btn-outline { background: transparent; color: var(--ink-800); border-color: var(--ink-300); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-700); }
.btn.on-dark { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.btn.on-dark:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-lg { padding: 1.08rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 650; color: var(--brand-700); }
.link-arrow svg { transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. CARDS & SURFACES ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s-6);
  box-shadow: var(--sh-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card.hover:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.card.dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); backdrop-filter: blur(6px); }
.glass {
  background: rgba(255,255,255,.65); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--r-lg); box-shadow: var(--sh-md);
}
.icon-badge {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--brand-050); color: var(--brand-700); margin-bottom: var(--s-4);
}
.icon-badge.warm { background: var(--accent-050); color: var(--accent-600); }
.icon-badge svg { width: 26px; height: 26px; }

/* ---------- 7. BADGES / TAGS / PILLS ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 650;
  padding: .34rem .7rem; border-radius: var(--r-full); background: var(--brand-050); color: var(--brand-700);
}
.badge.warm { background: var(--accent-050); color: var(--accent-600); }
.badge.dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.tag { font-size: .8rem; font-weight: 600; padding: .3rem .8rem; border-radius: var(--r-full);
  border: 1px solid var(--border); color: var(--ink-600); background: var(--white); }

/* ---------- 8. NAVBAR ---------- */
.nav {
  position: sticky; top: 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.72); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--sh-xs); }
.nav .container { width: min(100% - 2.5rem, 1300px); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: flex; align-items: center; gap: 0; font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--ink-900); letter-spacing: -.02em; white-space: nowrap; flex: 0 0 auto; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; box-shadow: var(--sh-brand); margin-right: .55rem; flex: 0 0 auto; }
.brand-mark svg { width: 20px; height: 20px; }
.brand b { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: .1rem; margin-inline: auto; }
.nav-links a { padding: .5rem .7rem; border-radius: var(--r-full); font-weight: 550; font-size: .925rem; color: var(--ink-600); white-space: nowrap; transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-700); background: var(--brand-050); }
.nav-cta { display: flex; align-items: center; gap: .55rem; flex: 0 0 auto; }
.nav-cta .btn { padding: .62rem 1.2rem; font-size: .9rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: #fff; align-items: center; justify-content: center; flex: 0 0 auto; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- 9. HERO ---------- */
.hero { position: relative; padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 6.5rem); background: var(--grad-hero); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(11,18,32,.045) 1px, transparent 1px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent); mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent); z-index: 0; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero h1 { margin: 1.1rem 0; }
.hero .lead { max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 1.2rem; margin-top: 2.2rem; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span { width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -12px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .85rem; box-shadow: var(--sh-xs); }
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2){ background: var(--grad-warm);} .avatars span:nth-child(3){ background: linear-gradient(135deg,#3d4a66,#131b2c);} .avatars span:nth-child(4){ background: linear-gradient(135deg,#1642a8,#0a1024);}
.stars { color: var(--accent); letter-spacing: 2px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--border); background: #fff; }
.hero-card .photo { aspect-ratio: 4/3.4; background: var(--grad-mesh); position: relative; display: grid; place-items: center; color: rgba(255,255,255,.9); }
.hero-card .photo::before { content: ""; position: absolute; inset: 0; background: var(--grad-hero); opacity: .8; }
.float-card { position: absolute; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem; }
.float-card .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--brand-050); color: var(--brand-700); }
.float-card small { display: block; color: var(--ink-400); font-size: .74rem; font-weight: 600; letter-spacing: .02em; }
.float-card strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-900); }
.float-a { top: 8%; left: -8%; animation: floaty 6s var(--ease) infinite; }
.float-b { bottom: 9%; right: -6%; animation: floaty 6s var(--ease) infinite 1.5s; }
.float-b .ic { background: var(--accent-050); color: var(--accent-600); }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* Hero focus line + primary-focus band */
.hero-focus { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; color: var(--ink-600); font-size: 1.02rem; }
.hero-focus .badge { flex: 0 0 auto; }
.hero-focus strong { color: var(--ink-900); }
.focus-band { display: flex; align-items: center; gap: clamp(1rem, 3vw, 1.75rem); padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.4rem, 3vw, 2.5rem); background: linear-gradient(120deg, var(--brand-050), #fff 72%); border: 1px solid var(--border); border-left: 5px solid var(--brand); border-radius: var(--r-lg); box-shadow: var(--sh-sm); }
.focus-band .icon-badge { flex: 0 0 auto; width: 62px; height: 62px; margin: 0; }
.focus-band .icon-badge svg { width: 30px; height: 30px; }
.focus-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.focus-band .lead { max-width: 70ch; }
@media (max-width: 640px) { .focus-band { flex-direction: column; align-items: flex-start; gap: 1rem; } }

/* ---------- 10. MARQUEE / TRUSTED ---------- */
.trusted { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-alt); padding: 2.4rem 0; }
.trusted p { text-align: center; color: var(--ink-400); font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.4rem; }
.logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem); }
.logos span { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink-400); opacity: .8; transition: color .3s, opacity .3s; letter-spacing: -.02em; }
.logos span:hover { color: var(--ink-700); opacity: 1; }

/* ---------- 11. STATS ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.stat { text-align: center; padding: var(--s-5) var(--s-4); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.03em; }
.stat .num.g { color: var(--brand); } .stat .num.o { color: var(--accent); }
.stat .lbl { margin-top: .5rem; color: var(--ink-500); font-weight: 550; font-size: .95rem; }

/* ---------- 12. FEATURE / SERVICE GRIDS ---------- */
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--ink-500); font-size: .98rem; }
.service-card { position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-brand); opacity: 0; transition: opacity .35s; }
.service-card.warm::before { background: var(--grad-warm); }
.service-card:hover::before { opacity: 1; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; padding: .4rem 0; color: var(--ink-600); font-size: .98rem; }
.check-list li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--brand); margin-top: 1px; }
.check-list.warm li svg { color: var(--accent); }

/* ---------- 13. SPLIT / SHOWCASE ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.showcase-visual { border-radius: var(--r-xl); aspect-ratio: 5/4; background: var(--grad-mesh); position: relative; overflow: hidden; box-shadow: var(--sh-lg); display: grid; place-items: center; }
.showcase-visual::before { content: ""; position: absolute; inset: 0; background: var(--grad-hero); }
.showcase-visual .glyph { position: relative; color: rgba(255,255,255,.85); }

/* ---------- 14. PROCESS / TIMELINE ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); counter-reset: step; }
.step { position: relative; }
.step .n { width: 52px; height: 52px; border-radius: 15px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--sh-sm); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--brand); font-size: 1.25rem; margin-bottom: 1.1rem; }
.step:nth-child(even) .n { color: var(--accent); }
.step h4 { margin-bottom: .4rem; }
.step p { color: var(--ink-500); font-size: .95rem; }
.step::after { content: ""; position: absolute; top: 26px; left: 62px; right: -14px; height: 2px; background: linear-gradient(90deg, var(--border), transparent); }
.step:last-child::after { display: none; }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.tl-item { position: relative; padding: 0 0 2rem 1.6rem; }
.tl-item::before { content: ""; position: absolute; left: -1.6rem; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--brand-050); }
.tl-item .yr { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: .95rem; }
.tl-item h4 { margin: .2rem 0 .3rem; }
.tl-item p { color: var(--ink-500); font-size: .96rem; }

/* ---------- 15. TESTIMONIALS ---------- */
.quote-card { display: flex; flex-direction: column; gap: 1.1rem; height: 100%; }
.quote-card .stars { font-size: 1rem; }
.quote-card blockquote { font-size: 1.06rem; color: var(--ink-700); line-height: 1.55; font-weight: 500; }
.quote-card .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.quote-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-weight: 700; }
.quote-card .who b { display: block; color: var(--ink-900); }
.quote-card .who small { color: var(--ink-400); }
.big-quote { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.3; color: #fff; font-weight: 600; letter-spacing: -.02em; }

/* ---------- 16. PORTFOLIO / CASE ---------- */
.case-card { overflow: hidden; padding: 0; }
.case-card .thumb { aspect-ratio: 16/10; background: var(--grad-mesh); position: relative; display: grid; place-items: center; color: rgba(255,255,255,.9); }
.case-card .thumb::before { content:""; position:absolute; inset:0; background: var(--grad-hero); }
.case-card .body { padding: var(--s-5); }
.case-card .metrics { display: flex; gap: 1.4rem; margin-top: 1rem; }
.case-card .metrics b { font-family: var(--font-display); font-size: 1.4rem; color: var(--brand); display: block; }
.case-card .metrics small { color: var(--ink-400); font-size: .78rem; }

/* ---------- 17. PRICING ---------- */
.price-card { position: relative; }
.price-card.featured { border-color: var(--brand); box-shadow: var(--sh-lg); }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-warm); color: #fff; font-size: .74rem; font-weight: 700; padding: .3rem .9rem; border-radius: var(--r-full); box-shadow: var(--sh-accent); }
.price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--ink-900); letter-spacing: -.03em; }
.price small { font-size: 1rem; color: var(--ink-400); font-weight: 500; }

/* ---------- 18. FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.35rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-weight: 650; font-size: 1.08rem; color: var(--ink-900); }
.faq-q .ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: var(--brand-050); color: var(--brand-700); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 1.35rem; color: var(--ink-500); }

/* ---------- 19. FORMS ---------- */
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink-700); margin-bottom: .4rem; }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--white); font: inherit; color: var(--ink-800); transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-050); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--ink-400); }
.form-ok { display: none; padding: 1rem 1.2rem; border-radius: var(--r-sm); background: var(--brand-050); color: var(--brand-700); font-weight: 600; border: 1px solid rgba(31,92,225,.25); }
.form-ok.show { display: block; }

/* ---------- 20. CTA BAND ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); padding: clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; background: var(--grad-mesh); color: #fff; text-align: center; box-shadow: var(--sh-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 380px at 82% 0%, rgba(31,92,225,.40), transparent 60%), radial-gradient(600px 340px at 10% 100%, rgba(255,255,255,.10), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 20ch; margin: 0 auto .9rem; }
.cta-band .lead { color: rgba(255,255,255,.82); max-width: 52ch; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

/* ---------- 21. PAGE HEADER ---------- */
.page-head { background: var(--grad-hero); padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem,5vw,4rem); position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-head .container { position: relative; z-index: 1; max-width: 780px; }
.crumbs { font-size: .85rem; color: var(--ink-400); margin-bottom: 1rem; }
.crumbs a:hover { color: var(--brand-700); }

/* ---------- 22. FOOTER ---------- */
.footer { background: var(--ink-900); color: var(--ink-300); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-6); }
.footer h5 { color: #fff; font-family: var(--font-display); font-size: .95rem; font-weight: 650; margin-bottom: 1.1rem; letter-spacing: .01em; }
.footer a { color: var(--ink-400); display: inline-block; padding: .28rem 0; font-size: .95rem; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer .desc { color: var(--ink-400); font-size: .95rem; max-width: 34ch; margin-bottom: 1.4rem; }
.socials { display: flex; gap: .6rem; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--ink-300); }
.socials a:hover { background: var(--brand); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .88rem; color: var(--ink-400); }

/* ---------- 23. JOB CARDS ---------- */
.job-card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.job-card .meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .6rem; }
.job-card h4 { margin-bottom: .2rem; }

/* ---------- 24. UTILITIES ---------- */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 100; background: var(--brand); color: #fff; padding: .7rem 1.1rem; border-radius: var(--r-sm); font-weight: 650; transition: top .2s var(--ease); }
.skip-link:focus { top: 1rem; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-0{margin-bottom:0}.center{text-align:center}.max-56{max-width:56ch}.mx-auto{margin-inline:auto}
.hide-mobile{display:initial}
.divider { height: 1px; background: var(--border); border: none; margin: 0; }

/* ---------- 25. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-a, .float-b { animation: none; }
}

/* ---------- 26. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links { display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: .2rem; margin: 0; padding: 1rem 1.25rem 1.5rem; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--sh-md); }
  .nav.open .nav-links a { padding: .85rem 1rem; font-size: 1rem; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .split, .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .float-a { left: 0; } .float-b { right: 0; }
}
@media (max-width: 560px) {
  .brand { font-size: 1rem; }
  .nav-cta .btn { padding: .55rem 1rem; font-size: .875rem; }
  .cols-4, .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
  .float-card { padding: .6rem .75rem; } .float-card strong { font-size: .95rem; }
}

/* ---------- 27. WORDPRESS INTEGRATION ---------- */
.nav-links li { list-style: none; }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a { color: var(--brand-700); background: var(--brand-050); }
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }
.wp-caption, .aligncenter { text-align: center; margin-inline: auto; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.post-content h2 { margin-top: 2rem; } .post-content p { margin-bottom: 1rem; }

/* ---------- 28. FOOTER LINK STACKING ---------- */
.footer-grid a { display: block; }
.footer-grid .socials { display: flex; flex-direction: row; }
.footer-grid .socials a { display: grid; }
.footer-menu, .footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { list-style: none; margin: 0; padding: 0; }
