/* ========== Vasu Infra · Bespoke styles (pure CSS, no build) ========== */

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* ============ GOLD FOIL GRADIENT ============ */
.text-gold-foil {
  background: linear-gradient(135deg, #8A6A28 0%, #C9A24C 25%, #F0D78C 50%, #C9A24C 75%, #8A6A28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: foil 9s ease-in-out infinite;
}
@keyframes foil {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ============ GRAIN OVERLAY ============ */
.grain {
  background-image:
    radial-gradient(rgba(240,215,140,0.6) 1px, transparent 1px),
    radial-gradient(rgba(240,215,140,0.4) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
}

/* ============ NAV ============ */
#nav.is-scrolled {
  background: rgba(7,7,8,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,76,0.18);
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,230,211,0.75);
  padding-bottom: 4px;
  transition: color .3s ease;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F0D78C, transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s ease;
}
.nav-link:hover { color: #F0D78C; }
.nav-link:hover::after { transform: scaleX(1); }

.mobile-link {
  display: block;
  padding: 0.85rem 0.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(237,230,211,0.85);
  border-bottom: 1px solid rgba(201,162,76,0.08);
}
.mobile-link:hover { color: #F0D78C; }

/* Mobile Menu Container */
#mobileMenu {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mobile Links */
.mobile-link {
  display: block;
  padding: 0.85rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(237, 230, 211, 0.75);
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-link:hover {
  color: #F0D78C;
  background: rgba(201, 162, 76, 0.08);
  transform: translateX(4px);
}

.mobile-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #F0D78C, transparent);
  transition: transform 0.3s ease;
}

.mobile-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Auth Buttons */
#mobileMenu .w-full {
  width: 100%;
}

#mobileMenu .border-2 {
  border-width: 2px;
}

#mobileMenu .py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

/* Responsive */
@media (max-width: 480px) {
  .mobile-link {
    font-size: 0.85rem;
    padding: 0.7rem 0.75rem;
  }
  
  #mobileMenu .px-6 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  #mobileMenu .py-3\.5 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}


/* Dropdown - hidden by default, shows on hover */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Services Dropdown */
.mobile-services-dropdown {
    transition: all 0.3s ease;
}

.mobile-services-dropdown.open {
    display: block !important;
}

#mobileServicesToggle .transition-transform {
    transition: transform 0.3s ease;
}

#mobileServicesToggle.open .transition-transform {
    transform: rotate(180deg);
}


/* Mobile Links - updated */
.mobile-link {
  display: block;
  padding: 0.85rem 0.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(237,230,211,0.85);
  border-bottom: 1px solid rgba(201,162,76,0.08);
  text-align: center;
  width: 100%;
}
.mobile-link:hover { color: #F0D78C; }

/* Mobile Services Dropdown - fixed alignment */
.mobile-services {
  width: 100%;
}

#mobileServicesToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(237,230,211,0.85);
  border-bottom: 1px solid rgba(201,162,76,0.08);
  background: transparent;
  cursor: pointer;
  text-align: center;
}

#mobileServicesToggle:hover {
  color: #F0D78C;
}

#mobileServicesToggle span {
  flex: 1;
  text-align: center;
}

.mobile-services-dropdown {
  transition: all 0.3s ease;
  width: 100%;
}

.mobile-services-dropdown a {
  display: block;
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(237,230,211,0.6);
  border-bottom: 1px solid rgba(201,162,76,0.05);
  transition: all 0.3s ease;
}

.mobile-services-dropdown a:hover {
  color: #F0D78C;
  background: rgba(201,162,76,0.05);
}


/* ============ HERO VIDEO ============ */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,8,0.7) 0%, rgba(7,7,8,0.5) 40%, rgba(7,7,8,0.85) 100%);
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(237, 230, 211, 0.3);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 1.2rem;
  height: 2rem;
  border: 1.5px solid rgba(237, 230, 211, 0.2);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.15rem;
  height: 0.4rem;
  background: #F0D78C;
  border-radius: 999px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(0.6rem); opacity: 0.3; }
}

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

