/* ============================================================
   MENA LIMITED — Homepage Stylesheet 2026
   Premium Corporate Redesign | All classes prefixed hp-
   ============================================================ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  --hp-red:          #FF3907;
  --hp-gold:         #FCD116;
  --hp-navy:         #1A2340;
  --hp-navy-mid:     #2D3748;
  --hp-surface:      #F4F6FB;
  --hp-white:        #FFFFFF;
  --hp-text:         #1A2340;
  --hp-muted:        #5A6A85;
  --hp-border:       #E2E8F0;

  --hp-grad-hero:    linear-gradient(135deg, rgba(26,35,64,0.93) 0%, rgba(26,35,64,0.76) 55%, rgba(255,57,7,0.52) 100%);
  --hp-grad-cta:     linear-gradient(135deg, #FF3907 0%, #FCD116 100%);
  --hp-grad-dark:    linear-gradient(160deg, #1A2340 0%, #0C1220 100%);

  --hp-glass-bg:     rgba(255, 255, 255, 0.07);
  --hp-glass-brd:    rgba(255, 255, 255, 0.15);

  --hp-shadow-xs:    0 1px 6px  rgba(26, 35, 64, 0.06);
  --hp-shadow-sm:    0 2px 14px rgba(26, 35, 64, 0.08);
  --hp-shadow-md:    0 6px 28px rgba(26, 35, 64, 0.12);
  --hp-shadow-lg:    0 16px 56px rgba(26, 35, 64, 0.16);
  --hp-shadow-cta:   0 8px 32px rgba(255, 57, 7, 0.30);

  --hp-radius-xs:    4px;
  --hp-radius-sm:    8px;
  --hp-radius-md:    16px;
  --hp-radius-lg:    24px;
  --hp-radius-pill:  999px;

  --hp-ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --hp-transition:   all 0.28s var(--hp-ease);

  --hp-font-head:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --hp-font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── 2. Base ──────────────────────────────────────────────── */
.hp-page {
  font-family: var(--hp-font-body);
  color: var(--hp-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 768px) {
  .hp-container { padding: 0 18px; }
}

/* ── 3. Section Scaffolding ───────────────────────────────── */
.hp-section        { padding: 100px 0; }
.hp-section--sm    { padding: 60px 0; }
.hp-section--white { background: var(--hp-white); }
.hp-section--surf  { background: var(--hp-surface); }

.hp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.hp-eyebrow {
  display: inline-block;
  font-family: var(--hp-font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--hp-red);
  margin-bottom: 14px;
}

.hp-h2 {
  font-family: var(--hp-font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  color: var(--hp-navy);
  line-height: 1.18;
  margin: 0 0 16px;
}

.hp-section-sub {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--hp-muted);
  margin: 0;
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--hp-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--hp-radius-pill);
  padding: 14px 30px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hp-transition);
  white-space: nowrap;
  line-height: 1;
}
.hp-btn--primary {
  background: var(--hp-red);
  color: #fff;
  box-shadow: var(--hp-shadow-cta);
}
.hp-btn--primary:hover {
  background: #d42e04;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 57, 7, 0.40);
  text-decoration: none;
}
.hp-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hp-btn--ghost:hover {
  background: #fff;
  color: var(--hp-red);
  border-color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.hp-btn--outline {
  background: transparent;
  color: var(--hp-red);
  border-color: var(--hp-red);
}
.hp-btn--outline:hover {
  background: var(--hp-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--hp-shadow-cta);
  text-decoration: none;
}

/* ── 5. Hero ──────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/imgbg4.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hp-grad-hero);
  z-index: 1;
}

.hp-hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 28px 180px;
}

.hp-hero .hp-eyebrow {
  color: var(--hp-gold);
  font-size: 0.8rem;
  background: rgba(252, 209, 22, 0.12);
  border: 1px solid rgba(252, 209, 22, 0.30);
  border-radius: var(--hp-radius-pill);
  padding: 6px 18px;
  margin-bottom: 24px;
}

.hp-hero__title {
  font-family: var(--hp-font-head);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 26px;
  max-width: 860px;
}

.hp-hero__title .hp-accent {
  color: var(--hp-gold);
}

.hp-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.72;
  max-width: 660px;
  margin: 0 0 42px;
}

.hp-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats strip */
.hp-hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--hp-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--hp-glass-brd);
  display: flex;
  justify-content: center;
}

