:root {
  --blue: #0b3fc9;
  --blue-2: #2e74ff;
  --yellow: #ffc700;
  --ink: #07142f;
  --text: #15213a;
  --muted: #637089;
  --paper: #f7faff;
  --white: #ffffff;
  --line: rgba(11, 63, 201, 0.14);
  --soft-blue: #eaf2ff;
  --soft-yellow: #fff6cf;
  --shadow: 0 24px 70px rgba(7, 20, 47, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--paper); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
section[id] { scroll-margin-top: 118px; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; border-radius: 8px; background: var(--yellow); color: var(--ink); font-weight: 900; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1360px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 63, 201, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.brand img { width: clamp(190px, 20vw, 270px); }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 20px; color: var(--ink); font-size: .9rem; font-weight: 850; }
.main-nav a:hover,
.nav-group summary:hover { color: var(--blue); }
.nav-group { position: relative; }
.nav-group summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .62;
}
.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(11, 63, 201, .13);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(7,20,47,.15);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}
.nav-menu-wide {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  min-width: 460px;
}
.nav-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #263653;
  font-size: .86rem;
}
.nav-menu a:hover {
  color: var(--blue);
  background: var(--soft-blue);
}
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 12px; color: white; background: var(--ink); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.header-cta, .btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 14px 32px rgba(255, 199, 0, .24); }
.btn-secondary { border: 1px solid rgba(11, 63, 201, .18); color: var(--blue); background: white; }
.header-cta:hover, .btn:hover { transform: translateY(-2px); }
.header-ctas { display: flex; align-items: center; gap: 10px; }
.header-cta-quote {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 30px rgba(11, 63, 201, .26);
}
.header-cta-call {
  background: var(--yellow);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(460px, .82fr) minmax(520px, 1.18fr);
  gap: 74px;
  align-items: center;
  padding: 142px max(24px, calc((100vw - 1360px) / 2)) 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 199, 0, .26), transparent 25%),
    radial-gradient(circle at 82% 24%, rgba(46, 116, 255, .22), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 62%, #eef5ff 100%);
}
.hero-mesh {
  position: absolute;
  inset: auto -20% -28% -20%;
  height: 52%;
  background:
    radial-gradient(circle at 22% 50%, rgba(11, 63, 201, .18), transparent 28%),
    radial-gradient(circle at 55% 42%, rgba(255, 199, 0, .2), transparent 26%),
    radial-gradient(circle at 78% 60%, rgba(46, 116, 255, .16), transparent 24%);
  filter: blur(36px);
  animation: meshFloat 9s ease-in-out infinite alternate;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: .78rem; font-weight: 950; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, p, a, strong, span { overflow-wrap: break-word; }
h1, h2, h3, .brand-word {
  font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
}
.hero h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3.1rem, 5.25vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.blue-text,
.hero-lede strong {
  color: var(--blue);
}
.hero-lede { max-width: 650px; color: #23314f; font-size: clamp(1.08rem, 1.55vw, 1.28rem); line-height: 1.52; font-weight: 750; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-visual { min-height: 620px; isolation: isolate; }
.float-scene {
  --float-progress: 1;
  --float-y: 0px;
}
.hero-visual img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 80px 80px 180px;
  filter: drop-shadow(0 34px 62px rgba(7, 20, 47, .14));
  transform: translateY(calc(var(--float-y) * .28));
  opacity: calc(.62 + (var(--float-progress) * .38));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 94%, transparent 100%);
  mask-composite: intersect;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20px -16px -18px 42px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,199,0,.34), transparent 34%),
    radial-gradient(circle at 22% 82%, rgba(46,116,255,.24), transparent 32%);
  filter: blur(4px);
}
.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 160px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 48px rgba(7,20,47,.15);
  backdrop-filter: blur(12px);
  transform: translateY(calc(var(--float-y) * .75));
  opacity: calc(.25 + (var(--float-progress) * .75));
  transition: opacity 180ms linear, transform 180ms linear;
}
.icon-card svg,
.mini-float svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-card strong { color: var(--blue); font-size: 2.2rem; line-height: .9; }
.floating-card span { color: var(--muted); font-weight: 850; }
.card-one { left: -28px; bottom: 84px; }
.card-two { right: -18px; top: 82px; }
.mini-float {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: auto;
}
.card-three { left: 34px; top: 90px; }
.card-four { right: 72px; bottom: 38px; }
.float-orbit {
  position: absolute;
  inset: 7% 0 4% 8%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle at 58% 44%, rgba(255,255,255,.52), transparent 34%), linear-gradient(135deg, rgba(255,199,0,.2), rgba(46,116,255,.16));
  filter: blur(1px);
  opacity: .9;
}

