/* Creators page content styles (scoped from glitzbee-for-creators.jsx). Do not affect header/footer. */
.creators-main {
  --cr-pink: #E91E8C;
  --cr-purple: #8B5CF6;
  --cr-purple-light: #A78BFA;
  --cr-cream: #FFF9F5;
  --cr-text: #2D2A26;
  --cr-text-muted: #5C5752;
  --cr-gradient-reverse: linear-gradient(135deg, #8B5CF6 0%, #E91E8C 100%);
}

/* ========== HERO ========== */
.creators-main .hero {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(180deg, var(--cr-cream) 0%, #F5F0FF 100%);
  position: relative;
  overflow: hidden;
}

.creators-main .hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.creators-main .hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.creators-main .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.creators-main .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cr-purple);
  margin-bottom: 1rem;
}

.creators-main .hero-title {
  font-family: 'Mukta', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cr-text);
  margin-bottom: 1rem;
}

.creators-main .hero-title-gradient {
  background: var(--cr-gradient-reverse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.creators-main .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--cr-text-muted);
  margin-bottom: 1.25rem;
}

.creators-main .hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .creators-main .hero-cta-group {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

.creators-main .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cr-gradient-reverse);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.creators-main .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.35);
}

.creators-main .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--cr-purple);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.creators-main .btn-secondary:hover {
  border-color: var(--cr-purple);
  background: rgba(139, 92, 246, 0.05);
}

.creators-main .hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  font-size: 0.875rem;
  color: var(--cr-text-muted);
}

.creators-main .hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.creators-main .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.creators-main .hero-phone {
  width: 280px;
  height: 560px;
  position: relative;
}

.creators-main .hero-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creators-main .hero-phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.creators-main .phone-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.creators-main .phone-title {
  font-family: 'Mukta', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 0.25rem;
}

.creators-main .phone-subtitle {
  font-size: 0.6875rem;
  color: var(--cr-text-muted);
}

.creators-main .phone-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.creators-main .phone-stat {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.creators-main .phone-stat-value {
  font-family: 'Mukta', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cr-purple);
}

.creators-main .phone-stat-label {
  font-size: 0.625rem;
  color: var(--cr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.creators-main .phone-audience {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.creators-main .phone-audience-title {
  font-size: 0.6875rem;
  color: var(--cr-text-muted);
  margin-bottom: 0.75rem;
}

.creators-main .phone-audience-tones {
  display: flex;
  gap: 4px;
  margin-bottom: 0.5rem;
}

.creators-main .phone-audience-tone {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.creators-main .phone-audience-tone.highlighted {
  border-color: var(--cr-purple);
  transform: scale(1.15);
}

.creators-main .phone-audience-label {
  font-size: 0.6875rem;
  color: var(--cr-purple);
  font-weight: 600;
}

/* ========== PROBLEM ========== */
.creators-main .problem-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #F8F5FF 0%, #FFF5FA 100%);
}

.creators-main .problem-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.creators-main .section-container {
  max-width: 900px;
  margin: 0 auto;
}

.creators-main .problem-content {
  text-align: left;
}

.creators-main .problem-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 42, 38, 0.08);
}

.creators-main .problem-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.creators-main .problem-eyebrow {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cr-purple);
  margin-bottom: 1rem;
}

.creators-main .problem-title {
  font-family: 'Mukta', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 1.25rem;
}

.creators-main .problem-story {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--cr-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.creators-main .problem-story p {
  margin-bottom: 1rem;
}

.creators-main .problem-story strong {
  color: var(--cr-text);
}

.creators-main .problem-highlight {
  display: inline;
  background: linear-gradient(180deg, transparent 60%, rgba(139, 92, 246, 0.15) 60%);
}

.creators-main .problem-punchline {
  font-family: 'Mukta', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cr-purple);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(139, 92, 246, 0.2);
}

/* ========== HOW IT WORKS ========== */
.creators-main .how-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #F8F5FF 0%, var(--cr-cream) 100%);
}

.creators-main .how-container {
  max-width: 1200px;
  margin: 0 auto;
}

.creators-main .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.creators-main .section-eyebrow {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--cr-gradient-reverse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.creators-main .section-title {
  font-family: 'Mukta', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--cr-text);
}