.hp-stat {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--hp-glass-brd);
  transition: background 0.25s;
}
.hp-stat:last-child { border-right: none; }
.hp-stat:hover { background: rgba(255, 255, 255, 0.10); }

.hp-stat__num {
  display: block;
  font-family: var(--hp-font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hp-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hp-stat__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

/* ── 6. Trust Bar ─────────────────────────────────────────── */
.hp-trust {
  background: var(--hp-white);
  border-bottom: 1px solid var(--hp-border);
  padding: 22px 0;
}

.hp-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.hp-trust__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--hp-muted);
  white-space: nowrap;
}

.hp-trust__sep {
  width: 1px;
  height: 28px;
  background: var(--hp-border);
  flex-shrink: 0;
}

.hp-cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--hp-navy-mid);
  transition: var(--hp-transition);
  text-decoration: none;
}
.hp-cert-badge i {
  font-size: 1.05rem;
  color: var(--hp-red);
}
.hp-cert-badge:hover {
  color: var(--hp-red);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ── 7. About Section ─────────────────────────────────────── */
.hp-about {
  background: var(--hp-surface);
}

.hp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hp-about__image-wrap {
  position: relative;
}

.hp-about__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--hp-radius-lg);
  box-shadow: var(--hp-shadow-lg);
  display: block;
}

.hp-about__founder-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--hp-white);
  border-radius: var(--hp-radius-md);
  padding: 18px 22px;
  box-shadow: var(--hp-shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
  border: 1px solid var(--hp-border);
  transition: var(--hp-transition);
}
.hp-about__founder-card:hover {
  box-shadow: 0 20px 60px rgba(26, 35, 64, 0.20);
  transform: translateY(-2px);
}

.hp-founder-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 80% center;
  border: 3px solid var(--hp-red);
  flex-shrink: 0;
}

.hp-founder-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hp-navy);
  line-height: 1.3;
}

.hp-founder-role {
  display: block;
  font-size: 0.74rem;
  color: var(--hp-muted);
  margin-top: 2px;
}

.hp-about__content {}

.hp-about__text {
  font-size: 0.98rem;
  line-height: 1.80;
  color: var(--hp-muted);
  margin-bottom: 28px;
}

.hp-about__offices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hp-white);
  border: 1.5px solid var(--hp-border);
  border-radius: var(--hp-radius-pill);
  padding: 7px 16px;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--hp-navy-mid);
  box-shadow: var(--hp-shadow-xs);
  transition: var(--hp-transition);
  white-space: nowrap;
}
.hp-pill i {
  color: var(--hp-red);
  font-size: 0.72rem;
}
.hp-pill:hover {
  border-color: var(--hp-red);
  color: var(--hp-red);
  box-shadow: var(--hp-shadow-sm);
  transform: translateY(-1px);
}

/* ── 8. Services Grid ─────────────────────────────────────── */
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-service-card {
  background: var(--hp-white);
  border-radius: var(--hp-radius-lg);
  padding: 36px 28px 32px;
  border: 1.5px solid var(--hp-border);
  box-shadow: var(--hp-shadow-xs);
  transition: var(--hp-transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.hp-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--hp-grad-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--hp-ease);
}
.hp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hp-shadow-lg);
  border-color: transparent;
  color: inherit;
  text-decoration: none;
}
.hp-service-card:hover::after {
  transform: scaleX(1);
}

.hp-service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(255,57,7,0.10), rgba(252,209,22,0.10));
  border-radius: var(--hp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--hp-red);
  margin-bottom: 22px;
  transition: var(--hp-transition);
}
.hp-service-card:hover .hp-service-icon {
  background: var(--hp-grad-cta);
  color: #fff;
}

.hp-service-card h3 {
  font-family: var(--hp-font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--hp-navy);
  margin: 0 0 10px;
  line-height: 1.35;
}

.hp-service-card p {
  font-size: 0.86rem;
  color: var(--hp-muted);
  line-height: 1.68;
  margin: 0 0 22px;
}

.hp-service-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--hp-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--hp-transition);
}
.hp-service-card:hover .hp-service-link {
  gap: 10px;
}

/* ── 9. Stats Counter ─────────────────────────────────────── */
.hp-stats-section {
  background: var(--hp-grad-dark);
  padding: 88px 0;
}

