/* ===== NAV ACTIVE ===== */
.nav-active { color: var(--orange-light) !important; }
.active-item { color: var(--orange) !important; background: rgba(240,124,26,0.06); }

/* =====================================================
   HERO  — dark navy, photo right, wave bottom
===================================================== */
.hp-hero {
  background: linear-gradient(115deg, #05102a 0%, #0b1e4a 40%, #0d2260 70%, #0f2870 100%);
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

/* scattered sparkle dots */
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 20%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px   at 8%  65%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 80%, rgba(255,255,255,0.2)  0%, transparent 100%),
    radial-gradient(1px 1px   at 40% 15%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px   at 60% 75%, rgba(255,255,255,0.15) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hp-hero-inner {
  display: flex;
  align-items: stretch;
  min-height: 560px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ---- LEFT TEXT ---- */
.hp-hero-content {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 36px 220px 0;
}

/* badge */
.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hp-badge i { color: var(--orange); font-size: 0.65rem; }

/* title */
.hp-hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.hp-orange { color: var(--orange); }

/* underline */
.hp-title-underline {
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 22px;
}

/* desc */
.hp-hero-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ---- RIGHT PHOTO ---- */
.hp-hero-img-wrap {
  flex: 1;
  position: relative;
  overflow: visible;
}

/* Orange warm glow BEHIND the photo area */
.hp-hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 5%;
  left: -10%;
  right: -5%;
  bottom: 0;
  background:
    radial-gradient(ellipse 75% 85% at 58% 55%,
      rgba(200, 100, 5, 0.60) 0%,
      rgba(180, 80, 5, 0.30) 35%,
      transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* left-edge fade so photo blends into text col */
.hp-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    #0b1e4a 0%,
    rgba(11,30,74,0.5) 18%,
    transparent 40%);
  z-index: 3;
  pointer-events: none;
}

.hp-hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 10%;
  display: block;
  z-index: 2;
  /* Bottom fade so wave blends in */
  mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 55%,
    rgba(0,0,0,0) 92%);
  -webkit-mask-image: linear-gradient(to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 55%,
    rgba(0,0,0,0) 92%);
}

/* ---- WAVE BOTTOM ---- */
/*
  White arch that bites upward into the dark hero from below.
  The path goes: start at bottom-left (0,90)
  → up to left edge (0,55)
  → smooth bezier curves creating one continuous wave peak
  → down to bottom-right (1440,90)
*/
.hp-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
}
.hp-wave svg {
  display: block;
  width: 100%;
  height: 200px;
}

/* =====================================================
   FEE SECTION — same bg as why section, no bottom gap
===================================================== */
.hp-section {
  background: #f5f6fa;
  padding: 0px 0 36px;
}

.hp-section-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  font-style: italic;
  margin-bottom: 5px;
}

.hp-section-title {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hp-title-dash {
  display: inline-block;
  width: 40px; height: 3px;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}

/* ---- LEVEL CARDS ---- */
.hp-level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.hp-level-card {
  background: #fff; border-radius: 16px;
  padding: 28px 22px 24px;
  box-shadow: 0 4px 20px rgba(10,31,68,0.09);
  border: 2px solid transparent;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.hp-level-card--featured {
  border-color: var(--orange);
  box-shadow: 0 10px 40px rgba(240,124,26,0.18);
  transform: translateY(-6px);
}
.hp-level-card--featured:hover { transform: translateY(-10px); }

.hp-level-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 6px 18px rgba(240,124,26,0.3);
}
.hp-level-name { font-size: 1.55rem; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.hp-level-grade { font-size: 0.78rem; color: var(--gray); margin-bottom: 18px; }

.hp-price-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.hp-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  width: fit-content;
}

.hp-price-label { font-size: 0.72rem; color: var(--gray); margin-bottom: 2px; }

.hp-price-val { font-size: 1.45rem; font-weight: 900; color: var(--orange); line-height: 1.1; }
.hp-price-unit { font-size: 0.7rem; color: var(--gray); display: flex; justify-content: flex-end; margin-top: 5px; }

/* ---- SPECIAL GRID ---- */
.hp-special-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.hp-special-card {
  background: #fff; border-radius: 12px; padding: 18px 20px;
  box-shadow: 0 3px 14px rgba(10,31,68,0.08);
  display: flex; align-items: center; gap: 16px;
  border-left: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-special-card:hover { transform: translateX(4px); box-shadow: 0 8px 26px rgba(10,31,68,0.13); }
.hp-special-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange); flex-shrink: 0;
}
.hp-special-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.hp-special-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 5px; }
.hp-special-price { font-size: 0.92rem; font-weight: 900; color: var(--orange); }
.hp-special-price span { font-size: 0.75rem; color: var(--gray); }

