/* ===== FONT LOADING ===== */
.font-loading * {
  transition: none !important;
  animation-duration: 0.01ms !important;
}

.fonts-loaded {
  opacity: 1;
}

/* ===== BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background: rgba(112, 89, 246, 0.3);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ===== GRAIN OVERLAY ===== */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, background 0.2s ease;
  mix-blend-mode: difference;
}

.cursor-glow {
  position: fixed;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle, rgba(112, 89, 246, 0.4) 0%, rgba(112, 89, 246, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

@media (hover: none) {

  .cursor-dot,
  .cursor-glow {
    display: none !important;
  }
}

/* ===== ANIMATED BLOBS ===== */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

/* ===== GLASS NAV ===== */
.glass-nav {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.glass-nav.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* ===== TEXT GRADIENT ===== */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #7059F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
.hero-title {
  line-height: 0.88;
}

.hero-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7059F6 0%, #5B43E8 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

/* Orbit ring removed per user request */

/* ===== FLOATING LETTERS ===== */
.floating-letter {
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  color: rgba(112, 89, 246, 0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #7059F6;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(112, 89, 246, 0.2);
  font-family: "Instrument Sans", sans-serif;
}

.btn-primary:hover {
  background: #5B43E8;
  box-shadow: 0 0 30px rgba(112, 89, 246, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 9999px;
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Instrument Sans", sans-serif;
}

.btn-secondary:hover {
  border-color: #7059F6;
  color: #7059F6;
  background: rgba(112, 89, 246, 0.05);
}

/* ===== BENTO CARDS ===== */
.bento-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: #2a2a2a;
  background: #0d0d0d;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  min-height: 200px;
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(112, 89, 246, 0.08);
  border: 1px solid rgba(112, 89, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-fonts-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 11px;
  font-weight: 700;
  color: #7059F6;
  background: rgba(112, 89, 246, 0.08);
  border: 1px solid rgba(112, 89, 246, 0.15);
  border-radius: 4px;
}

/* ===== SPOTLIGHT CARD ===== */
.spotlight-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
      rgba(112, 89, 246, 0.06),
      transparent 40%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-card>* {
  position: relative;
  z-index: 1;
}

/* ===== IMAGE SHINE ===== */
.image-shine {
  position: relative;
}

.image-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      transparent 30%,
      rgba(255, 255, 255, 0.02) 50%,
      transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* ===== STEP CONNECTOR ===== */
.step-connector {
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(112, 89, 246, 0.3), rgba(112, 89, 246, 0.05));
}

/* ===== MARQUEE ===== */
.marquee-container {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track,
.marquee-track-reverse {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #737373;
  padding: 0 1rem;
}

.marquee-dot {
  color: rgba(112, 89, 246, 0.3);
  font-size: 0.5rem;
  padding: 0 0.5rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger-children>*:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger-children>*:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger-children>*:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger-children>*:nth-child(7) {
  transition-delay: 0.35s;
}

.stagger-children>*:nth-child(8) {
  transition-delay: 0.4s;
}

.stagger-children>*:nth-child(9) {
  transition-delay: 0.45s;
}

.stagger-children>*:nth-child(10) {
  transition-delay: 0.5s;
}

.stagger-children.active>*,
.stagger-children>*.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-enter a {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-enter a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu-enter a:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu-enter a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu-enter a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu-enter a:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-menu-enter a:nth-child(6) {
  transition-delay: 0.3s;
}

#mobile-menu:not(.hidden) .mobile-menu-enter a {
  opacity: 1;
  transform: translateX(0);
}


/* =========================================================
   PURCHASE PAGE STYLES
   ========================================================= */

/* Hero Background */
.purchase-hero-bg {
  position: relative;
}

.purchase-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(112, 89, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #1a1a1a 20%, #1a1a1a 80%, transparent);
}

/* Section Title */
.section-title-clean {
  letter-spacing: -0.02em;
}

/* Mini Check */
.purchase-mini-check {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #737373;
}

.purchase-mini-check::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(112, 89, 246, 0.1);
  border: 1px solid rgba(112, 89, 246, 0.25);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%237059F6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}


/* ===== PACKAGE CARDS GRID ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Package Card */
.pkg-card {
  position: relative;
  border-radius: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkg-card-inner {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pkg-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 89, 246, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pkg-card:hover .pkg-card-inner {
  border-color: #2a2a2a;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(112, 89, 246, 0.06);
}

.pkg-card:hover .pkg-card-inner::before {
  opacity: 1;
}

/* Featured (Combo) Card */
.pkg-card-featured .pkg-card-inner {
  border-color: rgba(112, 89, 246, 0.25);
  background: linear-gradient(180deg, rgba(112, 89, 246, 0.04) 0%, #0a0a0a 40%);
}

.pkg-card-featured:hover .pkg-card-inner {
  border-color: rgba(112, 89, 246, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(112, 89, 246, 0.1);
}

.pkg-card-featured .pkg-card-inner::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(112, 89, 246, 0.5), transparent);
}

/* Package Card Top */
.pkg-card-top {
  margin-bottom: 1.25rem;
}

.pkg-icon-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pkg-icon-wrap-combo {
  gap: 0.375rem;
}

.pkg-icon-plus {
  font-size: 0.875rem;
  font-weight: 700;
  color: #7059F6;
  line-height: 1;
}

.pkg-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #737373;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #1a1a1a;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.pkg-badge-combo {
  color: #7059F6;
  background: rgba(112, 89, 246, 0.08);
  border-color: rgba(112, 89, 246, 0.2);
}

.pkg-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.pkg-subtitle {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.5;
}

/* Package Product Image */
.pkg-product-image {
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  background: #080808;
  position: relative;
}

.pkg-product-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pkg-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.875rem;
  color: #737373;
  background: #080808;
}

/* Package Price Box */
.pkg-price-box {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #1a1a1a;
  background: #080808;
  margin-bottom: 1.25rem;
}

.pkg-price-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #737373;
  display: block;
  margin-bottom: 0.625rem;
}

.price-stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.regular-price {
  font-size: 0.75rem;
  color: #525252;
}

.regular-price del {
  color: #ef4444;
  opacity: 0.7;
}

.pkg-price-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.pkg-price-combo {
  color: #7059F6;
}

.discount-note {
  font-size: 0.6875rem;
  font-style: normal;
  color: #7059F6;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Package Features */
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex-grow: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #a3a3a3;
  line-height: 1.5;
}

/* Package CTA Button */
.pkg-cta-btn {
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  justify-content: center;
}

.pkg-cta-btn-combo {
  background: linear-gradient(135deg, #7059F6 0%, #5B43E8 100%);
  box-shadow: 0 0 30px rgba(112, 89, 246, 0.25);
}

.pkg-cta-btn-combo:hover {
  box-shadow: 0 0 40px rgba(112, 89, 246, 0.45);
}


/* ===== TEAM NOTE CARD ===== */
.team-note-card {
  margin-top: 2rem;
}

.team-note-inner {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.team-note-inner:hover {
  border-color: #2a2a2a;
}


/* ===== PURCHASE FLOW CARD ===== */
.purchase-flow-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.purchase-flow-card-modal {
  background: transparent;
  border: none;
  padding: 0;
}

.purchase-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.flow-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-icon {
  background: rgba(112, 89, 246, 0.1);
  color: #7059F6;
  border: 1px solid rgba(112, 89, 246, 0.2);
}

.wait-icon {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.purchase-flow-step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.purchase-flow-step p {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
}

/* Copy Number Card */
.copy-number-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem;
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.copy-number-card:hover {
  border-color: rgba(112, 89, 246, 0.3);
  background: rgba(112, 89, 246, 0.03);
}

.copy-number-card.is-copied {
  border-color: #7059F6;
  background: rgba(112, 89, 246, 0.06);
}

.copy-number-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #525252;
}

.copy-number-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.copy-number-card small {
  font-size: 0.6875rem;
  color: #525252;
  transition: color 0.2s ease;
}

.copy-number-card.is-copied small {
  color: #7059F6;
}

.copy-number-card-wide {
  padding: 1.5rem;
}

/* Package Copy Card */
.package-copy-card {
  margin-top: 0.5rem;
}

/* Outside Payment Note */
.outside-payment-note {
  padding: 1rem 1.25rem;
  background: rgba(234, 179, 8, 0.04);
  border: 1px solid rgba(234, 179, 8, 0.12);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  color: #a3a3a3;
  line-height: 1.6;
}

.outside-payment-note strong {
  color: #eab308;
}

/* Purchase Form CTA */
.purchase-form-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0.5rem;
}

/* Package Note */
.package-note p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* Package Steps */
.package-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.package-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #a3a3a3;
}

.package-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(112, 89, 246, 0.08);
  border: 1px solid rgba(112, 89, 246, 0.15);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #7059F6;
  flex-shrink: 0;
}

.after-submit-note {
  font-size: 0.75rem;
  color: #525252;
  line-height: 1.5;
  margin-top: 0.75rem;
  text-align: center;
}

/* Payment Method Box */
.payment-method-box {
  margin-bottom: 1rem;
}

.payment-method-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #525252;
  display: block;
  margin-bottom: 0.5rem;
}

/* Team Package Body */
.team-package-body {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-package-body p {
  font-size: 0.875rem;
  color: #737373;
  line-height: 1.6;
}

.team-contact-box {
  padding: 1rem 1.25rem;
  background: #080808;
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.team-contact-box span {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #525252;
}

.contact-email-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #7059F6;
  transition: color 0.2s ease;
}

.contact-email-link:hover {
  color: #5B43E8;
}


/* ===== PURCHASE MODAL ===== */
.purchase-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.purchase-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.purchase-modal-window {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 1.25rem;
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.purchase-modal-overlay.is-open .purchase-modal-window {
  transform: translateY(0) scale(1);
}

.purchase-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  transition: all 0.2s ease;
  cursor: pointer;
}

.purchase-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #2a2a2a;
}


/* ===== FAQ ITEMS ===== */
.faq-item {
  border: 1px solid #1a1a1a;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s ease;
  background: #0a0a0a;
}

.faq-item:hover {
  border-color: #2a2a2a;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: #fff;
  font-size: 0.9375rem;
  user-select: none;
  gap: 1rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(112, 89, 246, 0.08);
  border: 1px solid rgba(112, 89, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: #7059F6;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-toggle::before {
  width: 10px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 10px;
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item.active .faq-toggle {
  background: rgba(112, 89, 246, 0.15);
}

.faq-answer {
  padding: 0 1.5rem;
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.7;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.faq-answer strong {
  color: #fff;
}


/* ===== DISCOUNT / OFFER TOGGLES ===== */
.discount-only {
  display: inline;
}

.regular-only {
  display: none;
}

.offer-expired .discount-only {
  display: none;
}

.offer-expired .regular-only {
  display: inline;
}

.offer-active .discount-only {
  display: inline;
}

.offer-active .regular-only {
  display: none;
}


/* ===== PURCHASE SUMMARY CARD (legacy — kept for reference) ===== */
.purchase-summary-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
}

.purchase-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9375rem;
  color: #a3a3a3;
}

.purchase-summary-row strong {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.purchase-offer-line {
  padding: 0.5rem 0.75rem;
  background: rgba(112, 89, 246, 0.04);
  border: 1px solid rgba(112, 89, 246, 0.1);
  border-radius: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.8125rem;
  color: #737373;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.purchase-offer-line del {
  color: #ef4444;
  opacity: 0.6;
}

.purchase-offer-line small {
  width: 100%;
  font-size: 0.6875rem;
  color: #7059F6;
  opacity: 0.8;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pkg-card-inner {
    padding: 1.5rem;
  }

  .pkg-price-value {
    font-size: 1.75rem;
  }

  .purchase-flow-card {
    padding: 1.5rem;
  }

  .purchase-modal-window {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .pkg-card-inner {
    padding: 1.25rem;
  }

  .purchase-flow-step {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ================================
   How It Works Section - Clean Premium
================================ */

.how-works-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 92, 246, 0.13), transparent 34%),
    radial-gradient(circle at 82% 30%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.hiw-bg-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hiw-bg-orb-left {
  left: -180px;
  top: 20%;
}

.hiw-bg-orb-right {
  right: -160px;
  top: 8%;
}

.hiw-workflow-shell {
  position: relative;
  padding: 52px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 11, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(139, 92, 246, 0.08);
  overflow: hidden;
}

.hiw-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.25;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
  pointer-events: none;
}

.hiw-center-symbol {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 86px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 0 80px rgba(139, 92, 246, 0.18);
  pointer-events: none;
}

.hiw-flow-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(139, 92, 246, 0.48),
      rgba(255, 255, 255, 0.12),
      rgba(139, 92, 246, 0.48),
      transparent);
  opacity: 0.7;
  pointer-events: none;
}

.hiw-card-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.hiw-step-card {
  min-height: 255px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 12, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 60px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.hiw-step-card-featured {
  transform: translateY(-18px);
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 72px rgba(0, 0, 0, 0.36),
    0 0 70px rgba(139, 92, 246, 0.12);
}

.hiw-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.38),
    0 0 72px rgba(139, 92, 246, 0.14);
}

.hiw-step-card-featured:hover {
  transform: translateY(-24px);
}

.hiw-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.hiw-step-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 16px;
  font-weight: 800;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.09);
}

