*, *::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: linear-gradient(135deg, var(--gold), #b476e5, var(--gold), #9b5de5);
  background-size: 300% 300%;
  animation: navCtaGradient 4s ease infinite;
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.3s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(180, 118, 229, 0.3), 0 0 8px rgba(240, 190, 84, 0.25);
  position: relative;
  overflow: hidden;
}

.nav-cta::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;
}

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

@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: linear-gradient(135deg, var(--gold), #b476e5, var(--gold), #9b5de5);
  background-size: 300% 300%;
  animation: navCtaGradient 4s ease infinite;
  color: var(--black) !important;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(180, 118, 229, 0.3), 0 0 8px rgba(240, 190, 84, 0.25);
  position: relative;
  overflow: hidden;
}

.mobile-cta::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 ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--black);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(240, 190, 84, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(240, 190, 84, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(240, 190, 84, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

/* ── HERO SHOWCASE ── */
.hero-showcase {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.hero-showcase-card {
  position: relative;
  width: 340px;
  border-radius: 16px;
  overflow: visible;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: heroFloat 4s ease-in-out infinite;
}

.hero-showcase-card:nth-child(2) {
  animation-delay: -2s;
}

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

.hero-showcase-card:hover {
  animation-play-state: paused;
  transform: translateY(-18px) scale(1.03);
}

.hero-showcase-card img {
  display: block;
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s;
}

.hero-showcase-card:hover img {
  box-shadow: 0 16px 60px rgba(240, 190, 84, 0.25), 0 0 30px rgba(240, 190, 84, 0.1);
}

/* Gold border animation */
.hero-showcase-border {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
  border: 2px solid var(--gold);
}

.hero-showcase-card:hover .hero-showcase-border {
  opacity: 1;
  animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% { border-color: var(--gold); box-shadow: 0 0 8px rgba(240, 190, 84, 0.3); }
  50% { border-color: var(--gold-dark); box-shadow: 0 0 20px rgba(240, 190, 84, 0.5); }
}

/* Gold glow underneath */
.hero-showcase-glow {
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(240, 190, 84, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  filter: blur(20px);
}

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

/* Stars */
.hero-showcase-stars {
  position: absolute;
  inset: -30px;
  z-index: 3;
  pointer-events: none;
}

.hero-showcase-stars .star {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px 2px rgba(240, 190, 84, 0.6);
  transition: opacity 0.3s;
}

.hero-showcase-card:hover .star {
  animation: starTwinkle 1.5s ease-in-out infinite;
}

.hero-showcase-stars .star:nth-child(1) { top: 5%; left: -8%; animation-delay: 0s; }
.hero-showcase-stars .star:nth-child(2) { top: -5%; left: 40%; animation-delay: 0.3s; }
.hero-showcase-stars .star:nth-child(3) { top: 15%; right: -8%; animation-delay: 0.6s; }
.hero-showcase-stars .star:nth-child(4) { bottom: 10%; left: -6%; animation-delay: 0.9s; }
.hero-showcase-stars .star:nth-child(5) { bottom: -5%; left: 55%; animation-delay: 0.2s; }
.hero-showcase-stars .star:nth-child(6) { bottom: 20%; right: -6%; animation-delay: 0.7s; }

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

/* ── 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-title {
    font-size: 3rem;
  }
}

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

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

  .hamburger {
    display: flex;
  }

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

  .hero-title {
    font-size: 2.2rem;
  }

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

  .hero-showcase {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
  }

  .hero-showcase-card {
    width: 280px;
  }

  .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-title {
    font-size: 1.8rem;
  }

  .hero-cta {
    padding: 14px 36px;
    font-size: 0.9rem;
  }

  .hero-showcase-card {
    width: 240px;
  }

  .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);
}