/* ---- NOTE ---- */
.hp-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  background: #fff5eb;
  border: 1px solid #f5c08a;
  border-radius: 8px;
  text-align: center;
}
.hp-note i { color: var(--orange); font-size: 0.8rem; flex-shrink: 0; }
.hp-note a { color: var(--orange); font-weight: 600; }
.hp-note a:hover { text-decoration: underline; }

/* =====================================================
   WHY SECTION — cùng nền với fee section, liền mạch
===================================================== */
.hp-why-section {
  background: #f5f6fa;
  padding: 8px 0 60px;
  border-top: none;
}

.hp-why-title {
  text-align: center;
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  position: relative;
}
.hp-why-title::after {
  content: '';
  position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 3px; background: var(--orange); border-radius: 2px;
}

.hp-why-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

/* Vertical separator between cards */
.hp-why-sep {
  width: 1px;
  height: 72px;
  background: #d8dce8;
  flex-shrink: 0;
}

.hp-why-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  width: 200px;
  padding: 10px 24px;
  transition: transform 0.22s ease;
  cursor: default;
}
.hp-why-card:hover { transform: translateY(-5px); }

/* Icon wrapper — big outline-style icon, no circle */
.hp-why-icon {
  position: relative;
  width: 82px; height: 82px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem;
  color: var(--navy);
  transition: color 0.22s ease;
  background: none; border: none;
}
.hp-why-card:hover .hp-why-icon { color: var(--orange); }

/* Small orange star badge on first icon */
.hp-why-badge {
  position: absolute;
  bottom: 4px; right: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  color: #fff;
  box-shadow: 0 2px 6px rgba(240,124,26,0.4);
  transition: transform 0.22s ease;
}
.hp-why-card:hover .hp-why-badge { transform: scale(1.15); }

.hp-why-label {
  text-align: center;
  font-size: 0.8rem; font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  transition: color 0.22s ease;
}
.hp-why-card:hover .hp-why-label { color: var(--orange); }

/* =====================================================
   CTA SECTION — dark black-navy, shield, pill button
===================================================== */
.hp-cta {
  background: linear-gradient(120deg, #0c2260 0%, #0f2a72 50%, #0a1e5a 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
/* subtle glow left */
.hp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 120% at 12% 50%, rgba(240,124,26,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hp-cta-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 36px 0 22px;
  position: relative;
  z-index: 2;
}

/* Shield + text */
.hp-cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.hp-cta-shield {
  flex-shrink: 0;
  width: 90px;
  height: 104px;
}
.hp-cta-shield svg { width: 100%; height: 100%; display: block; }

.hp-cta-text { min-width: 0; }
.hp-cta-text h3 {
  font-size: clamp(0.82rem, 1.7vw, 1rem);
  font-weight: 900; color: #fff;
  text-transform: uppercase; letter-spacing: 0.3px;
  margin-bottom: 4px; line-height: 1.3;
}
.hp-cta-text p {
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  color: var(--orange-light);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.3px; margin-bottom: 8px;
}
.hp-cta-sub { font-size: 0.77rem; color: rgba(255,255,255,0.52); line-height: 1.6; }
.hp-cta-sub strong { color: var(--orange-light); }

/* Button + benefits */
.hp-cta-right {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 22px;
  flex-shrink: 0; min-width: 270px;
}

/* Orange pill button */
.hp-cta-btn {
  display: inline-flex; align-items: center;
  gap: 0;
  background: var(--orange); color: #fff;
  font-size: 0.95rem; font-weight: 900;
  padding: 0 0 0 28px;
  border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap; overflow: hidden; line-height: 1;
}
.hp-cta-btn:hover {
  background: var(--orange-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,124,26,0.5);
}
.hp-cta-btn-label { padding: 20px 8px; }

.hp-cta-btn-arrow {
  width: 36px; height: 36px;
  margin: 0 6px 0 12px;
  background: #fff;
  color: var(--orange);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}

/* Benefits */
.hp-cta-benefits { display: flex; gap: 24px; }
.hp-cta-benefit { display: flex; align-items: center; gap: 12px; }
.hp-cta-benefit-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--orange-light); flex-shrink: 0;
}
.hp-cta-benefit strong {
  font-size: 0.78rem; color: rgba(255,255,255,0.9);
  line-height: 1.4; display: block; font-weight: 700;
}