.hiw-step-count {
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(139, 92, 246, 0.24);
}

.hiw-step-card h3 {
  letter-spacing: -0.03em;
}

.hiw-step-card p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  line-height: 1.7;
}

.hiw-bottom-path {
  position: relative;
  z-index: 4;
  margin: 38px auto 0;
  max-width: 650px;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hiw-bottom-path i {
  width: 42px;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), transparent);
}

/* Responsive */
@media (max-width: 900px) {
  .hiw-workflow-shell {
    padding: 34px;
  }

  .hiw-card-grid {
    grid-template-columns: 1fr;
  }

  .hiw-step-card,
  .hiw-step-card-featured {
    min-height: auto;
    transform: none;
  }

  .hiw-step-card:hover,
  .hiw-step-card-featured:hover {
    transform: translateY(-6px);
  }

  .hiw-flow-line,
  .hiw-center-symbol {
    display: none;
  }
}

@media (max-width: 560px) {
  .how-works-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hiw-workflow-shell {
    padding: 22px;
    border-radius: 26px;
  }

  .hiw-step-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hiw-card-top {
    margin-bottom: 26px;
  }

  .hiw-bottom-path {
    flex-direction: column;
    border-radius: 22px;
    gap: 8px;
  }

  .hiw-bottom-path i {
    width: 1px;
    height: 18px;
  }
}

