/* ============================================================
   3HC Homepage Redesign — scoped under .hp- prefix to avoid
   collisions with legacy theme CSS. Used by index.html.
   ============================================================ */

.hp {
  --c-navy:        #0F2A44;
  --c-steel:       #1B4F72;
  --c-orange:      #F27A1A;
  --c-orange-700:  #C95F0E;
  --c-charcoal:    #2E3A46;
  --c-concrete:    #F4F6F8;
  --c-line:        #E5E9EE;
  --c-white:       #FFFFFF;
  --c-mute:        #6E7A87;
  --c-mute-light:  #B0BEC5;

  --hp-font-display: 'Montserrat', system-ui, sans-serif;
  --hp-font-sub:     'Poppins', system-ui, sans-serif;
  --hp-font-body:    'Inter', system-ui, sans-serif;

  --hp-max:           1280px;
  --hp-pad-section:   100px;

  --hp-radius-card:   8px;
  --hp-radius-btn:    6px;
  --hp-shadow-card:   0 10px 30px rgba(15,42,68,.08);
  --hp-shadow-lift:   0 18px 50px rgba(15,42,68,.18);
  --hp-ease:          cubic-bezier(.22,.61,.36,1);

  font-family: var(--hp-font-body);
  color: var(--c-charcoal);
}

.hp *, .hp *::before, .hp *::after { box-sizing: border-box; }
.hp img { max-width: 100%; display: block; }
.hp a { color: inherit; text-decoration: none; }

.hp-container {
  width: 100%;
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 32px;
}
.hp-section { padding: var(--hp-pad-section) 0; }

.hp-eyebrow {
  font-family: var(--hp-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--c-orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hp-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--c-orange);
  display: inline-block;
}
.hp-h2 {
  font-family: var(--hp-font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-navy);
  margin: 0 0 12px;
}
.hp-h3 {
  font-family: var(--hp-font-sub);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--c-navy);
  margin: 0;
}
.hp-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-mute);
  max-width: 680px;
}

/* Buttons (homepage-scoped) */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--hp-font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: var(--hp-radius-btn);
  transition: all 0.3s var(--hp-ease);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.hp-btn .hp-arrow { transition: transform 0.3s var(--hp-ease); display: inline-block; }