/* ============ SECTION PRIMITIVES ============ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C9A24C;
  font-family: 'Inter Tight', sans-serif;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, #C9A24C);
}
.section-eyebrow.justify-center::before {
  background: linear-gradient(90deg, transparent, #C9A24C, transparent);
}

.section-title {
  margin-top: 1.25rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: #EDE6D3;
}

/* ============ STAT NUMBERS ============ */
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #F0D78C;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(237, 230, 211, 0.4);
  margin-top: 0.3rem;
}

/* ============ TEXT LINK ============ */
.text-link {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A24C;
  border-bottom: 1px solid rgba(201,162,76,0.4);
  padding-bottom: 4px;
  transition: color .3s, border-color .3s, transform .3s;
}
.text-link:hover { color: #F0D78C; border-color: #F0D78C; transform: translateX(3px); }

/* ============ MARQUEE ============ */
.marquee {
  animation: marq 38s linear infinite;
}
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ FEATURE CARDS ============ */
.feature-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(201,162,76,0.3);
  background: linear-gradient(135deg, rgba(201,162,76,0.18), rgba(11,26,58,0.4));
  color: #F0D78C;
  transition: all 0.3s ease;
}
.group:hover .feature-icon {
  background: rgba(201, 162, 76, 0.18);
  border-color: rgba(201, 162, 76, 0.3);
  transform: scale(1.05);
}
.feature-title {
  margin-top: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: #EDE6D3;
  letter-spacing: 0.02em;
}
.feature-text {
  margin-top: 0.75rem;
  color: rgba(237,230,211,0.65);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============ TIMELINE ============ */
.timeline-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 1.25rem 0 1.25rem 2.5rem;
}
@media (min-width: 1024px) {
  .timeline-row { padding-left: 0; justify-content: flex-start; }
}
.timeline-card {
  flex: 1;
  max-width: 32rem;
  padding: 1.75rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(201,162,76,0.2);
  background: rgba(6,14,34,0.55);
  backdrop-filter: blur(8px);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.timeline-card:hover {
  border-color: rgba(240,215,140,0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -20px rgba(240,215,140,0.5);
}
.timeline-date {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: #C9A24C;
}
.timeline-title {
  margin-top: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: #EDE6D3;
}
.timeline-text {
  margin-top: 0.5rem;
  color: rgba(237,230,211,0.65);
  line-height: 1.6;
  font-size: 0.95rem;
}
.timeline-dot {
  position: absolute;
  left: 0; top: 2rem;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F0D78C, #C9A24C);
  box-shadow: 0 0 0 4px rgba(201,162,76,0.18), 0 0 20px rgba(240,215,140,0.5);
  margin-left: 0.1rem;
}
@media (min-width: 1024px) {
  .timeline-dot { left: 50%; transform: translateX(-50%); top: 2.25rem; }
}

/* ============ PLOT CARDS ============ */
.plot-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(201,162,76,0.18);
  background: linear-gradient(180deg, rgba(11,26,58,0.45), rgba(7,7,8,0.85));
  transition: transform .4s ease, border-color .3s, box-shadow .4s;
}
.plot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,215,140,0.5);
  box-shadow: 0 25px 60px -25px rgba(240,215,140,0.35);
}
.plot-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.plot-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s ease;
}
.plot-card:hover .plot-media img { transform: scale(1.06); }
.plot-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,7,8,0.85));
}
.plot-area {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  border-radius: 999px;
  background: rgba(7,7,8,0.7);
  border: 1px solid rgba(201,162,76,0.4);
  color: #F0D78C;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.plot-flag {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, #8A6A28, #F0D78C);
  color: #070708;
  z-index: 1;
}
.plot-body { padding: 1.5rem 1.5rem 1.75rem; }
.plot-cta {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: #F0D78C;
  transition: gap .3s;
}
.plot-cta:hover { gap: 0.85rem; }