/* =========================================================
   PURCHASE PAGE FINAL POLISH — package images, gift, team, process
   ========================================================= */

/* Better product image slot: matches uploaded 2048x1536 product renders */
.pkg-product-image {
  aspect-ratio: 4 / 3 !important;
  margin-bottom: 1.35rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(112, 89, 246, 0.04), rgba(0, 0, 0, 0.2)), #080808;
}

.pkg-product-image img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.pkg-card-inner {
  padding: 1.75rem;
}

.pkg-title {
  color: rgba(255, 255, 255, 0.96);
}

.pkg-subtitle,
.pkg-features li,
.purchase-flow-step p,
.team-note-text p,
.combo-gift-note p {
  color: rgba(255, 255, 255, 0.66) !important;
}

.pkg-price-box {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
}

.pkg-price-value {
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.98);
}

.regular-price,
.pkg-price-label,
.copy-number-label {
  color: rgba(255, 255, 255, 0.46);
}

.discount-note {
  color: #927cff;
  opacity: 1;
}

.pkg-app-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.pkg-app-icon-small {
  width: 24px;
  height: 24px;
  font-size: 10px;
}

.pkg-app-icon-ps {
  color: #31a8ff;
  background: #001e36;
}

.pkg-app-icon-ai {
  color: #ff9a00;
  background: #330000;
}

