/* ============================================
   HECTOR HOMEPAGE 2026 — WORDPRESS STYLESHEET
   Pairs with page-home.php + hector-home.js
   ============================================ */

/* Font Faces */
@font-face {
  font-family: 'Red Hat Text Regular';
  font-style: normal;
  font-weight: normal;
  src: url('https://fonts.gstatic.com/s/redhattext/v14/RrQXbohi_ic6B3yVSzGBrMxQbb0jEzlC.woff2') format('woff2');
}

@font-face {
  font-family: 'Red Hat Text Bold';
  font-style: normal;
  font-weight: bold;
  src: url('https://fonts.gstatic.com/s/redhattext/v14/RrQXbohi_ic6B3yVSzGBrMxQbb0jEzlC.woff2') format('woff2');
}

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  --color-dark-bg: #1A1A1A;
  --color-dark-bg-header: #1E1E1E;
  --color-orange: #DE4A00;
  --color-orange-glow: #FF5C00;
  --color-warm-bg: #F9F5F0;
  --color-warm-accent: #FFF3ED;
  --color-text-dark: #1A1A1A;
  --color-text-body: #141414;
  --color-text-light: #E0E0E0;
  --color-white: #ffffff;

  --font-primary: 'Red Hat Text', sans-serif;
  --font-bold: 700;
  --font-medium: 500;
  --font-regular: 400;

  --max-width: 1200px;
  --section-padding: 6rem 10%;
  --card-radius: 20px;
  --card-padding: 2rem;
  --btn-radius: 8px;

  --transition-default: all 0.3s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-regular);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  outline: none;
}

main a {
  color: inherit;
}

main a:visited,
main a:link,
main a:hover,
main a:active {
  color: var(--color-white);
}

/* ============================================
   HEADER
   ============================================ */
/* Hide the theme's default footer since we have our own */
#colophon {
  display: none !important;
}

/* ============================================
   HERO GRID SECTION
   ============================================ */

/* ---- Shimmer keyframes ---- */
@keyframes hero-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes hero-grain {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -2%);
  }

  30% {
    transform: translate(1%, -1%);
  }

  50% {
    transform: translate(-1%, 2%);
  }

  70% {
    transform: translate(3%, 1%);
  }

  90% {
    transform: translate(1%, -2%);
  }
}

@keyframes hero-glow-pulse {

  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.35;
    transform: translateX(-50%) scale(1.05);
  }
}

.hero-grid {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding-bottom: 0;
  background: var(--color-dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Grain texture overlay ---- */
.hero-grid__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: hero-grain 8s steps(10) infinite;
}

/* ---- Decorative three-column grid overlay ---- */
.hero-grid__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: clamp(28px, 10vw, 120px) 1fr clamp(28px, 10vw, 120px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.hero-grid__overlay-col {
  height: 100%;
}

.hero-grid__overlay-col--center {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

/* ---- Ambient glow effects (intensified) ---- */
.hero-grid__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.hero-grid__glow--bottom {
  width: 600px;
  aspect-ratio: 1;
  left: 50%;
  bottom: -60%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(222, 74, 0, 0.35) 0%, rgba(255, 92, 0, 0.12) 50%, transparent 70%);
  filter: blur(180px);
  animation: hero-glow-pulse 6s ease-in-out infinite;
}

.hero-grid__glow--left {
  display: none;
  width: 32vw;
  aspect-ratio: 1;
  left: 4vw;
  top: 64px;
  background: rgba(222, 74, 0, 0.06);
  opacity: 0.5;
  filter: blur(120px);
}

.hero-grid__glow--right {
  display: none;
  width: 30vw;
  aspect-ratio: 1;
  right: 7vw;
  bottom: -50px;
  background: rgba(222, 74, 0, 0.06);
  opacity: 0.5;
  filter: blur(120px);
}

@media (min-width: 768px) {

  .hero-grid__glow--left,
  .hero-grid__glow--right {
    display: block;
  }
}

/* ---- Inner content wrapper ---- */
.hero-grid__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding-top: calc(60px + 5%);
}

/* ---- Decorative dividers between rows ---- */
.hero-grid__avatars-row,
.hero-grid__content,
.hero-grid__ctas-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ---- Social proof badge (glassmorphism) ---- */
.hero-grid__avatars-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero-grid__avatars-box {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-grid__avatars {
  display: flex;
}

.hero-grid__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  margin-left: -10px;
  transition: transform 0.25s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-grid__avatar:first-child {
  margin-left: 0;
}

.hero-grid__avatar:hover {
  transform: scale(1.15);
  z-index: 2;
}

.hero-grid__avatars-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: var(--font-medium);
  letter-spacing: 0.3px;
}

/* ---- Title + Subtitle (tighter grouping) ---- */
.hero-grid__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 2.5rem clamp(1rem, 8vw, 6rem) 2rem;
  gap: 20px;
}

