/* ─── EXACT BRAND TOKENS ─────────────────────────── */
:root {
  --blue: #0677fd;
  --blue-dark: #0455c4;
  --blue-light: #e8f1ff;
  --footer-bg: #242422;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --hero-bg: #f9f2f2;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e5e5e5;
  --section-dark: #1d2327;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── TOP BAR ────────────────────────────────────── */
.top-bar {
  background: var(--section-dark);
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar-contact:hover {
  color: white;
}
.top-bar-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  flex-shrink: 0;
}
.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}
.top-bar-social {
  display: flex;
  gap: 8px;
}
.top-bar-social a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.top-bar-social a:hover {
  background: var(--blue);
  color: white;
}

/* ─── NAVIGATION ─────────────────────────────────── */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.nav-logo-text small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
  letter-spacing: 0.2px;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-link.has-drop::after {
  content: " ▾";
  font-size: 9px;
}
.nav-cta {
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 200px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(6, 119, 253, 0.35);
  transform: translateY(-1px);
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background: var(--hero-bg);
  min-height: 85vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
.hero-content {
  padding: 90px 60px 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 200px;
  margin-bottom: 28px;
  width: fit-content;
  border: 1px solid rgba(6, 119, 253, 0.2);
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}
.hero h1 .accent {
  color: var(--blue);
}
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-blue {
  background: var(--blue);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 200px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 119, 253, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 200px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--blue);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.btn-ghost:hover {
  background: var(--blue-light);
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
  white-space: nowrap;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--hero-bg) 0%, transparent 20%);
  z-index: 1;
  pointer-events: none;
}
.hero-floating-card {
  position: absolute;
  bottom: 44px;
  right: 32px;
  background: white;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
  max-width: 260px;
  white-space: nowrap;
}
.hero-floating-card-2 {
  position: absolute;
  bottom: 44px;
  right: 308px;
  background: white;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
  animation-delay: 1.5s;
  max-width: 260px;
  white-space: nowrap;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.card-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.floating-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.floating-card-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 2px;
}

/* ─── TRUST STRIP ────────────────────────────────── */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 18px 50px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}
.trust-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-check {
  width: 18px;
  height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SHARED SECTION STYLES ──────────────────────── */
.section {
  padding: 90px 50px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.3px;
  text-transform: capitalize;
}
.section-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 520px;
  margin-top: 14px;
}

/* ─── HOW WE HELP ────────────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.help-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.help-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 26px 22px;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}
.help-card:hover {
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.35);
  transform: translateY(-3px);
}
.help-card:hover .help-card-icon {
  background: rgba(255, 255, 255, 0.2);
}
.help-card:hover .help-card-title {
  color: white;
}
.help-card:hover .help-card-desc {
  color: rgba(255, 255, 255, 0.75);
}
.help-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: background 0.3s;
}
.help-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.help-card-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
  transition: color 0.3s;
}
.help-card.blue {
  background: var(--blue);
  border-color: transparent;
  grid-column: span 2;
  display: flex;
  gap: 18px;
  align-items: center;
}
.help-card.blue .help-card-icon {
  background: rgba(255, 255, 255, 0.2);
}
.help-card.blue .help-card-title {
  color: white;
  margin-bottom: 4px;
}
.help-card.blue .help-card-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── SPECIALITIES (dark section) ───────────────── */
.specialities-section {
  background: var(--section-dark);
  padding: 90px 50px;
}
.specialities-section .section-eyebrow {
  color: #7eb3ff;
}
.specialities-section .section-title {
  color: white;
}
.specialities-section .section-body {
  color: rgba(255, 255, 255, 0.55);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 26px 20px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.spec-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.spec-card:hover {
  background: var(--blue);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.4);
}
.spec-card:hover::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.4);
}
.spec-card:hover .spec-abbr {
  color: rgba(255, 255, 255, 0.8);
}
.spec-card:hover .spec-desc {
  color: rgba(255, 255, 255, 0.75);
}
.spec-emoji {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}
.spec-abbr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 6px;
  display: block;
}
.spec-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.spec-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}
.spec-footer {
  margin-top: 44px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 44px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── WHY CHOOSE US ─────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--off-white);
  padding: 90px 50px;
}
.why-image-wrap {
  position: relative;
}
.why-image-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.why-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-image-badge {
  position: absolute;
  top: 28px;
  left: -24px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(6, 119, 253, 0.4);
  letter-spacing: 0.3px;
}
.why-image-stat {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: white;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.why-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.why-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 4px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
}
.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 14px;
  border-left: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}
