/* ============================================
   Himachal Package — Mountain-Inspired Design
   Palette:
   - Deep pine: #1a3c34
   - Forest: #2d6a4f
   - Sky blue: #4a90d9
   - Snow white: #ffffff
   - Warm amber: #e8a838
   - Mist: #f0f4f8
   ============================================ */

*,*::before,*::after { box-sizing: border-box; }

:root {
  --pine: #1a3c34;
  --pine-light: #2d6a4f;
  --sky: #4a90d9;
  --sky-light: #e8f1fb;
  --amber: #e8a838;
  --snow: #ffffff;
  --mist: #f0f4f8;
  --stone: #4a5568;
  --stone-light: #718096;
  --text: #2d3748;
  --radius: 16px;
  --radius-sm: 10px;
  --primary-color: #1a3c34;
  --accent-color: #4a90d9;
  --light-bg: #f0f4f8;
  --text-color: #2d3748;
  --light-text: #718096;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--snow);
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
}

/* ===== Header — Floating Transparent ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  box-shadow: none;
  transition: all 0.4s ease;
  backdrop-filter: none;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: contain;
}

.logo h1 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--snow);
  transition: color 0.3s;
  font-weight: 700;
}

.header.scrolled .logo h1 { color: var(--pine); }

.logo .highlight { color: var(--amber); }
.header.scrolled .logo .highlight { color: var(--pine-light); }

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--snow);
}

.header.scrolled .nav-links a { color: var(--stone); }
.header.scrolled .nav-links a:hover {
  background: var(--sky-light);
  color: var(--pine);
}

.nav-links a::after { display: none; }

.mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--snow);
  cursor: pointer;
  padding: 0.5rem;
}

.header.scrolled .mobile-menu { color: var(--pine); }


/* ===== Hero Section — Immersive Fullscreen ===== */
.hp-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hp-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/himachal-hero.jpg') center/cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 60, 52, 0.2) 0%,
    rgba(26, 60, 52, 0.35) 40%,
    rgba(26, 60, 52, 0.75) 80%,
    rgba(26, 60, 52, 0.92) 100%
  );
}

/* Snow particles */
.hp-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hp-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: snowfall linear infinite;
}

.hp-particles span:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; width: 4px; height: 4px; }
.hp-particles span:nth-child(2) { left: 25%; animation-duration: 12s; animation-delay: 2s; }
.hp-particles span:nth-child(3) { left: 40%; animation-duration: 10s; animation-delay: 4s; width: 3px; height: 3px; }
.hp-particles span:nth-child(4) { left: 55%; animation-duration: 14s; animation-delay: 1s; }
.hp-particles span:nth-child(5) { left: 70%; animation-duration: 9s; animation-delay: 3s; width: 5px; height: 5px; }
.hp-particles span:nth-child(6) { left: 85%; animation-duration: 11s; animation-delay: 5s; width: 3px; height: 3px; }
.hp-particles span:nth-child(7) { left: 15%; animation-duration: 13s; animation-delay: 6s; }
.hp-particles span:nth-child(8) { left: 60%; animation-duration: 7s; animation-delay: 2s; width: 4px; height: 4px; }
.hp-particles span:nth-child(9) { left: 35%; animation-duration: 15s; animation-delay: 0s; width: 3px; height: 3px; }
.hp-particles span:nth-child(10) { left: 80%; animation-duration: 10s; animation-delay: 4s; }

@keyframes snowfall {
  0% { top: -10px; opacity: 0; transform: translateX(0); }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { top: 100vh; opacity: 0; transform: translateX(80px); }
}

.hp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--snow);
  padding: 2rem;
  max-width: 900px;
}

.hp-hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
  animation: heroFadeUp 1s ease 0.2s both;
}

.hp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 0.75rem;
  letter-spacing: -2px;
  animation: heroFadeUp 1s ease 0.4s both;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hp-hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.85;
  margin: 0 0 2rem;
  animation: heroFadeUp 1s ease 0.6s both;
}

.hp-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
  animation: heroFadeUp 1s ease 0.8s both;
}

.hp-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}

.hp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: var(--amber);
  color: var(--pine);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s;
  animation: heroFadeUp 1s ease 1s both;
  box-shadow: 0 6px 25px rgba(232, 168, 56, 0.35);
}

.hp-hero-cta:hover {
  background: #f0b84a;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(232, 168, 56, 0.45);
}

.hp-hero-cta i {
  animation: bounce 2s infinite;
}

.hp-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  animation: heroFadeUp 1s ease 1.2s both;
}

.hp-hero-scroll i { animation: bounce 2s infinite; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


/* ===== Pricing Section — Split Card ===== */
.hp-pricing {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--snow) 0%, var(--mist) 100%);
}

.hp-pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--snow);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(26, 60, 52, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hp-pricing-visual {
  position: relative;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hp-pricing-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pine), #2d6a4f, #1a5c3a);
  z-index: 0;
}

.hp-pricing-visual-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/himachal-hero.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.hp-pricing-visual-content {
  position: relative;
  z-index: 1;
  color: var(--snow);
}

.hp-pricing-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--pine);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hp-pricing-visual-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.hp-pricing-visual-content > p {
  font-size: 0.92rem;
  opacity: 0.8;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.hp-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 2.5rem;
}

.hp-price-currency {
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0.8;
}

.hp-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
}

.hp-price-per {
  font-size: 0.95rem;
  opacity: 0.65;
  margin-left: 0.4rem;
}

.hp-pricing-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hp-btn-pay,
.hp-btn-wa,
.hp-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: inherit;
}

