/* ===========================
   ZENTRA AGENCY — STYLE SHEET
   =========================== */

:root {
  --pink: #fe2c55;
  --cyan: #25f4ee;
  --purple: #7c3aed;
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #16161f;
  --card: #1a1a26;
  --border: rgba(255,255,255,0.07);
  --text: #e2e2f0;
  --muted: #888899;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

.logo-z {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #e01e45 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(254,44,85,0.4) !important;
}

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

.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
  transition: background 0.2s;
}

.mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob1 {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -100px; left: -200px;
  animation-delay: 0s;
}

.blob2 {
  width: 500px; height: 500px;
  background: var(--purple);
  top: 200px; right: -100px;
  animation-delay: 3s;
}

.blob3 {
  width: 400px; height: 400px;
  background: var(--cyan);
  bottom: -100px; left: 30%;
  animation-delay: 5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { flex: 1; max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,44,85,0.1);
  border: 1px solid rgba(254,44,85,0.3);
  color: var(--pink);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* PHONE MOCKUP */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
}

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

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1e1e30, #0d0d18);
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #1a0a0f 0%, #0a0a1a 100%);
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(254,44,85,0.15) 0%, transparent 50%);
}

.live-badge {
  position: absolute;
  top: 20px; left: 16px;
  background: var(--pink);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge i { font-size: 6px; animation: pulse 1s infinite; }

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

.viewer-count {
  position: absolute;
  top: 20px; right: 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stream-overlay {
  position: absolute;
  bottom: 60px; left: 0; right: 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stream-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  border: 2px solid var(--pink);
  flex-shrink: 0;
}

.stream-info { display: flex; flex-direction: column; }
.stream-name { font-size: 0.8rem; font-weight: 700; color: white; }
.stream-title { font-size: 0.7rem; color: rgba(255,255,255,0.7); }

.floating-gifts { position: absolute; inset: 0; pointer-events: none; }
.gift {
  position: absolute;
  font-size: 1.5rem;
  animation: giftFloat 3s ease-in-out infinite;
}
.g1 { bottom: 140px; right: 20px; animation-delay: 0s; }
.g2 { bottom: 180px; right: 50px; animation-delay: 0.5s; }
.g3 { bottom: 160px; right: 90px; animation-delay: 1s; }
.g4 { bottom: 200px; right: 25px; animation-delay: 1.5s; }

@keyframes giftFloat {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-120px) scale(0.5); opacity: 0; }
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(254,44,85,0.3) 0%, transparent 70%);
  z-index: -1;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--pink);
  color: white;
}
.btn-primary:hover {
  background: #e01e45;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,44,85,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-outline-center {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  transition: all 0.25s;
  width: fit-content;
  margin: 48px auto 0;
}
.btn-outline-center:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ===========================
   SECTION COMMONS
   =========================== */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(254,44,85,0.1);
  border: 1px solid rgba(254,44,85,0.25);
  color: var(--pink);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ===========================
   FEATURES
   =========================== */
.features { background: var(--dark2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254,44,85,0.3);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(var(--c, #fe2c55), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c);
  margin-bottom: 20px;
  border: 1px solid rgba(var(--c),0.2);
}

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

.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works { background: var(--dark3); }

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  width: 200px;
  transition: all 0.3s;
}

.step:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.4); }

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 0.82rem; color: var(--muted); }

.step-arrow {
  color: var(--muted);
  font-size: 1.2rem;
}

/* ===========================
   CREATORS PREVIEW
   =========================== */
.creators-preview { background: var(--dark2); }

.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.creator-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.creator-card.featured {
  border-color: rgba(254,44,85,0.4);
  background: linear-gradient(145deg, #1e1020, #1a1a26);
  transform: scale(1.05);
}

.creator-card:hover { transform: translateY(-6px) scale(1.02); }
.creator-card.featured:hover { transform: translateY(-6px) scale(1.07); }

.creator-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
}