.why-point:hover {
  background: var(--blue);
  border-left-color: rgba(255, 255, 255, 0.4);
  transform: translateX(4px);
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.35);
}
.why-point:hover .why-point-icon {
  background: rgba(255, 255, 255, 0.2);
}
.why-point:hover .why-point-title {
  color: white;
}
.why-point:hover .why-point-desc {
  color: rgba(255, 255, 255, 0.75);
}
.why-point-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.why-point-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  transition: color 0.3s;
}
.why-point-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  transition: color 0.3s;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonials-section {
  background: white;
  padding: 90px 50px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.test-grid .test-card:nth-child(4) {
  grid-column: 1 / 2;
}
.test-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 30px 26px;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}
.test-card:hover {
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.35);
  transform: translateY(-3px);
}
.test-card:hover .test-quote {
  color: white;
  opacity: 0.4;
}
.test-card:hover .test-text {
  color: rgba(255, 255, 255, 0.85);
}
.test-card:hover .test-author {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.test-card:hover .test-avatar {
  background: rgba(255, 255, 255, 0.2);
}
.test-card:hover .test-name {
  color: white;
}
.test-card:hover .test-role {
  color: rgba(255, 255, 255, 0.55);
}
.test-card.featured-test {
  background: var(--blue);
}
.test-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 14px;
}
.test-quote {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 0.6;
  margin-bottom: 14px;
  opacity: 0.3;
  transition:
    color 0.3s,
    opacity 0.3s;
}
.test-card.featured-test .test-quote {
  color: white;
}
.test-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  transition: color 0.3s;
}
.test-card.featured-test .test-text {
  color: rgba(255, 255, 255, 0.85);
}
.test-author {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s;
}
.test-card.featured-test .test-author {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s;
}
.test-card.featured-test .test-avatar {
  background: rgba(255, 255, 255, 0.2);
}
.test-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s;
}
.test-card.featured-test .test-name {
  color: white;
}
.test-role {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
  transition: color 0.3s;
}
.test-card.featured-test .test-role {
  color: rgba(255, 255, 255, 0.55);
}

/* ─── REFER SECTION ─────────────────────────────── */
.refer-section {
  background: var(--blue);
  padding: 80px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.refer-amount {
  font-size: 80px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin: 16px 0;
}
.refer-amount sup {
  font-size: 36px;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}
.refer-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.refer-section .section-title {
  color: white;
}
.refer-section .section-body {
  color: rgba(255, 255, 255, 0.7);
}
.refer-form {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.form-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  text-transform: uppercase;
}
.form-input,
.form-select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--off-white);
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--blue);
  background: white;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 200px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 119, 253, 0.4);
}

/* ─── CONTACT ───────────────────────────────────── */
.contact-section {
  background: var(--off-white);
  padding: 90px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child {
  border-top: 1px solid var(--border);
}
.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.contact-map-wrap {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  background: #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.contact-form-wrap .form-group {
  margin-bottom: 14px;
}
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color 0.2s;
}
.form-textarea:focus {
  border-color: var(--blue);
  background: white;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.55);
  padding: 70px 50px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.footer-brand-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.footer-brand-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 570px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--blue);
  color: white;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 18px;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-app-badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.app-badge {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.app-badge:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* ─── REC BADGE ─────────────────────────────────── */
.rec-strip {
  background: white;
  border-top: 1px solid var(--border);
  padding: 20px 50px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.rec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}
.rec-item img {
  height: 32px;
  opacity: 0.6;
}

.val-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.val-card:hover {
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.4);
}
.val-card:hover .val-icon {
  background: rgba(255, 255, 255, 0.2);
}
.val-card:hover .val-bar {
  background: rgba(255, 255, 255, 0.4);
}
.val-card:hover .val-desc {
  color: rgba(255, 255, 255, 0.75);
}
.val-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.val-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transition: background 0.3s;
}
.val-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  transition: color 0.3s;
}