.section-pad { padding: 108px max(24px, calc((100vw - 1360px) / 2)); }
.section-heading { max-width: 780px; margin-bottom: 38px; }
.section-heading.wide { max-width: 980px; }
h2 { margin-bottom: 16px; color: var(--ink); font-size: clamp(2.2rem, 4.65vw, 4.65rem); line-height: .98; letter-spacing: 0; }
h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.24rem; line-height: 1.16; letter-spacing: 0; }
p { color: var(--muted); font-size: 1rem; line-height: 1.65; }

.stats-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(1180px, calc(100% - 48px));
  margin: -42px auto 0;
  padding: 22px 28px;
  border: 1px solid rgba(11, 63, 201, .08);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 58px rgba(7,20,47,.08);
  backdrop-filter: blur(14px);
}
.stat {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 70px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.stat:hover { transform: translateY(-4px); }
.stat strong { display: block; color: var(--ink); font-size: clamp(1.05rem, 1.25vw, 1.28rem); line-height: 1.05; }
.stat span:not(.stat-icon) { display: block; grid-column: 2; max-width: none; margin-top: 2px; color: #4c5a74; font-size: .84rem; font-weight: 850; }
.stat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  margin-bottom: 0;
  border-radius: 14px;
  color: var(--blue);
  background: linear-gradient(135deg, var(--soft-blue), white 55%, var(--soft-yellow));
  box-shadow: inset 0 0 0 1px rgba(11,63,201,.12);
}
.stat-icon-green { color: #10a56f; background: linear-gradient(135deg, #e8fff5, white 55%, #eef9ff); }
.stat-icon-gold { color: #f2a800; background: linear-gradient(135deg, #fff7d7, white 55%, #eef4ff); }
.stat-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro { background: white; }
.intro-grid, .image-split, .queue { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.intro-copy { display: grid; gap: 14px; }
.intro-copy p { max-width: 560px; font-size: 1.14rem; }
.payroll-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.check-list { padding: 0; list-style: none; }
.check-list li,
.check-list p {
  position: relative;
  padding-left: 34px;
}
.check-list li::before,
.check-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--check-color, var(--blue)), var(--blue-2));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--check-color, var(--blue)) 22%, transparent);
}
.check-list li::after,
.check-list p::after {
  content: "";
  position: absolute;
  left: 7px;
  top: calc(.22em + 7px);
  width: 8px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.image-card { margin: 0; position: relative; isolation: isolate; }
.image-card::before {
  content: "";
  position: absolute;
  inset: 10% -4% -6% 12%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(46,116,255,.18), transparent 62%), radial-gradient(circle at 80% 18%, rgba(255,199,0,.2), transparent 42%);
  filter: blur(18px);
}
.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px 130px 36px 96px;
  filter: drop-shadow(0 28px 48px rgba(7, 20, 47, .12));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 62%, rgba(0,0,0,.92) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 62%, rgba(0,0,0,.92) 78%, transparent 100%);
}
.image-card.tall img { aspect-ratio: 4 / 4.6; }
.section-float { position: absolute; left: 3%; bottom: 7%; }
.section-float.right { left: auto; right: 4%; top: 10%; bottom: auto; }