/* Limited combo gift banner */
.combo-gift-note {
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(112, 89, 246, 0.26);
  background:
    radial-gradient(circle at 7% 25%, rgba(112, 89, 246, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(112, 89, 246, 0.08), rgba(255, 255, 255, 0.025));
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), 0 0 44px rgba(112, 89, 246, 0.06);
}

.combo-gift-icon,
.team-note-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #a78bfa;
  background: rgba(112, 89, 246, 0.12);
  border: 1px solid rgba(112, 89, 246, 0.28);
}

.combo-gift-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #a78bfa;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.combo-gift-note h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.combo-gift-note p {
  font-size: 0.93rem;
  line-height: 1.75;
}

.combo-gift-note strong,
.purchase-flow-step strong,
.outside-payment-note strong,
.team-email-line strong {
  color: rgba(255, 255, 255, 0.95);
}

/* Team card */
.team-note-inner-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0a0a0a;
}

.team-note-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.team-note-text p {
  font-size: 0.94rem;
  line-height: 1.65;
}

.team-email-line {
  margin-top: 0.55rem;
}

.team-note-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.team-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(112, 89, 246, 0.34);
  background: rgba(112, 89, 246, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.team-contact-btn:hover {
  border-color: rgba(112, 89, 246, 0.65);
  background: rgba(112, 89, 246, 0.14);
  color: #fff;
}

/* Purchase process readability */
.purchase-flow-card-pro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #090909;
  border-color: rgba(255, 255, 255, 0.08);
}