.hp-btn:hover .hp-arrow { transform: translateX(4px); }
.hp-btn-primary {
  background: var(--c-orange);
  color: var(--c-white);
}
.hp-btn-primary:hover {
  background: var(--c-orange-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242,122,26,.35);
  color: var(--c-white);
}
.hp-btn-ghost-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.7);
}
.hp-btn-ghost-light:hover {
  background: var(--c-white);
  color: var(--c-navy);
}
.hp-btn-ghost-dark {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.hp-btn-ghost-dark:hover {
  background: var(--c-navy);
  color: var(--c-white);
}

/* ============================================================
   HERO
   ============================================================ */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--c-white);
  background: var(--c-navy);
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-hero-bg img,
.hp-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(15,42,68,.78) 0%, rgba(15,42,68,.55) 60%, rgba(27,79,114,.72) 100%),
    radial-gradient(circle at 80% 20%, rgba(242,122,26,.15) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent 0, transparent 78px, rgba(255,255,255,.025) 78px, rgba(255,255,255,.025) 80px);
}
.hp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 980px;
  animation: hpFadeUp 1s var(--hp-ease) 0.2s both;
}
.hp-hero-eyebrow {
  color: var(--c-orange);
  font-family: var(--hp-font-body);
  font-size: 13px;
  letter-spacing: 3.6px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hp-hero-eyebrow::before,
.hp-hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-orange);
}
.hp-hero h1 {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--c-white);
  text-transform: none;
}
.hp-hero h1 .hp-accent { color: var(--c-orange); }
.hp-hero p.hp-sub {
  font-family: var(--hp-font-body);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 64px;
  color: rgba(255,255,255,.85);
}
.hp-hero-ctas {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hp-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 15px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hp-scroll-indicator::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--c-orange);
  border-radius: 2px;
  animation: hpScrollDot 1.6s var(--hp-ease) infinite;
}
@keyframes hpScrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
@keyframes hpFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.hp-stats {
  background: var(--c-white);
  position: relative;
  padding: 80px 0;
  color: var(--c-navy);
  overflow: hidden;
  border-bottom: 1px solid var(--c-concrete);
}
.hp-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(242,122,26,.05) 0%, transparent 40%);
  pointer-events: none;
}
.hp-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.hp-stat {
  position: relative;
  padding: 0 28px;
  text-align: center;
}
.hp-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--c-orange) 50%, transparent);
}
.hp-stat-num {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.1;
  min-height: 1.1em;
  color: var(--c-navy);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hp-stat-num [data-target] {
  display: inline-block;
  text-align: center;
}
.hp-stat-num .hp-plus { color: var(--c-orange); }
.hp-stat-num .hp-unit {
  font-size: .7em;
  margin-left: 6px;
  color: var(--c-orange);
}
.hp-stat-num .hp-prefix {
  font-size: .55em;
  letter-spacing: 1px;
  color: var(--c-mute);
  margin-right: 6px;
  font-weight: 600;
}
.hp-stat-label {
  font-family: var(--hp-font-body);
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-mute);
  margin-top: 14px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.hp-section-head {
  margin-bottom: 64px;
  max-width: 760px;
}
.hp-section-head.hp-center {
  margin: 0 auto 64px;
  text-align: center;
}
.hp-section-head .hp-eyebrow { margin-bottom: 18px; }
.hp-section-head p {
  color: var(--c-mute);
  font-size: 17px;
  line-height: 1.7;
  margin: 14px 0 0;
}

/* ============================================================
   SERVICES — "What We Do"
   ============================================================ */
.hp-services { background: var(--c-concrete); }
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-service-card {
  background: var(--c-white);
  border-radius: var(--hp-radius-card);
  padding: 42px 32px 38px;
  transition: all 0.4s var(--hp-ease);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.hp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--c-orange);
  transition: width 0.4s var(--hp-ease);
}
.hp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lift);
}
.hp-service-card:hover::before { width: 100%; }
.hp-service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(242,122,26,.1);
  color: var(--c-orange);
  border-radius: 10px;
  margin-bottom: 24px;
  overflow: hidden;
}
.hp-service-icon svg { width: 30px; height: 30px; }
.hp-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.hp-service-card h3 { margin-bottom: 14px; }
.hp-service-card p {
  color: var(--c-mute);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}
.hp-service-link,
a.hp-service-link:link,
a.hp-service-link:visited,
a.hp-service-link:hover,
a.hp-service-link:active {
  color: var(--c-orange);
  font-family: var(--hp-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
a.hp-service-link:hover { color: var(--c-orange-700); }
.hp-service-link .hp-arrow { transition: transform 0.3s var(--hp-ease); display: inline-block; }
.hp-service-card:hover .hp-service-link .hp-arrow { transform: translateX(6px); }
.hp-services-footer { text-align: center; margin-top: 48px; }

/* ============================================================
   FEATURED PROJECTS — "Featured Work"
   ============================================================ */
.hp-projects { background: var(--c-white); }
.hp-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--hp-radius-card);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: var(--hp-shadow-card);
  display: block;
}
.hp-project-card .hp-project-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--hp-ease);
}
.hp-project-card:hover .hp-project-img { transform: scale(1.08); }
.hp-project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,42,68,0) 0%, rgba(15,42,68,.2) 45%, rgba(15,42,68,.95) 100%);
}
.hp-project-card .hp-project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  color: var(--c-white);
}
.hp-project-tag {
  font-family: var(--hp-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 10px;
}
.hp-project-card h3 {
  color: var(--c-white);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 6px;
  font-family: var(--hp-font-sub);
  font-weight: 600;
}
.hp-project-card .hp-loc {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hp-project-card .hp-view {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--c-orange);
  color: var(--c-white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(-6px) scale(.85);
  transition: all 0.4s var(--hp-ease);
  z-index: 2;
}
.hp-project-card:hover .hp-view { opacity: 1; transform: translateY(0) scale(1); }
.hp-projects-footer { text-align: center; margin-top: 56px; }

/* ============================================================
   ABOUT
   ============================================================ */
.hp-about { background: var(--c-concrete); }
.hp-about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.hp-about-text p {
  color: var(--c-charcoal);
  margin-bottom: 18px;
  line-height: 1.7;
}
.hp-about-text .hp-lead-para {
  font-size: 18px;
  line-height: 1.8;
  color: var(--c-charcoal);
  font-weight: 400;
}
.hp-about-mini-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.hp-mini-stat-n {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--c-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hp-mini-stat-n span { color: var(--c-orange); }
.hp-mini-stat-l {
  font-family: var(--hp-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 8px;
}
.hp-about-cta { margin-top: 32px; }
.hp-about-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--hp-radius-card);
  overflow: hidden;
  box-shadow: var(--hp-shadow-lift);
  background: linear-gradient(135deg, var(--c-steel) 0%, var(--c-navy) 100%);
}
.hp-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-about-img::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  height: 60%;
  border: 4px solid var(--c-orange);
  border-radius: var(--hp-radius-card);
  z-index: -1;
}
.hp-about-stat-card {
  position: absolute;
  left: -32px;
  bottom: 40px;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 22px 28px;
  border-radius: var(--hp-radius-card);
  box-shadow: var(--hp-shadow-lift);
}
.hp-about-stat-card .hp-n {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--c-orange);
}
.hp-about-stat-card .hp-l {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--c-mute-light);
}

