/* ============================================================
   REALIVO — Homepage  (home.css)
   Prefix: hi- (home index)
   ============================================================ */

/* ---- Shared tokens ---- */
:root {
  --hi-dark:   #0d0d0d;
  --hi-dark2:  #141414;
  --hi-dark3:  #1c1c1c;
  --hi-lt:     #f5f3ef;
  --hi-white:  #ffffff;
  --hi-gold:   #C0A977;
  --hi-gold-l: #D4BD8E;
  --hi-muted:  #888888;
  --hi-stroke: rgba(255,255,255,0.08);
  --hi-stroke-l: rgba(0,0,0,0.07);
}

/* ---- Section base ---- */
.hi-section        { padding: 88px 0; }
.hi-section--dark  { background: var(--hi-dark); }
.hi-section--lt    { background: var(--hi-lt); }
.hi-section--white { background: #fff; }

/* ---- Kicker ---- */
.hi-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hi-gold);
  margin-bottom: 14px;
}
.hi-kicker--muted { color: var(--hi-muted); }

/* ---- Headings ---- */
.hi-h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--hi-dark);
  margin: 0 0 10px;
  line-height: 1.15;
}
.hi-h2--light { color: #fff; }

.hi-section__head { margin-bottom: 52px; }
.hi-section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.hi-section__sub { color: #666; font-size: 15px; margin: 8px 0 0; line-height: 1.7; }

/* ---- Buttons ---- */
.hi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  line-height: 1;
}
.hi-btn--gold       { background: var(--hi-gold); color: var(--hi-dark); }
.hi-btn--gold:hover { background: var(--hi-gold-l); color: var(--hi-dark); text-decoration: none; }
.hi-btn--dark       { background: var(--hi-dark); color: #fff; }
.hi-btn--dark:hover { background: #222; color: #fff; text-decoration: none; }
.hi-btn--outline    { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.hi-btn--outline:hover { border-color: #fff; color: #fff; text-decoration: none; }
.hi-btn--outline-dark { background: transparent; color: var(--hi-dark); border: 1px solid rgba(0,0,0,0.25); }
.hi-btn--outline-dark:hover { border-color: var(--hi-dark); text-decoration: none; }

/* ============================================================
   1. HERO
   ============================================================ */
.hi-hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.hi-hero__media {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.hi-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
}
.hi-hero__veil {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.82) 100%
  );
}
.hi-hero__body {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 56px;
}
.hi-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hi-hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hi-gold);
  flex-shrink: 0;
}
.hi-hero__eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hi-hero__h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 22px;
  max-width: 820px;
  letter-spacing: -0.02em;
}
.hi-hero__h1 em {
  font-style: normal;
  color: var(--hi-gold);
}
.hi-hero__sub {
  color: rgba(255,255,255,0.68);
  font-size: clamp(14px, 1.4vw, 16px);
  max-width: 500px;
  line-height: 1.7;
  margin: 0 0 40px;
}
.hi-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stats strip */
.hi-hero__strip {
  position: relative;
  z-index: 1;
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hi-strip {
  display: flex;
  align-items: stretch;
}
.hi-strip__item {
  flex: 1;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.hi-strip__item:last-child { border-right: none; }
.hi-strip__item b {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--hi-gold);
  line-height: 1;
}
.hi-strip__item span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

/* ============================================================
   2. SEARCH / FILTER
   Fix: filter.css sets #first_filter { position:absolute; bottom:-45px }
   which makes it escape its container and overlap the hero.
   We override to static positioning here.
   ============================================================ */
.hi-search {
  background: var(--hi-dark2);
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;  /* trap any absolute children */
  z-index: 2;
}

/* Override filter.css absolute positioning */
.hi-search #first_filter {
  position: static !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.hi-search .first_filter_top label {
  color: rgba(255,255,255,0.45) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  background: transparent !important;
  padding: 0 0 10px !important;
  margin: 0 !important;
}
.hi-search .first_filter_top a {
  color: rgba(255,255,255,0.35) !important;
  font-size: 12px !important;
}
.hi-search .first_filter_top a:hover { color: var(--hi-gold) !important; }
.hi-search .first_filter_input {
  display: -webkit-flex !important;
  display: flex !important;
  gap: 10px !important;
  -webkit-align-items: center !important;
  align-items: center !important;
  padding: 0 !important;
  margin-top: 8px !important;
}
.hi-search .first_input_wrap { flex: 1; }
.hi-search .select2-container { width: 100% !important; }
.hi-search .select2-selection,
.hi-search .select-css {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: rgba(255,255,255,0.8) !important;
  border-radius: 4px !important;
  height: 46px !important;
}
.hi-search .select2-selection__rendered {
  color: rgba(255,255,255,0.8) !important;
  line-height: 44px !important;
}
.hi-search .filter_show_results { flex-shrink: 0; }
.hi-search .filter_show_results .main_btn,
.hi-search .main_btn {
  background: var(--hi-gold) !important;
  color: var(--hi-dark) !important;
  border: none !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  border-radius: 4px !important;
  padding: 12px 28px !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  height: 46px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

/* ============================================================
   3. SERVICES
   ============================================================ */
.hi-svcs { background: var(--hi-dark); padding: 64px 0; }
.hi-svcs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}
.hi-svc {
  background: var(--hi-dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.hi-svc::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--hi-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hi-svc:hover { background: var(--hi-dark2); text-decoration: none; }
.hi-svc:hover::before { transform: scaleX(1); }
.hi-svc__ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(192,169,119,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.hi-svc__h {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hi-svc__t {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.hi-svc__arr {
  color: var(--hi-gold);
  font-size: 18px;
  font-weight: 300;
  align-self: flex-start;
}

/* ============================================================
   4. HOTELS FEATURE
   ============================================================ */
.hi-feat { background: #fff; }
.hi-feat__wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hi-feat__media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.hi-feat__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hi-feat__media:hover img { transform: scale(1.03); }
.hi-feat__tag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--hi-gold);
  color: var(--hi-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
}
.hi-feat__text {
  color: #555;
  font-size: 15px;
  line-height: 1.75;
  margin: 16px 0 10px;
}
.hi-feat__markets {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.hi-feat__metrics {
  display: flex;
  gap: 0;
  margin: 28px 0 36px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.hi-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 0;
  border-right: 1px solid #eee;
  padding-right: 24px;
  padding-left: 0;
}
.hi-metric:first-child { padding-left: 0; }
.hi-metric:last-child  { border-right: none; }
.hi-metric b {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hi-dark);
  line-height: 1;
}
.hi-metric span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  font-weight: 600;
}
.hi-feat__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hi-feat__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--hi-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.hi-feat__link:hover { color: var(--hi-gold); text-decoration: none; }

/* ============================================================
   5. PROCESS
   ============================================================ */
.hi-process { background: var(--hi-dark); }
.hi-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 52px;
}
.hi-step {
  background: var(--hi-dark);
  padding: 40px 32px;
  transition: background 0.2s;
  position: relative;
}
.hi-step:hover { background: var(--hi-dark2); }
.hi-step__n {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--hi-gold);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.hi-step__h {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.hi-step__t {
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   6. RETURNS
   ============================================================ */
.hi-returns { background: var(--hi-lt); }
.hi-returns__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hi-ret {
  background: #fff;
  border: 1px solid #e6e0d4;
  border-radius: 3px;
  padding: 40px 30px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.hi-ret:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  border-color: var(--hi-gold);
  transform: translateY(-2px);
}
.hi-ret--accent { background: var(--hi-dark); border-color: var(--hi-dark); }
.hi-ret--accent:hover { border-color: var(--hi-gold); }
.hi-ret--accent .hi-ret__range { color: var(--hi-gold); }
.hi-ret--accent .hi-ret__label { color: rgba(255,255,255,0.5); }
.hi-ret__range {
  font-family: 'Unbounded', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--hi-dark);
  line-height: 1;
  margin-bottom: 14px;
}
.hi-ret__label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* ============================================================
   7. COUNTRIES
   ============================================================ */
.hi-countries { background: #fff; }
.hi-country-wrap { padding: 8px; }
.hi-country {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
  text-decoration: none;
  background: #eee;
}
.hi-country__img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.hi-country:hover .hi-country__img { transform: scale(1.07); }
.hi-country::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 55%);
  transition: opacity 0.3s;
}
.hi-country:hover::after { opacity: 0.85; }
.hi-country__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hi-country__name { color: #fff; font-weight: 600; font-size: 13px; }
.hi-country__arr  { color: var(--hi-gold); font-size: 16px; opacity: 0; transition: opacity 0.2s; }
.hi-country:hover .hi-country__arr { opacity: 1; }

/* ============================================================
   8. WHY REALIVO
   ============================================================ */
.hi-why { background: var(--hi-dark); }
.hi-why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.hi-why__media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.hi-why__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}
.hi-why__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(192,169,119,0.2);
  border-radius: 3px;
  pointer-events: none;
}
.hi-why__lead {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.75;
  margin: 18px 0 36px;
}
.hi-why__points { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.hi-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hi-point:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.hi-point__n {
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--hi-gold);
  letter-spacing: 0.12em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}
.hi-point p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   9. PLATFORM (secondary)
   ============================================================ */
.hi-platform { background: var(--hi-lt); }
.hi-platform__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hi-platform__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,169,119,0.12);
  border: 1px solid rgba(192,169,119,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a6b50;
  margin-bottom: 16px;
}
.hi-platform__text {
  color: #555;
  font-size: 15px;
  line-height: 1.75;
  margin: 16px 0 32px;
}
.hi-platform__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hi-platform__media img { max-width: 100%; max-height: 360px; object-fit: contain; }

/* ============================================================
   10. PARTNERS
   ============================================================ */
.hi-partners { background: var(--hi-dark); }
.hi-partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.hi-pcard {
  background: var(--hi-dark);
  padding: 52px 48px;
  transition: background 0.2s;
}
.hi-pcard:hover { background: var(--hi-dark2); }
.hi-pcard--gold { position: relative; overflow: hidden; }
.hi-pcard--gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--hi-gold);
}
.hi-pcard__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hi-gold);
  margin-bottom: 16px;
  display: block;
}
.hi-pcard__h {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hi-pcard__t {
  color: rgba(255,255,255,0.48);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hi-pcard__logo {
  max-height: 48px;
  opacity: 0.4;
  margin-bottom: 28px;
  display: block;
  filter: invert(1);
}

/* ============================================================
   11. BLOG / INSIGHTS
   ============================================================ */
.hi-blog { background: #fff; }
.hi-link-all {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hi-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s;
}
.hi-link-all:hover { color: var(--hi-gold); text-decoration: none; }
.hi-post {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border: 1px solid #e6e0d4;
  border-radius: 3px;
  text-decoration: none;
  height: calc(100% - 24px);
  margin-bottom: 24px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.hi-post:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--hi-gold);
  transform: translateY(-2px);
  text-decoration: none;
}
.hi-post__date {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hi-gold);
  font-weight: 700;
}
.hi-post__text {
  color: #333;
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.hi-post__arr { font-size: 12px; color: #aaa; font-weight: 600; }

/* ============================================================
   12. CONTACT FORM
   ============================================================ */
.hi-contact { background: var(--hi-dark); }
.hi-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 88px;
  align-items: start;
}
.hi-contact__sub {
  color: rgba(255,255,255,0.48);
  font-size: 14px;
  line-height: 1.75;
  margin: 18px 0 36px;
}
.hi-contact__offices { display: flex; flex-direction: column; gap: 16px; }
.hi-contact__office { display: flex; gap: 14px; align-items: flex-start; }
.hi-contact__office-flag { font-size: 18px; flex-shrink: 0; padding-top: 1px; }
.hi-contact__office-info { display: flex; flex-direction: column; gap: 2px; }
.hi-contact__office b  { color: #fff; font-size: 14px; font-weight: 600; }
.hi-contact__office span { color: rgba(255,255,255,0.35); font-size: 12px; }

/* Form */
.hi-form { display: flex; flex-direction: column; gap: 0; }
.hi-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.hi-form__field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}
.hi-form__field input,
.hi-form__field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  font-family: inherit;
}
.hi-form__field input:focus,
.hi-form__field textarea:focus {
  border-color: var(--hi-gold);
  background: rgba(255,255,255,0.06);
}
.hi-form__field input::placeholder,
.hi-form__field textarea::placeholder { color: rgba(255,255,255,0.2); }
.hi-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hi-form__row .hi-form__field { margin-bottom: 0; }
.hi-form__row-wrap { margin-bottom: 20px; }
.hi-form__submit { width: 100%; padding: 16px; font-size: 12px; margin-top: 8px; }

/* Thanks (JS controlled) */
#sporim_again {
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hi-svcs__grid     { grid-template-columns: repeat(2, 1fr); }
  .hi-process__steps { grid-template-columns: repeat(2, 1fr); }
  .hi-returns__grid  { grid-template-columns: repeat(2, 1fr); }
  .hi-feat__wrap     { grid-template-columns: 1fr; gap: 36px; }
  .hi-feat__media img { height: 360px; }
  .hi-why__layout    { grid-template-columns: 1fr; gap: 48px; }
  .hi-why__media img { height: 340px; }
  .hi-platform__wrap { grid-template-columns: 1fr; gap: 36px; }
  .hi-platform__media { order: -1; }
  .hi-contact__layout{ grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .hi-section        { padding: 64px 0; }
  .hi-svcs__grid     { grid-template-columns: 1fr; }
  .hi-process__steps { grid-template-columns: 1fr; }
  .hi-partners__grid { grid-template-columns: 1fr; }
  .hi-strip          { -webkit-flex-wrap: wrap; flex-wrap: wrap; }
  .hi-strip__item    { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hi-form__row      { grid-template-columns: 1fr; }
  .hi-hero__h1       { font-size: 26px; }
  .hi-hero__body     { padding-bottom: 40px; }
  .hi-pcard          { padding: 36px 28px; }
  /* Search form stacks on mobile */
  .hi-search .first_filter_input {
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
  }
  .hi-search .first_input_wrap { width: 100% !important; }
  .hi-search .filter_show_results { width: 100% !important; }
  .hi-search .main_btn { width: 100% !important; }
}
@media (max-width: 540px) {
  .hi-returns__grid  { grid-template-columns: 1fr; }
  .hi-hero__ctas     { flex-direction: column; }
  .hi-hero__ctas .hi-btn { width: 100%; }
  .hi-section__head--row { flex-direction: column; align-items: flex-start; }
  .hi-strip__item    { min-width: 50%; }
  .hi-feat__metrics  { flex-direction: column; gap: 16px; }
  .hi-metric         { border-right: none; border-bottom: 1px solid #eee; padding-bottom: 16px; }
  .hi-metric:last-child { border-bottom: none; }
}
