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

:root {
  --gold: rgb(240, 190, 84);
  --gold-dark: rgb(200, 155, 55);
  --gold-light: rgba(240, 190, 84, 0.15);
  --black: #000000;
  --rich-black: #0a0a0a;
  --dark-bg: #0d0d0d;
  --dark-card: #141414;
  --dark-card-border: #1f1f1f;
  --dark-surface: #1a1a1a;
  --white: #ffffff;
  --off-white: #f0f0f0;
  --text-gray: #9a9a9a;
  --text-light: #cccccc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  overflow-x: hidden;
  background: var(--black);
}

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

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

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(240, 190, 84, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(240, 190, 84, 0.3);
}

@keyframes navCtaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes navCtaShimmer {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid rgba(240, 190, 84, 0.1);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  color: var(--text-light);
  padding: 8px 0;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.mobile-cta:hover {
  background: var(--gold-dark);
}

/* ── HERO V2 ── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: #000;
  overflow: hidden;
}

.hero-v2-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-v2-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-v2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  will-change: transform;
}

.hero-v2-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 190, 84, 0.35) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-v2-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(160, 120, 255, 0.25) 0%, transparent 70%);
  top: 20%;
  right: -10%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-v2-orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 190, 84, 0.2) 0%, transparent 70%);
  bottom: -10%;
  left: 30%;
  animation: orbFloat3 10s ease-in-out infinite;
}

.hero-v2-orb--4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(80, 180, 255, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 10%;
  animation: orbFloat4 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 80px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 60px) scale(1.05); }
  66% { transform: translate(40px, -40px) scale(0.9); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -50px) scale(1.15); }
}
@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -60px) scale(1.1); }
}

.hero-v2-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(240, 190, 84, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 190, 84, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  animation: gridPulse 8s ease-in-out infinite;
}

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

.hero-v2-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(240, 190, 84, 0.08);
  border: 1px solid rgba(240, 190, 84, 0.25);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: badgeFadeIn 1s ease-out 0.2s both;
  position: relative;
  overflow: hidden;
}

.hero-v2-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 190, 84, 0.15), transparent);
  animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.hero-v2-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(240, 190, 84, 0.6);
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 25%,
    var(--gold) 50%,
    #e8d5a8 75%,
    var(--gold) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    titleFadeIn 1s ease-out 0.4s both,
    titleShimmer 6s ease-in-out infinite;
}

@keyframes titleFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes titleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-v2-description {
  font-size: 1.25rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  animation: descFadeIn 1s ease-out 0.6s both;
}

@keyframes descFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-v2-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  animation: ctasFadeIn 1s ease-out 0.8s both;
  flex-wrap: wrap;
}

@keyframes ctasFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-v2-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--gold), #b476e5, var(--gold), #9b5de5);
  background-size: 300% 300%;
  animation: navCtaGradient 4s ease infinite;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(180, 118, 229, 0.3), 0 0 8px rgba(240, 190, 84, 0.25);
}

.hero-v2-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: navCtaShimmer 3s ease-in-out infinite;
}

.hero-v2-cta-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 24px rgba(180, 118, 229, 0.5), 0 0 12px rgba(240, 190, 84, 0.4);
}

.hero-v2-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.03em;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.hero-v2-cta-secondary:hover {
  border-color: rgba(240, 190, 84, 0.4);
  background: rgba(240, 190, 84, 0.06);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-v2-cta-arrow {
  transition: transform 0.3s;
}

.hero-v2-cta-primary:hover .hero-v2-cta-arrow {
  transform: translateX(4px);
}

.hero-v2-showcase {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  animation: showcaseFadeIn 1.2s ease-out 1s both;
}

@keyframes showcaseFadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-v2-card {
  position: relative;
  width: 360px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  animation: cardFloat 5s ease-in-out infinite;
}

.hero-v2-card:nth-child(1) {
  transform: rotateY(4deg) rotateX(-2deg);
  animation-delay: 0s;
}

.hero-v2-card:nth-child(2) {
  transform: rotateY(-4deg) rotateX(2deg);
  animation-delay: -2.5s;
}

@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

.hero-v2-card:hover {
  animation-play-state: paused;
  translate: 0 -20px !important;
  scale: 1.04;
}

.hero-v2-card-frame {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  z-index: 0;
  background: conic-gradient(
    from var(--card-angle, 0deg),
    rgba(240, 190, 84, 0.6),
    rgba(160, 120, 255, 0.3),
    rgba(80, 180, 255, 0.3),
    rgba(240, 190, 84, 0.6)
  );
  opacity: 0;
  transition: opacity 0.5s;
  animation: cardBorderSpin 4s linear infinite;
}

.hero-v2-card:hover .hero-v2-card-frame {
  opacity: 1;
}

@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes cardBorderSpin {
  from { --card-angle: 0deg; }
  to { --card-angle: 360deg; }
}

.hero-v2-card-glow {
  position: absolute;
  inset: -30px;
  border-radius: 40px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(240, 190, 84, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  filter: blur(25px);
}

.hero-v2-card:hover .hero-v2-card-glow {
  opacity: 1;
}

.hero-v2-card-img {
  display: block;
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 10px 50px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.5s;
}

.hero-v2-card:hover .hero-v2-card-img {
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(240, 190, 84, 0.15),
    0 0 0 1px rgba(240, 190, 84, 0.15);
}

.hero-v2-card-stars {
  position: absolute;
  inset: -40px;
  z-index: 3;
  pointer-events: none;
}

.hero-v2-star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  box-shadow: 0 0 8px 3px rgba(240, 190, 84, 0.5);
}

.hero-v2-card:hover .hero-v2-star {
  animation: starPop 2s ease-in-out infinite;
}

.hero-v2-star:nth-child(1) { top: 0%; left: 10%; animation-delay: 0s; }
.hero-v2-star:nth-child(2) { top: -5%; left: 50%; animation-delay: 0.4s; }
.hero-v2-star:nth-child(3) { top: 10%; right: 5%; animation-delay: 0.8s; }
.hero-v2-star:nth-child(4) { bottom: 15%; left: 0%; animation-delay: 0.2s; }
.hero-v2-star:nth-child(5) { bottom: -3%; left: 40%; animation-delay: 0.6s; }
.hero-v2-star:nth-child(6) { bottom: 10%; right: 0%; animation-delay: 1s; }
.hero-v2-star:nth-child(7) { top: 40%; left: -5%; animation-delay: 1.2s; }
.hero-v2-star:nth-child(8) { top: 35%; right: -5%; animation-delay: 0.3s; }

@keyframes starPop {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  20% { opacity: 1; transform: scale(1.4); }
  50% { opacity: 0.8; transform: scale(1); }
  80% { opacity: 0; transform: scale(0.5); }
}

.hero-v2-shooting-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-v2-shooting-star {
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 190, 84, 0.8), transparent);
  opacity: 0;
  transform: rotate(-35deg);
}

.hero-v2-shooting-star:nth-child(1) {
  top: 15%;
  left: 10%;
  animation: shootingStar 6s ease-in-out infinite 1s;
}
.hero-v2-shooting-star:nth-child(2) {
  top: 35%;
  right: 15%;
  animation: shootingStar 8s ease-in-out infinite 3s;
  width: 80px;
}
.hero-v2-shooting-star:nth-child(3) {
  top: 55%;
  left: 40%;
  animation: shootingStar 7s ease-in-out infinite 5s;
  width: 100px;
}

@keyframes shootingStar {
  0% { opacity: 0; transform: rotate(-35deg) translateX(0); }
  2% { opacity: 1; }
  8% { opacity: 0; transform: rotate(-35deg) translateX(300px); }
  100% { opacity: 0; }
}

.hero-v2-light-sweep {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(240, 190, 84, 0.03) 45%,
    rgba(240, 190, 84, 0.06) 50%,
    rgba(240, 190, 84, 0.03) 55%,
    transparent 60%
  );
  animation: lightSweep 8s ease-in-out infinite;
}

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

.hero-v2-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  animation: statsFadeIn 1s ease-out 1.4s both;
  flex-wrap: wrap;
}

@keyframes statsFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-v2-stat {
  text-align: center;
  position: relative;
}

.hero-v2-stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-v2-stat:last-child::after {
  display: none;
}

.hero-v2-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.hero-v2-stat-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-v2-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollFadeIn 1s ease-out 2s both;
}

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

.hero-v2-scroll-text {
  font-size: 0.7rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-v2-scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.hero-v2-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* ── FEATURES SECTION ── */
.features-section {
  padding: 100px 48px;
  background: var(--rich-black);
}

.features-section--dark {
  background: var(--dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 190, 84, 0.3);
  box-shadow: 0 12px 40px rgba(240, 190, 84, 0.08);
}

.feature-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark-surface);
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.feature-card:hover .feature-img-wrap img {
  transform: scale(1.03);
}