.hp-btn-pay {
  background: var(--amber);
  color: var(--pine);
  box-shadow: 0 4px 15px rgba(232, 168, 56, 0.35);
}

.hp-btn-pay:hover {
  background: #f0b84a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 168, 56, 0.45);
}

.hp-btn-wa {
  background: #25D366;
  color: var(--snow);
}

.hp-btn-wa:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.hp-btn-book {
  background: rgba(255, 255, 255, 0.12);
  color: var(--snow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hp-btn-book:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Right side — inclusions */
.hp-pricing-details {
  padding: 3.5rem;
}

.hp-pricing-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--pine);
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.hp-inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.hp-inclusions-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}

.hp-inclusions-list li:last-child { border-bottom: none; }

.hp-inclusions-list li i {
  color: var(--pine-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hp-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hp-guarantees span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--sky-light);
  color: var(--sky);
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
}

.hp-guarantees span i {
  font-size: 0.7rem;
}


/* ===== Footer — Modern & Clean ===== */
.hp-footer {
  background: linear-gradient(135deg, #0c1f1a, var(--pine), #1a4a3a);
  color: rgba(255, 255, 255, 0.8);
}

.hp-footer-top {
  padding: 4.5rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.hp-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  opacity: 0.75;
}

.hp-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.hp-footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

.hp-footer-logo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--snow);
  margin: 0;
  font-weight: 700;
}

.hp-footer-social {
  display: flex;
  gap: 0.6rem;
}

.hp-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--snow);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.hp-footer-social a:hover {
  background: var(--pine-light);
  transform: translateY(-3px);
  border-color: var(--pine-light);
}

.hp-footer-col h4 {
  color: var(--snow);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.hp-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.hp-footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  transition: all 0.3s;
}

.hp-footer-col a:hover {
  color: var(--snow);
  padding-left: 0.5rem;
}

.hp-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.hp-footer-contact p i {
  color: var(--amber);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
}

.hp-footer-contact a {
  display: inline;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
}

.hp-footer-contact a:hover {
  color: var(--snow);
  padding-left: 0;
}

.hp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hp-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.hp-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.hp-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}

.hp-footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.7); }

/* ===== Back to Top ===== */
.hp-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--pine);
  color: var(--snow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(26, 60, 52, 0.3);
}

.hp-back-top:hover {
  background: var(--pine-light);
  transform: translateY(-3px);
}

.hp-back-top.visible {
  opacity: 1;
  visibility: visible;
}


/* ===== Existing Sections (Overview, Gallery, Itinerary) ===== */
.package-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

.section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--pine);
  position: relative;
  padding-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--pine-light));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--stone-light);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.text-muted {
  color: var(--stone-light);
  font-size: 0.88rem;
  display: block;
  margin-top: 0.4rem;
  font-weight: 400;
}

/* Package Overview */
.package-overview {
  padding: 6rem 0;
  background: var(--mist);
}

.package-overview .section-title::after {
  background: linear-gradient(90deg, var(--amber), var(--pine-light));
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.overview-card {
  background: var(--snow);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(26, 60, 52, 0.08);
  border-color: transparent;
}

.overview-card i {
  font-size: 2.2rem;
  color: var(--pine-light);
  margin-bottom: 1.25rem;
  display: inline-block;
  transition: all 0.3s;
}

.overview-card:hover i {
  color: var(--amber);
  transform: scale(1.1);
}

.overview-card h3 {
  font-size: 1.15rem;
  color: var(--pine);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.overview-card p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Gallery */
.gallery {
  padding: 6rem 0;
  background: var(--snow);
}

.gallery .section-title {
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 60, 52, 0.9));
  color: var(--snow);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .overlay { transform: translateY(0); }

.gallery-item h3 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.gallery-item p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.gallery-item:hover p {
  opacity: 0.85;
  transform: translateY(0);
}

.gallery::before { display: none; }

/* Itinerary — keep timeline.css styles, just override colors */
.itinerary { padding: 6rem 0; background: var(--mist); }
.itinerary .section-title { color: var(--pine); }

/* Timeline overrides */
.timeline::before { background: var(--pine-light); }
.day-number { background: linear-gradient(135deg, var(--pine), var(--pine-light)); }
.timeline-dot { background: var(--pine-light); border-color: var(--pine-light); }
.timeline-highlights span { background: rgba(45, 106, 79, 0.08); color: var(--pine); }


/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hp-pricing-wrapper { grid-template-columns: 1fr; }
  .hp-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-links a {
    color: var(--stone) !important;
    padding: 0.85rem 2rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: var(--mist) !important;
    color: var(--pine) !important;
  }

  .nav-links.active { display: flex; }
  .mobile-menu { display: block; }

  .hp-hero { min-height: 600px; }
  .hp-hero-title { letter-spacing: -1px; }
  .hp-hero-chips span { font-size: 0.75rem; padding: 0.4rem 0.8rem; }

  .overview-grid { grid-template-columns: 1fr; max-width: 450px; margin: 2rem auto 0; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }

  .hp-pricing-visual,
  .hp-pricing-details { padding: 2.5rem 2rem; }

  .hp-price-amount { font-size: 3rem; }
  .hp-pricing-btns { flex-direction: column; }
  .hp-btn-pay, .hp-btn-wa, .hp-btn-book { justify-content: center; }

  .hp-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hp-footer-bottom { flex-direction: column; text-align: center; }
  .hp-footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hp-hero-chips { flex-direction: column; align-items: center; }
  .hp-hero-chips span { width: 100%; justify-content: center; }
  .hp-hero-cta { width: 100%; justify-content: center; }
  .logo h1 { font-size: 1rem; }
}
