.home-page .container { width: 100%; max-width: var(--content-max); padding-left: var(--page-gutter); padding-right: var(--page-gutter); }
    /* ── HERO ── */
    .hero {
      position: relative; overflow: hidden; padding: 0;
      min-height: 0; aspect-ratio: 1983 / 793; display: flex; align-items: center;
    }
    .hero-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      z-index: 0;
    }
    .hero-bg-mobile { display: none; }
    .hero-overlay { display: none; }
    .hero-inner {
      position: static;
      width: 100%; padding: 0 clamp(20px,3vw,56px);
    }
    .hero-content {
      position: absolute;
      left: var(--page-gutter);
      bottom: clamp(16px,2vw,34px);
      z-index: 2;
      max-width: none;
    }
    .hero-content > h1,
    .hero-content > .hero-sub,
    .hero-content > .hero-btns { display: none; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.25);
      color: var(--blue); font-size: 11px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 5px 14px; border-radius: 50px; margin-bottom: 24px;
    }
    .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
    .hero h1 {
      font-size: clamp(46px, 5.8vw, 72px); font-weight: 900;
      line-height: 1.06; color: var(--navy-text); margin-bottom: 20px;
    }
    .hero h1 .accent { color: var(--blue); }
    .ibeta-badges {
      display: flex; align-items: center; gap: 14px; margin: 0; padding: 0; flex-wrap: wrap;
    }
    .ibeta-badges a {
      display: block;
      line-height: 0;
      border-radius: 7px;
      transition: transform .2s ease, filter .2s ease;
    }
    .ibeta-badges a:hover { transform: translateY(-3px); filter: drop-shadow(0 9px 14px rgba(15,35,75,.2)); }
    .ibeta-badges a:focus-visible { outline: 3px solid #2563eb; outline-offset: 3px; }
    .ibeta-badges img { display:block;width:clamp(100px,11.1vw,220px);height:auto;object-fit:contain;border-radius:7px; }
    .hero-sub {
      font-size: 15px; color: var(--gray-500); line-height: 1.72;
      margin-bottom: 32px; max-width: 400px;
    }
    .hero-sub .link-accent { color: var(--blue); font-weight: 600; text-decoration: none; }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
    .btn-hero-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; background: var(--blue); color: #fff;
      border-radius: var(--r); font-weight: 700; font-size: 14.5px;
      text-decoration: none; transition: background .18s, box-shadow .18s;
      border: none; cursor: pointer;
    }
    .btn-hero-primary:hover { background: #1D4ED8; box-shadow: 0 6px 20px rgba(37,99,235,.35); }
    .btn-hero-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 24px; background: transparent; color: var(--navy-text);
      border-radius: var(--r); font-weight: 600; font-size: 14.5px;
      text-decoration: none; transition: all .18s;
      border: 1.5px solid #CBD5E1; cursor: pointer;
    }
    .btn-hero-secondary:hover { border-color: var(--blue); color: var(--blue); background: rgba(37,99,235,.04); }


    /* ── TRUST STRIP ── */
    .trust-strip { padding: 28px 0 32px; border-bottom: 1px solid var(--gray-200); background: var(--white); overflow: hidden; }
    .trust-label-head { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--gray-400); text-transform: uppercase; margin-bottom: 20px; }
    .trust-ticker-wrap { overflow: hidden; width: 100%; position: relative; }
    .trust-ticker-wrap::before,
    .trust-ticker-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
    }
    .trust-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
    .trust-ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }
    .trust-ticker {
      display: flex; align-items: center; gap: 56px;
      animation: trustTicker 38s linear infinite;
      width: max-content; padding: 4px 0;
    }
    .trust-ticker img {
      height: 40px; width: auto; max-width: 120px;
      object-fit: contain; flex-shrink: 0;
    }
    @keyframes trustTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ── FEATURE STRIP ── */
    .features-strip { padding: 52px 0; background: var(--white); border-bottom: 1px solid var(--gray-100); }
    .features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
    .feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .feature-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(37,99,235,.04));
      box-shadow: 0 2px 10px rgba(37,99,235,.12);
      display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
    }
    .feature-icon i { font-size: 22px; color: var(--blue); }
    .feature-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
    .feature-item p { font-size: 13px; color: var(--gray-500); line-height: 1.55; }

    /* HIRING FRAUD */
    .fraud-section { padding: 52px 0; background: #fff; border-bottom: 1px solid var(--gray-100); }
    .fraud-head { max-width: 650px; margin: 0 auto 24px; text-align: center; }
    .fraud-head h2 { margin-bottom: 12px; color: var(--navy-text); font-size: clamp(28px,3vw,38px); font-weight: 800; line-height: 1.2; letter-spacing: -.025em; }
    .fraud-head p { color: var(--gray-500); font-size: 15px; line-height: 1.7; }
    .fraud-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 16px; }
    .fraud-card { min-height: 180px; padding: 26px 16px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--gray-200); border-radius: 12px; background: #fff; transition: transform .2s, border-color .2s, box-shadow .2s; }
    .fraud-card:hover { transform: translateY(-4px); border-color: #c7d6f8; box-shadow: 0 12px 30px rgba(24,54,112,.08); }
    .fraud-icon { width: 64px; height: 64px; margin-bottom: 17px; display: grid; place-items: center; border-radius: 50%; font-size: 25px; }
    .fraud-card:nth-child(1) .fraud-icon { color: #7c3aed; background: #f1eafe; }
    .fraud-card:nth-child(2) .fraud-icon { color: #f06b45; background: #fff0ea; }
    .fraud-card:nth-child(3) .fraud-icon { color: #d99a18; background: #fff5d9; }
    .fraud-card:nth-child(4) .fraud-icon { color: #159b73; background: #e5f8f1; }
    .fraud-card:nth-child(5) .fraud-icon { color: #2675db; background: #eaf4ff; }
    .fraud-card:nth-child(6) .fraud-icon { color: #7656d9; background: #f0ecff; }
    .fraud-card h3 { color: var(--navy-text); font-size: 14px; font-weight: 700; line-height: 1.45; }

    /* ── SOLUTIONS TEASER ── */
    .identity-first { padding: 64px 0; background: linear-gradient(180deg,#f7f9fc 0%,#f3f6fb 100%); }
    .identity-first-head { max-width: 680px; margin: 0 auto 34px; text-align: center; }
    .identity-first-title { margin-bottom: 12px; color: var(--navy-text); font-size: clamp(28px,3vw,38px); font-weight: 800; line-height: 1.2; letter-spacing: -.025em; }
    .identity-first-sub { color: var(--gray-500); font-size: 14px; line-height: 1.65; }
    .identity-first-title span,.works-title span { color: var(--blue); }
    .verification-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
    .verification-item { position: relative; min-height: 174px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; overflow: hidden; border: 1px solid #e1e8f2; border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: 0 8px 24px rgba(23,48,92,.055); transition: transform .2s,border-color .2s,box-shadow .2s; }
    .verification-item::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px; border-radius: 0 0 6px 6px; background: var(--blue); opacity: 0; transform: scaleX(.45); transition: opacity .2s,transform .2s; }
    .verification-item:hover { transform: translateY(-4px); border-color: #cddbf3; box-shadow: 0 16px 34px rgba(23,48,92,.1); }
    .verification-item:hover::before { opacity: 1; transform: scaleX(1); }
    .verification-icon { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: #edf3ff; font-size: 20px; box-shadow: inset 0 0 0 1px rgba(37,99,235,.06); }
    .verification-item:nth-child(2) .verification-icon,.verification-item:nth-child(6) .verification-icon,.verification-item:nth-child(8) .verification-icon { color: #0f9f76; background: #e8f8f2; box-shadow: inset 0 0 0 1px rgba(15,159,118,.06); }
    .verification-item:nth-child(3) .verification-icon { color: #ed6842; background: #fff0ea; box-shadow: inset 0 0 0 1px rgba(237,104,66,.06); }
    .verification-item:nth-child(5) .verification-icon { color: #7c5ce0; background: #f1edff; box-shadow: inset 0 0 0 1px rgba(124,92,224,.06); }
    .verification-copy h3 { margin-bottom: 8px; color: var(--navy-text); font-size: 14px; font-weight: 700; line-height: 1.35; }
    .verification-copy p { color: var(--gray-500); font-size: 12.5px; line-height: 1.6; }
    .home-security { padding: 52px 0; background: #fff; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
    .home-security-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 56px; align-items: center; }
    .home-security .section-tag { margin-bottom: 12px; }
    .home-security .section-title { margin-bottom: 10px; }
    .home-security .section-sub { max-width: 590px; }
    .home-security .security-box { margin-top: 28px; padding: 28px; border-color: #dfe8f4; border-radius: 16px; background: linear-gradient(145deg,#f8fbff,#f4f8fc); box-shadow: 0 12px 32px rgba(22,52,105,.06); }
    .home-security .security-box-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
    .home-security .security-box-icon { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(135deg,#10c987,#0ba875); box-shadow: 0 8px 18px rgba(16,201,135,.22); }
    .home-security .security-box h4 { margin: 0 0 4px; font-size: 15px; }
    .home-security .security-box-head p { color: var(--gray-500); font-size: 11.5px; line-height: 1.45; }
    .home-security .security-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 18px; }
    .home-security .security-list li { min-width: 0; line-height: 1.45; }
    .home-certifications { position: relative; padding: 28px; overflow: hidden; border: 1px solid #dce6f5; border-radius: 20px; background: linear-gradient(145deg,#f8fbff 0%,#eef5ff 100%); box-shadow: 0 20px 50px rgba(22,52,105,.1); }
    .home-certifications::before { content: ""; position: absolute; top: -90px; right: -70px; width: 210px; height: 210px; border-radius: 50%; background: rgba(37,99,235,.08); }
    .home-certifications-head { position: relative; margin-bottom: 22px; text-align: center; }
    .home-certifications-head h3 { margin-bottom: 6px; color: var(--navy-text); font-size: 18px; font-weight: 800; }
    .home-certifications-head p { color: var(--gray-500); font-size: 12px; line-height: 1.5; }
    .home-certifications-grid { position: relative; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
    .certification-card { min-width: 0; min-height: 112px; padding: 14px 8px 11px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; border: 1px solid rgba(203,213,225,.75); border-radius: 13px; background: rgba(255,255,255,.92); box-shadow: 0 5px 16px rgba(15,36,75,.055); }
    .certification-card img { width: 74px; height: 64px; object-fit: contain; }
    .certification-card span { color: var(--navy-text); font-size: 10px; font-weight: 700; line-height: 1.25; text-align: center; }
    .works-block { padding-top: 44px; }
    .works-title { margin-bottom: 24px; text-align: center; color: var(--navy-text); font-size: clamp(28px,3vw,36px); font-weight: 800; line-height: 1.2; letter-spacing: -.025em; }
    .works-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 56px; }
    .work-step { position: relative; text-align: center; }
    .work-step:not(:last-child)::after { content: ""; position: absolute; z-index: 0; top: 31px; left: calc(50% + 48px); width: calc(100% + 8px); border-top: 2px dotted #82aaf6; }
    .work-icon { position: relative; z-index: 1; width: 64px; height: 64px; margin: 0 auto 17px; display: grid; place-items: center; border: 1px solid #dce7fb; border-radius: 50%; color: var(--blue); background: #f2f6ff; font-size: 22px; }
    .work-number { position: absolute; right: -2px; bottom: -5px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); border: 3px solid #fff; font-size: 10px; font-weight: 800; }
    .work-step h3 { margin-bottom: 8px; color: var(--navy-text); font-size: 13px; font-weight: 700; line-height: 1.45; }
    .work-step p { color: var(--gray-500); font-size: 11.5px; line-height: 1.55; }

    .hero-play-icon { font-size: 11px; }

    /* ── CTA BANNER ── */
    .industry-section { padding: 52px 0 0; background: #fff; }
    .industry-panel { padding: 12px 0 4px; overflow: hidden; background: #fff; }
    .industry-title { margin-bottom: 30px; padding: 0 24px; text-align: center; color: var(--navy-text); font-size: clamp(28px,3vw,36px); font-weight: 800; letter-spacing: -.025em; }
    .industry-carousel { position: relative; padding: 22px 0; overflow: hidden; border-top: 1px solid #edf1f7; border-bottom: 1px solid #edf1f7; background: linear-gradient(90deg,#fbfdff,#f7faff 50%,#fbfdff); }
    .industry-carousel::before,.industry-carousel::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 72px; pointer-events: none; }
    .industry-carousel::before { left: 0; background: linear-gradient(90deg,#fff,rgba(255,255,255,0)); }
    .industry-carousel::after { right: 0; background: linear-gradient(270deg,#fff,rgba(255,255,255,0)); }
    .industry-track { display: flex; width: max-content; animation: industryScroll 30s linear infinite; will-change: transform; }
    .industry-carousel:hover .industry-track { animation-play-state: paused; }
    .industry-group { display: flex; gap: 28px; padding-right: 28px; }
    .industry-item { width: 118px; flex: 0 0 118px; text-align: center; }
    .industry-icon { width: 62px; height: 62px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 18px; color: var(--blue); background: #eaf1ff; font-size: 24px; transition: transform .2s,background .2s; }
    .industry-item:hover .industry-icon { transform: translateY(-3px); background: #e2ebff; }
    .industry-item:nth-child(3n+2) .industry-icon { color: #0f9f76; background: #e6f7f1; }
    .industry-item:nth-child(3n+2):hover .industry-icon { background: #dcf3eb; }
    .industry-item:nth-child(3n) .industry-icon { color: #7656d9; background: #efebff; }
    .industry-item:nth-child(3n):hover .industry-icon { background: #e7e1ff; }
    .industry-item span { display: block; color: var(--navy-text); font-size: 11.5px; font-weight: 700; line-height: 1.35; }
    @keyframes industryScroll { to { transform: translateX(-50%); } }
    .fraud-cta { position: relative; width: 100%; min-height: 220px; margin-top: 38px; padding: 42px var(--page-gutter); display: grid; grid-template-columns: 1.15fr .75fr .35fr; align-items: center; gap: 30px; overflow: hidden; border: 0; border-radius: 0; background: linear-gradient(120deg,#071633,#081d4d); }
    .fraud-cta h2 { margin-bottom: 12px; color: #fff; font-size: clamp(25px,2.6vw,34px); font-weight: 800; letter-spacing: -.025em; }
    .fraud-cta p { max-width: 490px; color: #cbd4e8; font-size: 14px; line-height: 1.65; }
    .fraud-cta-action { text-align: center; }
    .fraud-cta-button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-width: 220px; padding: 15px 30px; border-radius: 999px; color: #fff; background: #155be7; box-shadow: 0 8px 20px rgba(21,91,231,.28); text-decoration: none; font-size: 13px; font-weight: 700; transition: transform .2s,box-shadow .2s; }
    .fraud-cta-button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,99,235,.32); }
    .fraud-cta-email { margin-top: 13px!important; color: #cbd4e8!important; font-size: 11px!important; }
    .fraud-cta-email a { color: #8ab4ff; font-weight: 700; text-decoration: none; }
    .fraud-cta-shield { position: relative; z-index: 1; width: 98px; height: 112px; display: grid; place-items: center; color: #fff; background: linear-gradient(150deg,#79b7ff,#1765df); clip-path: polygon(50% 0,94% 14%,88% 70%,50% 100%,12% 70%,6% 14%); font-size: 38px; filter: drop-shadow(0 12px 16px rgba(37,99,235,.2)); }
    .fraud-cta::after { content:""; position:absolute; right:-40px; width:240px; height:240px; border-radius:50%; border:1px solid rgba(37,99,235,.1); box-shadow:0 0 0 28px rgba(37,99,235,.035),0 0 0 56px rgba(37,99,235,.025); }

    @media (max-width: 1024px) {
      .fraud-cta { grid-template-columns: 1fr auto; padding: 32px; }
      .fraud-cta-shield { display: none; }
    }
    @media (max-width: 768px) {
      .hero { min-height: 0; aspect-ratio: auto; background: #f4f7ff; }
      .hero-bg-desktop,.hero-bg-mobile,.hero-overlay { display: none; }
      .hero-inner { padding: 48px var(--page-gutter); }
      .hero-content { position: static; max-width: 100%; }
      .hero-content > h1,.hero-content > .hero-sub { display: block; }
      .hero-content > .hero-btns { display: flex; }
      .ibeta-badges { width: fit-content; padding: 0; }
      .hero-ai-label { display: none; }
      .hero h1 { font-size: 32px; line-height: 1.15; margin-bottom: 12px; }
      .ibeta-badges img { width: 120px; height: auto; }
      .hero-sub { font-size: 13px; line-height: 1.55; margin-bottom: 16px; max-width: 100%; }
      .hero-btns { flex-direction: column; gap: 8px; align-items: flex-start; }
      .btn-hero-primary { padding: 11px 20px; font-size: 13.5px; }
      .btn-hero-secondary { display: none; }
      .features-strip,.fraud-section,.identity-first,.home-security,.industry-section { padding: 44px 0; }
      .industry-section { padding-bottom: 0; }
      .features-grid { grid-template-columns: repeat(2,1fr); }
      .fraud-head { margin-bottom: 24px; }
      .fraud-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
      .fraud-card { min-height: 160px; padding: 22px 12px; }
      .identity-first-head { margin-bottom: 28px; }
      .verification-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
      .verification-item { min-height: 160px; padding: 22px; }
      .home-security-grid { grid-template-columns: 1fr; gap: 32px; }
      .home-certifications { max-width: 620px; width: 100%; margin: 0 auto; }
      .home-security .security-list { grid-template-columns: 1fr; }
      .works-block { padding-top: 42px; }
      .works-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px 48px; }
      .work-step::after { display: none; }
      .fraud-cta { grid-template-columns: 1fr auto; padding: 32px; }
      .fraud-cta-shield { display: none; }
    }
    @media (min-width: 769px) and (max-width: 1000px) {
      .hero-content { bottom: 8px; }
      .ibeta-badges { gap: 7px; padding: 0; }
      .ibeta-badges img { width: 100px; height: auto; }
    }
    @media (max-width: 420px) {
      .hero { min-height: 0; }
      .hero-inner { padding: 40px var(--page-gutter); }
      .hero h1 { font-size: 26px; }
      .hero-sub { font-size: 12px; }
      .ibeta-badges img { width: 104px; height: auto; }
      .btn-hero-primary { padding: 10px 16px; font-size: 13px; }
      .features-strip,.fraud-section,.identity-first,.home-security,.industry-section { padding: 40px 0; }
      .industry-section { padding-bottom: 0; }
      .fraud-head { margin-bottom: 24px; }
      .fraud-head h2 { font-size: 26px; }
      .fraud-head p { font-size: 13px; }
      .fraud-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
      .fraud-card { min-height: 145px; }
      .fraud-icon { width: 56px; height: 56px; margin-bottom: 14px; font-size: 22px; }
      .identity-first-title { font-size: 26px; }
      .works-title { margin-bottom: 22px; font-size: 26px; }
      .identity-first-sub { font-size: 13px; }
      .verification-grid { grid-template-columns: 1fr; }
      .verification-item { min-height: 0; padding: 20px; flex-direction: row; align-items: center; gap: 16px; }
      .home-certifications { padding: 22px 16px; }
      .home-certifications-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
      .certification-card { min-height: 104px; }
      .works-block { padding-top: 38px; }
      .works-grid { grid-template-columns: 1fr; gap: 30px; }
      .work-step p { max-width: 260px; margin: 0 auto; }
      .industry-panel { padding: 8px 0 0; }
      .industry-title { margin-bottom: 24px; font-size: 26px; }
      .industry-carousel::before,.industry-carousel::after { width: 34px; }
      .industry-group { gap: 20px; padding-right: 20px; }
      .industry-item { width: 104px; flex-basis: 104px; }
      .industry-icon { width: 56px; height: 56px; font-size: 21px; }
      .fraud-cta { margin-top: 28px; padding: 28px 22px; grid-template-columns: 1fr; gap: 24px; text-align: center; }
      .fraud-cta p { margin: 0 auto; }
      .fraud-cta-button { width: 100%; min-width: 0; }
    }