.hero-grid__title {
  max-width: 960px;
  text-align: center;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: var(--font-bold);
  line-height: 1.05;
  letter-spacing: -1.44px;
  color: var(--color-white);
  text-wrap: balance;
  margin: 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

/* ---- Shimmer highlight on "Reinforces It." ---- */
.hero-grid__title-highlight {
  background: linear-gradient(90deg,
      var(--color-orange) 0%,
      #FF8A3D 25%,
      #FFB347 50%,
      #FF8A3D 75%,
      var(--color-orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-shimmer 4s linear infinite;
}

.hero-grid__subtitle {
  max-width: 680px;
  text-align: center;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  font-weight: var(--font-regular);
  text-wrap: balance;
  margin: 0;
}

/* ---- CTAs (side-by-side pills) ---- */
.hero-grid__ctas-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 clamp(1rem, 5vw, 6rem) 5rem;
  border-bottom: none;
}

.hero-grid__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  padding-top: 2rem;
}

.hero-grid__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  height: 54px;
  font-size: 15px;
  font-weight: var(--font-bold);
  font-family: var(--font-primary);
  text-decoration: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

/* Primary CTA — filled orange with glow */
.hero-grid__cta--filled {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-glow) 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 92, 0, 0.3);
  box-shadow: 0 0 20px rgba(222, 74, 0, 0.2), 0 0 60px rgba(222, 74, 0, 0.08);
  padding: 0 28px;
}

.hero-grid__cta--filled:hover {
  background: linear-gradient(135deg, var(--color-orange-glow) 0%, #FF8A3D 100%);
  box-shadow: 0 0 30px rgba(222, 74, 0, 0.4), 0 0 80px rgba(222, 74, 0, 0.15);
  transform: translateY(-2px);
}

.hero-grid__cta--filled:active {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(222, 74, 0, 0.25);
}

/* Arrow icon animation */
.hero-grid__cta-icon {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.hero-grid__cta--filled:hover .hero-grid__cta-icon {
  transform: translateX(4px);
}

/* Secondary CTA — glass outline with shimmer sweep */
.hero-grid__cta--outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 28px;
  position: relative;
  overflow: hidden;
}

.hero-grid__cta--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.06) 40%,
      rgba(255, 255, 255, 0.12) 50%,
      rgba(255, 255, 255, 0.06) 60%,
      transparent 80%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  border-radius: inherit;
}

.hero-grid__cta--outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-grid__cta--outline:hover::before {
  transform: translateX(100%);
}

.hero-grid__cta--outline:active {
  transform: translateY(0);
}


/* ============================================
   RECRUITMENT SOLUTIONS
   ============================================ */

.recruitment-solutions {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--color-warm-bg) 0%, #FFF8F4 50%, var(--color-warm-bg) 100%);
  position: relative;
}

.recruitment-solutions__container {
  max-width: var(--max-width);
  margin: auto;
}

.recruitment-solutions__header {
  text-align: center;
  padding-bottom: 5rem;
}

.recruitment-solutions__header--problem {
  padding-bottom: 3rem;
}

.recruitment-solutions__main-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-text-dark);
  font-weight: var(--font-bold);
  margin: 0;
  line-height: 1.25;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.recruitment-solutions__main-title span {
  color: var(--color-orange);
}