.models { background: var(--paper); }
.spot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.spot-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(11, 63, 201, .13);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.94)),
    white;
  box-shadow: 0 18px 50px rgba(7,20,47,.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.model-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #614a00;
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
}
.model-one { --model: #0b3fc9; }
.model-two { --model: #00a66a; }
.model-three { --model: #7c3aed; }
.model-one,
.model-two,
.model-three { --check-color: var(--model); }
.model-one .card-icon { color: #0b3fc9; }
.model-two .card-icon { color: #00a66a; background: linear-gradient(135deg, #dcfff1, #fff 55%, var(--soft-yellow)); }
.model-three .card-icon { color: #7c3aed; background: linear-gradient(135deg, #f1e9ff, #fff 55%, var(--soft-yellow)); }
.spot-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle 260px at var(--mx,50%) var(--my,50%), rgba(11,63,201,.13), transparent 64%); opacity: 0; transition: opacity 220ms ease; pointer-events: none; }
.spot-card:hover { transform: translateY(-8px); border-color: rgba(11, 63, 201, .32); box-shadow: 0 28px 70px rgba(7,20,47,.13); }
.spot-card:hover::before { opacity: 1; }
.spot-card.featured { border-color: rgba(11,63,201,.36); transform: translateY(-10px); background: linear-gradient(180deg, #fff, #f7fbff); }
.spot-card.featured:hover { transform: translateY(-16px); }
.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(135deg, var(--soft-blue), #fff 55%, var(--soft-yellow));
  box-shadow: inset 0 0 0 1px rgba(11,63,201,.13), 0 14px 30px rgba(11,63,201,.08);
}
.card-icon svg, .mini-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-num, .role-grid span { display: inline-flex; width: fit-content; margin-bottom: 18px; color: var(--blue); font-weight: 950; }
.spot-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; margin: 18px 0 0; list-style: none; }
.spot-card li { color: #30405e; font-size: .94rem; font-weight: 850; }
.spot-card a { margin-top: auto; color: var(--blue); font-weight: 950; }
.model-two a { color: #008d5a; }
.model-three a { color: #6d28d9; }

.image-split { background: linear-gradient(180deg, #fff, #f7faff); }
.benefit-list { display: grid; gap: 10px; margin-top: 24px; }
.benefit-list p { margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.benefit-list.check-list p { padding: 18px 18px 18px 56px; }
.benefit-list.check-list p::before { left: 18px; top: 18px; }
.benefit-list.check-list p::after { left: 25px; top: 25px; }
.benefit-list strong { color: var(--ink); }

.roles { background: white; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.role-grid article {
  min-height: 242px;
  padding: 22px;
  border: 1px solid rgba(11,63,201,.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, var(--role-soft, #f9fbff));
  box-shadow: 0 16px 44px rgba(7,20,47,.06);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.role-grid article::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  margin: -22px 0 20px;
  border-radius: 24px 24px 0 0;
  background: var(--role, var(--blue));
}
.role-ops { --role: #0b3fc9; --role-soft: #f2f6ff; }
.role-tech { --role: #00a6d6; --role-soft: #edfbff; }
.role-code { --role: #6d28d9; --role-soft: #f4efff; }
.role-creative { --role: #ef4aa4; --role-soft: #fff2f8; }
.role-marketing { --role: #0b9b68; --role-soft: #f0fff7; }
.role-care { --role: #0f8f96; --role-soft: #eefbfc; }
.role-sales { --role: #ff8a00; --role-soft: #fff8ec; }
.role-stack { --role: #111827; --role-soft: #f4f7fb; }
.role-grid article .mini-icon { color: var(--role); }
.role-grid article span { color: var(--role); background: color-mix(in srgb, var(--role) 12%, white); }
.role-grid article:hover { transform: translateY(-7px); border-color: rgba(11,63,201,.28); box-shadow: 0 26px 58px rgba(7,20,47,.12); }
.mini-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(135deg, var(--soft-blue), white 60%, var(--soft-yellow));
}
.mini-icon svg { width: 23px; height: 23px; }
.role-grid span { margin-bottom: 22px; padding: 7px 10px; border-radius: 999px; background: var(--soft-blue); font-size: .8rem; }

.pros-showcase {
  background: linear-gradient(180deg, white 0%, #f7fbff 100%);
  overflow: hidden;
}
.pros-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 18px;
}
.pro-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(11,63,201,.1);
  border-radius: 20px;
  background: #eef1f6;
  box-shadow: 0 22px 54px rgba(7,20,47,.08);
}
.pro-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(1) contrast(.96) brightness(1.04);
  transform: scale(1.04);
}
.pro-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 34px rgba(7,20,47,.12);
}
.pro-card strong {
  color: var(--ink);
  font-size: 1.05rem;
}
.pro-card span {
  color: #5a6680;
  font-weight: 850;
}
.pro-blue div { background: #2559f5; }
.pro-blue strong,
.pro-blue span { color: white; }
.pro-mint div { background: #73dfbd; }
.pro-lime div { background: #cfff3c; }

.queue { background: var(--paper); }
.queue .section-heading { margin-bottom: 0; }
.request-board { display: grid; gap: 12px; grid-column: 1 / -1; }
.request-board div { display: grid; grid-template-columns: 52px 1fr auto; gap: 16px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 12px 32px rgba(7,20,47,.05); }
.request-board span { color: var(--blue); font-weight: 950; }
.request-board em { color: var(--muted); font-style: normal; font-weight: 800; }

.pricing { background: white; }
.comparison-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255,199,0,.22), transparent 28%),
    linear-gradient(135deg, #f8fbff, #fff);
  box-shadow: var(--shadow);
}
.comparison-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}
.comparison-copy h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(11,63,201,.16);
  border-radius: 18px;
  background: white;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.comparison-table th {
  padding: 16px;
  color: white;
  background: var(--blue);
  text-align: left;
  font-size: .9rem;
}
.comparison-table th:nth-child(4) { background: #00a66a; }
.comparison-table td {
  padding: 16px;
  border-top: 1px solid rgba(11,63,201,.12);
  color: #30405e;
  font-weight: 750;
}
.comparison-table td:nth-child(4) {
  color: #008d5a;
  font-weight: 950;
  background: #f0fff8;
}

.testimonial-feature {
  background: white;
}
.testimonial-card {
  display: grid;
  grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonial-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #eef1f5;
  box-shadow: 0 22px 50px rgba(7,20,47,.08);
}
.testimonial-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1);
}
.testimonial-copy blockquote {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}
.testimonial-stars {
  margin-bottom: 20px;
  color: #b9f539;
  font-size: 2rem;
  letter-spacing: 2px;
}
.testimonial-copy strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}
.testimonial-copy span {
  color: #5b6680;
  font-weight: 800;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fbfdff; box-shadow: 0 16px 48px rgba(7,20,47,.06); }
.price-card.premium { background: white; border-color: rgba(11,63,201,.36); box-shadow: var(--shadow); transform: translateY(-10px); }
.price-card > span { display: inline-flex; margin-bottom: 14px; padding: 7px 10px; border-radius: 999px; color: #6c5200; background: var(--soft-yellow); font-size: .8rem; font-weight: 950; }
.price-card strong { display: block; margin-bottom: 12px; color: var(--blue); font-size: 1.7rem; }
.price-card .btn { width: 100%; margin-top: 22px; }
.pricing-grid-four { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.pricing-page .price-card { display: flex; flex-direction: column; gap: 12px; }
.pricing-page .price-card p { margin: 0; }
.pricing-page .price-card .check-list { margin: 6px 0 0; }
.pricing-page .price-card .btn { margin-top: auto; }
.pricing-page .support-card strong { display: block; margin-bottom: 16px; color: var(--blue); font-family: var(--display); font-size: clamp(1.5rem, 2vw, 2rem); }
.pricing-comparison-section { padding-top: 0; }
.pricing-scope { background: linear-gradient(180deg, #fff 0%, #f7faff 100%); }
.guide-page .support-card strong { display: block; margin-bottom: 14px; color: var(--blue); font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.8rem); }
.guide-comparison-section { background: white; }
.guide-trust-section { background: linear-gradient(180deg, #fff 0%, #f6f9ff 100%); }
.talent-page .support-card h3 { margin-bottom: 10px; }
.talent-page .support-card p { margin-bottom: 0; }
.talent-process { background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.why-page .support-card p { margin-bottom: 0; }
.why-trust-section { background: linear-gradient(180deg, #fff 0%, #f7faff 100%); }
.contact-page .contact-method-grid article { display: flex; flex-direction: column; }
.contact-page .contact-method-grid a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 950;
  overflow-wrap: anywhere;
}
.scope-library {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 207, 64, .2), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(13, 83, 223, .12), transparent 26%),
    #fff;
}
.scope-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 30px;
  max-width: 1120px;
}
.scope-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid rgba(12, 52, 132, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 12px 34px rgba(7,20,47,.06);
  color: var(--navy);
  font-weight: 950;
}
.scope-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
}
.scope-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(17, 77, 199, .16);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,249,255,.9));
  box-shadow: 0 18px 56px rgba(7,20,47,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.scope-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--yellow));
}
.scope-code .scope-card::before { background: linear-gradient(180deg, #7c3aed, #4f46e5); }
.scope-code .scope-icon { color: #6d28d9; background: linear-gradient(135deg, #f3e8ff, #eef2ff); }
.scope-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 83, 223, .32);
  box-shadow: 0 26px 76px rgba(7,20,47,.12);
}
.scope-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.scope-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef4ff, #fff7d7);
  color: var(--blue);
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(13, 83, 223, .12);
}
.scope-card small {
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf4ff;
  color: #2f4161;
  font-weight: 950;
}
.scope-card h3 { margin-bottom: 10px; font-size: 1.28rem; }
.scope-card p { margin-bottom: 16px; color: var(--muted); line-height: 1.5; }
.tools-cloud-section {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.tools-cloud {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  max-width: 1380px;
  margin: 0 auto;
}
.tools-cloud span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(13, 83, 223, .13);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 20%, color-mix(in srgb, var(--tool-color) 18%, transparent), transparent 48%),
    #fff;
  box-shadow: 0 16px 44px rgba(7,20,47,.08);
  color: #17233d;
  text-align: center;
  font-weight: 950;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tools-cloud img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(7,20,47,.12));
}
.tools-cloud strong {
  display: block;
  color: #17233d;
  font-size: .9rem;
  line-height: 1.15;
}
.tools-cloud span:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 64px rgba(7,20,47,.12);
}

.industries { background: var(--paper); }
.industries .section-heading p:not(.eyebrow) { max-width: 720px; font-size: 1.08rem; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.support-card {
  --support: var(--blue);
  --support-soft: #f2f6ff;
  --check-color: var(--support);
  position: relative;
  min-height: 278px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(11,63,201,.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--support) 16%, transparent), transparent 34%),
    linear-gradient(180deg, #fff, var(--support-soft));
  box-shadow: 0 16px 42px rgba(7,20,47,.065);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.support-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--support);
}
.support-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--support) 38%, transparent);
  box-shadow: 0 28px 62px rgba(7,20,47,.12);
}
.support-icon,
.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 17px;
  color: var(--support, var(--blue));
  background: linear-gradient(135deg, white, color-mix(in srgb, var(--support, var(--blue)) 12%, white));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--support, var(--blue)) 18%, transparent), 0 14px 28px rgba(7,20,47,.06);
}
.support-icon svg,
.step-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.support-card h3 { margin-bottom: 8px; }
.support-card p { margin-bottom: 16px; line-height: 1.48; }
.support-card ul { display: grid; gap: 7px; margin: 0; }
.support-card li { color: #31405d; font-weight: 850; font-size: .92rem; }
.support-card a,
.role-page-grid a {
  align-self: end;
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  color: var(--support, var(--blue));
  font-size: .88rem;
  font-weight: 950;
}
.support-card a:hover,
.role-page-grid a:hover { color: var(--ink); }
.role-page-grid article {
  display: grid;
  align-content: start;
  min-height: 330px;
}
.industry-page-grid .support-card {
  display: grid;
  align-content: start;
  min-height: 315px;
}
.role-page-grid .mini-icon,
.industry-page-grid .support-icon { margin-bottom: 26px; }
.support-realestate { --support: #0b3fc9; --support-soft: #f3f7ff; }
.support-ecommerce { --support: #00a66a; --support-soft: #effff8; }
.support-agency { --support: #7c3aed; --support-soft: #f7f2ff; }
.support-saas { --support: #00a6d6; --support-soft: #effbff; }
.support-clinic { --support: #ef4aa4; --support-soft: #fff3f9; }
.support-care { --support: #0f8f96; --support-soft: #effcfd; }
.support-finance { --support: #ff8a00; --support-soft: #fff8ed; }
.support-legal { --support: #334155; --support-soft: #f5f7fb; }
.support-trades { --support: #c2410c; --support-soft: #fff5ef; }

.process { background: linear-gradient(180deg, #fff, #eef5ff); }
.process-layout {
  display: grid;
  grid-template-columns: minmax(420px, .86fr) minmax(520px, 1.14fr);
  gap: 48px;
  align-items: start;
}
.process-visual {
  position: sticky;
  top: 116px;
  min-height: 650px;
  margin: 0;
  isolation: isolate;
}
.process-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% -4% 8%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 34%, rgba(255,199,0,.24), transparent 34%),
    radial-gradient(circle at 70% 64%, rgba(46,116,255,.2), transparent 42%);
  filter: blur(18px);
}
.process-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 110px 28px 130px 38px;
  filter: drop-shadow(0 30px 56px rgba(7,20,47,.13));
  transition: opacity 260ms ease, transform 520ms var(--ease);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 72%, rgba(0,0,0,.92) 84%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 72%, rgba(0,0,0,.92) 84%, transparent 100%);
}
.process-visual.is-changing img { opacity: .4; transform: scale(.985); }
.process-visual figcaption {
  position: absolute;
  left: 6%;
  right: 8%;
  bottom: 30px;
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 48px rgba(7,20,47,.14);
  backdrop-filter: blur(14px);
}
.process-visual figcaption span { color: var(--blue); font-size: .8rem; font-weight: 950; text-transform: uppercase; }
.process-visual figcaption strong { color: var(--ink); font-family: "Space Grotesk", "Manrope", sans-serif; font-size: 1.35rem; }
.process-visual figcaption p { margin: 0; line-height: 1.5; }
.process-stack {
  position: relative;
  display: grid;
  gap: 14px;
}
.process-stack::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, rgba(11,63,201,.18), rgba(255,199,0,.5), rgba(11,63,201,.18));
}
.process-step {
  --support: var(--blue);
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0 18px;
  align-items: start;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 42px rgba(7,20,47,.065);
  cursor: pointer;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease), background 240ms ease;
}
.process-step:nth-child(2) { --support: #00a66a; }
.process-step:nth-child(3) { --support: #7c3aed; }
.process-step:nth-child(4) { --support: #00a6d6; }
.process-step:nth-child(5) { --support: #ff8a00; }
.process-step:hover,
.process-step:focus-visible,
.process-step.is-active {
  transform: translateX(-10px);
  border-color: color-mix(in srgb, var(--support) 38%, transparent);
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--support) 12%, transparent), transparent 32%),
    white;
  box-shadow: 0 28px 62px rgba(7,20,47,.12);
  outline: none;
}
.process-step.is-active::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 5px;
  border-radius: 999px;
  background: var(--support);
}
.process-step .step-icon { grid-row: span 3; margin: 0; }
.process-step span { color: var(--support); font-size: 1.45rem; font-weight: 950; line-height: 1; }
.process-step h3 { margin-top: 12px; margin-bottom: 8px; }
.process-step p { margin: 0; }

.final-cta { background: white; }
.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  grid-template-areas:
    "copy visual"
    "form form";
  gap: 30px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(11,63,201,.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,199,0,.22), transparent 30%),
    radial-gradient(circle at 75% 20%, rgba(46,116,255,.18), transparent 32%),
    linear-gradient(135deg, #ffffff, #f4f8ff);
  box-shadow: var(--shadow);
}
.cta-card > :first-child {
  grid-area: copy;
}
.cta-visual {
  grid-area: visual;
  position: relative;
  min-height: 360px;
  max-width: 100%;
}
.cta-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 38px 120px 42px 42px;
  filter: drop-shadow(0 24px 46px rgba(7, 20, 47, .12));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, rgba(0,0,0,.86) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 60%, rgba(0,0,0,.86) 78%, transparent 100%);
}
.cta-float-one { left: -18px; bottom: 36px; }
.cta-float-two { right: -8px; top: 30px; }
.cta-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.cta-proof span {
  display: grid;
  gap: 2px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-weight: 850;
}
.cta-proof strong { color: var(--blue); font-size: 1.55rem; line-height: 1; }
.lead-form {
  grid-area: form;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(11,63,201,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 55px rgba(7,20,47,.1);
}
.lead-form h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 1.45rem;
}
.cta-inline-actions {
  grid-area: form;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cta-inline-actions .btn {
  min-width: 170px;
}
.form-intro {
  grid-column: 1 / -1;
  margin: -6px 0 2px;
  font-size: .95rem;
  line-height: 1.5;
}
.field-note {
  color: #6b7890;
  font-size: .8rem;
  font-weight: 750;
}
label.field-full,
.quote-categories,
.consent-line,
.form-error,
.lead-form button,
.lead-form input.hp-field {
  grid-column: 1 / -1;
}
label { display: grid; gap: 8px; color: var(--ink); font-size: .9rem; font-weight: 850; }
input, select, textarea { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid rgba(11,63,201,.16); border-radius: 10px; color: var(--ink); background: #fbfdff; }
input[type="file"] {
  min-height: auto;
  padding: 12px;
}
textarea { min-height: 120px; padding: 12px 13px; resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(11, 63, 201, .35);
  outline-offset: 1px;
}
.quote-categories {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(11,63,201,.16);
  border-radius: 12px;
  display: grid;
  gap: 8px;
}
.quote-categories legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 850;
  font-size: .9rem;
}
.quote-categories label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .88rem;
}
.quote-categories input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
}
.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  font-weight: 700;
}
.consent-line input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 1px;
  padding: 0;
}
.form-error {
  min-height: 20px;
  color: #b42318;
  font-size: .84rem;
  font-weight: 800;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  padding: 76px max(24px, calc((100vw - 1360px) / 2)) 28px;
  color: #4c5a74;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,199,0,.18), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(46,116,255,.16), transparent 28%),
    white;
  border-top: 1px solid var(--line);
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 42px;
  align-items: start;
}
.footer-brand img { width: min(100%, 280px); margin-bottom: 18px; }
.footer-brand p { max-width: 340px; margin-bottom: 22px; }
.footer-contact {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
}
.footer-contact a {
  color: #23314f;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.35;
}
.footer-contact a:hover { color: var(--blue); }
.footer-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-actions .btn { min-height: 44px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: .86rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.footer-links a {
  color: #4c5a74;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.35;
}
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { margin: 0; font-size: .9rem; }
.footer-bottom p a { color: var(--blue); font-weight: 900; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 16px; color: var(--ink); font-size: .9rem; font-weight: 850; }

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 90;
  width: min(900px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(11, 63, 201, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(7, 20, 47, 0.14);
  backdrop-filter: blur(12px);
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}
.cookie-consent.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent p {
  margin: 0;
  color: #30405f;
  font-size: .92rem;
  line-height: 1.45;
}
.cookie-consent a { color: var(--blue); font-weight: 900; }
.cookie-consent .btn {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.legal-page .legal-hero {
  min-height: 560px;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .52fr);
}
.legal-hero-panel {
  align-self: center;
  padding: 34px;
  border: 1px solid rgba(11,63,201,.16);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,250,255,.82)),
    radial-gradient(circle at 20% 0%, rgba(255,199,0,.16), transparent 32%);
  box-shadow: var(--shadow);
}
.legal-hero-panel span {
  display: block;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.legal-hero-panel strong {
  display: block;
  margin: 10px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
}
.legal-hero-panel p { margin: 0; color: #67738c; font-weight: 700; }
.legal-content { padding-top: 84px; }
.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
.legal-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 45px rgba(11,31,69,.08);
}
.legal-index h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
}
.legal-index a {
  color: #52617b;
  font-weight: 850;
  line-height: 1.25;
}
.legal-index a:hover { color: var(--blue); }
.legal-article {
  display: grid;
  gap: 18px;
}
.legal-article section,
.sitemap-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.92)),
    radial-gradient(circle at 100% 0%, rgba(255,199,0,.11), transparent 34%);
  box-shadow: 0 18px 46px rgba(11,31,69,.08);
}
.legal-article h2,
.sitemap-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}
.legal-article p {
  margin: 0 0 12px;
  color: #5e6b84;
  font-weight: 650;
  line-height: 1.75;
}
.legal-article p:last-child { margin-bottom: 0; }
.legal-article a { color: var(--blue); font-weight: 900; }
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.sitemap-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sitemap-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #43516d;
  font-weight: 850;
  line-height: 1.3;
}
.sitemap-card a::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 5px rgba(11,74,218,.08);
}
.sitemap-card a:hover { color: var(--blue); }
.mobile-cta-row {
  display: none;
  gap: 10px;
  margin-top: 8px;
}