/* ============================================================
   OUR JOURNEY — horizontal timeline
   ============================================================ */
.hp-timeline-section { background: var(--c-white); }
.hp-hz-timeline {
  position: relative;
  margin-top: 32px;
}
.hp-hz-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 78px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-line) 0%, var(--c-orange) 50%, var(--c-line) 100%);
}
.hp-hz-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.hp-hz-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}
.hp-hz-year {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  height: 24px;
}
.hp-hz-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-white);
  border: 3px solid var(--c-orange);
  position: relative;
  margin-bottom: 24px;
  z-index: 2;
  transition: all 0.3s var(--hp-ease);
}
.hp-hz-item:hover .hp-hz-dot {
  background: var(--c-orange);
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(242,122,26,.15);
}
.hp-hz-card {
  background: var(--c-concrete);
  border-radius: var(--hp-radius-card);
  padding: 22px 22px 24px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--c-line);
  position: relative;
  transition: all 0.4s var(--hp-ease);
}
.hp-hz-item:hover .hp-hz-card {
  transform: translateY(-6px);
  background: var(--c-white);
  box-shadow: var(--hp-shadow-lift);
  border-color: transparent;
}
.hp-hz-card h4 {
  font-family: var(--hp-font-sub);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-navy);
  margin: 0 0 8px;
}
.hp-hz-card p {
  font-size: 13.5px;
  color: var(--c-mute);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   ACHIEVEMENTS — "Pioneering Milestones"
   ============================================================ */
.hp-achievements { background: var(--c-white); }
.hp-achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.hp-ach-col h3 {
  font-family: var(--hp-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-navy);
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-orange);
  display: inline-block;
}
.hp-ach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hp-ach-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: flex-start;
}
.hp-ach-list li:last-child { border-bottom: 0; }
.hp-ach-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgba(242,122,26,.12);
  color: var(--c-orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.hp-ach-check svg { width: 14px; height: 14px; }
.hp-ach-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-charcoal);
}
.hp-ach-text strong {
  color: var(--c-navy);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ============================================================
   WHY CHOOSE 3HC
   ============================================================ */
.hp-why {
  background: var(--c-navy);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.hp-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(242,122,26,.08) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(255,255,255,.012) 80px, rgba(255,255,255,.012) 81px);
  pointer-events: none;
}
.hp-why .hp-container { position: relative; z-index: 1; }
.hp-why .hp-h2,
.hp-why .hp-section-head p { color: var(--c-white); }
.hp-why .hp-section-head p { color: rgba(255,255,255,.7); }
.hp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hp-why-card {
  background: var(--c-steel);
  padding: 36px 30px;
  border-radius: var(--hp-radius-card);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--hp-ease);
  border: 1px solid rgba(255,255,255,.04);
}
.hp-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--hp-ease);
}
.hp-why-card:hover {
  transform: translateY(-6px);
  background: #225f8a;
}
.hp-why-card:hover::before { transform: scaleX(1); }
.hp-why-icon {
  width: 50px;
  height: 50px;
  color: var(--c-orange);
  margin-bottom: 22px;
}
.hp-why-icon svg { width: 100%; height: 100%; }
.hp-why-card h3 {
  color: var(--c-white);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 12px;
  font-family: var(--hp-font-sub);
}
.hp-why-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CLIENTS & PARTNERS
   ============================================================ */