.recruitment-solutions__subtitle {
  font-size: 40px;
  color: var(--color-orange);
  font-weight: var(--font-bold);
  margin: 0;
}

.recruitment-solutions__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.recruitment-solutions__card {
  background: var(--color-white);
  padding: var(--card-padding);
  width: 32%;
  border-radius: var(--card-radius);
}

.recruitment-solutions__card-icon {
  height: 100px;
  display: flex;
  align-items: flex-start;
}

.recruitment-solutions__card-icon img {
  height: 60px;
  width: auto;
}

.recruitment-solutions__card-title {
  color: var(--color-text-dark);
  font-weight: var(--font-bold);
  font-size: 24px;
  margin: 0;
  height: 110px;
  display: flex;
  align-items: flex-start;
}

.recruitment-solutions__card-text {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 29px;
  margin: 0;
  padding-bottom: 7px;
}

.solutions__subheader {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ---- Problem Cards (premium card redesign) ---- */

.problem-cards__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 2rem;
}

.problem-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 2.25rem 2rem 2.5rem;
  border-top: 3px solid var(--color-orange);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(222, 74, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.problem-card__number-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-glow) 100%);
  color: var(--color-white);
  font-size: 15px;
  font-weight: var(--font-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(222, 74, 0, 0.25);
}

.problem-card__number {
  font-size: 13px;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-orange);
}

.problem-card__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  line-height: 1.3;
  margin: 0;
}

.problem-card__desc {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin: 0;
  opacity: 0.7;
}

/* ============================================
   SALES PLAYBOOK — SOLUTION STATEMENT
   ============================================ */

.sales-playbook {
  padding: 0 10% 0;
  background: linear-gradient(180deg, #FFF8F4 0%, var(--color-warm-bg) 100%);
  position: relative;
}

.sales-playbook__container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

/* Subtle radial glow behind the card */
.sales-playbook__container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(222, 74, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sales-playbook__card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 4rem 3.5rem 3.5rem;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.02);
  text-align: center;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  z-index: 1;
  border: 1px solid rgba(222, 74, 0, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.sales-playbook__card:hover {
  box-shadow: 0 16px 60px rgba(222, 74, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.sales-playbook__accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-glow), var(--color-orange));
  border-radius: 0 0 4px 4px;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sales-playbook__card:hover .sales-playbook__accent {
  width: 200px;
}

.sales-playbook__label {
  display: inline-block;
  font-size: 14px;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
}

.sales-playbook__heading {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0 auto 1.5rem;
  max-width: 720px;
  text-wrap: balance;
}

.sales-playbook__heading-highlight {
  color: var(--color-orange);
}

.sales-playbook__body {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--color-text-body);
  line-height: 1.75;
  margin: 0 auto 2.5rem;
  max-width: 640px;
  opacity: 0.8;
  text-wrap: balance;
}

.sales-playbook__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sales-playbook__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 1.5rem;
}

.sales-playbook__stat-value {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: var(--font-bold);
  color: var(--color-orange);
  line-height: 1;
  letter-spacing: -1px;
}

.sales-playbook__stat-unit {
  font-size: 15px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  text-transform: lowercase;
  margin-top: 4px;
}

.sales-playbook__stat-label {
  font-size: 13px;
  color: var(--color-text-body);
  opacity: 0.6;
  margin-top: 4px;
  line-height: 1.3;
}

.sales-playbook__stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.hiw {
  padding: 5rem 10% 6rem;
  background: var(--color-warm-bg);
}

.hiw__container {
  max-width: var(--max-width);
  margin: auto;
}

.hiw__title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-text-dark);
  font-weight: var(--font-bold);
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.2;
}

/* ---- Card Grid ---- */
.hiw__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

/* ---- Individual Card ---- */
.hiw__card {
  position: relative;
  background: var(--color-dark-bg);
  border-radius: var(--card-radius);
  padding: 2.5rem 2.25rem 2.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s ease;
  cursor: default;
}

