:root {
  --blue: #0677fd;
  --blue-dark: #0455c4;
  --blue-light: #e8f1ff;
  --footer-bg: #242422;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --text: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e5e5e5;
  --section-dark: #1d2327;
  --green: #2e7d32;
  --green-light: #f0f9f0;
  --amber: #e65100;
  --amber-light: #fff8e7;
}
* {
  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;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* ── 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;
}

/* ── MAIN NAV ── */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 16px;
}
.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: 0.2s;
  letter-spacing: 0.2px;
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-link.active {
  color: var(--blue);
  background: var(--blue-light);
}
.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: 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: rgba(6, 119, 253, 0.35) 0px 6px 20px;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  background: var(--section-dark);
  padding: 80px 50px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.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: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(6, 119, 253, 0.2);
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
  max-width: 780px;
}
.hero h1 span {
  color: var(--blue);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 15px 32px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: 0.2s;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: rgba(6, 119, 253, 0.4) 0px 8px 24px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 15px 32px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: 0.2s;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.trust-item .tick {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
}

/* ── WHO SECTION ── */
.section {
  padding: 80px 50px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--blue);
}
.section-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
}

/* ── TWO-PATH INTRO ── */
.paths-section {
  background: var(--off-white);
  padding: 80px 50px;
}
.paths-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.paths-header {
  text-align: center;
  margin-bottom: 52px;
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: 0.3s;
}
.path-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.path-card-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
}
.path-card-header.candidate {
  background: var(--blue-light);
}
.path-card-header.client {
  background: var(--green-light);
}
.path-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.path-icon.candidate {
  background: var(--blue);
  color: white;
}
.path-icon.client {
  background: var(--green);
  color: white;
}
.path-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.path-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.path-card-body {
  padding: 28px 32px 32px;
}
.path-who {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.who-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  background: var(--off-white);
}
.path-promise {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.path-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.path-link:hover {
  gap: 10px;
}

/* ── PROCESS STEPS ── */
.process-section {
  padding: 80px 50px;
  background: white;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 52px;
  background: var(--off-white);
  border-radius: 12px;
  padding: 6px;
  border: 1.5px solid var(--border);
  width: fit-content;
}
.process-tab {
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: 0.2s;
  letter-spacing: 0.3px;
}
.process-tab.active {
  background: var(--blue);
  color: white;
}
.steps-container {
  display: none;
}
.steps-container.active {
  display: block;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step-row:last-child {
  border-bottom: none;
}
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  background: var(--border);
  flex: 1;
  min-height: 40px;
  margin-top: 8px;
}
.step-row:last-child .step-line {
  display: none;
}
.step-content {
  padding-top: 12px;
}
.step-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--blue-light);
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 680px;
}
.step-detail {
  background: var(--off-white);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 14px;
  border-left: 3px solid var(--blue);
}
.step-detail p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}
.step-detail strong {
  color: var(--text);
}

/* ── COMPLIANCE ── */
.compliance-section {
  background: var(--section-dark);
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}
.compliance-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.compliance-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.compliance-header {
  margin-bottom: 52px;
}
.compliance-header .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.compliance-header .section-title {
  color: white;
}
.compliance-header .section-body {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compliance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: 0.2s;
}
.compliance-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 119, 253, 0.3);
}
.compliance-icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.compliance-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.compliance-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.compliance-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  font-weight: 600;
}
.compliance-check::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}

/* ── WHY SECTION ── */
.why-section {
  padding: 80px 50px;
  background: var(--off-white);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-left {
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.why-stat {
  background: white;
  border-radius: 12px;
  padding: 22px;
  border: 1.5px solid var(--border);
}
.why-stat .stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.why-stat .stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.4;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-item {
  background: white;
  border-radius: 12px;
  padding: 22px 24px;
  border: 1.5px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: 0.2s;
}
.why-item:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.why-item-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;
}
.why-item-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.why-item-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── ROLES ── */
.roles-section {
  padding: 80px 50px;
  background: white;
}
.roles-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.roles-header {
  text-align: center;
  margin-bottom: 48px;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.role-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.25s;
  text-decoration: none;
  display: block;
}
.role-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: rgba(6, 119, 253, 0.1) 0px 8px 24px;
}
.role-card .rc-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.role-card .rc-abbr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.role-card .rc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.role-card .rc-desc {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-section {
  padding: 80px 50px;
  background: var(--off-white);
}
.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-left {
}
.faq-left .section-body {
  margin-top: 14px;
}
.faq-cta {
  margin-top: 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  line-height: 1.4;
}
.faq-q:hover {
  color: var(--blue);
}
.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue);
  flex-shrink: 0;
  transition: 0.2s;
  font-weight: 800;
}
.faq-a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 18px;
  display: none;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-item.open .faq-toggle {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 80px 50px;
  background: white;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: 0.2s;
}
.testi-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(6, 119, 253, 0.08);
}
.testi-stars {
  color: var(--blue);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.testi-role {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

/* ── FINAL CTA ── */
.cta-section {
  background: var(--section-dark);
  padding: 80px 50px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(6, 119, 253, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.cta-card {
  border-radius: 16px;
  padding: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  transition: 0.2s;
}
.cta-card:hover {
  border-color: rgba(6, 119, 253, 0.4);
}
.cta-card.candidate {
  background: rgba(255, 255, 255, 0.04);
}
.cta-card.client {
  background: var(--blue);
}
.cta-card .cta-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.cta-card .cta-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.cta-card .cta-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.cta-card.candidate .cta-desc {
  color: rgba(255, 255, 255, 0.6);
}
.cta-card.client .cta-desc {
  color: rgba(255, 255, 255, 0.85);
}
.cta-card .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 200px;
  font-size: 13px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
  transition: 0.2s;
}
.cta-card.candidate .cta-btn {
  background: var(--blue);
  color: white;
}
.cta-card.candidate .cta-btn:hover {
  background: var(--blue-dark);
}
.cta-card.client .cta-btn {
  background: white;
  color: var(--blue-dark);
}
.cta-card.client .cta-btn:hover {
  background: var(--blue-light);
}
.cta-list {
  list-style: none;
  margin-bottom: 24px;
}
.cta-list li {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-card.candidate .cta-list li {
  color: rgba(255, 255, 255, 0.7);
}
.cta-card.client .cta-list li {
  color: rgba(255, 255, 255, 0.9);
}
.cta-list li::before {
  content: "✓";
  font-weight: 800;
  color: white;
  opacity: 0.8;
  flex-shrink: 0;
}

/* ── 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: 270px;
}
.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: 0.2s;
}
.footer-social a:hover {
  background: var(--blue);
  color: white;
}
.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: 0.2s;
}
.app-badge:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul 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);
}

/* ── UTILITIES ── */
.text-center {
  text-align: center;
}
.text-center .section-body {
  margin: 0 auto;
}

.cta-list {
  margin-left: 0 !important;
}

.hero-trust {
  flex-wrap: wrap;
}

.stat-num {
  justify-content: flex-start;
}
.stat-label {
  white-space: wrap !important;
  text-align: left !important;
}
.why-inner,
.compliance-grid,
.paths-grid,
.faq-inner,
.testi-grid,
.cta-inner {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 700px) {
  .compliance-grid,
  .paths-grid,
  .cta-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 900px) {
  .faq-inner {
    grid-template-columns: 340px 1fr;
  }
  .why-inner {
    grid-template-columns: 1fr 1fr;
  }
  .compliance-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
