/* ============================================================
   VinFast Homepage — Dark Automotive UI
   Breakpoints:
     Desktop  ≥ 1024px  (default)
     Tablet   640–1023px
     Mobile   ≤ 639px
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
.vf-home-page { margin: 0; padding: 0; background: #fff; }
.vf-home-page *, .vf-home-page *::before, .vf-home-page *::after { box-sizing: border-box; }
.vf-home-page ul  { list-style: none; margin: 0; padding: 0; }
.vf-home-page a   { text-decoration: none; color: inherit; }
.vf-home-page p, .vf-home-page h1, .vf-home-page h2, .vf-home-page h3 { margin: 0; }

/* ── Container ───────────────────────────────────────────── */
.hp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 639px) { .hp-container { padding: 0 16px; } }

/* ────────────────────────────────────────────────────────── */
/* HEADER                                                      */
/* ────────────────────────────────────────────────────────── */
.hp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hp-nav {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  height: 62px;
}

/* Logo */
.hp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: 6px;
}
.hp-logo__brand {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.hp-logo__sep {
  color: rgba(255,255,255,0.25);
  font-size: 16px;
  font-weight: 300;
  margin: 0 6px;
}
.hp-logo__sub {
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  margin-right: 20px;
}

/* Nav links — desktop only */
.hp-nav__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.hp-nav__link {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}
.hp-nav__link:hover { color: #fff; }
.hp-nav__link--active { color: #fff; font-weight: 600; border-bottom-color: #2563eb; }

/* Phone */
.hp-nav__phone {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  margin: 0 12px;
  flex-shrink: 0;
}

/* CTA button */
.hp-nav__cta {
  background: #2563eb;
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.hp-nav__cta:hover { background: #1d4ed8; color: #fff; }

/* Hamburger */
.hp-nav__burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  margin-left: 10px;
  line-height: 0;
  border-radius: 4px;
}
.hp-nav__burger:hover { background: rgba(255,255,255,0.08); }

/* Tablet: hide nav links, show burger */
@media (max-width: 1023px) {
  .hp-nav__links  { display: none; }
  .hp-nav__burger { display: flex; align-items: center; justify-content: center; }
  .hp-logo__sub   { display: none; }
}

/* Mobile: hide phone number */
@media (max-width: 639px) {
  .hp-nav__phone { display: none; }
  .hp-nav__cta   { padding: 8px 12px; font-size: 10px; letter-spacing: 0; }
  .hp-nav { padding: 0 16px; }
}

/* Mobile drawer */
.hp-mobile-nav {
  background: #0a1020;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hp-mobile-nav[hidden] { display: none; }
.hp-mobile-nav__links a {
  display: block;
  padding: 14px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s, background 0.15s;
}
.hp-mobile-nav__links a:hover { color: #fff; background: rgba(255,255,255,0.04); }

/* ────────────────────────────────────────────────────────── */
/* BUTTONS                                                     */
/* ────────────────────────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.hp-btn--blue { background: #2563eb; color: #fff; }
.hp-btn--blue:hover { background: #1d4ed8; color: #fff; }
.hp-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.hp-btn--ghost:hover { border-color: rgba(255,255,255,0.8); color: #fff; }

@media (max-width: 639px) {
  .hp-btn { padding: 12px 20px; font-size: 12px; }
}

/* ────────────────────────────────────────────────────────── */
/* HERO                                                        */
/* ────────────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  min-height: 480px;
  background: radial-gradient(ellipse at 65% 45%, rgba(37,99,235,0.07) 0%, transparent 55%),
              linear-gradient(135deg, #070b14 0%, #0f172a 35%, #1a2744 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hp-hero__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
}
.hp-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0f172a 0%, rgba(15,23,42,0.7) 45%, rgba(15,23,42,0.1) 100%);
}

.hp-hero .hp-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hp-hero__content  { max-width: 500px; }
.hp-hero__eyebrow  { color: #2563eb; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; display: block; margin-bottom: 16px; }
.hp-hero__title    { color: #fff; font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hp-hero__desc     { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; max-width: 400px; margin-bottom: 32px; }
.hp-hero__ctas     { display: flex; gap: 12px; flex-wrap: wrap; }

/* Tablet */
@media (max-width: 1023px) {
  .hp-hero           { min-height: 420px; }
  .hp-hero__bg       { width: 50%; }
  .hp-hero__title    { font-size: 36px; }
  .hp-hero .hp-container { padding-top: 48px; padding-bottom: 48px; }
}

/* Mobile */
@media (max-width: 639px) {
  .hp-hero           { min-height: 100svh; min-height: 100vh; }
  .hp-hero__bg       { width: 100%; }
  .hp-hero__img      { opacity: 0.2; }
  .hp-hero__overlay  { background: rgba(7,11,20,0.6); }
  .hp-hero__title    { font-size: 28px; }
  .hp-hero__desc     { font-size: 14px; max-width: 100%; }
  .hp-hero__content  { max-width: 100%; }
  .hp-hero__ctas     { flex-direction: column; }
  .hp-hero__ctas .hp-btn { width: 100%; }
  .hp-hero .hp-container { padding-top: 56px; padding-bottom: 56px; }
}

/* ────────────────────────────────────────────────────────── */
/* FEATURES BAR                                               */
/* ────────────────────────────────────────────────────────── */
.hp-features { background: #162240; padding: 26px 0; }
.hp-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
}
.hp-feature--sep { border-left: 1px solid rgba(255,255,255,0.08); }
.hp-feature__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-feature__title { color: #fff; font-size: 12.5px; font-weight: 700; margin-bottom: 3px; }
.hp-feature__desc  { color: rgba(255,255,255,0.5); font-size: 11px; line-height: 1.4; }

/* Tablet: 2×2 */
@media (max-width: 1023px) {
  .hp-features__grid        { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 4px 0; }
  .hp-feature--sep          { border-left: none; }
  .hp-features              { padding: 20px 0; }
}

/* Mobile: 2×2 mais compacto */
@media (max-width: 639px) {
  .hp-features__grid        { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hp-feature               { padding: 10px 8px; background: rgba(255,255,255,0.04); border-radius: 8px; }
  .hp-feature__icon         { width: 36px; height: 36px; }
  .hp-feature__title        { font-size: 11px; }
  .hp-feature__desc         { font-size: 10px; }
}

/* Tiny phone: 1 col */
@media (max-width: 380px) {
  .hp-features__grid { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────── */
/* SECTIONS (generic)                                         */
/* ────────────────────────────────────────────────────────── */
.hp-section { padding: 60px 0; }

.hp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 12px;
}
.hp-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.3px;
}
.hp-link-more {
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.hp-link-more:hover { text-decoration: underline; color: #1d4ed8; }

@media (max-width: 1023px) {
  .hp-section { padding: 48px 0; }
  .hp-section-head { margin-bottom: 24px; }
}
@media (max-width: 639px) {
  .hp-section       { padding: 36px 0; }
  .hp-section-title { font-size: 18px; }
  .hp-section-head  { margin-bottom: 20px; }
}

/* ────────────────────────────────────────────────────────── */
/* CAR CARDS                                                  */
/* ────────────────────────────────────────────────────────── */
.hp-cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Tablet: 2 col */
@media (max-width: 1023px) {
  .hp-cars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Mobile: 2 col (cards cạnh nhau) */
@media (max-width: 639px) {
  .hp-cars-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Tiny phone: 1 col */
@media (max-width: 380px) {
  .hp-cars-grid { grid-template-columns: 1fr; }
}

.hp-car-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.hp-car-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}
@media (hover: none) { .hp-car-card:hover { transform: none; } }

.hp-car-card__img-wrap {
  display: block;
  height: 160px;
  background: linear-gradient(145deg, #f8fafc, #eef2f7);
  overflow: hidden;
  flex-shrink: 0;
}
.hp-car-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.3s;
}
.hp-car-card:hover .hp-car-card__img-wrap img { transform: scale(1.03); }
.hp-car-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #b0bec5; letter-spacing: 1px;
}

.hp-car-card__body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.hp-car-card__name { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 4px; }
.hp-car-card__name a { color: inherit; }
.hp-car-card__name a:hover { color: #2563eb; }
.hp-car-card__desc  { font-size: 11.5px; color: #6b7280; margin-bottom: 4px; line-height: 1.4; }
.hp-car-card__price { font-size: 12px; color: #374151; font-weight: 600; margin-bottom: 14px; margin-top: auto; padding-top: 6px; }
.hp-car-card__cta {
  display: inline-block;
  padding: 7px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  transition: border-color 0.2s, color 0.2s;
  align-self: flex-start;
}
.hp-car-card__cta:hover { border-color: #2563eb; color: #2563eb; }

/* Mobile: compact card */
@media (max-width: 639px) {
  .hp-car-card__img-wrap { height: 120px; }
  .hp-car-card__body     { padding: 10px 10px 12px; }
  .hp-car-card__name     { font-size: 14px; }
  .hp-car-card__desc     { display: none; }
  .hp-car-card__price    { font-size: 11px; margin-bottom: 10px; }
  .hp-car-card__cta      { font-size: 10.5px; padding: 6px 10px; }
}

/* ────────────────────────────────────────────────────────── */
/* PROMO BANNER                                               */
/* ────────────────────────────────────────────────────────── */
.hp-promo-wrap { padding: 0 0 60px; }

.hp-promo {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #182544 100%);
  border-radius: 16px;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  gap: 32px;
}
.hp-promo__glow   { position: absolute; border-radius: 50%; pointer-events: none; }
.hp-promo__glow--1 {
  top: -80px; right: 80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
}
.hp-promo__glow--2 {
  bottom: -60px; left: 200px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
}

.hp-promo__left {
  position: relative; z-index: 1;
  max-width: 400px;
  display: flex; flex-direction: column;
  gap: 18px; align-items: flex-start;
}
.hp-promo__badge {
  display: inline-block;
  background: rgba(37,99,235,0.15);
  color: #60a5fa;
  font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px; letter-spacing: 0.8px;
}
.hp-promo__title { color: #fff; font-size: 26px; font-weight: 800; line-height: 1.3; }

.hp-promo__stats {
  display: flex; gap: 40px;
  position: relative; z-index: 1; flex-shrink: 0;
}
.hp-promo__stat    { text-align: center; }
.hp-promo__number  { color: #fff; font-size: 76px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.hp-promo__pct     { font-size: 42px; letter-spacing: 0; }
.hp-promo__label   { color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 600; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.8px; line-height: 1.4; }
.hp-promo__note    { color: rgba(255,255,255,0.35); font-size: 10px; font-style: italic; margin-top: 8px; }

/* Tablet: vertical stack */
@media (max-width: 1023px) {
  .hp-promo        { flex-direction: column; padding: 40px 36px; text-align: center; }
  .hp-promo__left  { align-items: center; max-width: 100%; }
  .hp-promo__number { font-size: 64px; }
  .hp-promo__pct   { font-size: 36px; }
  .hp-promo-wrap   { padding: 0 0 48px; }
}

/* Mobile */
@media (max-width: 639px) {
  .hp-promo        { padding: 32px 24px; border-radius: 12px; }
  .hp-promo__title { font-size: 20px; }
  .hp-promo__stats { gap: 24px; }
  .hp-promo__number { font-size: 52px; }
  .hp-promo__pct   { font-size: 28px; }
  .hp-promo-wrap   { padding: 0 0 36px; }
}

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

/* Tablet: 2×2 */
@media (max-width: 1023px) {
  .hp-services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Mobile: 2×2 compact */
@media (max-width: 639px) {
  .hp-services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 380px) {
  .hp-services-grid { grid-template-columns: 1fr; }
}

.hp-service { cursor: default; }
.hp-service__img {
  height: 170px;
  background: repeating-linear-gradient(45deg, #e8ecf1, #e8ecf1 10px, #f1f5f9 10px, #f1f5f9 20px);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; overflow: hidden;
  transition: opacity 0.2s;
}
.hp-service:hover .hp-service__img { opacity: 0.88; }
.hp-service__icon-bg {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(37,99,235,0.15);
}
.hp-service__title { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 5px; }
.hp-service__desc  { font-size: 12.5px; color: #6b7280; line-height: 1.5; margin-bottom: 12px; }
.hp-service__link  { color: #2563eb; font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.hp-service__link:hover { text-decoration: underline; }

@media (max-width: 639px) {
  .hp-service__img   { height: 130px; margin-bottom: 10px; }
  .hp-service__icon-bg { width: 52px; height: 52px; }
  .hp-service__title { font-size: 13px; }
  .hp-service__desc  { font-size: 11.5px; margin-bottom: 8px; }
}

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

/* Tablet: 2×2 */
@media (max-width: 1023px) {
  .hp-news-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Mobile: 2×2 */
@media (max-width: 639px) {
  .hp-news-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 380px) {
  .hp-news-grid { grid-template-columns: 1fr; }
}

.hp-news-card__img-wrap {
  display: block;
  height: 175px;
  background: repeating-linear-gradient(45deg, #e2e8f0, #e2e8f0 10px, #edf2f7 10px, #edf2f7 20px);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.hp-news-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.hp-news-card:hover .hp-news-card__img-wrap img { transform: scale(1.03); }
.hp-news-card__img-placeholder { width: 100%; height: 100%; }

.hp-news-card__date  { color: #2563eb; font-size: 12px; font-weight: 600; display: block; }
.hp-news-card__title { font-size: 15px; font-weight: 700; color: #111827; margin-top: 6px; margin-bottom: 5px; line-height: 1.4; }
.hp-news-card__title a { color: inherit; }
.hp-news-card__title a:hover { color: #2563eb; }
.hp-news-card__desc  { font-size: 12.5px; color: #6b7280; line-height: 1.5; margin-bottom: 10px; }
.hp-news-card__link  { color: #2563eb; font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.hp-news-card__link:hover { text-decoration: underline; }

@media (max-width: 639px) {
  .hp-news-card__img-wrap  { height: 130px; }
  .hp-news-card__title     { font-size: 13px; margin-top: 4px; }
  .hp-news-card__desc      { display: none; }
  .hp-news-card__date      { font-size: 11px; }
}

/* ────────────────────────────────────────────────────────── */
/* FOOTER                                                     */
/* ────────────────────────────────────────────────────────── */
.hp-footer {
  background: #0f172a;
  padding: 52px 0 0;
}

/* Desktop: 5 columns */
.hp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr 1fr;
  gap: 28px;
  padding-bottom: 40px;
}

/* Tablet: Brand full-width, then 2-col pairs */
@media (max-width: 1023px) {
  .hp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    padding-bottom: 32px;
  }
  .hp-footer__brand    { grid-column: 1 / -1; }
  .hp-footer__map-col  { grid-column: 1 / -1; }
}

/* Mobile: 1 col */
@media (max-width: 639px) {
  .hp-footer           { padding-top: 40px; }
  .hp-footer__grid     { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .hp-footer__brand    { grid-column: auto; }
  .hp-footer__map-col  { grid-column: auto; }
}

/* Brand col */
.hp-footer__brand-sub {
  color: rgba(255,255,255,0.5);
  font-size: 10px; font-weight: 500; letter-spacing: 0.5px;
  padding-left: 30px;
  margin-top: -2px; margin-bottom: 14px;
}
.hp-footer__brand-desc {
  color: rgba(255,255,255,0.45);
  font-size: 12px; line-height: 1.6; margin-bottom: 20px;
}
.hp-footer__socials { display: flex; gap: 8px; }
.hp-social {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.hp-social:hover { border-color: rgba(255,255,255,0.4); }

/* Nav cols */
.hp-footer__col-title {
  color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
  margin-bottom: 18px; text-transform: uppercase;
}
.hp-footer__links { display: flex; flex-direction: column; gap: 10px; }
.hp-footer__links a { color: rgba(255,255,255,0.5); font-size: 12.5px; transition: color 0.15s; }
.hp-footer__links a:hover { color: #fff; }

/* Contact col */
.hp-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.hp-footer__contact-name { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.hp-footer__contact-addr { color: rgba(255,255,255,0.5); font-size: 12px; line-height: 1.5; font-style: normal; }
.hp-footer__contact-row  { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.65); }
.hp-footer__contact-row svg { flex-shrink: 0; margin-top: 2px; }
.hp-footer__contact-row a { color: rgba(255,255,255,0.65); }
.hp-footer__contact-row a:hover { color: #fff; text-decoration: underline; }

/* Map col */
.hp-footer__map-col {
  border-radius: 10px;
  overflow: hidden;
  min-height: 180px;
  background: #162240;
}
.hp-footer__map-col iframe {
  display: block;
  min-height: 180px;
  filter: invert(90%) hue-rotate(180deg);
}

/* Bottom bar */
.hp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hp-footer__bottom > span { color: rgba(255,255,255,0.35); font-size: 11.5px; }
.hp-footer__bottom-links  { display: flex; gap: 20px; flex-wrap: wrap; }
.hp-footer__bottom-links a { color: rgba(255,255,255,0.35); font-size: 11.5px; transition: color 0.15s; }
.hp-footer__bottom-links a:hover { color: rgba(255,255,255,0.65); }

@media (max-width: 639px) {
  .hp-footer__bottom       { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hp-footer__bottom-links { gap: 16px; }
}