/* ============ KITS ============ */
.kit-card {
  position: relative;
  padding: 2.5rem 2.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(201,162,76,0.2);
  background: linear-gradient(180deg, rgba(11,26,58,0.5), rgba(7,7,8,0.85));
  transition: border-color .3s, transform .3s;
}
.kit-card:hover { border-color: rgba(240,215,140,0.5); transform: translateY(-3px); }
.kit-card--featured {
  background:
    radial-gradient(circle at top right, rgba(240,215,140,0.18), transparent 55%),
    linear-gradient(180deg, rgba(30,58,138,0.35), rgba(7,7,8,0.9));
  border-color: rgba(240,215,140,0.45);
  box-shadow: 0 30px 80px -30px rgba(240,215,140,0.35);
}
.kit-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 162, 76, 0.4), transparent 40%, transparent 60%, rgba(201, 162, 76, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.kit-feat {
  position: relative;
  padding-left: 1.5rem;
}
.kit-feat::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: #C9A24C;
}

/* ============ SERVICES ============ */
.service-card {
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(201,162,76,0.15);
  background: rgba(7,7,8,0.55);
  transition: border-color .3s, transform .3s, background .3s;
}
.service-card:hover { border-color: rgba(240,215,140,0.45); transform: translateY(-3px); background: rgba(11,26,58,0.55); }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  border: 1px solid rgba(201,162,76,0.18);
  background: linear-gradient(180deg, rgba(13,15,20,0.85), rgba(11,26,58,0.35));
  border-radius: 20px;
  padding: 2rem;
  transition: transform .4s ease, border-color .4s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,215,140,0.4);
}

.stars {
  display: inline-flex;
  gap: 0.2rem;
  color: #F0D78C;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.stars .fa-star {
  transition: all 0.2s ease;
}
.testimonial-card:hover .stars .fa-star {
  transform: scale(1.1);
}

/* ============ ANCHOR CARDS ============ */
.anchor-card {
  border: 1px solid rgba(201,162,76,0.18);
  background: linear-gradient(180deg, rgba(11,26,58,0.55), rgba(7,7,8,0.55));
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.anchor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,215,140,0.45);
  box-shadow: 0 18px 50px -20px rgba(201,162,76,0.45);
}

/* ============ GALLERY ============ */
.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(201,162,76,0.15);
  aspect-ratio: 4/3;
}
.gallery-tile.lg\:row-span-2 { aspect-ratio: auto; }
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
  filter: saturate(0.85) brightness(0.85);
}
.gallery-tile:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }

/* ============ FAQ ============ */
.faq-item { padding: 1rem 0; }
.faq-summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: #EDE6D3;
  transition: color .3s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: #F0D78C; }
.faq-icon {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,76,0.4);
  color: #C9A24C;
  font-size: 1rem;
  transition: transform .3s, color .3s, border-color .3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: #F0D78C; border-color: #F0D78C; }
.faq-body {
  padding: 0 0 1.5rem;
  color: rgba(237,230,211,0.7);
  line-height: 1.7;
  max-width: 56ch;
}