.feature-info {
  padding: 28px;
}

.feature-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-info p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ── AI AUDIO PLAYER (inline in feature cards) ── */
.ai-player {
  margin-top: 20px;
  padding: 16px;
  background: rgba(240, 190, 84, 0.06);
  border: 1px solid rgba(240, 190, 84, 0.15);
  border-radius: 12px;
}

.ai-player-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ai-player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.3s, transform 0.2s;
  flex-shrink: 0;
}

.ai-play-btn:hover {
  background: var(--gold-dark);
  transform: scale(1.08);
}

.ai-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  height: 32px;
}

.ai-bar {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.3;
  transition: height 0.15s, opacity 0.15s;
}

.ai-player.playing .ai-bar {
  animation: aiWave 0.8s ease-in-out infinite alternate;
  opacity: 0.8;
}

.ai-bar:nth-child(1)  { animation-delay: 0.00s; }
.ai-bar:nth-child(2)  { animation-delay: 0.05s; }
.ai-bar:nth-child(3)  { animation-delay: 0.10s; }
.ai-bar:nth-child(4)  { animation-delay: 0.15s; }
.ai-bar:nth-child(5)  { animation-delay: 0.20s; }
.ai-bar:nth-child(6)  { animation-delay: 0.25s; }
.ai-bar:nth-child(7)  { animation-delay: 0.30s; }
.ai-bar:nth-child(8)  { animation-delay: 0.35s; }
.ai-bar:nth-child(9)  { animation-delay: 0.40s; }
.ai-bar:nth-child(10) { animation-delay: 0.45s; }
.ai-bar:nth-child(11) { animation-delay: 0.50s; }
.ai-bar:nth-child(12) { animation-delay: 0.55s; }
.ai-bar:nth-child(13) { animation-delay: 0.60s; }
.ai-bar:nth-child(14) { animation-delay: 0.65s; }
.ai-bar:nth-child(15) { animation-delay: 0.70s; }

