/* ══════════════════════════════════════
   RATES HERO
══════════════════════════════════════ */
.rates-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 90px 32px;
}
.rates-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1566417713940-fe7c737a9ef2?w=1600&q=85")
    center center / cover no-repeat;
  transform: scale(1.08);
  transition: transform 2.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.rates-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(18, 8, 5, 0.45) 0%,
      rgba(18, 8, 5, 0.68) 60%,
      var(--dark) 100%
    ),
    radial-gradient(
      ellipse at 70% 40%,
      rgba(201, 168, 76, 0.1) 0%,
      transparent 55%
    );
}
.rates-hero-bg.loaded {
  animation: ratesHeroPan 22s ease-in-out 2.4s infinite;
}
@keyframes ratesHeroPan {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05) translateX(-8px);
  }
  100% {
    transform: scale(1);
  }
}
.rates-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 2;
}
.rates-hero-deco-l,
.rates-hero-deco-r {
  position: absolute;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.35),
    transparent
  );
  z-index: 3;
}
.rates-hero-deco-l {
  left: 64px;
}
.rates-hero-deco-r {
  right: 64px;
}
.rates-hero-content {
  position: relative;
  z-index: 4;
  max-width: 700px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s ease 0.5s,
    transform 0.9s ease 0.5s;
}
.rates-hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}
.rates-hero-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.rates-hero-tag::before,
.rates-hero-tag::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.rates-hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.rates-hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.rates-hero-sub {
  font-size: 13px;
  color: var(--champ);
  opacity: 0.7;
  line-height: 1.9;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 34px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.rates-hero-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rh-chip {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rh-chip-vip {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ══════════════════════════════════════
   PRICING PACKAGES — V8 ACCORDION
══════════════════════════════════════ */
.pkg-section {
  padding: 80px 64px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.pkg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 80% 10%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 90%,
      rgba(139, 26, 47, 0.07) 0%,
      transparent 50%
    );
}
.pkg-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.pkg-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 12px;
}
.pkg-title em {
  font-style: italic;
  color: var(--gold);
}
.pkg-sub {
  font-size: 13px;
  color: var(--champ);
  opacity: 0.5;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}
.pkg-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* Individual accordion item */
.pkg-item {
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(13, 7, 3, 0.97);
  transition: border-color 0.3s;
}
.pkg-item.open {
  border-color: rgba(201, 168, 76, 0.45);
}
.pkg-item.pkg-item-feat {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(20, 10, 6, 0.98);
}
.pkg-item.pkg-item-feat.open {
  border-color: rgba(201, 168, 76, 0.6);
}

/* Clickable header row */
.pkg-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}
.pkg-row:hover {
  background: rgba(201, 168, 76, 0.03);
}
.pkg-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pkg-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.pkg-item.pkg-item-feat .pkg-num {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}
.pkg-item.open .pkg-num {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}
.pkg-row-lbl {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 3px;
}
.pkg-row-name {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
}
.pkg-row-price {
  text-align: right;
}
.pkg-row-amt {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pkg-row-per {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champ);
  opacity: 0.32;
  margin-top: 3px;
}
.pkg-chevron {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.25s,
    border-color 0.25s;
}
.pkg-item.open .pkg-chevron {
  transform: rotate(180deg);
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.5);
}