.hiw__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(222, 74, 0, 0.3),
    0 0 30px rgba(222, 74, 0, 0.15),
    0 0 60px rgba(255, 92, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(222, 74, 0, 0.4);
}

/* Decorative abstract shape in top-right */
.hiw__card-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 32px;
  transform: rotate(25deg);
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  transition: transform 0.5s ease, background 0.4s ease;
}

.hiw__card:hover .hiw__card-shape {
  transform: rotate(35deg) scale(1.08);
  background: rgba(222, 74, 0, 0.06);
}

/* ---- Profile image in card (Discover) ---- */
.hiw__card-profile {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  z-index: 2;
  pointer-events: none;
}

.hiw__card-profile-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-glow) 50%, rgba(222, 74, 0, 0.4) 100%);
  box-shadow:
    0 0 20px rgba(222, 74, 0, 0.2),
    0 0 40px rgba(222, 74, 0, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
}

.hiw__card:hover .hiw__card-profile-ring {
  transform: scale(1.06);
  box-shadow:
    0 0 28px rgba(222, 74, 0, 0.35),
    0 0 56px rgba(222, 74, 0, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.hiw__card-profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--color-dark-bg);
}

/* Step number */
.hiw__card-number {
  font-size: 15px;
  font-weight: var(--font-bold);
  color: var(--color-orange);
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  display: inline-block;
}

/* Icon container */
.hiw__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-orange);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hiw__card:hover .hiw__card-icon {
  background: rgba(222, 74, 0, 0.12);
  border-color: rgba(222, 74, 0, 0.3);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(222, 74, 0, 0.15);
}

/* Label (step title) */
.hiw__card-label {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

/* Description */
.hiw__card-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0;
  max-width: 480px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
  padding: 5rem 10%;
  text-align: center;
  background: var(--color-dark-bg);
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(222, 74, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-white);
  font-weight: var(--font-bold);
  line-height: 1.2;
  padding-bottom: 0.75rem;
  position: relative;
}

.testimonials-section__subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.testimonial-grid {
  column-count: 3;
  column-gap: 20px;
  max-width: var(--max-width);
  margin: auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient top accent */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(222, 74, 0, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(222, 74, 0, 0.3);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-star {
  height: 20px;
  width: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 4px rgba(255, 200, 0, 0.3));
}

.testimonial-quote-title {
  color: var(--color-white);
  font-weight: var(--font-bold);
  font-size: 18px;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.testimonial-quote-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  padding-bottom: 12px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 12px;
  border: 2px solid rgba(222, 74, 0, 0.3);
}

.testimonial-author-name {
  font-weight: var(--font-bold);
  font-size: 14px;
  color: var(--color-white);
  margin: 0;
}

.testimonial-author-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-dark-bg);
  color: var(--color-white);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Gradient ambient glow for footer CTA */
.footer-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(222, 74, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--font-bold);
  line-height: 1.2;
  position: relative;
}

