/* ==========================================
   AIRPORTR — EXEC HERO (WHITE VARIANT)
   Scoped: .ap-heroImpact*
   ========================================== */

.ap-heroImpact,
.ap-heroImpact * {
  box-sizing: border-box;
  font-family: "Questrial","Futura","Segoe UI",Arial,sans-serif !important;
}

.ap-heroImpact {
  --ap-navy: #07003A;
  --ap-accent: #32D1FF;

  --ap-hero-bg: url("https://146209821.fs1.hubspotusercontent-eu1.net/hubfs/146209821/Airportr%20B2B%20%20baggage%202.png");

  position: relative;
  overflow: hidden;
  color: var(--ap-navy);

  background-image:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.95) 60%,
      rgba(255,255,255,0.75) 85%,
      rgba(255,255,255,0.15) 100%
    ),
    var(--ap-hero-bg);

  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;

  min-height: auto;
  display: flex;
  align-items: center;
  padding: clamp(30px, 8vw, 30px) 0 clamp(20px, 6vw, 60px);
}

.ap-heroImpact::after {
  display: none;
}

/* ==========================================
   Layout
   ========================================== */

.ap-heroImpact__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 25px 10px;
}

.ap-heroImpact__content {
  max-width: 720px;
}

/* ==========================================
   Eyebrow
   ========================================== */

.ap-heroImpact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 30px;
  font-weight: 700;
  font-family:"Questrial","Futura","Segoe UI",Arial,sans-serif !important;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(7,0,58,0.65);
}

.ap-heroImpact__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--ap-accent);
  border-radius: 2px;
}

/* ==========================================
   Title
   ========================================== */

.ap-heroImpact__title {
  font-size: clamp(38px, 4vw, 54px);
  font-family:"Questrial","Futura","Segoe UI",Arial,sans-serif !important;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 0 24px 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ==========================================
   Subheading
   ========================================== */

.ap-heroImpact__sub {
  max-width: 680px;
  margin: 0 0 32px 0;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.6;
  color: rgba(11,11,42,0.78);
}

/* ==========================================
   Value Grid
   ========================================== */

.ap-heroImpact__valueGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 860px;
  margin: 16px 0 28px;
}

.ap-heroImpact__valueItem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #F6F8FF;
  border: 1px solid rgba(7,0,58,.08);
  box-shadow: 0 4px 10px rgba(7,0,58,.04);
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
}

.ap-heroImpact__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ap-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-heroImpact__icon::before {
  content: "✈";
  font-size: 12px;
  color: var(--ap-navy);
  line-height: 1;
}

/* ==========================================
   CTA Container
   ========================================== */

/* =========================================
AIRPORTR BUTTON SYSTEM (STANDARDISED)
========================================= */

.ap-heroImpact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  border-radius: 50px;
  font-weight: 600;
  font-size: 18px !Important;
  font-family: "Questrial","Futura","Segoe UI",Arial,sans-serif !important;

  padding: 20px 60px;
  min-width: 240px; /* responsive, not fixed */

  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;

  transition: all 220ms ease;
}

/* remove underline everywhere */
.ap-heroImpact__btn:hover,
.ap-heroImpact__btn:focus,
.ap-heroImpact__btn:active {
  text-decoration: none !important;
}

/* =========================================
PRIMARY BUTTON
BG: 32D1FF → E378FD
TEXT: stays navy
========================================= */

.ap-heroImpact__btn--primary {
  background: #32D1FF;
  color: #07003A;
  font-weight: 600;
  font-size: 18px !Important;
  font-family: "Questrial","Futura","Segoe UI",Arial,sans-serif !important;

}

.ap-heroImpact__btn--primary:hover {
  background: #7850fa;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px !Important;
  font-family: "Questrial","Futura","Segoe UI",Arial,sans-serif !important;

  transform: translateY(-2px);
  border-color: #32D1FF;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

/* =========================================
SECONDARY BUTTON
BG: 7850FA → 5ECE6F
TEXT: white → navy
========================================= */

.ap-heroImpact__btn--secondary {
  background: #0037eb;
  color: #FFFFFF;
  border-color: #32D1FF;
}

.ap-heroImpact__btn--secondary:hover {
  background:  #00005a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 900px) {
  .ap-heroImpact__valueGrid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
  .ap-heroImpact__cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .ap-heroImpact__btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 22px;
  }
}

@media (max-width: 480px) {
  .ap-heroImpact__valueGrid {
    grid-template-columns: 1fr;
  }
@media (max-width: 1024px) {
  .ap-heroImpact {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .ap-heroImpact {
    min-height: auto;
  }
}
}
}