/* Collapsible body */
.pkg-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-item.open .pkg-body {
  max-height: 320px;
}
.pkg-body-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 0 28px 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: 20px;
}
.pkg-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.pkg-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--champ);
  line-height: 1.4;
}
.pkg-feat-off {
  opacity: 0.22;
}
.pkg-ck {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  font-weight: 700;
}
.pkg-xk {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  flex-shrink: 0;
}
.pkg-feat-crown .pkg-crown {
  color: #c084fc;
  font-size: 12px;
  flex-shrink: 0;
}
.pkg-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 150px;
}
.pkg-note {
  font-size: 9px;
  color: var(--champ);
  opacity: 0.28;
  font-style: italic;
  text-align: right;
  letter-spacing: 0.06em;
}
.pkg-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.pkg-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.pkg-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(201, 168, 76, 0.38);
  color: var(--gold);
}
.pkg-btn-outline:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
}
.pkg-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--dark);
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.38);
}
.pkg-btn-gold:hover {
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}
.pkg-btn-vip {
  background: linear-gradient(135deg, var(--accent), #5a0e1e);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-l);
  box-shadow: 0 6px 22px rgba(139, 26, 47, 0.35);
}
.pkg-btn-vip:hover {
  box-shadow: 0 10px 30px rgba(139, 26, 47, 0.5);
}
.pkg-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 11px;
  color: var(--champ);
  opacity: 0.32;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════
   PROFILE LIST + SPOTLIGHT
══════════════════════════════════════ */
.rates-profiles {
  padding: 72px 64px;
  background: var(--dark-3);
}
.rates-profiles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.rates-profiles-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
}
.rates-profiles-title em {
  font-style: italic;
  color: var(--gold);
}
.rates-profiles-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.rates-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rates-list-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(255, 245, 228, 0.02);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.rates-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  border-radius: 3px 0 0 3px;
  transition: background 0.25s;
}
.rates-list-item:hover,
.rates-list-item.active {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(255, 245, 228, 0.05);
}
.rates-list-item:hover::before,
.rates-list-item.active::before {
  background: var(--gold);
}
.rates-list-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}
.rates-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.rates-list-name {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 3px;
}
.rates-list-meta {
  font-size: 9px;
  color: var(--champ);
  opacity: 0.45;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.rates-list-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.rates-list-price {
  text-align: right;
}
.rates-list-pval {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.rates-list-punit {
  font-size: 8px;
  color: var(--champ);
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rates-list-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 8px;
  color: var(--gold);
  opacity: 0.3;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.rs-chip {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.rs-chip-vip {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold);
}
.rates-spotlight {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  position: sticky;
  top: 20px;
}
.rates-spotlight img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.3s ease;
}
.rates-spotlight-ov {
  position: relative;
  margin-top: -120px;
  background: linear-gradient(to bottom, transparent, rgba(10, 5, 3, 0.99));
  padding: 28px 24px;
  z-index: 2;
}
.rates-spotlight-badge {
  margin-bottom: 10px;
}
.rs-badge {
  display: inline-block;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--dark);
}
.rates-spotlight-name {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 4px;
}
.rates-spotlight-meta {
  font-size: 9.5px;
  color: var(--champ);
  opacity: 0.5;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.rates-spotlight-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.rates-spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.18);
  margin-bottom: 16px;
}
.rs-stat {
  padding: 10px 8px;
  background: rgba(10, 5, 3, 0.9);
  text-align: center;
}
.rs-stat-v {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.rs-stat-l {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champ);
  opacity: 0.4;
}
.rs-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 14px;
}
.rs-price-val {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.rs-price-unit {
  font-size: 9px;
  color: var(--champ);
  opacity: 0.45;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rates-spotlight-btns {
  display: flex;
  gap: 8px;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1502635385003-ee1e6a1a742d?w=1600&q=80")
    center center / cover no-repeat;
  filter: brightness(0.28) saturate(0.7);
  transform: scale(1.07);
  transition: transform 2.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.cta-section.cta-bg-loaded .cta-bg-img {
  animation: ctaBgScale 24s ease-in-out 2.6s infinite;
}
@keyframes ctaBgScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05) translateY(-6px);
  }
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 8, 5, 0.82) 0%,
    rgba(139, 26, 47, 0.22) 50%,
    rgba(18, 8, 5, 0.9) 100%
  );
}
.cta-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 2;
}
.cta-inner {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 40px;
}
.cta-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  opacity: 0.8;
}
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}
.cta-title em {
  font-style: italic;
  color: var(--gold);
}
.cta-desc {
  font-size: 13px;
  color: var(--champ);
  opacity: 0.65;
  line-height: 1.92;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 48px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.28);
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    opacity 0.22s;
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.42);
  opacity: 0.92;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  text-decoration: none;
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
}
.btn-call:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 245, 228, 0.06);
  color: var(--champ);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(232, 213, 176, 0.2);
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.22s;
}
.btn-book:hover {
  background: rgba(255, 245, 228, 0.1);
  border-color: rgba(232, 213, 176, 0.4);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════
   ANIMATION
══════════════════════════════════════ */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .pkg-section {
    padding: 72px 40px;
  }
}
@media (max-width: 900px) {
  .pkg-section {
    padding: 64px 24px;
  }
  .pkg-row {
    padding: 18px 20px;
    gap: 14px;
  }
  .pkg-body-inner {
    grid-template-columns: 1fr;
    padding: 0 20px 24px;
  }
  .pkg-cta {
    align-items: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .pkg-note {
    text-align: left;
  }
  .rates-profiles {
    padding: 56px 20px;
  }
  .rates-profiles-inner {
    grid-template-columns: 1fr;
  }
  .rates-spotlight {
    display: none;
  }
  .rates-hero-deco-l,
  .rates-hero-deco-r {
    display: none;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 640px) {
  .pkg-row-name {
    font-size: 20px;
  }
  .pkg-row-amt {
    font-size: 20px;
  }
  .pkg-feats {
    grid-template-columns: 1fr;
  }
  .rates-list-item {
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    padding: 14px 16px;
  }
  .rates-list-thumb {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 480px) {
  .rates-hero {
    padding: 70px 20px;
  }
  .pkg-section {
    padding: 56px 16px;
  }
  .pkg-row {
    padding: 16px;
    grid-template-columns: 1fr auto;
  }
  .pkg-row-price {
    display: none;
  }
  .cta-inner {
    padding: 56px 24px;
  }
}