.footer-cta-title span {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-glow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  display: flex;
  padding: 4rem 10%;
  gap: 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  flex: 2;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a img {
  width: 35px;
  height: 35px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social a:hover img {
  opacity: 1;
}

.footer-nav-col {
  flex: 1;
}

.footer-nav-col h4 {
  font-weight: var(--font-bold);
  font-size: 16px;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.footer-nav-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-nav-col a:hover {
  color: var(--color-white);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright a {
  color: var(--color-orange);
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: var(--color-white);
}

/* ============================================
   POPUP
   ============================================ */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.popup-container {
  background: var(--color-white);
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  position: relative;
  overflow: hidden;
  display: flex;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  z-index: 10;
  transition: color 0.3s ease;
  line-height: 1;
}

.popup-close:hover {
  color: var(--color-orange);
}

.popup-left {
  flex: 1;
  padding: 3rem;
}

.popup-heading {
  font-size: 28px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.popup-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.popup-highlight {
  font-size: 15px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  margin-bottom: 5px;
}

.popup-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.popup-features {
  margin-bottom: 25px;
}

.popup-feature {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.popup-feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 2px;
}

.popup-feature h4 {
  font-size: 14px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  margin: 0 0 3px;
}

.popup-feature p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 20px;
}

.popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: var(--btn-radius);
  font-weight: var(--font-bold);
  font-size: 16px;
  transition: var(--transition-default);
}

.popup-cta:hover {
  background: #c44000;
  transform: translateY(-1px);
}

.popup-right {
  flex: 0 0 320px;
  overflow: hidden;
}

.popup-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Problem subtitle text */
.recruitment-solutions__subtitle-text {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 28px;
}

/* ============================================
   WHAT YOU GET
   ============================================ */

.what-you-get {
  padding: var(--section-padding);
  background: var(--color-dark-bg);
}

.what-you-get__container {
  max-width: var(--max-width);
  margin: auto;
}

.what-you-get__title {
  font-size: 40px;
  color: var(--color-white);
  font-weight: var(--font-bold);
  text-align: center;
  padding-bottom: 3rem;
}

.what-you-get__grid {
  display: flex;
  gap: 24px;
}

.what-you-get__card {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.what-you-get__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.what-you-get__card--accent {
  border-color: var(--color-orange);
  background: rgba(222, 74, 0, 0.08);
}

.what-you-get__card--accent:hover {
  border-color: var(--color-orange-glow);
}

.what-you-get__card-title {
  font-size: 22px;
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.what-you-get__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.what-you-get__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 24px;
}

.what-you-get__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-orange);
}

/* ============================================
   WHO IT'S FOR
   ============================================ */

.who-its-for {
  padding: var(--section-padding);
  background: linear-gradient(179deg, rgba(249, 245, 240, 1) 0%, rgba(255, 243, 237, 1) 100%);
}

.who-its-for__container {
  max-width: var(--max-width);
  margin: auto;
}

.who-its-for__title {
  font-size: 40px;
  color: var(--color-text-dark);
  font-weight: var(--font-bold);
  text-align: center;
  padding-bottom: 3rem;
}

.who-its-for__grid {
  display: flex;
  gap: 24px;
}

.who-its-for__col {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
}

.who-its-for__col--for {
  border: 2px solid #dcfce7;
}

.who-its-for__col--not {
  border: 2px solid #fee2e2;
}

.who-its-for__col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.who-its-for__col-header h3 {
  font-size: 20px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  margin: 0;
}

.who-its-for__col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.who-its-for__col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 26px;
}

.who-its-for__col li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================
   WHY HECTOR
   ============================================ */

.why-hector {
  padding: var(--section-padding);
  background: var(--color-warm-bg);
}

.why-hector__container {
  max-width: var(--max-width);
  margin: auto;
}

.why-hector__title {
  font-size: 40px;
  color: var(--color-text-dark);
  font-weight: var(--font-bold);
  text-align: center;
  padding-bottom: 3rem;
}

.why-hector__table {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.why-hector__table-header {
  display: flex;
}

.why-hector__table-header .why-hector__col--hector {
  background: var(--color-dark-bg);
  color: var(--color-white);
  font-weight: var(--font-bold);
  font-size: 18px;
}

.why-hector__table-header .why-hector__col--generic {
  background: #f3f3f3;
  color: #666;
  font-weight: var(--font-bold);
  font-size: 18px;
}

.why-hector__table-row {
  display: flex;
  border-top: 1px solid #e5e5e5;
}

.why-hector__col {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
}

.why-hector__col--hector {
  background: var(--color-white);
  color: var(--color-text-dark);
  font-weight: var(--font-medium);
}

.why-hector__col--generic {
  background: #fafafa;
  color: #888;
  border-left: 1px solid #e5e5e5;
}

.why-hector__col svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
  padding: var(--section-padding);
  background: var(--color-warm-bg);
}

.pricing__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing__title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-text-dark);
  font-weight: var(--font-bold);
  text-align: center;
  margin: 0 0 3.5rem;
  line-height: 1.2;
  text-wrap: balance;
}