.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-stats-item {
  text-align: center;
  padding: 52px 24px;
  position: relative;
  transition: background 0.25s;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hp-stats-item:last-child { border-right: none; }
.hp-stats-item:hover { background: rgba(255, 255, 255, 0.06); }
.hp-stats-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 25%; right: 25%;
  height: 2px;
  background: var(--hp-grad-cta);
  transform: scaleX(0);
  transition: transform 0.3s var(--hp-ease);
}
.hp-stats-item:hover::after { transform: scaleX(1); }

.hp-stats-num {
  display: block;
  font-family: var(--hp-font-head);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--hp-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.hp-stats-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

/* ── 10. Hiring Process ───────────────────────────────────── */
.hp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.hp-process-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(to right, var(--hp-red), var(--hp-gold));
  z-index: 0;
  opacity: 0.5;
}

.hp-process-card {
  background: var(--hp-white);
  border-radius: var(--hp-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--hp-border);
  box-shadow: var(--hp-shadow-xs);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--hp-transition);
}
.hp-process-card:hover {
  box-shadow: var(--hp-shadow-lg);
  border-color: var(--hp-red);
  transform: translateY(-5px);
}

.hp-process-num {
  width: 46px;
  height: 46px;
  background: var(--hp-white);
  border: 3px solid var(--hp-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hp-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hp-red);
  margin: 24px auto 16px;
  transition: var(--hp-transition);
  position: relative;
  z-index: 2;
}
.hp-process-card:hover .hp-process-num {
  background: var(--hp-red);
  color: #fff;
}

.hp-process-img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
}

.hp-process-body {
  padding: 20px 20px 24px;
}

.hp-process-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-navy);
  margin: 0 0 8px;
}

.hp-process-body p {
  font-size: 0.84rem;
  color: var(--hp-muted);
  line-height: 1.65;
  margin: 0 0 14px;
}

/* ── 11. Why Us ───────────────────────────────────────────── */
.hp-whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hp-whyus-card {
  background: var(--hp-white);
  border-radius: var(--hp-radius-md);
  padding: 36px 32px;
  border: 1.5px solid var(--hp-border);
  box-shadow: var(--hp-shadow-xs);
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: var(--hp-transition);
}
.hp-whyus-card:hover {
  box-shadow: var(--hp-shadow-lg);
  border-color: var(--hp-red);
  transform: translateY(-4px);
}

.hp-whyus-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255,57,7,0.10), rgba(252,209,22,0.10));
  border-radius: var(--hp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  color: var(--hp-red);
  flex-shrink: 0;
  transition: var(--hp-transition);
}
.hp-whyus-card:hover .hp-whyus-icon {
  background: var(--hp-grad-cta);
  color: #fff;
}

.hp-whyus-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--hp-navy);
  margin: 0 0 8px;
  line-height: 1.35;
}

.hp-whyus-card p {
  font-size: 0.88rem;
  color: var(--hp-muted);
  line-height: 1.68;
  margin: 0;
}

/* ── 12. Clients Marquee ──────────────────────────────────── */
.hp-clients {
  background: var(--hp-white);
  padding: 80px 0;
  overflow: hidden;
}

.hp-clients__tracks {
  overflow: hidden;
  margin-top: 48px;
}

.hp-clients__row {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  margin-bottom: 24px;
}
.hp-clients__row--fwd { animation: hp-scroll-l 32s linear infinite; }
.hp-clients__row--rev { animation: hp-scroll-r 42s linear infinite; }
.hp-clients__tracks:hover .hp-clients__row { animation-play-state: paused; }