/* wavy decorative line at bottom of CTA */
.hp-cta-deco {
  position: relative; height: 36px; overflow: hidden; z-index: 2;
}
.hp-cta-deco svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .hp-hero-content { padding: 52px 28px 100px 0; }
  .hp-cta-right { min-width: 220px; }
}

@media (max-width: 900px) {
  .hp-hero {
    min-height: 620px;
  }
  .hp-hero-inner {
    min-height: 620px;
    display: block;
    position: relative;
  }
  .hp-hero-content {
    flex: unset;
    width: 100%;
    max-width: 62%;
    padding: 44px 0 120px;
    position: relative;
    z-index: 4;
  }
  .hp-hero-img-wrap {
    position: absolute;
    right: -8px;
    bottom: 34px;
    width: 44%;
    height: 300px;
    margin-top: 0;
    z-index: 2;
  }
  .hp-hero-img-wrap::after {
    background: linear-gradient(to right,
      rgba(11,30,74,0.68) 0%,
      rgba(11,30,74,0.14) 28%,
      transparent 60%);
  }
  .hp-hero-photo {
    object-position: 56% 18%;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hp-wave svg { height: 110px; }
  .hp-level-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .hp-level-card--featured { transform: none; }
  .hp-special-grid { grid-template-columns: 1fr; }
  .hp-cta-inner { flex-direction: column; align-items: flex-start; padding: 32px 0 20px; }
  .hp-cta-right { min-width: unset; width: 100%; }
  .hp-cta-benefits { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .hp-hero-title { font-size: 2.6rem; }
  .hp-why-grid { gap: 14px; }
  .hp-why-card { width: 118px; }
  .hp-why-icon { width: 72px; height: 72px; font-size: 2rem; }
}

@media (max-width: 540px) {
  .hp-hero-title { font-size: 2.2rem; }
  .hp-hero {
    min-height: 560px;
  }
  .hp-hero-inner {
    min-height: 560px;
  }
  .hp-hero-content {
    max-width: 100%;
    padding-bottom: 110px;
  }
  .hp-hero-img-wrap {
    width: 48%;
    height: 250px;
    right: -10px;
    bottom: 40px;
  }
  .hp-level-card {
    padding: 34px 20px 24px;
  }
  .hp-level-icon {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
    margin: -26px auto 10px;
    border-width: 1.5px;
  }
  .hp-badge {
    display: inline-flex;
    width: auto;
    min-width: min(100%, 320px);
    max-width: calc(100vw - 56px);
    white-space: normal;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.72rem;
    letter-spacing: 0.2px;
  }
  .hp-section { padding: 44px 0 36px; }
  .hp-why-card { width: 94px; }
  .hp-cta-btn { font-size: 0.73rem; padding-left: 16px; }
  .hp-cta-shield { width: 68px; height: 78px; }
}

/* ---- PRICE ROW ICONS ---- */
.hp-price-info { display: flex; flex-direction: column; }
.hp-price-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hp-price-icon--sv {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: rgba(240,124,26,0.07);
}
.hp-price-icon--gv {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: rgba(10,31,68,0.07);
}
.hp-price-label {
    font-size: 0.95rem; /* tăng từ 0.72rem */
    font-weight: 500;
}

.hp-price-val {
    font-size: 2rem; /* tăng từ 1.45rem */
    font-weight: 900;
    line-height: 1.1;
}

.hp-price-unit {
    font-size: 0.95rem; /* tăng từ 0.7rem */
    font-weight: 500;
}

.hp-level-name {
    font-size: 2rem; /* tăng từ 1.55rem */
}

.hp-level-grade {
    font-size: 1rem; /* tăng từ 0.78rem */
}
.hp-level-card--featured{
    border: none;
    box-shadow: 0 4px 20px rgba(10,31,68,0.09);
    transform: none;
}
.hp-level-icon{
    width: 78px;
    height: 78px;
    background: #fff;
    border: 2px solid #f2e5dc;
    color: #f07c1a;
    font-size: 1.8rem;
    margin: -68px auto 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.hp-price-label{
    font-size: 1rem;
    color: #555;
}

.hp-price-val{
    font-size: 1.2rem;
    font-weight: 800;
    color: #f07c1a;
}

.hp-price-unit{
    font-size: .75rem;
    color: #555;
}

.hp-level-card{
    position: relative;

    background: #fff;
    border-radius: 16px;
    padding: 40px 24px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border: none;
}

.hp-level-card::after{
    content:'';
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:70px;
    height:3px;
    background:#f07c1a;
    border-radius:999px;
}
.hp-price-row:first-child .hp-price-val{
    color:#f47a20;
}

.hp-price-row:last-child .hp-price-val{
    color:#112b67;
}
.hp-special-price{
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap;
}
.hp-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 24px;

    background:rgba(6,18,52,.35);
    border:1px solid rgba(255,255,255,.12);
    border-radius:999px;

    color:#d7dbe7;
    font-size:0.9rem;
    font-weight:700;
    letter-spacing:.5px;

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    box-shadow:
        0 0 0 1px rgba(255,255,255,.03) inset,
        0 8px 24px rgba(0,0,0,.25);
}

.hp-badge{
    display:inline-flex; /* quan trọng */
    align-items:center;
    gap:10px;

    width:auto;
    max-width:max-content;
}
.hp-badge i{
    color:#f07c1a;
    font-size:.9rem;
}

@media (max-width: 540px) {
  .hp-cta-right {
    gap: 18px;
  }

  .hp-cta-btn {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .hp-cta-benefits {
    order: 1;
  }

  .hp-why-section {
    padding: 12px 0 40px;
  }

  .hp-why-title {
    font-size: 1.05rem;
    margin-bottom: 26px;
    line-height: 1.35;
  }

  .hp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 6px;
    align-items: start;
  }

  .hp-why-sep {
    display: none;
  }

  .hp-why-card {
    width: 100%;
    padding: 6px 4px;
    gap: 6px;
  }

  .hp-why-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .hp-why-badge {
    width: 14px;
    height: 14px;
    font-size: 0.42rem;
    bottom: 5px;
    right: 3px;
  }

  .hp-why-label {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .hp-level-card {
    padding: 28px 18px 22px;
  }

  .hp-level-icon {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
    margin: -32px auto 12px;
    border-width: 1.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
  }

  .hp-level-name {
    font-size: 1.45rem;
  }

  .hp-level-grade {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .hp-price-group {
    align-items: center;
  }

  .hp-price-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    gap: 8px;
    padding: 8px 0;
  }

  .hp-price-label {
    font-size: 0.82rem;
    text-align: center;
  }
  .hp-special-price span{
    font-weight: 500 !important;
  }

  .hp-price-val {
    font-size: 1.05rem;
    text-align: center;
  }

  .hp-price-unit {
    font-size: 0.68rem;
    margin-top: 5px;
    justify-content: center;
    text-align: center;
  }

  .hp-special-card {
    padding: 14px 14px;
    gap: 12px;
    border-radius: 10px;
  }

  .hp-special-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .hp-special-name {
    font-size: 0.9rem;
  }

  .hp-special-desc {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }

  .hp-special-price {
    font-size: 1rem !important;
  }

  .hp-special-price span {
    font-size: 0.68rem;
  }

  .hp-note {
    display: block;
    text-align: left;
    padding: 14px 16px;
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .hp-note i {
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .hp-note a {
    display: inline;
    white-space: normal;
  }
}