/* ---- Cards layout ---- */
.pricing__cards {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.pricing__card {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 2.5rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ---- Part label ---- */
.pricing__part-label {
  display: inline-block;
  font-size: 13px;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

/* Recommended badge */
.pricing__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-glow));
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(222, 74, 0, 0.25);
  align-self: flex-start;
}

/* ---- Card name ---- */
.pricing__card-name {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

/* ---- Price row ---- */
.pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 1rem;
}

.pricing__price {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.pricing__price-sub {
  font-size: 15px;
  color: var(--color-text-body);
  opacity: 0.6;
  font-weight: var(--font-medium);
}

/* ---- Card description ---- */
.pricing__card-desc {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  opacity: 0.8;
}

/* ---- Feature list ---- */
.pricing__feature-list {
 margin: 0;
  padding: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.pricing__check {
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Connector between cards ---- */
.pricing__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  flex-shrink: 0;
  position: relative;
}

.pricing__connector-line {
  width: 2px;
  height: 40px;
  border-left: 2px dashed rgba(222, 74, 0, 0.35);
}

.pricing__connector-label {
  font-size: 12px;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-orange);
  padding: 8px 0;
}

.pricing__connector-arrow {
  color: var(--color-orange);
  transform: rotate(90deg);
  margin-top: 4px;
}

/* ---- Footer: summary + CTA ---- */
.pricing__footer {
  text-align: center;
  margin-top: 3rem;
}

.pricing__summary {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0 0 2rem;
  opacity: 0.8;
}

.pricing__summary strong {
  color: var(--color-text-dark);
  font-weight: var(--font-bold);
}

.pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-glow) 100%);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--font-bold);
  font-family: var(--font-primary);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(222, 74, 0, 0.2), 0 0 60px rgba(222, 74, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing__cta:hover {
  background: linear-gradient(135deg, var(--color-orange-glow) 0%, #FF8A3D 100%);
  box-shadow: 0 0 30px rgba(222, 74, 0, 0.35), 0 0 80px rgba(222, 74, 0, 0.12);
  transform: translateY(-3px);
}

/* ============================================
   FAQ + GUARANTEE + FINAL CTA
   ============================================ */

.faq-section {
  padding: 6rem 10% 6rem;
  background: var(--color-warm-bg);
}

.faq__container {
  max-width: 800px;
  margin: auto;
}

.faq__title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-text-dark);
  font-weight: var(--font-bold);
  text-align: center;
  padding-bottom: 0.75rem;
}

.faq__subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--color-text-body);
  opacity: 0.6;
  text-align: center;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq__item--open {
  border-color: var(--color-orange);
  box-shadow: 0 4px 24px rgba(222, 74, 0, 0.08);
}

.faq__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 17px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--color-orange);
}

.faq__question-number {
  font-size: 13px;
  font-weight: var(--font-bold);
  color: var(--color-orange);
  margin-right: 8px;
  opacity: 0.7;
}

.faq__chevron {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  color: var(--color-orange);
  opacity: 0.5;
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 1.5rem;
}

.faq__item--open .faq__answer {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}

.faq__answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0;
  padding-left: 0;
}

.faq__guarantee {
  margin-top: 3rem;
  background: var(--color-dark-bg);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  text-align: center;
}

.faq__guarantee-title {
  font-size: 24px;
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.faq__guarantee-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 28px;
  max-width: 600px;
  margin: 0 auto;
}

.faq__final-cta {
  margin-top: 4rem;
  text-align: center;
}

.faq__cta-title {
  font-size: 36px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 44px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--stagger, 0ms);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   QUOTE / BELIEF SECTION
   ============================================ */

.quote-section {
  padding: 0 10% 6rem;
  background: var(--color-warm-bg);
}

.quote__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.quote__frame {
  position: relative;
  border: 1px solid var(--color-orange);
  overflow: hidden;
}

/* Dot-pattern SVG */
.quote__dot-pattern {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: rgba(222, 74, 0, 0.12);
}

/* Corner accent squares */
.quote__corner {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-orange);
  z-index: 5;
}

.quote__corner--tl {
  top: -1px;
  left: -1px;
}