.purchase-flow-step-pro .flow-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}

.purchase-flow-step h3 {
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 1.05rem;
}

.purchase-flow-step p {
  font-size: 0.94rem;
  line-height: 1.75;
}

.purchase-flow-step a {
  color: #a78bfa;
  font-weight: 700;
  text-decoration: none;
}

.purchase-flow-step a:hover {
  color: #fff;
}

.purchase-amount-highlight {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.48rem;
  border-radius: 0.45rem;
  color: #fff !important;
  background: rgba(112, 89, 246, 0.22);
  border: 1px solid rgba(112, 89, 246, 0.36);
  box-shadow: 0 0 28px rgba(112, 89, 246, 0.12);
}

.outside-payment-note {
  background: rgba(234, 179, 8, 0.055);
  border-color: rgba(234, 179, 8, 0.18);
}

.outside-payment-note p {
  color: rgba(255, 255, 255, 0.68);
}

.purchase-form-cta {
  max-width: 360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.copy-number-card strong {
  color: rgba(255, 255, 255, 0.98);
}

.copy-number-card small {
  color: rgba(255, 255, 255, 0.42);
}

.purchase-modal-window-pro {
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.65), 0 0 80px rgba(112, 89, 246, 0.08);
}

@media (max-width: 1024px) {
  .pkg-product-image {
    max-height: none;
  }
}

