/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, #0d1f3c 100%);
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.page-hero .bg-image-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(185, 145, 58, 0.8),
      transparent);
}

.page-hero-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%,
      rgba(185, 145, 58, 0.09) 0%,
      transparent 55%),
    radial-gradient(ellipse at 85% 50%,
      rgba(185, 145, 58, 0.07) 0%,
      transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.page-breadcrumb a:hover {
  color: var(--gold-300);
}

.page-breadcrumb .sep {
  font-size: 0.52rem;
  opacity: 0.35;
}

.page-breadcrumb .active {
  color: var(--gold-300);
  font-weight: 700;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== BILLING TOGGLE ===== */
.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.billing-label {
  font-family: "Cairo", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 0.2s;
}

.billing-label.active {
  color: #fff;
}

.billing-switch {
  width: 52px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s;
}

.billing-switch.yearly {
  background: rgba(184, 145, 58, 0.3);
  border-color: rgba(184, 145, 58, 0.4);
}

.billing-switch-thumb {
  width: 20px;
  height: 20px;
  background: var(--grad-gold);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  right: 4px;
  transition: transform 0.3s var(--ease-spring);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.billing-switch.yearly .billing-switch-thumb {
  transform: translateX(-24px);
}

.save-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, #0d1f3c 100%);
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.packages-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%,
      rgba(185, 145, 58, 0.07) 0%,
      transparent 50%),
    radial-gradient(ellipse at 85% 60%,
      rgba(185, 145, 58, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.packages-section .container {
  position: relative;
  z-index: 2;
}

/* re-use existing .pkg-* classes from style.css, extend here */
.pkg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pkg-desc {
  font-family: "Cairo", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.pkg-amount-yearly {
  display: none;
}

/* ===== COMPARISON TABLE ===== */
.compare-section {
  background: var(--gray-50);
}

.compare-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  padding: 24px 20px;
  text-align: center;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--gray-100);
  position: relative;
}

.compare-table th:first-child {
  text-align: center;
  background: var(--gray-50);
  width: 30%;
}

.compare-table th.th-vip {
  background: linear-gradient(180deg,
      rgba(184, 145, 58, 0.08) 0%,
      transparent 100%);
  border-top: 3px solid var(--gold-400);
}

.compare-table td {
  padding: 14px 20px;
  text-align: center;
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.compare-table td:first-child {
  text-align: center;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--gray-50);
}

.compare-table td.td-vip {
  background: rgba(184, 145, 58, 0.03);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: rgba(184, 145, 58, 0.03);
}

.compare-table tr:hover td:first-child {
  background: var(--gray-100);
}

.compare-table tr:hover td.td-vip {
  background: rgba(184, 145, 58, 0.07);
}

.compare-icon-yes {
  color: var(--gold-500);
  font-size: 1.1rem;
}

.compare-icon-no {
  color: var(--gray-300);
  font-size: 1rem;
}

.th-name {
  font-size: 1.1rem;
  color: var(--navy-900);
}

.th-price-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
  display: block;
  margin-top: 2px;
}

.cat-row td {
  background: var(--navy-900) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
}

.cat-row td:first-child {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  background: #fff;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--gray-50);
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--t-base);
}

.faq-item:hover {
  border-color: var(--gold-400);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: #fff;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-900);
  gap: 12px;
  user-select: none;
}

.faq-q .faq-arrow {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: var(--t-base);
}

.faq-item.open .faq-q {
  color: var(--gold-600);
}

.faq-item.open .faq-arrow {
  background: var(--grad-gold);
  border-color: transparent;
  color: #fff;
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 14px 22px 18px;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.8;
  border-top: 1px solid var(--gray-100);
}

.faq-item.open .faq-a {
  display: block;
}

/* ===== GUARANTEE STRIP ===== */
.guarantee-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 40px 0;
  border-top: 1px solid rgba(184, 145, 58, 0.2);
  border-bottom: 1px solid rgba(184, 145, 58, 0.2);
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.guarantee-item:last-child {
  border-left: none;
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(184, 145, 58, 0.15);
  border: 1px solid rgba(184, 145, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.2rem;
}

.guarantee-title {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.guarantee-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1199px) {
  .pkg-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pkg-grid-3 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .compare-wrap {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 600px;
  }

  .guarantee-item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
  }

  .guarantee-item:last-child {
    border-bottom: none;
  }

  .billing-toggle-wrap {
    flex-wrap: wrap;
  }
}

.pkg-btn-outline {
  background: rgb(193 193 193 / 30%);
  color: rgb(5 5 5 / 60%);
  border: 1px solid rgb(149 149 149 / 12%);
}

.pkg-btn-outline:hover {
  background: rgb(193 193 193 / 50%);
  color: rgb(5 5 5 / 90%);
  border-color: rgb(149 149 149 / 30%);
}