@keyframes aiWave {
  0%   { height: 6px; }
  100% { height: 28px; }
}

.ai-time {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
}

/* ── PARTNERS ── */
.partners-section {
  padding: 100px 48px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(240, 190, 84, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.partners-content {
  position: relative;
  z-index: 1;
}

.partners-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.partners-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 56px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.partner-logo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.partner-logo-wrap:hover {
  transform: translateY(-4px);
}

/* Rotating gold border for partner logos */
.partner-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
}

.partner-border-glow::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 55%,
    var(--gold) 70%,
    rgba(240, 190, 84, 0.6) 75%,
    var(--gold) 80%,
    transparent 95%,
    transparent 100%
  );
  animation: premiumBorderSpin 4s linear infinite;
}

.partner-logo-wrap:nth-child(2) .partner-border-glow::before {
  animation-delay: -1.3s;
}

.partner-logo-wrap:nth-child(3) .partner-border-glow::before {
  animation-delay: -2.6s;
}

.partner-logo-inner {
  position: relative;
  z-index: 1;
  background: rgba(10, 10, 10, 0.95);
  border-radius: 14px;
  margin: 2px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-wrap img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.partner-logo-wrap:nth-child(2) img {
  filter: none;
}

.partner-logo-wrap:hover img {
  opacity: 1;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 48px;
  background: var(--rich-black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 190, 84, 0.2);
}

.testimonial-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark-surface);
  overflow: hidden;
}

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

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(240, 190, 84, 0.9);
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.video-play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.hidden {
  display: none;
}

.testimonial-info {
  padding: 24px;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: opacity 0.3s;
}

.testimonial-link:hover {
  opacity: 0.8;
}

/* ── AI AGENT TESTIMONIAL CARD ── */
.ai-agent-card {
  position: relative;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--dark-card), var(--dark-card)),
    linear-gradient(135deg, var(--gold), #a855f7, var(--gold), #a855f7);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.ai-agent-card:hover {
  border-color: transparent;
}

/* Orbiting stars around card border */
.ai-orbit-stars {
  position: absolute;
  inset: -4px;
  z-index: 3;
  pointer-events: none;
}

.ai-orbit-star {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(240, 190, 84, 0.7), 0 0 16px 4px rgba(168, 85, 247, 0.4);
  animation: aiStarOrbitRect 10s linear infinite, aiStarPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.25s);
}