.hp-client-logo {
  height: 46px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(65%) opacity(0.62);
  transition: var(--hp-transition);
  flex-shrink: 0;
}
.hp-client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes hp-scroll-l {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes hp-scroll-r {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── 13. Testimonials ─────────────────────────────────────── */
.hp-testimonials {
  background: var(--hp-grad-dark);
  padding: 100px 0;
}

.hp-tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.hp-tcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--hp-radius-lg);
  padding: 36px 30px;
  transition: var(--hp-transition);
}
.hp-tcard:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.hp-tcard--feat {
  background: var(--hp-white);
  border-color: transparent;
  transform: translateY(-16px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}
.hp-tcard--feat:hover {
  background: var(--hp-white);
  transform: translateY(-20px);
}

.hp-tcard__quote {
  font-family: var(--hp-font-head);
  font-size: 4.5rem;
  line-height: 0.75;
  color: var(--hp-red);
  display: block;
  margin-bottom: 16px;
}

.hp-tcard__text {
  font-size: 0.94rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 22px;
}
.hp-tcard--feat .hp-tcard__text { color: var(--hp-muted); }

.hp-tcard__stars {
  color: var(--hp-gold);
  font-size: 0.92rem;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.hp-tcard__author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.hp-tcard--feat .hp-tcard__author { border-top-color: var(--hp-border); }

.hp-tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hp-grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.hp-tcard__name {
  display: block;
  font-size: 0.90rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hp-tcard--feat .hp-tcard__name { color: var(--hp-navy); }

.hp-tcard__role {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.50);
  margin-top: 2px;
}
.hp-tcard--feat .hp-tcard__role { color: var(--hp-muted); }

/* ── 14. CTA Banner ───────────────────────────────────────── */
.hp-cta-banner {
  background: var(--hp-grad-cta);
  padding: 88px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hp-cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.hp-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hp-cta-banner h2 {
  font-family: var(--hp-font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.hp-cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.68;
  position: relative;
  z-index: 1;
}

.hp-cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hp-btn--white {
  background: #fff;
  color: var(--hp-red);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hp-btn--white:hover {
  background: var(--hp-navy);
  color: #fff;
  border-color: var(--hp-navy);
  transform: translateY(-2px);
  text-decoration: none;
}

.hp-btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.hp-btn--outline-white:hover {
  background: #fff;
  color: var(--hp-red);
  border-color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── 15. Responsive ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .hp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .hp-process-grid  { grid-template-columns: repeat(2, 1fr); }
  .hp-process-grid::before { display: none; }
}

@media (max-width: 900px) {
  .hp-about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hp-about__image-wrap { order: -1; }
  .hp-about__img { height: 360px; }
  .hp-about__founder-card { right: 12px; bottom: -22px; min-width: 200px; }
  .hp-tgrid { grid-template-columns: 1fr; }
  .hp-tcard--feat { transform: none; }
}

@media (max-width: 700px) {
  .hp-section { padding: 64px 0; }
  .hp-hero__body { padding: 130px 18px 170px; }
  .hp-hero__stats { position: relative; flex-wrap: wrap; }
  .hp-stat { border-right: none; border-bottom: 1px solid var(--hp-glass-brd); max-width: 100%; width: 50%; flex: 1 0 50%; }
  .hp-services-grid { grid-template-columns: 1fr; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stats-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hp-stats-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .hp-stats-item:last-child      { border-bottom: none; }
  .hp-stats-item:nth-last-child(2) { border-bottom: none; }
  .hp-process-grid { grid-template-columns: 1fr; }
  .hp-whyus-grid   { grid-template-columns: 1fr; }
  .hp-trust__sep   { display: none; }
  .hp-trust__inner { gap: 20px; }
  .hp-section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hp-hero__ctas { flex-direction: column; align-items: center; }
  .hp-btn { width: 100%; max-width: 280px; justify-content: center; }
  .hp-about__founder-card { position: static; margin-top: 16px; }
  .hp-stat { width: 100%; flex: 1 0 100%; border-right: none; }
}

/* ── 16. Scroll Reveal — CSS + IntersectionObserver ──────── */

/* Initial hidden state — set by JS adding .hp-will-animate */
.hp-will-animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.70s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.70s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Triggered state */
.hp-will-animate.hp-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children — initial hidden state */
.hp-stagger-ready > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.60s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.60s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When parent enters viewport, cascade children in */
.hp-stagger-ready.hp-in-view > *:nth-child(1) { transition-delay: 0.00s; opacity: 1; transform: translateY(0); }
.hp-stagger-ready.hp-in-view > *:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: translateY(0); }
.hp-stagger-ready.hp-in-view > *:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: translateY(0); }
.hp-stagger-ready.hp-in-view > *:nth-child(4) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }

/* ── 17. Accessibility ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hp-hero__bg,
  .hp-clients__row,
  .hp-service-card,
  .hp-whyus-card,
  .hp-tcard,
  .hp-process-card,
  .hp-will-animate,
  .hp-stagger-ready > * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hp-service-card:focus-visible,
.hp-whyus-card:focus-visible,
.hp-btn:focus-visible {
  outline: 3px solid var(--hp-red);
  outline-offset: 3px;
}