.av1 { background: linear-gradient(135deg, #fe2c55, #9b59b6); }
.av2 { background: linear-gradient(135deg, #25f4ee, #1a73e8); border-color: var(--cyan) !important; }
.av3 { background: linear-gradient(135deg, #f39c12, #e74c3c); }
.av4 { background: linear-gradient(135deg, #2ecc71, #1abc9c); }
.av5 { background: linear-gradient(135deg, #e91e63, #ff5722); }
.av6 { background: linear-gradient(135deg, #9c27b0, #3f51b5); }

.creator-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.creator-info h4 { font-size: 1rem; font-weight: 700; color: var(--white); }
.creator-info span { font-size: 0.8rem; color: var(--muted); }

.creator-stats {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.creator-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.creator-stats i { color: var(--pink); }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--dark3);
  text-align: center;
}

.cta-bg { position: absolute; inset: 0; }
.cta-blob {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.cta-content { position: relative; }
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta-content p { color: var(--muted); margin-bottom: 36px; font-size: 1.05rem; }
.cta-content .btn { margin: 0 auto; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  line-height: 1.7;
}

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.social-links a:hover { background: var(--pink); color: white; border-color: var(--pink); }

.footer-links h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-credit {
  width: 100%;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-credit a {
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.2s, opacity 0.2s;
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--white);
  opacity: 0.9;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  margin: 16px 0;
}

.page-hero-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story { background: var(--dark2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; min-height: 400px; }

.about-card-stack { position: relative; width: 280px; height: 280px; margin: 0 auto; }

.about-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.card-back {
  width: 220px; height: 220px;
  top: 0; left: 0;
  transform: rotate(-8deg);
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.3);
}
.card-back i { font-size: 3rem; color: var(--purple); }
.card-back span { font-weight: 700; color: var(--text); }

.card-front {
  width: 220px; height: 220px;
  bottom: 0; right: 0;
  background: rgba(254,44,85,0.1);
  border-color: rgba(254,44,85,0.3);
  z-index: 2;
}

.about-num-big {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-stat {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.fs1 { top: -20px; right: -20px; }
.fs2 { bottom: -10px; left: -20px; }

.about-text .section-tag { margin-bottom: 12px; }

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }

.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text);
}

.about-badge i { color: #2ecc71; }

/* VALUES */
.values-section { background: var(--dark3); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.value-item:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.3); }

.value-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(124,58,237,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--purple);
  margin: 0 auto 16px;
}

.value-item h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.value-item p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* TEAM */
.team-section { background: var(--dark2); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover { transform: translateY(-6px); border-color: rgba(37,244,238,0.3); }

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
}

.ta1 { background: linear-gradient(135deg, #fe2c55, #7c3aed); }
.ta2 { background: linear-gradient(135deg, #25f4ee, #1a73e8); }
.ta3 { background: linear-gradient(135deg, #f39c12, #e74c3c); }

.team-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.team-card > span {
  display: block;
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 6px 0 12px;
}
.team-card p { color: var(--muted); font-size: 0.85rem; margin-bottom: 20px; }

.team-socials { display: flex; justify-content: center; gap: 10px; }
.team-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.team-socials a:hover { background: var(--purple); color: white; border-color: var(--purple); }

/* ===========================
   CREATORS (FULL PAGE)
   =========================== */
.creators-section { background: var(--dark2); }

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

.creators-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.creator-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.creator-full-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254,44,85,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.creator-full-card.featured-card {
  border-color: rgba(254,44,85,0.4);
  background: linear-gradient(145deg, #1e1020, #1a1a26);
}

.cfc-top {
  height: 140px;
  background: linear-gradient(135deg, #1e1e30, #0d0d18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cfc-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
}

.cfc-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
}

.live-dot {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--pink);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-dot i { font-size: 6px; animation: pulse 1s infinite; }

.star-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gradient);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
}

.cfc-body { padding: 24px; }
.cfc-body h3 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.cfc-cat {
  display: inline-block;
  background: rgba(254,44,85,0.1);
  color: var(--pink);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cfc-body p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }

.cfc-stats {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.cfc-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.cfc-stats i { color: var(--pink); font-size: 0.85rem; }
.cfc-stats strong { font-size: 0.9rem; color: var(--white); }
.cfc-stats small { font-size: 0.7rem; color: var(--muted); }

.join-banner {
  background: linear-gradient(135deg, rgba(254,44,85,0.1), rgba(124,58,237,0.1));
  border-top: 1px solid rgba(254,44,85,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 40px 0;
}

.join-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.join-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

.join-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.join-content p { color: var(--muted); font-size: 0.9rem; }
.join-content .btn { margin-left: auto; }

/* ===========================
   APPLY PAGE
   =========================== */
.apply-section { background: var(--dark2); padding: 80px 0; }

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.apply-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.apply-benefit {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(254,44,85,0.1);
  border: 1px solid rgba(254,44,85,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.apply-benefit h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.apply-benefit p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

.apply-requirements {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}

.apply-requirements h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.apply-requirements ul { display: flex; flex-direction: column; gap: 10px; }
.apply-requirements li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.9rem;
}
.apply-requirements i { color: #2ecc71; }

/* FORM CARD */
.apply-form-card, .contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header i { font-size: 2rem; color: var(--pink); }
.form-header h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin: 8px 0 4px; }
.form-header p { color: var(--muted); font-size: 0.9rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888899' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(254,44,85,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-icon-wrap { position: relative; }
.input-icon-wrap i {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.9rem;
}
.input-icon-wrap input { padding-left: 42px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-check input { width: auto; margin-top: 2px; }
.form-check label { font-size: 0.85rem; color: var(--muted); cursor: pointer; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 3rem;
  color: #2ecc71;
  margin-bottom: 16px;
}

.form-success h3 { font-size: 1.4rem; color: var(--white); font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { background: var(--dark2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-channels h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.contact-channels > p { color: var(--muted); margin-bottom: 32px; line-height: 1.7; }

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  transition: all 0.3s;
}

.contact-card:hover { border-color: rgba(254,44,85,0.3); transform: translateX(4px); }

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(var(--cc, #fe2c55), 0.15);
  border: 1px solid rgba(var(--cc), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--cc);
  flex-shrink: 0;
}

.contact-detail h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.contact-detail p { font-size: 0.8rem; color: var(--muted); }
.contact-detail a { font-size: 0.9rem; color: var(--cyan); font-weight: 500; }

.working-hours {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 24px;
}

.working-hours h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
}

.hours-grid span { font-size: 0.85rem; }
.hours-grid span:nth-child(odd) { color: var(--muted); }
.hours-grid span:nth-child(even) { color: var(--text); font-weight: 600; text-align: right; }

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-card > p { color: var(--muted); margin-bottom: 28px; font-size: 0.9rem; }

/* ===========================
   FAQ
   =========================== */
.faq-section { background: var(--dark3); }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

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

.faq-q:hover { color: var(--pink); }

.faq-q i {
  transition: transform 0.3s;
  color: var(--muted);
}

.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--pink); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
  }
  .hero-buttons, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .creators-grid { grid-template-columns: 1fr; }
  .creator-card.featured { transform: scale(1); }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .creators-full-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }

  .form-row { grid-template-columns: 1fr; }
  .join-content { flex-direction: column; text-align: center; }
  .join-content .btn { margin-left: 0; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-badges { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  section { padding: 60px 0; }
  .apply-form-card, .contact-form-card { padding: 24px; }
}

/* ===========================
   HERO TRUST & SIDE PANEL
   =========================== */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.trust-sep {
  width: 1px; height: 20px;
  background: var(--border);
}

.badge-dot {
  width: 4px; height: 4px;
  background: var(--muted);
  border-radius: 50%;
}

.phone-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(254,44,85,0.08) 0%, transparent 60%);
}

.stream-comments {
  position: absolute;
  left: 12px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment {
  background: rgba(0,0,0,0.55);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.c-name { color: var(--cyan); font-weight: 700; margin-right: 4px; }

.side-panel {
  position: absolute;
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 140px;
}

.sp-item i { font-size: 1.1rem; }
.sp-item strong { display: block; font-size: 0.9rem; color: var(--white); font-weight: 700; }
.sp-item small { font-size: 0.7rem; color: var(--muted); }

/* ===========================
   PARTNER BAR
   =========================== */
.partner-bar {
  background: linear-gradient(135deg, rgba(254,44,85,0.08), rgba(37,244,238,0.05));
  border-top: 1px solid rgba(254,44,85,0.15);
  border-bottom: 1px solid rgba(37,244,238,0.1);
  padding: 24px 0;
}

.partner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  background: rgba(0,0,0,0.3);
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.partner-logo-wrap i { font-size: 1.4rem; }

.partner-text { flex: 1; }
.partner-text strong { display: block; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.partner-text span { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; white-space: nowrap; }

/* ===========================
   FEATURE CARD WIDE
   =========================== */
.feature-card-wide {
  grid-column: span 2;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.feature-text { flex: 1; }

.feature-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.feature-list li i { color: #2ecc71; font-size: 0.8rem; }

/* ===========================
   ZENTRAHUB SECTION
   =========================== */
.hub-section { background: var(--dark2); }

.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hub-text .section-tag { margin-bottom: 12px; }

.hub-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hub-text p { color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

.hub-stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.hub-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hs-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.hs-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hub-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.hub-card-header {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hc-dot.red { background: #ff5f56; }
.hc-dot.yellow { background: #febc2e; }
.hc-dot.green { background: #27c840; }

.hc-title {
  margin-left: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.hub-card-body { padding: 24px; }

.hb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hb-label {
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hb-label i { color: var(--pink); }

.hb-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.hb-value.green { color: #2ecc71; }
.hb-value.cyan { color: var(--cyan); }

.hb-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 100px;
  position: relative;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===========================
   REQUIREMENTS SECTION
   =========================== */
.requirements-section { background: var(--dark3); }

.req-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.req-text .section-tag { margin-bottom: 12px; }

.req-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.req-text > p { color: var(--muted); margin-bottom: 32px; line-height: 1.7; }

.req-list { display: flex; flex-direction: column; gap: 16px; }

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.req-item:hover { border-color: rgba(255,255,255,0.12); }

.req-yes i { color: #2ecc71; font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.req-no i { color: var(--muted); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

.req-item strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 700; }
.req-item span { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.req-cta-box {
  background: var(--card);
  border: 1px solid rgba(254,44,85,0.3);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  position: sticky;
  top: 100px;
}

.rcb-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(254,44,85,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--pink);
  margin: 0 auto 20px;
}

.req-cta-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.req-cta-box p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.rcb-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.rcb-features span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.rcb-features i { color: #2ecc71; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section { background: var(--dark3); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}

.tcard:hover { transform: translateY(-6px); border-color: rgba(254,44,85,0.2); }

.tcard-featured {
  border-color: rgba(254,44,85,0.35);
  background: linear-gradient(145deg, #1e1020, #1a1a26);
}

.tcard-stars {
  color: #f39c12;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.tcard p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.tcard-author strong { display: block; font-size: 0.9rem; color: var(--white); font-weight: 700; }
.tcard-author span { font-size: 0.78rem; color: var(--muted); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 400px;
  margin: 0 auto;
}

.rs-score {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rs-stars {
  color: #f39c12;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rs-right span { color: var(--muted); font-size: 0.85rem; }

/* ===========================
   CTA EXTRAS
   =========================== */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,44,85,0.1);
  border: 1px solid rgba(254,44,85,0.3);
  color: var(--pink);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-fine {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ===========================
   QUICK STATS (about page)
   =========================== */
.quick-stats { background: var(--dark3); padding: 60px 0; }

.qs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.qs-item { display: flex; flex-direction: column; gap: 6px; }

.qs-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.qs-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   MISSION SECTION
   =========================== */
.mission-section { background: var(--dark3); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mission-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s;
}

.mission-card:hover { transform: translateY(-6px); }
.mission-card-center { border-color: rgba(37,244,238,0.3); }

.mc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(var(--mc), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--mc);
  margin-bottom: 20px;
  border: 1px solid rgba(var(--mc), 0.2);
}

.mission-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.mission-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ===========================
   WHY TABLE
   =========================== */
.why-section { background: var(--dark2); }

.why-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.wt-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 24px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wt-us { color: var(--pink); text-align: center; }
.wt-other { text-align: center; }

.wt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.wt-row:hover { background: rgba(255,255,255,0.02); }
.wt-row:last-child { border-bottom: none; }
.wt-row > span:first-child { color: var(--text); }

.wt-yes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #2ecc71;
  font-weight: 600;
  font-size: 0.85rem;
}

.wt-no {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ===========================
   CATEGORY STATS (yayincilar)
   =========================== */
.cat-stats { background: var(--dark3); padding: 48px 0; }

.cs-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 20px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 120px;
  transition: all 0.3s;
}

.cs-item:hover { transform: translateY(-4px); }
.cs-item i { font-size: 1.4rem; }
.cs-item strong { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.cs-item span { font-size: 0.78rem; color: var(--muted); }

/* ===========================
   CREATOR EARN BADGE
   =========================== */
.cfc-earn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.25);
  color: #2ecc71;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===========================
   BADGE SECTION
   =========================== */
.badge-section { background: var(--dark2); }

.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.badge-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.badge-card:hover { transform: translateY(-6px); }
.badge-card-top { border-color: rgba(37,244,238,0.3); }

.badge-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.badge-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.badge-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }

.badge-req {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
}

/* ===========================
   PROCESS BAR
   =========================== */
.process-bar { background: var(--dark3); padding: 40px 0; }

.pb-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.pb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.pb-step.active { opacity: 1; }

.pb-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--muted);
}

.pb-step.active .pb-num {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
}

.pb-step span { font-size: 0.78rem; color: var(--muted); text-align: center; max-width: 100px; }
.pb-step.active span { color: var(--white); }

.pb-line {
  width: 60px; height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 28px;
}

/* ===========================
   GUARANTEE SECTION
   =========================== */
.guarantee-section { background: var(--dark3); padding: 80px 0; }

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.guar-item i { font-size: 2rem; margin-bottom: 16px; display: block; }
.guar-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.guar-item p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* ===========================
   APPLY BENEFIT ICON
   =========================== */
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(254,44,85,0.1);
  border: 1px solid rgba(254,44,85,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c, var(--pink));
  font-size: 1.1rem;
  flex-shrink: 0;
  background: rgba(var(--bi, 254,44,85), 0.1);
  border-color: rgba(var(--bi, 254,44,85), 0.2);
  color: var(--bi, var(--pink));
}

.req-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(37,244,238,0.05);
  border: 1px solid rgba(37,244,238,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.req-note i { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ===========================
   QUICK CONTACT
   =========================== */
.quick-contact { background: var(--dark3); padding: 40px 0; }

.qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.qc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
}

.qc-item:hover { transform: translateY(-4px); }

.qc-whatsapp:hover { border-color: #25D366; }
.qc-tiktok:hover { border-color: var(--pink); }
.qc-phone:hover { border-color: var(--cyan); }

.qc-item > i:first-child { font-size: 1.8rem; flex-shrink: 0; }
.qc-whatsapp > i:first-child { color: #25D366; }
.qc-tiktok > i:first-child { color: var(--pink); }
.qc-phone > i:first-child { color: var(--cyan); }

.qc-item strong { display: block; color: var(--white); font-weight: 700; font-size: 0.95rem; }
.qc-item span { color: var(--muted); font-size: 0.82rem; }

.qc-arrow { color: var(--muted); margin-left: auto; flex-shrink: 0; }

/* ===========================
   FOOTER 4-col
   =========================== */
.footer-grid {
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
}

/* ===========================
   RESPONSIVE ADDITIONS
   =========================== */
@media (max-width: 1100px) {
  .side-panel { display: none; }
  .feature-card-wide { grid-column: span 1; flex-direction: column; }
  .hub-grid { grid-template-columns: 1fr; gap: 48px; }
  .req-grid { grid-template-columns: 1fr; }
  .req-cta-box { position: static; }
}

@media (max-width: 900px) {
  .hero-trust { display: none; }
  .partner-content { flex-direction: column; text-align: center; }
  .qs-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .qc-grid { grid-template-columns: 1fr; }
  .cs-grid { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px; }
  .wt-row, .wt-header { grid-template-columns: 2fr 1fr 1fr; font-size: 0.8rem; }
  .pb-line { width: 30px; }
}

@media (max-width: 600px) {
  .qs-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .hub-stats-row { flex-direction: column; gap: 12px; }
  .pb-steps { gap: 4px; }
  .pb-line { width: 20px; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ===========================
   DYNAMIC CREATOR CARDS
   =========================== */
.cfc-avatar-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  position: relative;
}

.cfc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cfc-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.cfc-username {
  color: var(--white);
  transition: color 0.2s;
}

.cfc-username:hover {
  color: var(--cyan);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.whatsapp-float .wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.whatsapp-float .wa-btn i {
  font-size: 1.65rem;
  color: #fff;
}

.whatsapp-float .wa-label {
  background: #25D366;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.whatsapp-float:hover .wa-btn {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float .wa-btn {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float .wa-btn i {
    font-size: 1.4rem;
  }
  .whatsapp-float .wa-label {
    display: none;
  }
}
