:root {
  --black: #06030f;
  --deep: #0d0820;
  --card-bg: #130d28;
  --rose: #f472b6;
  --rose-deep: #db2777;
  --gold: #d4a853;
  --gold-light: #f0c97a;
  --cream: #fdf6ee;
  --text: #e8e0f0;
  --muted: rgba(232, 224, 240, 0.55);
  --border: rgba(212, 168, 83, 0.18);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--rose);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 168, 83, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(6, 3, 15, 0.95), transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--rose);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 10px 26px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  transition: all 0.35s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(212, 168, 83, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(244, 114, 182, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 80% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
    var(--black);
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(244, 114, 182, 0.06);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(212, 168, 83, 0.07);
  bottom: 100px;
  left: -80px;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  top: 40%;
  right: 10%;
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title .rose {
  color: var(--rose);
  font-style: italic;
}

.hero-title .gold {
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: white;
  border: none;
  padding: 16px 44px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(244, 114, 182, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: var(--gold-light);
  background: transparent;
  padding: 16px 44px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.06);
  transform: translateY(-2px);
}

.btn-dark {
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: var(--card-bg);
  background: #f4d989;
  padding: 16px 44px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s;
}

.btn-dark:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-stats {
  margin-top: 80px;
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--gold-light);
  font-weight: 300;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* SECTION COMMON */
section {
  position: relative;
}

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 0 0 35px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  color: var(--rose);
  font-style: italic;
}

.section-desc {
  color: var(--muted);
  line-height: 1.9;
  max-width: 540px;
  font-size: 0.88rem;
}

/* HOW IT WORKS */
.how {
  padding: 130px 60px;
  background: linear-gradient(to bottom, transparent, rgba(19, 13, 40, 0.5), transparent);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 90px;
}

.how-header .section-label {
  justify-content: center;
}

.how-header .section-label::after {
  display: none;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), var(--gold), var(--border), transparent);
}

.how-step {
  text-align: center;
  padding: 0 24px;
}

.step-num {
  width: 72px;
  height: 72px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  background: var(--card-bg);
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.how-step:hover .step-num {
  background: var(--rose-deep);
  border-color: var(--rose);
  color: white;
  transform: scale(1.1);
}

.step-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* PRODUCTS */
.products {
  padding: 130px 60px;
  background: var(--deep);
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-header {
  margin-bottom: 70px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 42px 36px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.product-card::before {
  content: '';
  /* position: absolute; */
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover {
  border-color: rgba(212, 168, 83, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.featured {
  background: linear-gradient(135deg, #1e0830, #2a0d20);
  border-color: rgba(244, 114, 182, 0.3);
  grid-row: span 1;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--rose-deep);
  color: white;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.product-icon {
  font-size: 2.2rem;
  margin-bottom: 22px;
  display: block;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-tag {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 26px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.product-cards-count {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
}

.product-price .currency {
  font-size: 0.9rem;
  vertical-align: super;
  margin-right: 2px;
}

.product-price .usd {
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: 6px;
}

.product-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s;
}

.product-btn:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: white;
}

.featured .product-btn {
  border-color: rgba(244, 114, 182, 0.4);
}

/* BUNDLE */
.bundle {
  padding: 130px 60px;
  background: linear-gradient(135deg, #0d0820, #1a0510, #0d0820);
  position: relative;
  overflow: hidden;
}

.bundle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.07), transparent 70%);
  pointer-events: none;
}

.bundle-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bundle-box {
  border: 1px solid rgba(212, 168, 83, 0.25);
  padding: 70px 60px;
  background: rgba(19, 13, 40, 0.6);
  backdrop-filter: blur(20px);
  margin-top: 60px;
  position: relative;
}

.bundle-box::before {
  content: '✦ BEST VALUE ✦';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  padding: 4px 20px;
}

.bundle-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 36px 0;
}

.bundle-item {
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}

.bundle-price-area {
  margin: 36px 0;
}

.bundle-was {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.bundle-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.bundle-price sup {
  font-size: 1.8rem;
  vertical-align: super;
}

.bundle-save {
  display: inline-block;
  background: var(--rose-deep);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-top: 12px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 130px 60px;
  background: var(--black);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::after {
  display: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: all 0.4s;
}

.review-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-author strong {
  color: var(--gold);
  display: block;
  font-weight: 400;
}

.quote-mark {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(212, 168, 83, 0.1);
  line-height: 1;
}

/* WHY US */
.why {
  padding: 130px 60px;
  background: var(--deep);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-features {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-feature {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
  cursor: default;
}

.why-feature:first-child {
  border-top: 1px solid var(--border);
}

.why-feature:hover {
  padding-left: 10px;
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 7px;
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}

.why-visual {
  background: linear-gradient(135deg, var(--card-bg), rgba(30, 8, 48, 0.8));
  border: 1px solid var(--border);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '♡';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16rem;
  color: rgba(244, 114, 182, 0.04);
  font-family: 'Cormorant Garamond', serif;
  pointer-events: none;
}

.visual-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  color: var(--gold-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}

.visual-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.visual-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 28px auto;
}

.visual-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding: 130px 60px;
  background: var(--black);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-header .section-label {
  justify-content: center;
}

.faq-header .section-label::after {
  display: none;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  padding: 24px 0;
  text-align: left;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--gold-light);
}

.faq-arrow {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

/* NEWSLETTER */
.newsletter {
  padding: 100px 60px;
  background: linear-gradient(135deg, rgba(19, 13, 40, 0.9), rgba(26, 5, 16, 0.9));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}

.newsletter-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 42px;
}

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  padding: 14px 22px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--muted);
}

.newsletter-input:focus {
  border-color: rgba(212, 168, 83, 0.4);
}

.newsletter-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  padding: 14px 30px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--gold-light);
}

/* FOOTER */
footer {
  padding: 60px;
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: block;
}

.footer-logo span {
  color: var(--rose);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
}

.footer-payments {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pay-badge {
  border: 1px solid var(--border);
  padding: 5px 12px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .how {
    padding: 80px 24px;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .how-steps::before {
    display: none;
  }

  .products {
    padding: 80px 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .bundle {
    padding: 80px 24px;
  }

  .bundle-box {
    padding: 40px 28px;
  }

  .testimonials {
    padding: 80px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .why {
    padding: 80px 24px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq {
    padding: 80px 24px;
  }

  .newsletter {
    padding: 60px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-right: 1px solid var(--border);
  }

  footer {
    padding: 40px 24px;
  }

  .hero-stats {
    gap: 30px;
  }
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  width: 440px;
  max-width: 90%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: #1e293b;
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #64748b;
  cursor: pointer;
}

.modal-header h3 {
  margin-bottom: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  color: #0f172a;
}

.modal-header p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1e293b;
  transition: all 0.2s;
  background: #f8fafc;
}

.form-group input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  background: white;
}

.modal-footer {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  text-align: center;
  color: #94a3b8;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.w-100 {
  width: 100%;
}
.modal-status { display: none; padding: 1.25rem; border-radius: 16px; margin-bottom: 2rem; text-align: center; font-size: 0.95rem; font-weight: 500; line-height: 1.5; animation: modalIn 0.4s ease; } .modal-status.success { display: block; background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; } .modal-status.error { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