/* ============ CONTACT ============ */
.contact-bullet {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(201,162,76,0.4);
  color: #C9A24C;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field > span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,162,76,0.85);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(7,7,8,0.55);
  border: 1px solid rgba(201,162,76,0.2);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  color: #EDE6D3;
  font: inherit;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(237,230,211,0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(240,215,140,0.6);
  background: rgba(11,26,58,0.4);
  box-shadow: 0 0 0 3px rgba(240,215,140,0.1);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #C9A24C 50%), linear-gradient(135deg, #C9A24C 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2.5rem; }

/* ============ FOOTER ============ */
.footer-head {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: #C9A24C;
  margin-bottom: 1rem;
}
.footer-list { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; color: rgba(237,230,211,0.7); }
.footer-list a { transition: color .3s; }
.footer-list a:hover { color: #F0D78C; }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ PARALLAX / CONNECTIVITY BACKGROUND ============ */
.parallax-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translateZ(0);
  will-change: transform;
}

/* Fallback for mobile */
@media (max-width: 768px) {
  .parallax-bg { 
    background-attachment: scroll; 
  }
}

/* Alternative: simpler approach that works everywhere */
.connectivity-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ DETAIL PAGE STYLES ============ */
.detail-hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(30,58,138,0.45), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(201,162,76,0.18), transparent 50%),
    linear-gradient(180deg, #060E22 0%, #070708 100%);
}
.spec-tile {
  border: 1px solid rgba(201,162,76,0.18);
  background: linear-gradient(180deg, rgba(11,26,58,0.45), rgba(7,7,8,0.6));
  border-radius: 1rem;
  padding: 1.25rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.spec-tile:hover {
  border-color: rgba(240,215,140,0.5);
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -25px rgba(201,162,76,0.5);
}
.spec-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9A24C;
}
.spec-value {
  margin-top: 0.5rem;
  font-family: 'Cinzel', serif;
  color: #EDE6D3;
  font-size: 1.1rem;
}
.price-card {
  border: 1px solid rgba(240,215,140,0.35);
  background:
    radial-gradient(circle at top right, rgba(240,215,140,0.18), transparent 55%),
    linear-gradient(180deg, rgba(30,58,138,0.5), rgba(7,7,8,0.95));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 30px 80px -30px rgba(240,215,140,0.4);
}
.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8A6A28 0%, #C9A24C 30%, #F0D78C 50%, #C9A24C 70%, #8A6A28 100%);
  background-size: 200% 200%;
  color: #070708;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background-position .6s ease, transform .3s, box-shadow .3s;
  box-shadow: 0 12px 40px -10px rgba(240,215,140,0.55);
  text-decoration: none;
}
.btn-buy:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px rgba(240,215,140,0.7);
  color: #070708;
  text-decoration: none;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(201,162,76,0.4);
  color: #F0D78C;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: border-color .3s, color .3s, background .3s;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: #F0D78C;
  background: rgba(240,215,140,0.06);
  color: #F0D78C;
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(201,162,76,0.25);
  aspect-ratio: 4/3;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,7,8,0.7));
  pointer-events: none;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(7,7,8,0.65);
  border: 1px solid rgba(201,162,76,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #F0D78C;
  backdrop-filter: blur(6px);
}
.feature-li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(237,230,211,0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-li::before {
  content: "✦";
  color: #C9A24C;
  margin-top: 2px;
  flex-shrink: 0;
}
.breadcrumb a {
  color: rgba(237,230,211,0.55);
  transition: color .3s;
}
.breadcrumb a:hover {
  color: #F0D78C;
}
.breadcrumb .sep {
  color: rgba(201,162,76,0.4);
  margin: 0 0.6rem;
}

/* ============ MODAL ============ */
.modal-backdrop {
  transition: opacity 0.3s ease;
}
.modal-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(0.95);
  opacity: 0;
}
.modal-open .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .kit-card {
    padding: 1.75rem 1.25rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .plot-body {
    padding: 1rem;
  }
  .hero-title {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 480px) {
  .faq-summary {
    font-size: 0.875rem;
  }
  .scroll-indicator {
    display: none;
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .marquee, .text-gold-foil, .scroll-indicator, .scroll-indicator .mouse::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .parallax-bg {
    background-attachment: scroll !important;
  }
}

/* ============ ANIMATION UTILITY CLASSES ============ */
.animate-float {
  animation: floatBox 6s ease-in-out infinite;
}

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

.animate-pulse-slow {
  animation: pulseSlow 4s ease-in-out infinite;
}

@keyframes pulseSlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============ REVEAL DELAYS ============ */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }




