/* ============================================
   EGYPT TRAVEL LANDING PAGE — STYLE
   Recreating reference screenshot precisely
   ============================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ---- Video Background ---- */
.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero__fallback-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -1;
}

/* ---- Subtle Overlay ---- */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.1) 65%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 20px 40px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 11;
}

.header__logo-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.header__logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* Desktop Navigation */
.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.header__nav-link:hover,
.header__nav-link:focus {
  color: #ffffff;
}

/* Auth Buttons */
.header__auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__auth-login {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
}

.header__auth-login:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.header__auth-signup {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.08);
}

.header__auth-signup:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Mobile Toggle — hidden on desktop */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 11;
  padding: 4px;
}

.header__mobile-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__mobile-menu {
  display: none;
}

/* ============================================
   HERO CONTENT
   ============================================ */
.hero__content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ---- Giant EGYPT Typography ---- */
.hero__title {
  font-size: clamp(100px, 18vw, 300px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  user-select: none;
  pointer-events: none;
  /* The text sits in the upper-center, allowing pyramids to show through composition */
  position: relative;
  top: -5%;
}

/* ---- Bottom Section (Stats + CTA) ---- */
.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 10px;
}

/* ---- Stats ---- */
.hero__stats {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero__stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
}

/* ---- CTA ---- */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero__cta-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__cta-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.hero__cta-book:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  color: #ffffff;
}

.hero__cta-arrow svg {
  width: 18px;
  height: 18px;
}

.hero__cta-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(2px);
}

.hero__cta-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  letter-spacing: 0.01em;
  max-width: 380px;
}

/* ============================================
   ENTRANCE ANIMATIONS (subtle)
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__title {
  animation: fadeIn 1.2s ease-out 0.2s both;
}

.hero__stats {
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero__cta {
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.header__inner {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__stats,
  .hero__cta,
  .header__inner {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__cta-arrow:hover {
    transform: none;
  }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .header {
    padding: 16px 24px;
  }

  .hero__content {
    padding: 0 24px 32px;
  }

  .hero__title {
    font-size: clamp(80px, 16vw, 200px);
  }

  .hero__stats {
    gap: 32px;
  }

  .hero__stat-number {
    font-size: 24px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .header {
    padding: 16px 20px;
  }

  .header__nav {
    display: none;
  }

  .header__auth {
    display: none;
  }

  .header__mobile-toggle {
    display: flex;
  }

  /* Mobile menu open state */
  .header__mobile-menu.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    padding: 80px 24px 40px;
    animation: fadeIn 0.3s ease-out;
  }

  .header__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .header__mobile-link {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
  }

  .header__mobile-link:hover {
    color: #ffffff;
  }

  .header__mobile-auth {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Mobile toggle active */
  .header__mobile-toggle.is-active .header__mobile-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__mobile-toggle.is-active .header__mobile-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .header__mobile-toggle.is-active .header__mobile-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__content {
    padding: 0 20px 28px;
  }

  .hero__title {
    font-size: clamp(60px, 18vw, 150px);
    letter-spacing: -0.01em;
  }

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero__stat-number {
    font-size: 22px;
  }

  .hero__stat-label {
    font-size: 12px;
  }

  .hero__cta-text {
    font-size: 12px;
    max-width: 300px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(50px, 20vw, 120px);
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-number {
    font-size: 20px;
  }

  .hero__cta-book {
    padding: 10px 24px;
    font-size: 13px;
  }

  .hero__cta-arrow {
    width: 40px;
    height: 40px;
  }

  .hero__cta-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */
.locations {
  position: relative;
  background: #0a0a0a;
  padding: 120px 40px;
  overflow: hidden;
}

/* Subtle top gradient fade from hero */
.locations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, #0d0b08 0%, #0a0a0a 100%);
  pointer-events: none;
  z-index: 0;
}

.locations__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---- Section Header ---- */
.locations__header {
  margin-bottom: 64px;
}

.locations__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9956b;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(201, 149, 107, 0.3);
  border-radius: 50px;
  background: rgba(201, 149, 107, 0.08);
}

.locations__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.locations__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
}

/* ---- Cards Grid ---- */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* ---- Location Card ---- */
.loc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  /* Scroll reveal */
  opacity: 0;
  transform: translateY(40px);
  animation: locCardReveal 0.7s ease-out forwards;
}

.loc-card:nth-child(1) { animation-delay: 0.1s; }
.loc-card:nth-child(2) { animation-delay: 0.2s; }
.loc-card:nth-child(3) { animation-delay: 0.3s; }
.loc-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes locCardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.5);
}

/* Tall variant — staggered masonry feel */
.loc-card--tall {
  margin-top: -40px;
}

/* ---- Card Image ---- */
.loc-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3.2;
  overflow: hidden;
}

.loc-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.loc-card__image--aswan {
  object-position: center 60%;
  filter: hue-rotate(15deg) saturate(1.1);
}

.loc-card:hover .loc-card__image {
  transform: scale(1.06);
}

/* Badge */
.loc-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
}

.loc-card__badge--accent {
  background: rgba(201, 149, 107, 0.35);
  border-color: rgba(201, 149, 107, 0.3);
  color: #f5dfc5;
}

/* ---- Card Body ---- */
.loc-card__body {
  padding: 20px;
}

.loc-card__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.loc-card__name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.loc-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.loc-card__star {
  width: 14px;
  height: 14px;
  color: #c9956b;
}

.loc-card__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

/* ---- Card Footer ---- */
.loc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.loc-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.loc-card__price-amount {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.loc-card__price-unit {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.loc-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.3s ease;
}

.loc-card__cta svg {
  width: 16px;
  height: 16px;
}

.loc-card__cta:hover {
  background: rgba(201, 149, 107, 0.25);
  border-color: rgba(201, 149, 107, 0.4);
  transform: translateX(2px);
}

/* ============================================
   LOCATIONS — RESPONSIVE TABLET
   ============================================ */
@media (max-width: 1024px) {
  .locations {
    padding: 80px 24px;
  }

  .locations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .loc-card--tall {
    margin-top: 0;
  }
}

/* ============================================
   LOCATIONS — RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
  .locations {
    padding: 64px 20px;
  }

  .locations__header {
    margin-bottom: 40px;
  }

  .locations__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 440px;
  }

  .loc-card__image-wrap {
    aspect-ratio: 16 / 10;
  }
}

/* ============================================
   LOCATIONS — REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .loc-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .loc-card:hover {
    transform: none;
  }

  .loc-card:hover .loc-card__image {
    transform: none;
  }

  .loc-card__cta:hover {
    transform: none;
  }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  position: relative;
  background: #080808;
  padding: 120px 40px;
  overflow: hidden;
}

/* Ambient background glow */
.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 149, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pricing__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Section Header ---- */
.pricing__header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9956b;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(201, 149, 107, 0.3);
  border-radius: 50px;
  background: rgba(201, 149, 107, 0.08);
}

.pricing__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.pricing__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Billing Toggle ---- */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.pricing__toggle-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
  cursor: pointer;
}

.pricing__toggle-label--active {
  color: #ffffff;
}

.pricing__toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.pricing__toggle-switch:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing__toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.pricing__toggle-switch.is-yearly .pricing__toggle-knob {
  transform: translateX(24px);
}

.pricing__toggle-switch.is-yearly {
  background: rgba(201, 149, 107, 0.25);
  border-color: rgba(201, 149, 107, 0.4);
}

.pricing__toggle-save {
  font-size: 11px;
  font-weight: 600;
  color: #c9956b;
  background: rgba(201, 149, 107, 0.12);
  border: 1px solid rgba(201, 149, 107, 0.25);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* ---- Pricing Grid ---- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ---- Price Card ---- */
.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  /* Entrance animation */
  opacity: 0;
  transform: translateY(30px);
  animation: priceCardReveal 0.7s ease-out forwards;
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes priceCardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.4);
}

/* ---- Popular Card Highlight ---- */
.price-card--popular {
  background: rgba(201, 149, 107, 0.06);
  border-color: rgba(201, 149, 107, 0.25);
  box-shadow: 0 0 80px -20px rgba(201, 149, 107, 0.15);
  transform: translateY(-8px) scale(1.02);
  padding-top: 48px;
}

.price-card--popular:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(201, 149, 107, 0.35);
  box-shadow: 0 24px 80px -16px rgba(201, 149, 107, 0.2);
}

@keyframes priceCardRevealPopular {
  to {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
  }
}

.price-card--popular {
  animation-name: priceCardRevealPopular;
}

.price-card__popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #c9956b 0%, #e0b88a 100%);
  border-radius: 0 0 12px 12px;
}

/* ---- Card Header ---- */
.price-card__header {
  margin-bottom: 28px;
}

.price-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.price-card--popular .price-card__icon {
  background: rgba(201, 149, 107, 0.15);
  border-color: rgba(201, 149, 107, 0.3);
  color: #c9956b;
}

.price-card__icon svg {
  width: 22px;
  height: 22px;
}

.price-card__name {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.price-card__tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Pricing Amount ---- */
.price-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card__amount {
  display: flex;
  align-items: flex-start;
}

.price-card__currency {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  margin-right: 2px;
}

.price-card__value {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.price-card--popular .price-card__value {
  color: #e0c8a8;
}

.price-card__period {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Features List ---- */
.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.price-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.price-card__feature--muted {
  color: rgba(255, 255, 255, 0.25);
}

.price-card__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #c9956b;
}

.price-card__feature--muted .price-card__check {
  color: rgba(255, 255, 255, 0.15);
}

/* ---- CTA Button ---- */
.price-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.price-card__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.price-card__btn--primary {
  background: linear-gradient(135deg, #c9956b 0%, #b07d52 100%);
  border-color: rgba(201, 149, 107, 0.5);
  color: #0a0a0a;
  font-weight: 600;
}

.price-card__btn--primary:hover {
  background: linear-gradient(135deg, #d9a87e 0%, #c08d62 100%);
  border-color: rgba(201, 149, 107, 0.7);
  box-shadow: 0 8px 30px -6px rgba(201, 149, 107, 0.3);
}

/* ============================================
   PRICING — RESPONSIVE TABLET
   ============================================ */
@media (max-width: 1024px) {
  .pricing {
    padding: 80px 24px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 20px;
  }

  .price-card--popular {
    transform: none;
    padding-top: 48px;
  }

  .price-card--popular:hover {
    transform: translateY(-4px);
  }

  @keyframes priceCardRevealPopular {
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* ============================================
   PRICING — RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
  .pricing {
    padding: 64px 20px;
  }

  .pricing__toggle {
    margin-bottom: 40px;
  }

  .price-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .price-card__value {
    font-size: 44px;
  }
}

/* ============================================
   PRICING — REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .price-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .price-card--popular {
    transform: none;
  }

  .price-card:hover,
  .price-card--popular:hover {
    transform: none;
  }

  .pricing__toggle-knob {
    transition: none;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 120px 40px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background glow */
.faq::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 149, 107, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.faq::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 149, 107, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- Section Header ---- */
.faq__header {
  text-align: center;
  margin-bottom: 72px;
}

.faq__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9956b;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 149, 107, 0.25);
  border-radius: 50px;
  background: rgba(201, 149, 107, 0.06);
}

.faq__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.faq__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- FAQ Content Grid ---- */
.faq__content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

/* ---- Left Decorative Column ---- */
.faq__deco {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq__deco-glyph {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201, 149, 107, 0.08) 0%, rgba(201, 149, 107, 0.02) 100%);
  border: 1px solid rgba(201, 149, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Shimmer overlay */
.faq__deco-glyph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(201, 149, 107, 0.05) 50%,
    transparent 70%
  );
  animation: faqShimmer 4s ease-in-out infinite;
}

@keyframes faqShimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%); }
  50% { transform: translateX(100%) translateY(100%); }
}

.faq__ankh {
  width: 64px;
  height: 96px;
  color: rgba(201, 149, 107, 0.35);
  animation: faqAnkhFloat 6s ease-in-out infinite;
}

@keyframes faqAnkhFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Stats */
.faq__deco-stats {
  display: flex;
  gap: 16px;
}