.service-page { background: #fff; }
.service-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(440px, .86fr) minmax(520px, 1.14fr);
  gap: 70px;
  align-items: center;
  padding: 142px max(24px, calc((100vw - 1360px) / 2)) 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,199,0,.24), transparent 26%),
    radial-gradient(circle at 86% 24%, rgba(46,116,255,.2), transparent 30%),
    linear-gradient(180deg, #fff, #f4f8ff);
}
.service-hero-copy,
.service-hero-visual { position: relative; z-index: 1; }
.service-hero h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3.6rem, 6.1vw, 6.8rem);
  line-height: .9;
}
.service-hero-visual { min-height: 610px; isolation: isolate; }
.service-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 -4% 6%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 60% 38%, rgba(255,255,255,.72), transparent 35%),
    linear-gradient(135deg, rgba(255,199,0,.22), rgba(46,116,255,.15));
  filter: blur(2px);
}
.service-hero-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 110px 34px 150px 48px;
  filter: drop-shadow(0 34px 62px rgba(7,20,47,.14));
  transform: translateY(calc(var(--float-y) * .22));
  opacity: calc(.7 + (var(--float-progress) * .3));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 70%, rgba(0,0,0,.9) 84%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 70%, rgba(0,0,0,.9) 84%, transparent 100%);
}
.service-card-one { left: -16px; bottom: 82px; }
.service-card-two { right: 18px; top: 92px; }
.service-card-three { right: 56px; bottom: 34px; }
.service-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin: -64px auto 0;
}
.service-proof article {
  min-height: 142px;
  padding: 24px;
  border: 1px solid rgba(11,63,201,.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,199,0,.18), transparent 34%),
    rgba(255,255,255,.92);
  box-shadow: 0 22px 54px rgba(7,20,47,.1);
  backdrop-filter: blur(14px);
}
.service-proof strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  line-height: .95;
}
.service-proof span {
  display: block;
  margin-top: 10px;
  color: #2c3b59;
  font-weight: 900;
}
.service-intro { background: white; }
.service-feature-grid,
.request-type-grid,
.service-steps {
  display: grid;
  gap: 16px;
}
.service-feature-grid { grid-template-columns: repeat(4, 1fr); }
.service-feature-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(11,63,201,.13);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 16px 44px rgba(7,20,47,.06);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.service-feature-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(7,20,47,.11);
}
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  background: var(--paper);
}
.request-types { background: white; }
.request-type-grid { grid-template-columns: repeat(3, 1fr); }
.service-process { background: linear-gradient(180deg, #fff, #eef5ff); }
.service-steps { grid-template-columns: repeat(4, 1fr); }
.service-steps article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(11,63,201,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 42px rgba(7,20,47,.065);
}
.service-steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 24px 24px 0 0;
  background: var(--blue);
}
.service-steps span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 950;
}
.plan-band { background: white; }
.service-note { background: var(--paper); }
.note-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(11,63,201,.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,199,0,.18), transparent 30%),
    white;
  box-shadow: var(--shadow);
}
.note-panel h2 { font-size: clamp(2.1rem, 3.4vw, 3.6rem); }