/* Stars travel: top-left → top-right → bottom-right → bottom-left → top-left */
@keyframes aiStarOrbitRect {
  0%       { top: 0;    left: 0;    }
  25%      { top: 0;    left: 100%; }
  50%      { top: 100%; left: 100%; }
  75%      { top: 100%; left: 0;    }
  100%     { top: 0;    left: 0;    }
}

@keyframes aiStarPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* AI Supported Agent badge */
.ai-agent-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  padding: 5px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 4;
  background: linear-gradient(135deg, var(--gold), #a855f7, var(--gold-dark), #7c3aed);
  background-size: 300% 300%;
  animation: aiBadgeShimmer 3s ease-in-out infinite;
}

@keyframes aiBadgeShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ai-agent-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-surface);
}

.ai-agent-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
}

.ai-agent-card:hover .ai-agent-img-wrap img {
  transform: scale(1.03);
}

.ai-agent-website-btn {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #a855f7, var(--gold-dark), #7c3aed);
  background-size: 300% 300%;
  animation: aiBadgeShimmer 3s ease-in-out infinite;
  transition: opacity 0.3s, transform 0.3s;
  margin-top: 4px;
}

.ai-agent-website-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* ── PREMIUM TESTIMONIALS ── */
.premium-testimonials-header {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 48px;
}

.premium-badge-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border: 1px solid rgba(240, 190, 84, 0.3);
  border-radius: 20px;
  background: rgba(240, 190, 84, 0.06);
  margin-bottom: 16px;
}

.premium-testimonials-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.premium-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.premium-testimonial-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.premium-testimonial-card:hover {
  transform: translateY(-4px);
}

/* Rotating gold border glow */
.premium-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
}

.premium-border-glow::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 55%,
    var(--gold) 70%,
    rgba(240, 190, 84, 0.6) 75%,
    var(--gold) 80%,
    transparent 95%,
    transparent 100%
  );
  animation: premiumBorderSpin 4s linear infinite;
}

.premium-testimonial-card:nth-child(2) .premium-border-glow::before {
  animation-delay: -1.3s;
}

.premium-testimonial-card:nth-child(3) .premium-border-glow::before {
  animation-delay: -2.6s;
}

@keyframes premiumBorderSpin {
  100% { transform: rotate(360deg); }
}

/* Inner content on top of the rotating border */
.premium-testimonial-content {
  position: relative;
  z-index: 1;
  background: var(--dark-card);
  border-radius: 14px;
  margin: 2px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.premium-testimonial-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.premium-testimonial-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark-surface);
}

.premium-testimonial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.premium-testimonial-card:hover .premium-testimonial-img-wrap img {
  transform: scale(1.03);
}

.premium-testimonial-info {
  padding: 24px;
  flex: 1;
}

.premium-testimonial-title {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.premium-testimonial-info .testimonial-quote {
  margin-bottom: 16px;
}

.premium-testimonial-info .testimonial-link {
  margin-top: 0;
}

/* ── PRICING ── */
.pricing-section {
  padding: 100px 48px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(240, 190, 84, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: start;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 190, 84, 0.25);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(240, 190, 84, 0.06) 0%, var(--dark-card) 40%);
  box-shadow: 0 0 60px rgba(240, 190, 84, 0.08);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 0 80px rgba(240, 190, 84, 0.12);
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.plan-tagline {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.pricing-card-price {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--dark-card-border);
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 400;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 190, 84, 0.25);
}

/* ── FAQ ── */
.faq-section {
  padding: 100px 48px;
  background: var(--rich-black);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(240, 190, 84, 0.15);
}