.faq__deco-stat {
  flex: 1;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.faq__deco-stat:hover {
  background: rgba(201, 149, 107, 0.06);
  border-color: rgba(201, 149, 107, 0.15);
}

.faq__deco-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #e0c8a8;
  margin-bottom: 4px;
}

.faq__deco-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

/* CTA link */
.faq__deco-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 149, 107, 0.1) 0%, rgba(201, 149, 107, 0.04) 100%);
  border: 1px solid rgba(201, 149, 107, 0.15);
  color: #e0c8a8;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq__deco-cta:hover {
  background: linear-gradient(135deg, rgba(201, 149, 107, 0.15) 0%, rgba(201, 149, 107, 0.08) 100%);
  border-color: rgba(201, 149, 107, 0.3);
  transform: translateY(-2px);
}

.faq__deco-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq__deco-cta:hover svg {
  transform: translateX(4px);
}

/* ---- Accordion ---- */
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(20px);
  animation: faqItemReveal 0.5s ease forwards;
}

.faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Staggered reveal */
.faq__item:nth-child(1) { animation-delay: 0.1s; }
.faq__item:nth-child(2) { animation-delay: 0.15s; }
.faq__item:nth-child(3) { animation-delay: 0.2s; }
.faq__item:nth-child(4) { animation-delay: 0.25s; }
.faq__item:nth-child(5) { animation-delay: 0.3s; }
.faq__item:nth-child(6) { animation-delay: 0.35s; }

@keyframes faqItemReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Question button */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__question:hover {
  padding-left: 8px;
}

.faq__question-num {
  font-size: 14px;
  font-weight: 700;
  color: rgba(201, 149, 107, 0.5);
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  transition: color 0.3s ease;
}

.faq__item.is-open .faq__question-num {
  color: #c9956b;
}

.faq__question-text {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq__question:hover .faq__question-text {
  color: #ffffff;
}

.faq__item.is-open .faq__question-text {
  color: #e0c8a8;
}

/* Plus/minus icon */
.faq__question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq__question-icon svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__question:hover .faq__question-icon {
  background: rgba(201, 149, 107, 0.08);
  border-color: rgba(201, 149, 107, 0.2);
}

.faq__question:hover .faq__question-icon svg {
  color: #c9956b;
}

/* Rotate plus to X when open */
.faq__item.is-open .faq__question-icon {
  background: rgba(201, 149, 107, 0.12);
  border-color: rgba(201, 149, 107, 0.25);
}

.faq__item.is-open .faq__question-icon svg {
  color: #c9956b;
  transform: rotate(45deg);
}

/* Answer area */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding: 0 0 28px 48px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.35s ease 0.1s;
}

.faq__item.is-open .faq__answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq__answer-inner p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.faq__answer-inner strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ============================================
   FAQ — RESPONSIVE TABLET
   ============================================ */
@media (max-width: 1024px) {
  .faq {
    padding: 80px 24px;
  }

  .faq__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq__deco {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .faq__deco-glyph {
    display: none;
  }

  .faq__deco-stats {
    flex: 1;
    min-width: 200px;
  }

  .faq__deco-cta {
    flex: 1;
    min-width: 200px;
  }
}

/* ============================================
   FAQ — RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
  .faq {
    padding: 64px 20px;
  }

  .faq__header {
    margin-bottom: 48px;
  }

  .faq__deco {
    flex-direction: column;
  }

  .faq__deco-stats {
    flex-direction: column;
    gap: 12px;
  }

  .faq__question {
    gap: 14px;
    padding: 22px 0;
  }

  .faq__question-text {
    font-size: 15px;
  }

  .faq__question-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .faq__question-icon svg {
    width: 14px;
    height: 14px;
  }

  .faq__answer-inner {
    padding: 0 0 22px 42px;
  }

  .faq__answer-inner p {
    font-size: 14px;
  }
}

/* ============================================
   FAQ — REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .faq__item {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .faq__ankh {
    animation: none;
  }

  .faq__deco-glyph::before {
    animation: none;
  }

  .faq__answer {
    transition: none;
  }

  .faq__answer-inner {
    transition: none;
  }

  .faq__question-icon svg {
    transition: none;
  }
}