.hp-clients {
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}
.hp-clients-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.hp-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  color: #8A98A6;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  transition: all 0.35s var(--hp-ease);
  background: var(--c-white);
  min-height: 110px;
}
.hp-client-logo:nth-child(4n) { border-right: 0; }
.hp-client-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.35s var(--hp-ease);
}
.hp-client-logo:hover {
  background: var(--c-concrete);
  transform: translateY(-2px);
}
.hp-client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}
.hp-client-name {
  font-family: var(--hp-font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  color: inherit;
}

/* ============================================================
   TESTIMONIALS — horizontal scroll carousel
   ============================================================ */
.hp-testimonials {
  background: var(--c-concrete);
  overflow: hidden;
}
.hp-test-scroller-wrap { position: relative; }
.hp-test-scroller-wrap::before,
.hp-test-scroller-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.hp-test-scroller-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--c-concrete) 0%, transparent 100%);
}
.hp-test-scroller-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--c-concrete) 0%, transparent 100%);
}
.hp-test-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px max(32px, calc((100vw - var(--hp-max)) / 2)) 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hp-test-scroller::-webkit-scrollbar { display: none; }
.hp-test-card {
  flex: 0 0 420px;
  background: var(--c-white);
  padding: 40px;
  border-radius: var(--hp-radius-card);
  position: relative;
  box-shadow: var(--hp-shadow-card);
  border-left: 4px solid var(--c-orange);
  scroll-snap-align: start;
  transition: all 0.3s var(--hp-ease);
}
.hp-test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lift);
}
.hp-test-quote {
  font-family: var(--hp-font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-orange);
  opacity: 0.25;
  margin-bottom: -20px;
}
.hp-test-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-charcoal);
  font-style: italic;
  margin: 0 0 28px;
}
.hp-test-author {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hp-test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-navy);
  color: var(--c-white);
  display: grid;
  place-items: center;
  font-family: var(--hp-font-display);
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.hp-test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-test-name {
  font-family: var(--hp-font-sub);
  font-weight: 600;
  color: var(--c-navy);
  font-size: 15px;
}
.hp-test-role {
  font-size: 13px;
  color: var(--c-mute);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hp { --hp-pad-section: 70px; }
  .hp-services-grid,
  .hp-projects-grid,
  .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-about-grid,
  .hp-achievements-grid { grid-template-columns: 1fr; gap: 48px; }
  .hp-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
  .hp-stat:nth-child(3)::after,
  .hp-stat:nth-child(5)::after { display: none; }
  .hp-hz-track { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .hp-hz-line { display: none; }
  .hp-clients-strip { grid-template-columns: repeat(2, 1fr); }
  .hp-client-logo:nth-child(4n) { border-right: 1px solid var(--c-line); }
  .hp-client-logo:nth-child(2n) { border-right: 0; }
  .hp-test-card { flex: 0 0 360px; }
}
@media (max-width: 640px) {
  .hp { --hp-pad-section: 60px; }
  .hp-container { padding: 0 22px; }
  .hp-services-grid,
  .hp-projects-grid,
  .hp-why-grid { grid-template-columns: 1fr; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stat:nth-child(2)::after,
  .hp-stat:nth-child(4)::after { display: none; }
  .hp-stat:last-child { grid-column: 1 / -1; }
  .hp-about-stat-card { left: 16px; }
  .hp-hero h1 { font-size: 36px; }
  .hp-hero p.hp-sub { font-size: 20px; }
  .hp-hz-track { grid-template-columns: 1fr; }
  .hp-clients-strip { grid-template-columns: 1fr; }
  .hp-client-logo { border-right: 0 !important; }
  .hp-client-logo:last-child { border-bottom: 0 !important; }
  .hp-test-card { flex: 0 0 88vw; padding: 32px 26px; }
  .hp-about-mini-stats { gap: 24px; flex-wrap: wrap; }
  .hp-mini-stat-n { font-size: 26px; }
}