.quote__corner--bl {
  bottom: -1px;
  left: -1px;
}

.quote__corner--tr {
  top: -1px;
  right: -1px;
}

.quote__corner--br {
  bottom: -1px;
  right: -1px;
}

/* Inner content — horizontal layout */
.quote__content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 3.5rem 4rem;
}

/* ---- Image ---- */
.quote__image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  height: 320px;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.quote__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--card-radius);
}

.quote__image-border {
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  border: 2px solid rgba(222, 74, 0, 0.35);
  pointer-events: none;
}

/* ---- Text block ---- */
.quote__text-block {
  flex: 1;
  min-width: 0;
}

.quote__label {
  font-size: 14px;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-orange);
  margin: 0 0 1.25rem;
}

.quote__blockquote {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: var(--font-regular);
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0 0 2rem;
  text-wrap: pretty;
}

.quote__open-mark,
.quote__close-mark {
  color: var(--color-orange);
  font-weight: var(--font-bold);
}

.quote__highlight {
  font-weight: var(--font-bold);
  color: var(--color-orange);
}

.quote__attribution {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.quote__author {
  font-size: 18px;
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  margin: 0 0 2px;
}

.quote__role {
  font-size: 14px;
  color: var(--color-text-body);
  opacity: 0.6;
  margin: 0;
}

/* ============================================
   RESPONSIVE — ≤1400px
   ============================================ */

@media screen and (max-width: 1400px) {


  .slide img {
    width: 200px;
  }

  .recruitment-solutions__main-title,
  .recruitment-solutions__subtitle,
  .hiw__title,
  .testimonials-section h2,
  .what-you-get__title,
  .who-its-for__title,
  .why-hector__title,
  .faq__title {
    font-size: 30px;
  }

  .faq__cta-title {
    font-size: 28px;
    line-height: 36px;
  }

  .recruitment-solutions {
    padding: 6rem 5%;
  }

  .hiw {
    padding: 4rem 5%;
  }

  .what-you-get,
  .who-its-for,
  .why-hector,
  .faq-section,
  .pricing-section {
    padding: 4rem 5%;
  }

  .testimonials-section {
    padding: 3rem 5%;
  }

  .pricing__title {
    font-size: 30px;
  }

  .quote-section {
    padding: 0 5% 4rem;
  }

  .footer-cta-title {
    font-size: 30px;
    line-height: 40px;
  }
}

/* ============================================
   RESPONSIVE — ≤1000px
   ============================================ */

@media screen and (max-width: 1000px) {

  .quote__content {
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 2rem;
    text-align: center;
  }

  .quote__image-wrap {
    width: 200px;
    height: 250px;
  }

  .quote__attribution {
    display: inline-block;
  }

  .navigation-menu,
  .right-header .login-link {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .right-header {
    margin-left: auto;
  }

  .slide img {
    width: 160px;
    margin: 5px 0;
  }

  .recruitment-solutions {
    padding: 4rem 5% 1px;
  }

  .recruitment-solutions__main-title,
  .recruitment-solutions__subtitle {
    font-size: 25px;
  }

  .recruitment-solutions__row {
    flex-direction: column;
  }

  .recruitment-solutions__card {
    width: 100%;
    margin-bottom: 20px;
  }

  .recruitment-solutions__card-title {
    height: auto;
    font-size: 20px;
    padding-bottom: 11px;
  }

  .recruitment-solutions__card-text {
    font-size: 14px;
    line-height: 25px;
  }

  .recruitment-solutions__card-icon {
    height: 70px;
  }

  .recruitment-solutions__card-icon img {
    height: 55px;
  }

  .solutions__subheader {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .problem-cards__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-card {
    max-width: 100%;
  }

  .sales-playbook {
    padding: 0 5% 4rem;
  }

  .sales-playbook__card {
    padding: 3rem 2rem 2.5rem;
  }

  .sales-playbook__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .sales-playbook__stat-divider {
    width: 60px;
    height: 1px;
  }

  .hiw {
    padding: 3rem 5%;
  }

  .hiw__title {
    font-size: 25px;
    margin-bottom: 2.5rem;
  }

  .hiw__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hiw__card {
    padding: 2rem 1.75rem 2.25rem;
  }

  .hiw__card-label {
    font-size: 20px;
  }

  .hiw__card-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .hiw__card-shape {
    width: 120px;
    height: 120px;
  }

  /* What You Get — mobile */
  .what-you-get__grid {
    flex-direction: column;
  }

  .what-you-get__title {
    font-size: 25px;
  }

  /* Who It's For — mobile */
  .who-its-for__grid {
    flex-direction: column;
  }

  .who-its-for__title {
    font-size: 25px;
  }

  /* Why Hector — mobile */
  .why-hector__title {
    font-size: 25px;
  }

  .why-hector__table-row,
  .why-hector__table-header {
    flex-direction: column;
  }

  .why-hector__col--generic {
    border-left: none;
    border-top: 1px solid #e5e5e5;
  }

  /* Pricing — mobile */
  .pricing__cards {
    flex-direction: column;
    gap: 0;
  }

  .pricing__connector {
    width: 100%;
    flex-direction: row;
    height: 50px;
  }

  .pricing__connector-line {
    width: 60px;
    height: 2px;
    border-left: none;
    border-top: 2px dashed rgba(222, 74, 0, 0.35);
  }

  .pricing__connector-arrow {
    transform: rotate(0deg);
    margin-top: 0;
    margin-left: 4px;
  }

  .pricing__title {
    font-size: 25px;
  }

  /* FAQ — mobile */
  .faq__title {
    font-size: 25px;
  }

  .faq__cta-title {
    font-size: 24px;
    line-height: 32px;
  }

  .faq__guarantee {
    padding: 2rem 1.5rem;
  }



  .recruitment-solutions__subtitle-text {
    font-size: 15px;
  }

  .testimonials-section {
    padding: 2rem 5%;
  }

  .testimonials-section h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .testimonial-grid {
    column-count: 2;
  }

  .testimonial-quote-title {
    font-size: 16px;
  }

  .footer-cta {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 5%;
  }

  .footer-cta-title {
    font-size: 25px;
    line-height: 35px;
  }

  .footer-links {
    flex-wrap: wrap;
    padding: 3rem 5%;
    gap: 2rem;
  }

  .footer-brand {
    width: 100%;
    flex: none;
  }

  .footer-nav-col {
    flex: 1;
    min-width: 140px;
  }

  .popup-container {
    flex-direction: column;
  }

  .popup-right {
    flex: none;
    height: 200px;
  }

  .popup-left {
    padding: 2rem;
  }

  .popup-heading {
    font-size: 22px;
  }
}

/* ============================================
   RESPONSIVE — ≤600px
   ============================================ */

@media screen and (max-width: 600px) {

  /* Hero — mobile stack CTAs + reduce padding */
  .hero-grid__ctas {
    flex-direction: column;
    max-width: 100%;
  }

  .hero-grid__cta {
    width: 100%;
  }

  .hero-grid__ctas-row {
    padding-bottom: 3rem;
  }

  .hero-grid__content {
    padding: 2rem 1.25rem 1.5rem;
    min-height: auto;
  }

  .hero-grid__grain {
    animation: none;
  }

  .hero-grid__glow--bottom {
    width: 300px;
    filter: blur(120px);
  }

  .testimonial-grid {
    column-count: 1;
  }



  .footer-copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ============================================
   BOOKING MODAL (Fillout Embed)
   ============================================ */

.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modal-fade-in 0.25s ease;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.booking-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 92vh;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  animation: modal-slide-up 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Allow the Fillout embed iframe to fill the modal and scroll internally */
.booking-modal>div:last-child {
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
}

.booking-modal>div:last-child iframe {
  width: 100% !important;
  min-height: 1200px;
  border: none;
}

@keyframes modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.booking-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 600px) {
  .booking-modal-overlay {
    padding: 0.5rem;
  }

  .booking-modal {
    height: 95vh;
    border-radius: 12px;
  }
}