[data-reveal], .reveal-line { opacity: 0; transform: translateY(22px); transition: opacity 680ms var(--ease), transform 680ms var(--ease); }
[data-reveal].is-visible, .reveal-line.is-visible { opacity: 1; transform: translateY(0); }
.particle-btn { position: relative; overflow: hidden; }
.particle-btn::after { content: ""; position: absolute; inset: -80%; background: radial-gradient(circle, rgba(255,255,255,.52), transparent 8%) 0 0 / 24px 24px; opacity: 0; transition: opacity 220ms ease; }
.particle-btn:hover::after { opacity: .28; animation: particles 900ms linear infinite; }

@keyframes meshFloat { to { transform: translate3d(3%, -4%, 0) scale(1.04); } }
@keyframes strokeFlow { to { background-position: 220% 50%; } }
@keyframes particles { to { transform: translateY(-20px); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
}

@media (max-width: 1280px) {
  .pricing-grid-four { grid-template-columns: repeat(2, 1fr); }
  .scope-card-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-cloud { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1060px) {
  .site-header { grid-template-columns: auto auto; }
  .brand img { width: min(48vw, 220px); }
  .nav-toggle { display: block; justify-self: end; }
  .main-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
    max-height: calc(100svh - 110px);
    overflow: auto;
  }
  body.menu-open .main-nav { display: flex; }
  .nav-group summary { justify-content: space-between; min-height: 42px; }
  .nav-menu,
  .nav-menu-wide {
    position: static;
    min-width: 0;
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 8px;
    transform: none;
    box-shadow: none;
    background: var(--paper);
  }
  .header-cta { display: none; }
  .header-ctas { display: none; }
  .mobile-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero, .service-hero, .intro-grid, .image-split, .queue, .cta-card, .comparison-panel, .process-layout, .service-split, .note-panel { grid-template-columns: 1fr; }
  .testimonial-card {
    grid-template-columns: 1fr;
  }
  .pros-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-card > :first-child,
  .cta-card .cta-visual,
  .cta-card .lead-form,
  .cta-card .cta-inline-actions {
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
  }
  .lead-form { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-visual img { height: auto; aspect-ratio: 4 / 3; }
  .service-hero-visual { min-height: auto; }
  .service-hero-visual img { height: auto; aspect-ratio: 4 / 3; }
  .spot-grid, .pricing-grid { grid-template-columns: 1fr; }
  .role-grid, .industry-grid, .service-feature-grid, .request-type-grid, .service-steps { grid-template-columns: repeat(2, 1fr); }
  .tools-cloud { grid-template-columns: repeat(3, 1fr); }
  .stats-strip, .service-proof { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(n) { --stat-y: 0px; }
  .process-visual { position: relative; top: auto; min-height: auto; }
  .process-visual img { height: auto; aspect-ratio: 4 / 3; }
  .process-step:hover,
  .process-step:focus-visible,
  .process-step.is-active { transform: translateY(-4px); }
}

@media (max-width: 680px) {
  .site-header { top: 10px; width: calc(100% - 20px); padding: 10px; }
  .brand img { width: min(50vw, 190px); }
  .hero { min-height: auto; padding: 124px 18px 62px; gap: 34px; }
  .service-hero { min-height: auto; padding: 124px 18px 62px; gap: 34px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); line-height: .9; }
  .service-hero h1 { font-size: clamp(3rem, 14vw, 4.35rem); line-height: .9; }
  .hero-lede { font-size: 1rem; }
  .hero-actions, .btn { width: 100%; }
  .floating-card { display: none; }
  .hero-visual img { border-radius: 26px 74px 30px 74px; -webkit-mask-image: radial-gradient(ellipse at center, #000 70%, transparent 100%); mask-image: radial-gradient(ellipse at center, #000 70%, transparent 100%); }
  .payroll-list, .cta-proof { grid-template-columns: 1fr; }
  .section-pad { padding: 76px 18px; }
  h2 { font-size: clamp(2.15rem, 10vw, 3.4rem); }
  .stats-strip, .service-proof, .role-grid, .industry-grid, .service-feature-grid, .request-type-grid, .service-steps { grid-template-columns: 1fr; }
  .scope-card-grid, .tools-cloud { grid-template-columns: 1fr; }
  .stats-strip, .service-proof { width: calc(100% - 36px); margin-top: -32px; gap: 12px; }
  .pros-track { grid-template-columns: 1fr; }
  .pro-card,
  .pro-card img { min-height: 330px; }
  .testimonial-card { gap: 28px; }
  .testimonial-copy blockquote { font-size: clamp(1.7rem, 8vw, 2.7rem); }
  .stat { min-height: auto; padding: 20px; }
  .service-proof article { min-height: auto; padding: 20px; }
  .stat strong { font-size: 3rem; }
  .spot-card, .price-card.premium { transform: none; }
  .spot-card ul { grid-template-columns: 1fr; }
  .support-card { min-height: auto; }
  .process-step { grid-template-columns: 1fr; min-height: auto; }
  .process-step .step-icon { margin-bottom: 14px; }
  .process-visual figcaption { position: relative; left: auto; right: auto; bottom: auto; margin: -46px 14px 0; }
  .request-board div { grid-template-columns: 42px 1fr; }
  .request-board em { grid-column: 2; }
  .comparison-panel { padding: 16px; }
  .comparison-copy { padding: 8px; }
  .note-panel { padding: 22px; }
  .cta-card { padding: 22px; }
  .cta-visual { min-height: 260px; }
  .cta-visual img { height: 260px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; }
  .footer-bottom nav { flex-direction: column; }
  .cookie-consent {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  .cookie-consent .btn { width: 100%; }
  .legal-page .legal-hero,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-index {
    position: static;
  }
  .sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-actions .btn { width: 100%; }
  .legal-hero-panel,
  .legal-article section,
  .sitemap-card {
    padding: 22px;
    border-radius: 22px;
  }
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}