@media (max-width: 768px) {
  .team-note-inner-pro {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-note-actions {
    width: 100%;
  }

  .team-contact-btn {
    flex: 1;
  }

  .combo-gift-note {
    padding: 1.15rem;
  }
}

@media (max-width: 520px) {

  .combo-gift-note,
  .team-note-content {
    flex-direction: column;
  }

  .pkg-card-inner {
    padding: 1.25rem;
  }
}

/* ================================
   Combo Gift Card Fix
================================ */

.combo-gift-card {
  position: relative;
  max-width: 1200px;
  margin: 2.5rem auto 2rem;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  border-radius: 1.25rem;
  border: 1px solid rgba(112, 89, 246, 0.26);
  background:
    radial-gradient(circle at 8% 20%, rgba(112, 89, 246, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(112, 89, 246, 0.08), rgba(255, 255, 255, 0.025)),
    #09090a;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(112, 89, 246, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.combo-gift-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(112, 89, 246, 0.12),
      transparent);
  opacity: 0.45;
  pointer-events: none;
}

.combo-gift-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(112, 89, 246, 0.22), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.combo-gift-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  background:
    linear-gradient(180deg, rgba(112, 89, 246, 0.22), rgba(112, 89, 246, 0.07));
  border: 1px solid rgba(112, 89, 246, 0.42);
  box-shadow:
    0 0 28px rgba(112, 89, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.combo-gift-icon svg {
  width: 28px;
  height: 28px;
}

.combo-gift-content {
  position: relative;
  z-index: 2;
}

.combo-gift-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(112, 89, 246, 0.12);
  border: 1px solid rgba(112, 89, 246, 0.24);
  color: #a78bfa;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.combo-gift-content h3 {
  margin: 0 0 0.65rem;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.combo-gift-content p {
  max-width: 1040px;
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.75;
}

.combo-gift-content strong {
  color: #ffffff;
  font-weight: 800;
}

.combo-gift-content small {
  display: inline-block;
  margin-top: 0.9rem;
  color: rgba(167, 139, 250, 0.95);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .combo-gift-card {
    grid-template-columns: 1fr;
    padding: 1.35rem;
    margin-top: 2rem;
  }

  .combo-gift-icon {
    width: 52px;
    height: 52px;
  }

  .combo-gift-content h3 {
    font-size: 1.1rem;
  }

  .combo-gift-content p {
    font-size: 0.92rem;
  }
}

/* ================================
   Combo Gift Card Final Fix
================================ */

.combo-gift-card {
  position: relative !important;
  max-width: 1200px !important;
  margin: 2.25rem auto 2rem !important;
  padding: 1.65rem 1.75rem !important;
  display: grid !important;
  grid-template-columns: 58px 1fr !important;
  gap: 1.15rem !important;
  align-items: flex-start !important;
  border-radius: 1.25rem !important;
  border: 1px solid rgba(112, 89, 246, 0.34) !important;
  background:
    radial-gradient(circle at 8% 18%, rgba(112, 89, 246, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(112, 89, 246, 0.13), rgba(255, 255, 255, 0.03)),
    #09090b !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.36),
    0 0 70px rgba(112, 89, 246, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
  overflow: hidden !important;
}

.combo-gift-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, transparent, rgba(112, 89, 246, 0.14), transparent) !important;
  opacity: 0.55 !important;
  pointer-events: none !important;
}

.combo-gift-card::after {
  content: "" !important;
  position: absolute !important;
  width: 260px !important;
  height: 260px !important;
  right: -110px !important;
  top: -120px !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(112, 89, 246, 0.26), transparent 70%) !important;
  filter: blur(20px) !important;
  pointer-events: none !important;
}

.combo-gift-card>* {
  position: relative !important;
  z-index: 2 !important;
}

.combo-gift-card .combo-gift-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  border-radius: 17px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #b89cff !important;
  background:
    linear-gradient(180deg, rgba(112, 89, 246, 0.24), rgba(112, 89, 246, 0.08)) !important;
  border: 1px solid rgba(167, 139, 250, 0.44) !important;
  box-shadow:
    0 0 34px rgba(112, 89, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.combo-gift-card .combo-gift-icon svg {
  width: 27px !important;
  height: 27px !important;
}

.combo-gift-content {
  position: relative !important;
  z-index: 2 !important;
}

.combo-gift-badge {
  display: inline-flex !important;
  align-items: center !important;
  margin-bottom: 0.75rem !important;
  padding: 0.4rem 0.8rem !important;
  border-radius: 999px !important;
  background: rgba(112, 89, 246, 0.16) !important;
  border: 1px solid rgba(167, 139, 250, 0.28) !important;
  color: #b89cff !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.combo-gift-content h3 {
  margin: 0 0 0.7rem !important;
  color: rgba(255, 255, 255, 0.98) !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 1.25rem !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.combo-gift-content p {
  max-width: 1040px !important;
  margin: 0.38rem 0 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
}

.combo-gift-content strong {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.combo-gift-content small {
  display: inline-block !important;
  margin-top: 0.9rem !important;
  color: #b89cff !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
}

/* পুরোনো nested gift wrapper থাকলে সেটাকে neutral করে দেবে */
.combo-gift-note>.combo-gift-icon {
  display: none !important;
}

.combo-gift-note .combo-gift-card {
  margin-top: 0 !important;
}

@media (max-width: 640px) {
  .combo-gift-card {
    grid-template-columns: 1fr !important;
    padding: 1.35rem !important;
  }

  .combo-gift-card .combo-gift-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }

  .combo-gift-content h3 {
    font-size: 1.1rem !important;
  }

  .combo-gift-content p {
    font-size: 0.92rem !important;
  }
}