.anim-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-word.in {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-fade.in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   SHR GROUP — RESPONSIVE / MOBILE CSS
   ═══════════════════════════════════════════════════════════════ */

/* ─── HAMBURGER BUTTON (hidden on desktop) ─────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover {
  background: var(--blue-light);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  padding: 16px 20px 24px;
  z-index: 999;
}
.mobile-nav-drawer.open {
  display: flex;
}
.mobile-nav-drawer .nav-link {
  font-size: 15px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 600;
}
.mobile-nav-drawer .nav-link:last-of-type {
  border-bottom: none;
}
.mobile-nav-drawer .nav-cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  background: var(--blue);
  color: white;
  border-radius: 200px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
}

/* ════════════════════════════════════════════════════════
   TABLET (900px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .main-nav {
    padding: 0 24px;
    position: relative;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .top-bar {
    padding: 8px 24px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 60px 24px 48px;
  }
  .hero-image-wrap {
    height: 320px;
    order: -1;
  }
  .hero-image-wrap::before {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--hero-bg) 100%
    );
  }
  .hero-stats {
    gap: 24px;
    padding-top: 28px;
    flex-wrap: wrap;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .btn-blue,
  .btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-floating-card,
  .hero-floating-card-2 {
    display: none;
  }
  .trust-strip {
    padding: 14px 24px;
    gap: 16px;
  }
  .trust-sep {
    display: none;
  }
  .section {
    padding: 60px 24px;
  }
  .why-grid {
    padding: 60px 24px;
    gap: 48px;
    grid-template-columns: 1fr;
  }
  .help-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .help-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
  }
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .refer-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   MOBILE (480px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .top-bar {
    display: none;
  }
  .main-nav {
    padding: 0 16px;
    height: 68px;
  }
  .nav-logo img {
    width: 40px;
    height: 40px;
  }
  .nav-logo-text {
    font-size: 12px;
  }
  .nav-logo-text small {
    font-size: 9px;
  }
  .hero-content {
    padding: 40px 16px 36px;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .hero-image-wrap {
    height: 240px;
  }
  .stat-num {
    font-size: 24px;
  }
  .hero-buttons {
    align-items: stretch;
  }
  .btn-blue,
  .btn-ghost {
    max-width: 100%;
  }
  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .trust-items {
    gap: 10px;
  }
  .section {
    padding: 48px 20px;
  }
}
  .why-grid {
    padding: 48px 16px;
  }
  .refer-section {
    padding: 48px 16px;
  }
  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .help-cards-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer {
    padding: 48px 16px 24px;
  }
  .why-image-badge {
    display: none;
  }
  .section-eyebrow {
    font-size: 10px;
  }
}

/* ══ ABOUT PAGE EXTRA STYLES ══ */
.page-hero {
  background: var(--section-dark);
  padding: 90px 60px 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.13) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  align-items: center;
}

@media screen and (min-width: 870px) {
  .page-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(6, 119, 253, 0.12);
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(6, 119, 253, 0.2);
  margin-bottom: 22px;
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.page-hero h1 span {
  color: var(--blue);
}
.page-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-blue-round {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.btn-blue-round:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 119, 253, 0.4);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 14px 28px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  transition: 0.2s;
  cursor: pointer;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
}
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 600;
}
.trust-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: white;
  flex-shrink: 0;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hsg-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 24px 20px;
  transition: 0.2s;
}
.hsg-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(6, 119, 253, 0.35);
}
.hsg-num {
  font-size: 34px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.hsg-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  line-height: 1.4;
}
.hsg-card.wide {
  grid-column: 1/-1;
}
.hsg-card.wide .hsg-num {
  font-size: 22px;
}

/* page sections */
.ab-section {
  padding: 80px 60px;
}
.ab-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ab-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.ab-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.ab-title span {
  color: var(--blue);
}
.ab-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 640px;
}
.ab-header {
  margin-bottom: 52px;
}
.ab-header.center {
  text-align: center;
}
.ab-header.center .ab-body {
  margin: 0 auto;
}

/* what-we-do cards */
.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 760px) {
  .what-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.what-card {
  background: white;
  border: 1.5px solid #e5e5e5;
  border-radius: 16px;
  padding: 28px;
  transition: 0.25s;
}
.what-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(6, 119, 253, 0.09);
}
.wc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: 0.2s;
}
.what-card:hover .wc-icon {
  background: var(--blue);
}
.wc-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.wc-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* market section */
.market-bg {
  background: var(--section-dark);
  position: relative;
  overflow: hidden;
}
.market-bg::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.1) 0%,
    transparent 65%
  );
}
.market-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

@media screen and (min-width: 760px) {
  .market-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}
.market-sector {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  transition: 0.2s;
  margin-bottom: 12px;
}
.market-sector:hover {
  background: rgba(6, 119, 253, 0.15);
  border-color: rgba(6, 119, 253, 0.35);
}
.ms-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.ms-label {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}
.ms-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.mstat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.2s;
  margin-bottom: 12px;
}
.mstat:hover {
  background: rgba(255, 255, 255, 0.08);
}
.mstat-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--blue);
  min-width: 72px;
  flex-shrink: 0;
  white-space: nowrap;
}
.mstat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* roles grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media screen and (min-width: 670px) {
  .roles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.role-card {
  background: #f8f8f8;
  border: 1.5px solid #e5e5e5;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: 0.25s;
}

.role-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}

.rc-emoji {
  font-size: 28px;
  margin-bottom: 10px;
}
.rc-abbr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 4px;
}
.rc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.rc-type {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

/* recruitment types */
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media screen and (min-width: 1000px) {
  .recruit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.recruit-card {
  background: white;
  border: 1.5px solid #e5e5e5;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s;
}
.recruit-card:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(6, 119, 253, 0.1);
}
.rc-head {
  padding: 26px 28px 20px;
  border-bottom: 1px solid #e5e5e5;
}
.rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.rc-badge.locum {
  background: #e8f5e9;
  color: #2e7d32;
}
.rc-badge.perm {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.rc-badge.flex {
  background: #fff3e0;
  color: #e65100;
}
.rc-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.rc-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}
.rc-body {
  padding: 24px 28px;
}
.rc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}
.rc-list li::before {
  content: "✓";
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.rc-foot {
  padding: 16px 28px 24px;
}

/* why section */
.why-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

@media screen and (min-width: 760px) {
  .why-panel {
    grid-template-columns: 1fr 1fr;
  }
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #f8f8f8;
  border: 1.5px solid #e5e5e5;
  border-radius: 14px;
  transition: 0.2s;
}
.why-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.wi-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: 0.2s;
}
.why-item:hover .wi-icon {
  background: var(--blue);
}
.wi-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.wi-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}
.why-testi {
  background: var(--section-dark);
  border-radius: 20px;
  padding: 36px;
  position: sticky;
  top: 100px;
}
.wt-stars {
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.wt-quote {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.wt-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wt-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.wt-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
}
.wt-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.wt-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.wts-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--blue);
}
.wts-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

/* compliance */
.comp-bg {
  background: var(--section-dark);
  padding: 60px;
}
.comp-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.comp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media screen and (min-width: 760px) {
  .comp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1260px) {
  .comp-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.comp-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 16px;
  transition: 0.2s;
}
.comp-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(6, 119, 253, 0.3);
}
.comp-icon {
  font-size: 18px;
  margin-bottom: 10px;
}
.comp-title {
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.comp-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* process */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media screen and (min-width: 960px) {
  /* process */
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.proc-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.proc-label.cand {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.proc-label.client {
  background: #e8f5e9;
  color: #2e7d32;
}
.proc-steps {
  display: flex;
  flex-direction: column;
}
.proc-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  align-items: start;
}
.proc-step:last-child {
  border-bottom: none;
}
.ps-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ps-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-line {
  width: 2px;
  background: #e5e5e5;
  flex: 1;
  min-height: 32px;
  margin-top: 8px;
}
.proc-step:last-child .ps-line {
  display: none;
}
.ps-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 50px;
  background: var(--blue-light);
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.ps-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.ps-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}
.ps-detail {
  background: #f8f8f8;
  border-left: 3px solid var(--blue);
  padding: 10px 14px;
  margin-top: 10px;
  border-radius: 0 6px 6px 0;
}
.ps-detail p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* cta cards */
.cta-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media screen and (min-width: 760px) {
  .cta-pair {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-card {
  border-radius: 20px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.cta-card.cand-card {
  background: var(--section-dark);
}
.cta-card.client-card {
  background: var(--blue);
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-icon {
  font-size: 36px;
  margin-bottom: 18px;
}
.cta-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.cta-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 0px;
}
.cta-card.cand-card .cta-desc {
  color: rgba(255, 255, 255, 0.6);
}
.cta-card.client-card .cta-desc {
  color: rgba(255, 255, 255, 0.85);
}
.cta-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  margin-left: 0 !important;
}
.cta-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
}
.cta-card.cand-card .cta-perks li {
  color: rgba(255, 255, 255, 0.65);
}
.cta-card.client-card .cta-perks li {
  color: rgba(255, 255, 255, 0.9);
}
.cta-perks li::before {
  content: "✓";
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.cta-card.cand-card .cta-btn {
  background: var(--blue);
  color: white;
}
.cta-card.cand-card .cta-btn:hover {
  background: var(--blue-dark);
}
.cta-card.client-card .cta-btn {
  background: white;
  color: var(--blue-dark);
}
.cta-card.client-card .cta-btn:hover {
  background: var(--blue-light);
}

/* override sticky nav top for this page */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}



.page-hero{background:var(--section-dark);padding:90px 60px 100px;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;top:-60px;right:-60px;width:600px;height:600px;/*! background:radial-gradient(circle,rgba(6,119,253,.13) 0%,transparent 65%); */pointer-events:none;}
.page-hero::after{content:'';position:absolute;bottom:-80px;left:-40px;width:400px;height:400px;/*! background:radial-gradient(circle,rgba(6,119,253,.07) 0%,transparent 65%); */pointer-events:none;}
#contact{
    padding-top: 0 !important
}

.no-padding-bottom {
    padding-bottom: 30px !important;
}