.faq-item.active {
  border-color: rgba(240, 190, 84, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── FOOTER ── */
.footer {
  padding: 80px 48px 32px;
  background: var(--dark-bg);
  border-top: 1px solid rgba(240, 190, 84, 0.1);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contact-info a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-links-group h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 0.9rem;
  color: var(--text-gray);
  transition: color 0.3s;
}

.footer-links-group a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--dark-card-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
  }

  .premium-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-testimonials-grid .premium-testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-v2-title {
    font-size: 3.2rem;
  }

  .hero-v2-card {
    width: 300px;
  }

  .hero-v2-showcase {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-v2 {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-v2-title {
    font-size: 2.4rem;
  }

  .hero-v2-description {
    font-size: 1.05rem;
  }

  .hero-v2-showcase {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero-v2-card {
    width: 85%;
    max-width: 340px;
  }

  .hero-v2-card:nth-child(1),
  .hero-v2-card:nth-child(2) {
    transform: none;
  }

  .hero-v2-stats {
    gap: 24px;
  }

  .hero-v2-stat::after {
    display: none;
  }

  .hero-v2-orb--1 { width: 300px; height: 300px; }
  .hero-v2-orb--2 { width: 250px; height: 250px; }
  .hero-v2-orb--3 { width: 200px; height: 200px; }
  .hero-v2-orb--4 { display: none; }

  .features-section,
  .testimonials-section,
  .pricing-section,
  .faq-section,
  .partners-section {
    padding: 60px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .premium-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .premium-testimonials-grid .premium-testimonial-card:last-child {
    max-width: 100%;
  }

  .premium-testimonials-subtitle {
    font-size: 1.3rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .pricing-grid .pricing-card:last-child {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .partners-logos {
    gap: 24px;
  }

  .partner-logo-inner {
    padding: 28px 36px;
  }

  .partner-logo-wrap img {
    height: 56px;
  }

  .footer {
    padding: 48px 20px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .hero-v2-title {
    font-size: 1.9rem;
  }

  .hero-v2-description {
    font-size: 0.95rem;
  }

  .hero-v2-cta-primary {
    padding: 16px 32px;
    font-size: 0.9rem;
  }

  .hero-v2-cta-secondary {
    padding: 16px 24px;
    font-size: 0.85rem;
  }

  .hero-v2-stat-number {
    font-size: 1.5rem;
  }

  .hero-v2-card {
    width: 92%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .partners-logos {
    flex-direction: column;
    gap: 16px;
  }

  .price-amount {
    font-size: 2.2rem;
  }
}

/* ── SCROLL ANIMATIONS ── */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.15s; }
.animate-in:nth-child(5) { transition-delay: 0.2s; }
.animate-in:nth-child(6) { transition-delay: 0.25s; }

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── SEE IT IN ACTION PLAYER ── */
.see-it-player {
  margin-top: 20px;
  padding: 16px;
  background: rgba(240, 190, 84, 0.06);
  border: 1px solid rgba(240, 190, 84, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.see-it-player:hover {
  border-color: rgba(240, 190, 84, 0.35);
  box-shadow: 0 0 20px rgba(240, 190, 84, 0.08);
}

.see-it-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.see-it-icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.2s;
}

.see-it-player:hover .see-it-icon {
  background: var(--gold-dark);
  transform: scale(1.08);
}

.see-it-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.see-it-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  animation: seeItPulse 1.4s ease-in-out infinite;
}

.see-it-dot:nth-child(1) { animation-delay: 0s; }
.see-it-dot:nth-child(2) { animation-delay: 0.2s; }
.see-it-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes seeItPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.5); }
}

.see-it-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.see-it-player:hover .see-it-text {
  color: var(--gold);
}

/* ── VISITOR IDENTIFIER MODAL ── */
.visitor-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.visitor-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.visitor-modal {
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  background: var(--dark-card);
  border-left: 1px solid rgba(240, 190, 84, 0.2);
  padding: 48px 32px 32px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.visitor-modal-overlay.active .visitor-modal {
  transform: translateX(0);
}

.visitor-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.visitor-modal-close:hover {
  color: var(--white);
}

.visitor-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
}

.visitor-modal-desc {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 28px;
  max-width: 360px;
}

/* Rotating gold border wrapper */
.visitor-card-wrap {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.visitor-card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
}

.visitor-card-border-glow::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 55%,
    var(--gold) 70%,
    rgba(240, 190, 84, 0.6) 75%,
    var(--gold) 80%,
    transparent 95%,
    transparent 100%
  );
  animation: premiumBorderSpin 4s linear infinite;
}

.visitor-card {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--dark-surface);
  border-radius: 14px;
  padding: 24px;
  margin: 2px;
  width: calc(100% - 4px);
}

.visitor-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(8px);
}

.visitor-card-row.typed-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}

.visitor-card-row:last-child {
  border-bottom: none;
}

.visitor-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-right: 16px;
}

.visitor-card-value {
  font-size: 0.95rem;
  color: var(--off-white);
  text-align: right;
  overflow: hidden;
}

.visitor-card-value .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.6s step-end infinite;
}

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

.visitor-card-value a {
  color: var(--gold);
  transition: color 0.2s;
}

.visitor-card-value a:hover {
  color: var(--gold-dark);
}

@media (max-width: 480px) {
  .visitor-modal {
    padding: 40px 20px 24px;
  }
  .visitor-card-row {
    flex-direction: column;
    gap: 4px;
  }
  .visitor-card-value {
    text-align: left;
  }
}