.creators-main .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.creators-main .step-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.creators-main .step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.creators-main .step-number {
  width: 48px;
  height: 48px;
  background: var(--cr-gradient-reverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.creators-main .step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.creators-main .step-title {
  font-family: 'Mukta', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 1rem;
}

.creators-main .step-desc {
  font-size: 1rem;
  color: var(--cr-text-muted);
  line-height: 1.6;
}

/* ========== FEATURES ========== */
.creators-main .features-section {
  padding: 3rem 1.5rem;
  background: white;
}

.creators-main .features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.creators-main .features-visual {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 42, 38, 0.06);
}

.creators-main .features-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.creators-main .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.creators-main .feature-card {
  position: relative;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(233, 30, 140, 0.03) 100%);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  transition: all 0.3s ease;
}

.creators-main .feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--cr-gradient-reverse);
  opacity: 0.7;
}

.creators-main .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
}

.creators-main .feature-card:hover::before {
  opacity: 1;
}

.creators-main .feature-content {
  flex: 1;
}

.creators-main .feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 0.5rem;
}

.creators-main .feature-desc {
  font-size: 0.9375rem;
  color: var(--cr-text-muted);
  line-height: 1.6;
}

/* ========== OPPORTUNITY ========== */
.creators-main .opportunity-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #F8F5FF 0%, #EDE8FF 100%);
}

.creators-main .opportunity-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.creators-main .opportunity-title {
  font-family: 'Mukta', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 1rem;
}

.creators-main .opportunity-subtitle {
  font-size: 1.25rem;
  color: var(--cr-text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.creators-main .opportunity-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.creators-main .opportunity-stat {
  background: white;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.creators-main .opportunity-stat-value {
  font-family: 'Mukta', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--cr-gradient-reverse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.creators-main .opportunity-stat-label {
  font-size: 1rem;
  color: var(--cr-text-muted);
}

.creators-main .opportunity-cta {
  font-size: 1.125rem;
  color: var(--cr-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.creators-main .opportunity-cta strong {
  color: var(--cr-purple);
}

/* ========== TESTIMONIALS ========== */
.creators-main .testimonials-section {
  display: none; /* Hidden for now */
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #2D2A26 0%, #1A1A1A 100%);
  position: relative;
}

.creators-main .testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
}

.creators-main .testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.creators-main .testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.creators-main .testimonials-title {
  font-family: 'Mukta', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.creators-main .testimonials-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
}

.creators-main .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.creators-main .testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
}

.creators-main .testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
  background: rgba(139, 92, 246, 0.2);
  color: var(--cr-purple-light);
}

.creators-main .testimonial-quote {
  font-size: 1.0625rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.creators-main .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creators-main .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
}

.creators-main .testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
}

.creators-main .testimonial-meta {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ========== FINAL CTA ========== */
.creators-main .cta-section {
  padding: 3rem 1.5rem;
  background: var(--cr-cream);
  text-align: center;
}

.creators-main .cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.creators-main .cta-title {
  font-family: 'Mukta', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 0.75rem;
}

.creators-main .cta-title-gradient {
  background: var(--cr-gradient-reverse);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.creators-main .cta-subtitle {
  font-size: 1.25rem;
  color: var(--cr-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.creators-main .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

@media (max-width: 1024px) {
  .creators-main .cta-buttons {
    flex-wrap: nowrap;
  }
}

.creators-main .store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1A1A1A;
  color: white;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.creators-main .store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.creators-main .store-btn-icon {
  font-size: 1.75rem;
}

.creators-main .store-btn-text {
  text-align: left;
}

.creators-main .store-btn-small {
  font-size: 0.6875rem;
  opacity: 0.7;
  display: block;
}

.creators-main .store-btn-large {
  font-size: 1.0625rem;
  font-weight: 600;
}

.creators-main .cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  color: var(--cr-text-muted);
  margin-bottom: 1rem;
}

.creators-main .cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.creators-main .cta-contact {
  font-size: 0.9375rem;
  color: var(--cr-text-muted);
}

.creators-main .cta-contact a {
  color: var(--cr-purple);
  text-decoration: none;
  font-weight: 600;
}

.creators-main .cta-contact a:hover {
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .creators-main .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .creators-main .hero-text {
    order: 1;
  }
  .creators-main .hero-visual {
    order: 2;
  }
  .creators-main .hero-cta-group,
  .creators-main .hero-trust {
    justify-content: center;
  }
  .creators-main .problem-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .creators-main .problem-content {
    text-align: center;
    order: 1;
  }
  .creators-main .problem-visual {
    order: 2;
  }
  .creators-main .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .creators-main .opportunity-stats {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .creators-main .features-grid {
    grid-template-columns: 1fr;
  }
  .creators-main .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .creators-main .btn-primary,
  .creators-main .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  .creators-main .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .creators-main .hero-trust {
    gap: 1rem;
    justify-content: center;
  }
}
