:root {
  --red: #ff101f;
  --red-dark: #c70012;
  --ink: #111111;
  --charcoal: #202020;
  --text: #404040;
  --muted: #6d6d6d;
  --line: #e7e7e7;
  --soft: #f6f6f6;
  --soft-red: #fff1f2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 770px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
}

p {
  margin: 0;
}

.lead {
  max-width: 690px;
  color: var(--charcoal);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-tight {
  padding: clamp(54px, 8vw, 92px) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

.logo-well {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  min-width: 168px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-well img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  content: "";
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(255, 16, 31, 0.26);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.site-header .btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 94px) 0 clamp(76px, 8vw, 112px);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 16, 31, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 span {
  color: var(--red);
}

.hero-copy .lead {
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.trust-float {
  position: absolute;
  right: 18px;
  bottom: 34px;
  display: grid;
  gap: 10px;
  width: min(255px, calc(100% - 36px));
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
  color: var(--ink);
  font-weight: 500;
}

.trust-pill i {
  color: var(--red);
}

.proof-bar {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.proof-item {
  padding: 23px 20px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.2;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 500px;
  color: var(--muted);
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.audience-card {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.audience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.5s ease;
}

.audience-card:hover img {
  transform: scale(1.04);
}

.audience-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 42px);
  background: linear-gradient(180deg, transparent 8%, rgba(0, 0, 0, 0.76) 100%);
  color: var(--white);
}

.audience-content h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.audience-content p {
  max-width: 480px;
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.86);
}

.urgency {
  background: var(--soft);
}

.urgency-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-card,
.service-card,
.credential-card,
.testimonial-card,
.journey-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.mini-card {
  padding: 24px;
}

.mini-card i,
.service-card i,
.journey-card i {
  color: var(--red);
  font-size: 1.25rem;
}

.mini-card h3 {
  margin-top: 16px;
  font-size: 1.12rem;
}

.mini-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.process-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.process-photo {
  position: relative;
}

.process-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.process-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  padding: 18px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
}

.process-stamp strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}

.process-stamp span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.step.dark {
  border-color: var(--ink);
  background: var(--ink);
}

.step.dark h3,
.step.dark p {
  color: var(--white);
}

.step-num {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-red);
  color: var(--red);
  font-weight: 700;
}

.step.dark .step-num {
  background: var(--red);
  color: var(--white);
}

.step p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.09);
}

.service-card h3 {
  margin-top: 18px;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.industries {
  background: var(--soft);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.45s ease;
}

.industry-card:hover img {
  transform: scale(1.05);
}

.industry-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.dark-band {
  overflow: hidden;
  background: #141414;
  color: rgba(255, 255, 255, 0.78);
}

.dark-band h2,
.dark-band h3 {
  color: var(--white);
}

.dark-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.dark-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.dark-proof div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.dark-proof strong {
  display: block;
  color: var(--white);
  font-weight: 600;
}

.dark-proof span {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
}

.dark-image {
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: journey;
}

.journey-card {
  position: relative;
  padding: 30px;
}

.journey-card::before {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  content: counter(journey);
  counter-increment: journey;
  font-weight: 700;
}

.journey-card p {
  margin-top: 10px;
  color: var(--muted);
}

.credentials {
  background: var(--soft);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.credential-card {
  padding: 22px;
}

.credential-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.credential-card strong {
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card .quote {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.testimonial-card .meta {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.jobseeker-band {
  background: linear-gradient(90deg, #ffffff 0%, #fff3f4 100%);
}

.jobseeker-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
}

.benefit-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-weight: 500;
}

.benefit-list i {
  color: var(--red);
}

.rounded-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 26px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.request-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfbfb;
  color: var(--ink);
  font: inherit;
}

.request-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel h2,
.request-form h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-list i {
  margin-top: 5px;
  color: var(--red);
}

.final-cta {
  padding: clamp(54px, 7vw, 82px) 0;
  background: var(--red);
  color: rgba(255, 255, 255, 0.84);
}

.final-cta h2 {
  color: var(--white);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 58px 0 28px;
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 34px;
}

.footer-logo {
  width: 230px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin: 0;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  opacity: 0.86;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--red);
  opacity: 1;
  transform: translateY(-2px);
}

.contact-panel .social-links a {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.contact-panel .social-links {
  margin-bottom: 28px;
}

.map-panel {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(2.4rem, 4.4vw, 4.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.page-hero .lead {
  margin-top: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.simple-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.simple-card p {
  margin-top: 10px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav.open {
    flex-wrap: wrap;
  }

  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 18px;
  }

  .hero-grid,
  .urgency-grid,
  .process-wrap,
  .dark-grid,
  .jobseeker-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-inner,
  .service-grid,
  .credential-grid,
  .testimonial-grid,
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .logo-well {
    width: 156px;
    min-width: 156px;
  }

  .section-head,
  .final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .final-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .image-frame img,
  .process-photo img,
  .rounded-photo {
    height: 390px;
  }

  .trust-float {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .proof-inner,
  .split-cards,
  .pain-grid,
  .field-grid,
  .service-grid,
  .industry-grid,
  .journey-grid,
  .credential-grid,
  .testimonial-grid,
  .content-grid,
  .dark-proof,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .audience-card {
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
