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

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --creator-color: #ec4899;
  --freelancer-color: #8b5cf6;
  --marketer-color: #06b6d4;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-creator: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  --gradient-freelancer: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  --gradient-marketer: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

[data-theme="dark"] {
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-light: #9ca3af;
  --bg-primary: #111827;
  --bg-secondary: #1f2937;
  --bg-tertiary: #374151;
  --border-color: #374151;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: all 0.3s ease;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
  background: rgba(17, 24, 39, 0.95);
}

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

.nav-logo h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--bg-secondary);
  color: var(--primary-color);
}

.nav-cta {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mockup-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

.mockup-phone {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 40px;
  padding: 20px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

[data-theme="dark"] .mockup-phone {
  background: linear-gradient(145deg, #374151, #1f2937);
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.mockup-content {
  padding: 20px;
  height: 100%;
}

.profile-showcase {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-creator);
}

.profile-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.profile-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.profile-badges {
  display: flex;
  gap: 8px;
}

.badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge.verified {
  background: #dcfce7;
  color: #166534;
}

.badge.live {
  background: #fef2f2;
  color: #dc2626;
  animation: pulse 2s infinite;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: center;
}

.profile-stats .stat {
  background: var(--bg-primary);
  padding: 15px 10px;
  border-radius: 15px;
}

.profile-stats .number {
  display: block;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.profile-stats .label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  animation: floatCard 4s ease-in-out infinite;
}

[data-theme="dark"] .floating-card {
  background: var(--bg-secondary);
}

.card-1 {
  top: 15%;
  left: -25%;
  animation-delay: 0s;
}

.card-2 {
  top: 45%;
  right: -25%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 35%;
  left: -20%;
  animation-delay: 2s;
}

.card-4 {
  bottom: 15%;
  right: -20%;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.floating-card i {
  color: var(--primary-color);
}

/* Live Ratings Section */
.live-ratings-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.ratings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rating-score {
  text-align: center;
}

.score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
}

.stars-large {
  color: #fbbf24;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.rating-score p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.leave-rating-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.leave-rating-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.reviews-loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  display: none;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

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

/* Problem & Solution Section */
.problem-solution {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.problem-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.problem-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.problem-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.problem-audience {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.solution-section {
  background: var(--bg-primary);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: var(--shadow-xl);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.solution-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.solution-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.point-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.point-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.solution-visual {
  display: flex;
  justify-content: center;
}

.solution-mockup {
  position: relative;
}

.mockup-browser {
  width: 450px;
  background: var(--bg-primary);
  border-radius: 15px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.browser-header {
  background: var(--bg-tertiary);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) {
  background: #ef4444;
}
.browser-dots span:nth-child(2) {
  background: #f59e0b;
}
.browser-dots span:nth-child(3) {
  background: #10b981;
}

.browser-url {
  background: var(--bg-secondary);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
}

.browser-content {
  padding: 20px;
  height: 300px;
}

.dashboard-preview {
  display: flex;
  height: 100%;
  gap: 15px;
}

.dashboard-sidebar {
  width: 120px;
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-item.active {
  background: var(--primary-color);
  color: white;
}

.sidebar-item i {
  font-size: 0.9rem;
}

.dashboard-main {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 15px;
}

.feed-post {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 15px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.post-avatar {
  width: 35px;
  height: 35px;
  background: var(--gradient-marketer);
  border-radius: 50%;
}

.post-info h4 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.post-info p {
  color: var(--text-secondary);
  font-size: 0.7rem;
}

.post-content p {
  margin-bottom: 10px;
  color: var(--text-primary);
  font-size: 0.8rem;
}

.post-image {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 8px;
  margin-bottom: 10px;
}

.post-actions {
  display: flex;
  gap: 15px;
}

.post-actions span {
  color: var(--text-secondary);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.post-actions span:hover {
  color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.step-card {
  background: var(--bg-primary);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.step-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-features span {
  background: var(--bg-secondary);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.step-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.audience-tag {
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
}

.audience-tag.creator {
  background: var(--gradient-creator);
}

.audience-tag.freelancer {
  background: var(--gradient-freelancer);
}

.audience-tag.marketer {
  background: var(--gradient-marketer);
}

.step-arrow {
  color: var(--primary-color);
  font-size: 2rem;
  animation: pulse 2s infinite;
}

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

/* Features Section */
.features {
  padding: 80px 0;
}

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

.feature-card {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.feature-card.featured::before {
  background: var(--gradient-secondary);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-secondary);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.feature-card.featured .feature-icon {
  background: var(--gradient-secondary);
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-highlight {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-audience {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* Dynamic Ratings Section */
.dynamic-ratings {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.ratings-dashboard {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.ratings-overview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rating-breakdown {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.rating-breakdown h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-label {
  width: 40px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.bar-container {
  flex: 1;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.rating-count {
  width: 30px;
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.live-activity {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.live-activity h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px;
  background: var(--bg-secondary);
  border-radius: 10px;
  font-size: 0.9rem;
}

.activity-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
}

.activity-text {
  flex: 1;
  color: var(--text-secondary);
}

.activity-time {
  color: var(--text-light);
  font-size: 0.8rem;
}

.comments-section {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.comments-header h3 {
  font-weight: 700;
  color: var(--text-primary);
}

.comments-filters {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.comment-card {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.comment-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.commenter-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.commenter-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.commenter-info h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.commenter-type {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.commenter-type.creator {
  background: rgba(236, 72, 153, 0.1);
  color: #be185d;
}

.commenter-type.freelancer {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.commenter-type.marketer {
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
}

.comment-rating {
  color: #fbbf24;
  font-size: 0.9rem;
}

.comment-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.comment-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.comment-actions {
  display: flex;
  gap: 1rem;
}

.helpful-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.helpful-btn:hover {
  background: var(--bg-secondary);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.load-more-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Progress Section */
.progress-section {
  padding: 80px 0;
}

.roadmap {
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 20px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.roadmap-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.roadmap-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.roadmap-item.completed .roadmap-icon {
  background: var(--gradient-accent);
}

.roadmap-item.in-progress .roadmap-icon {
  background: var(--gradient-secondary);
}

.roadmap-item.upcoming .roadmap-icon {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.roadmap-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.roadmap-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.status {
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.status.completed {
  background: #d1fae5;
  color: #065f46;
}

.status.in-progress {
  background: #fef3c7;
  color: #92400e;
}

.status.upcoming {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.roadmap-date {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-story {
  margin-bottom: 2rem;
}

.founder-story p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.founder-mission {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.founder-mission h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.founder-mission p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.founder-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.founder-card {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founder-image {
  margin-bottom: 2rem;
  position: relative;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.founder-badge {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  background: var(--gradient-accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.founder-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.founder-info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.founder-expertise {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.expertise-tag {
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.expertise-tag:nth-child(1) {
  background: var(--gradient-freelancer);
}

.expertise-tag:nth-child(2) {
  background: var(--gradient-creator);
}

.expertise-tag:nth-child(3) {
  background: var(--gradient-marketer);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-form {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.form-group input {
  flex: 1;
  background: none;
  border: none;
  padding: 15px 25px;
  color: white;
  font-size: 1rem;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.user-type-select {
  background: none;
  border: none;
  color: white;
  padding: 15px 20px;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  min-width: 150px;
}

.user-type-select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-group .cta-primary {
  background: white;
  color: var(--primary-color);
  border-radius: 40px;
  padding: 15px 30px;
  white-space: nowrap;
}

.form-group .cta-primary:hover {
  background: #f8fafc;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.social-proof {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.proof-item i {
  font-size: 1.2rem;
}

.community-links {
  margin-top: 2rem;
}

.community-links p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.community-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.community-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 160px;
}

.community-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.community-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.community-btn.telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
}

.community-btn.discord:hover {
  background: #5865f2;
  border-color: #5865f2;
}

.member-count {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.modal-body {
  padding: 2rem;
}

.rating-input {
  text-align: center;
  margin-bottom: 2rem;
}

.rating-input p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.star-rating i {
  font-size: 2rem;
  color: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.star-rating i:hover,
.star-rating i.active {
  color: #fbbf24;
  transform: scale(1.1);
}

.user-type-input {
  margin-bottom: 1.5rem;
}

.user-type-input label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.user-type-input select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.user-type-input select:focus {
  border-color: var(--primary-color);
}

.comment-input {
  margin-bottom: 1.5rem;
}

.comment-input label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.comment-input textarea {
  width: 100%;
  min-height: 100px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s ease;
}

.comment-input textarea:focus {
  border-color: var(--primary-color);
}

.user-input {
  margin-bottom: 2rem;
}

.user-input input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.user-input input:focus {
  border-color: var(--primary-color);
}

.submit-rating {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.submit-rating:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Co-founder CTA Section */
.cofounder-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cofounder-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cofounder-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23374151" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cofounder-grid)"/></svg>');
  opacity: 0.3;
}

.cofounder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cofounder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
  }
  to {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
  }
}

.cofounder-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cofounder-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cofounder-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.benefit-content p {
  opacity: 0.8;
  line-height: 1.5;
}

.cofounder-cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cofounder-primary-btn {
  background: var(--gradient-secondary);
  color: white;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.cofounder-primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cofounder-primary-btn:hover::before {
  left: 100%;
}

.cofounder-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.cofounder-primary-btn:focus {
  outline: 3px solid rgba(245, 158, 11, 0.5);
  outline-offset: 2px;
}

.cofounder-secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.cofounder-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cofounder-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.cofounder-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cofounder-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cofounder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cofounder-header {
  margin-bottom: 2.5rem;
}

.cofounder-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.founder-avatar {
  background: var(--gradient-primary);
  color: white;
}

.plus-icon {
  background: var(--gradient-secondary);
  color: white;
  font-size: 1.5rem;
}

.you-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.5);
  }
  50% {
    border-color: rgba(245, 158, 11, 0.8);
  }
}

.cofounder-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

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

.cofounder-stats .stat-item {
  text-align: center;
}

.cofounder-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.cofounder-stats .stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.3;
}

.cofounder-roles h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.role-tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.role-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.role-tag.tech {
  background: var(--gradient-primary);
}

.role-tag.marketing {
  background: var(--gradient-creator);
}

.role-tag.business {
  background: var(--gradient-accent);
}

/* Hero Co-founder CTA */
.cta-cofounder {
  background: var(--gradient-secondary);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.cta-cofounder:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-cofounder:focus {
  outline: 3px solid rgba(245, 158, 11, 0.5);
  outline-offset: 2px;
}

/* Co-founder Info Modal */
.cofounder-info-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cofounder-info-modal.active {
  opacity: 1;
  visibility: visible;
}

.cofounder-info-content {
  background: var(--bg-primary);
  border-radius: 25px;
  padding: 0;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cofounder-info-modal.active .cofounder-info-content {
  transform: scale(1);
}

.cofounder-info-header {
  background: var(--gradient-secondary);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.cofounder-info-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cofounder-info-header p {
  opacity: 0.9;
}

.cofounder-info-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cofounder-info-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cofounder-info-body {
  padding: 3rem;
}

.cofounder-requirements {
  margin-bottom: 3rem;
}

.cofounder-requirements h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.requirement-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 15px;
}

.requirement-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.requirement-text h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.requirement-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cofounder-cta-final {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 15px;
}

.cofounder-cta-final h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cofounder-cta-final p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .solution-content,
  .about-content,
  .ratings-dashboard,
  .cofounder-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

  .cofounder-visual {
    order: -1;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

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

@media (max-width: 768px) {
  .cofounder-content h2 {
    font-size: 2.5rem;
  }

  .cofounder-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cofounder-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .role-tags {
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-cofounder {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cofounder-content h2 {
    font-size: 2rem;
  }

  .cofounder-card {
    padding: 2rem;
  }

  .cofounder-avatars {
    gap: 0.5rem;
  }

  .avatar {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .cofounder-info-body {
    padding: 2rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Waitlist Success Modal */
.success-modal {
  max-width: 600px;
  border-radius: 25px;
  overflow: hidden;
}

.success-header {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 3rem 2rem 2rem;
  position: relative;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.success-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}

.success-header .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-header .modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.success-body {
  padding: 3rem;
}

.success-message h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.success-message > p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-item .step-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.waitlist-position {
  text-align: center;
  padding: 1.5rem;
  background: var(--gradient-primary);
  border-radius: 15px;
  margin-bottom: 2rem;
}

.waitlist-position p {
  color: white;
  font-size: 1.1rem;
  margin: 0;
}

.position-number {
  font-weight: 800;
  font-size: 1.3rem;
}

.social-share {
  text-align: center;
}

.social-share p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.share-btn.twitter:hover {
  background: #1da1f2;
  color: white;
  border-color: #1da1f2;
}

.share-btn.linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

.share-btn.copy:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.loading-content {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.loading-spinner-large {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 2rem;
}

.loading-content h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.loading-content p {
  color: var(--text-secondary);
}

/* Enhanced form styles */
.form-group {
  position: relative;
}

.form-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error input,
.form-group.error select {
  border-color: #ef4444;
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  color: #10b981;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.success .form-success {
  display: block;
}

/* Responsive updates for success modal */
@media (max-width: 768px) {
  .success-modal {
    max-width: 95%;
    margin: 20px;
  }

  .success-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .success-body {
    padding: 2rem 1.5rem;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-btn {
    width: 200px;
    justify-content: center;
  }
}

/* Ensure all headings and text elements use Montserrat by updating the font-family declarations */
.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.roadmap-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.founder-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.cta-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cofounder-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
