/* Essential CSS for Dashboard Page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #fe2c55;
  --secondary-purple: #25f4ee;
  --accent-green: #25f4ee;
  --accent-cyan: #fe2c55;
  --bg-dark: #000000;
  --bg-card: rgba(0, 0, 0, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --border-color: #2c4c54;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-purple)
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-cyan)
  );

  /* Responsive Breakpoints */
  --mobile: 480px;
  --tablet: 768px;
  --laptop: 1024px;
  --desktop: 1200px;

  /* Responsive Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Responsive Typography */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Navigation */
/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(23, 29, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(254, 44, 85, 0.2);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 80px;
}

.logo-img {
  width: 2rem;
  margin-right: 0.25rem;
}


@media (max-width: 480px) {
  .nav-container {
    padding: 0 var(--space-sm);
    min-height: 65px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  /* background: var(--bg-card); */
}



@media (max-width: 768px) {
  .logo-container {
    height: 50px;
    font-size: 1.5rem;
    gap: 0.3rem;
  }
}

@media (max-width: 480px) {
  .logo-container {
    height: 45px;
    font-size: 1.25rem;
    gap: 0.25rem;
  }
}

.logo-text {
  text-decoration: none;
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .logo-text {
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.8em;
  }
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  text-decoration: none;
}

.logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .logo-img {
    margin-right: 0.25rem;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 85%;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 80%;
  }
}

.nav-links-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e5d4d4;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.growth-text {
  color: var(--text-primary);
  font-size: 0.875rem;
}

.btn-secondary {
  background: #ffffff;
  color: #fe2c55;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  background: #e8dada;
}

.btn-primary {
  background: white;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-text-fill-color: transparent;
  position: relative;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background-image: none;
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  color: white;
  -webkit-text-fill-color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2xl);
  margin: 0 auto;
  padding: 8rem var(--space-lg) var(--space-2xl);
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero {
    gap: var(--space-xl);
    padding: 6rem var(--space-lg) var(--space-xl);
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: var(--space-lg);
    padding: 6rem var(--space-md) var(--space-lg);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    gap: var(--space-md);
    padding: 5rem var(--space-sm) var(--space-md);
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 244, 238, 0.1);
  border: 1px solid rgba(37, 244, 238, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  width: fit-content;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(37, 244, 238, 0.1);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(37, 244, 238, 0.15);
  border-color: rgba(37, 244, 238, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 244, 238, 0.2);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.3;
  }
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #fe2c55, #25f4ee);
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(254, 44, 85, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::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;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 44, 85, 0.4);
}

.btn-hero-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Statistics */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .hero-stats {
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    display: flex;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    text-align: center;
    justify-content: space-around;
  }
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-number.blue {
  color: var(--primary-blue);
}

.stat-number.purple {
  color: var(--secondary-purple);
}

.stat-number.green {
  color: var(--accent-green);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    display: none;
  }
}

.dashboard-mockup {
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(254, 44, 85, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(254, 44, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .dashboard-mockup {
    max-width: 500px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .dashboard-mockup {
    max-width: 100%;
    height: 300px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .dashboard-mockup {
    height: 250px;
    border-radius: 12px;
  }
}

.dashboard-mockup:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(254, 44, 85, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dashboard-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hug-badge {
  background: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dashboard-content {
  padding: 1.5rem;
  height: calc(100% - 60px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-item {
  background: rgba(55, 65, 81, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  height: 40px;
  display: flex;
  align-items: center;
}

.sidebar-item:nth-child(1) {
  background: rgba(55, 65, 81, 0.4);
}

.sidebar-item:nth-child(2) {
  background: rgba(55, 65, 81, 0.3);
}

.sidebar-item:nth-child(3) {
  background: rgba(55, 65, 81, 0.5);
}

.sidebar-item:nth-child(4) {
  background: rgba(55, 65, 81, 0.2);
}

.sidebar-item:nth-child(5) {
  background: rgba(55, 65, 81, 0.3);
}

.sidebar-item:nth-child(6) {
  background: rgba(55, 65, 81, 0.4);
}

.chart-container {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(79, 126, 247, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  padding: 1.5rem;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 120px;
  padding: 0 1rem;
}

.chart-bar {
  background: var(--primary-blue);
  border-radius: 4px 4px 0 0;
  width: 20px;
  opacity: 0.8;
}

.chart-bar:nth-child(1) {
  height: 60%;
}

.chart-bar:nth-child(2) {
  height: 40%;
}

.chart-bar:nth-child(3) {
  height: 80%;
}

.chart-bar:nth-child(4) {
  height: 45%;
}

.chart-bar:nth-child(5) {
  height: 90%;
}

.chart-bar:nth-child(6) {
  height: 35%;
}

.chart-bar:nth-child(7) {
  height: 95%;
  background: var(--gradient-primary);
}

.chart-bar:nth-child(8) {
  height: 70%;
}

.chart-trend-line {
  position: absolute;
  bottom: 80px;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: var(--accent-green);
  border-radius: 1px;
}

.chart-trend-line::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -2px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--accent-green);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.trend-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 600;
}

.trend-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.trend-badge {
  background: rgba(15, 15, 35, 0.95);
  border: 2px solid rgba(31, 41, 55, 1);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  position: absolute;
  z-index: 2;
  bottom: -2rem;
  left: -4rem;
  display: flex;
  align-items: anchor-center;
}

.growth-badge {
  background: rgba(15, 15, 35, 0.95);
  border: 2px solid rgba(31, 41, 55, 1);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  position: absolute;
  z-index: 2;
  top: -2rem;
  right: 1rem;
  display: flex;
  align-items: center;
}

/* Trust Section */
.trust-section {
  text-align: center;
  margin-top: 1rem;
  padding: 4rem 2rem;
}

.trust-text {
  color: var(--text-secondary);
  font-size: 1rem;
}

.creators-showcase {
  margin-bottom: 4rem;
}

.showcase-title {
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creators-grid {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.creator-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.creator-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 126, 247, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.creator-card:hover::before {
  opacity: 1;
}

.creator-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254, 44, 85, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(254, 44, 85, 0.2);
}

.creator-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.creator-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.creator-info {
  position: relative;
  z-index: 1;
}

.creator-title {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.creator-type {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.followers-stat {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.followers-text {
  color: var(--text-secondary);
  font-size: 1rem;
}

.followers-number {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Action Section */
.action-section {
  padding: var(--space-3xl) var(--space-lg);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .action-section {
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .action-section {
    padding: var(--space-2xl) var(--space-md);
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .action-section {
    padding: var(--space-xl) var(--space-sm);
    gap: var(--space-sm);
  }
}

.action-title {
  font-size: clamp(2.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.action-title .highlight {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.action-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.action-container {
  gap: 4rem;
  align-items: center;
}

.action-content {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  justify-content: center;
}

@media (max-width: 1024px) {
  .action-content {
    gap: var(--space-md);
    margin-top: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .action-content {
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .action-content {
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
}

.action-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.action-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 600;
}

.step-icon.trends {
  background: rgba(79, 126, 247, 0.15);
  color: var(--primary-blue);
}

.step-icon.recommendations {
  background: rgba(139, 92, 246, 0.15);
  color: var(--secondary-purple);
}

.step-icon.optimize {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.action-cta {
  margin-top: 1rem;
}

.btn-action-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 126, 247, 0.3);
}

/* Action Video Player */
.action-video {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(254, 44, 85, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(254, 44, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: 40rem;
  height: 32rem;
}

@media (max-width: 768px) {
  .action-video {
    width: 100%;
    max-width: 100%;
    height: 250px;
    order: -1;
  }
}

.video-header {
  position: relative;
  z-index: 10;
  background: rgba(15, 15, 35, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.video-title {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 500;
}

.demo-badge {
  background: var(--accent-green);
  color: var(--bg-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: auto;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(79, 126, 247, 0.4);
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Hide download and fullscreen buttons */
.demo-video::-webkit-media-controls-download-button {
  display: none !important;
}

.demo-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* Hide volume button */
.demo-video::-webkit-media-controls-mute-button {
  display: none !important;
}

.demo-video::-webkit-media-controls-volume-slider {
  display: none !important;
}

.demo-video::-webkit-media-controls-volume-slider-container {
  display: none !important;
}

/* Hide time display */
.demo-video::-webkit-media-controls-current-time-display {
  display: none !important;
}

.demo-video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

.demo-video::-webkit-media-controls-timeline {
  display: none !important;
}

/* Hide playback speed button */
.demo-video::-webkit-media-controls-playback-rate-button {
  display: none !important;
}

.demo-video::-webkit-media-controls-playback-rate-menu-button {
  display: none !important;
}

/* Additional selectors for playback speed */
video::-webkit-media-controls-playback-rate-button {
  display: none !important;
}

video::-webkit-media-controls-playback-rate-menu-button {
  display: none !important;
}

/* Hide any playback rate related elements */
.demo-video::-webkit-media-controls-enclosure {
  overflow: visible;
}

/* Target the playback rate specifically */
.demo-video::-webkit-media-controls-panel > * {
  /* This might be too broad, but helps catch playback rate */
}

/* For Chrome/Edge - hide playback rate menu */
.demo-video::-webkit-media-controls-playback-rate-value {
  display: none !important;
}

.demo-video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  position: relative;
}

.demo-video::-webkit-media-controls {
  z-index: 10;
}

/* For Firefox */
.demo-video::-moz-media-controls-fullscreen-button {
  display: none !important;
}

/* Custom centered play button overlay */
.custom-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.custom-play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  pointer-events: auto;
  box-shadow: 0 8px 20px rgba(254, 44, 85, 0.4);
}

.custom-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(254, 44, 85, 0.6);
}

.custom-play-button:active {
  transform: scale(0.95);
}

.custom-play-button i {
  color: white;
  font-size: 2rem;
  margin-left: 4px;
}

.action-steps-header {
  margin-bottom: 2rem;
}

.action-steps-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

/* Viral Section */
.viral-section {
  padding: var(--space-3xl) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .viral-section {
    padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .viral-section {
    padding: var(--space-2xl) var(--space-md);
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .viral-section {
    padding: var(--space-xl) var(--space-sm);
    gap: var(--space-sm);
  }
}

.viral-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.viral-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--secondary-purple);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--secondary-purple);
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
}

.viral-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.viral-title .highlight {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.viral-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.viral-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 1024px) {
  .viral-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .viral-features {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
  }
}

@media (max-width: 480px) {
  .viral-features {
    gap: var(--space-sm);
    margin-top: var(--space-sm);
  }
}

.feature-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 126, 247, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254, 44, 85, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(254, 44, 85, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.feature-icon.trend-analysis {
  background: rgba(79, 126, 247, 0.15);
  color: var(--primary-blue);
}

.feature-icon.content-strategy {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.feature-icon.audience-insights {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.feature-icon.ai-generation {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.feature-icon.creator-support {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.feature-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: var(--secondary-purple);
}

.feature-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.feature-link:hover::after {
  transform: translateX(4px);
}

/* Viral Section Responsive */
@media (max-width: 768px) {
  .viral-section {
    padding: 4rem 1rem;
  }

  .viral-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

/* Experience Section */
.experience-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.experience-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-green);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
}

.experience-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
}

.experience-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.demo-container {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(254, 44, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.demo-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 126, 247, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0.5;
}

.demo-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.demo-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 126, 247, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(79, 126, 247, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 126, 247, 0);
  }
}

.demo-circle::after {
  content: "";
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
}

.demo-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.demo-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 400px;
}

.demo-button {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.demo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 126, 247, 0.3);
}

.testimonials-section {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(254, 44, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--secondary-purple);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--secondary-purple);
  width: fit-content;
  font-weight: 600;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.testimonials-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 500px;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #fcd34d;
  font-size: 1.25rem;
}

.rating-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Experience Section Responsive */
@media (max-width: 768px) {
  .experience-section {
    padding: 4rem 1rem;
    gap: 3rem;
  }

  .demo-container,
  .testimonials-section {
    padding: 2rem 1rem;
  }

  .demo-circle {
    width: 100px;
    height: 100px;
  }

  .demo-circle::after {
    width: 32px;
    height: 32px;
  }

  .demo-title {
    font-size: 1.25rem;
  }

  .testimonials-title {
    font-size: 1.5rem;
  }
}

/* Platform Section */
.platform-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.platform-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--secondary-purple);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--secondary-purple);
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
}

.platform-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.platform-title .highlight {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platform-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 126, 247, 0.03),
    rgba(139, 92, 246, 0.03)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(79, 126, 247, 0.1);
}

.testimonial-platform-badge {
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 126, 247, 0.15);
  border: 1px;
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--primary-blue);
  font-weight: 600;
  z-index: 2;
}

.testimonial-platform-badge.tiktok {
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-platform-badge.instagram {
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-platform-badge.youtube {
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-follower-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 2;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars .star {
  color: #fe2c55;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.platform-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.platform-button {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.platform-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 126, 247, 0.3);
}

.testimonial-header {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Platform Section Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 4rem 1rem;
    gap: 3rem;
  }

  .testimonials-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .testimonial-stats {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }
}

/* Transform Section */
.transform-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.transform-container {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(254, 44, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.transform-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 126, 247, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0.5;
}

.transform-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.transform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-green);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--accent-green);
  width: fit-content;
  font-weight: 600;
}

.transform-title {
  font-size: clamp(2.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.transform-title .highlight {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.transform-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
}

.transform-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.transform-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.transform-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.transform-btn-primary {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.transform-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 126, 247, 0.3);
}

.transform-btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.transform-btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.transform-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.transform-mockup {
  width: 100%;
  max-width: 360px;
  height: 460px;
  background: #0f0f23;
  border-radius: 16px;
  border: 1px solid var(--primary-blue);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(79, 126, 247, 0.2);
}

.mockup-header {
  background: #0f0f23;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #2a2d4a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-title {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.875rem;
  font-weight: 600;
}

.trending-badge {
  background: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mockup-content {
  padding: 1rem;
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-nav {
  display: flex;
  justify-content: space-around;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.nav-tab {
  background: #2a2d4a;
  color: var(--text-secondary);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trending-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.trending-item {
  background: #1a1b3a;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  border: 1px solid #2a2d4a;
}

.item-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  margin-right: 0.5rem;
}

.item-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.item-growth {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.625rem;
  font-weight: 600;
}

.mockup-progress-bar {
  background: #2a2d4a;
  height: 4px;
  border-radius: 2px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  flex: 1;
  position: relative;
}

.progress-fill {
  background: var(--primary-blue);
  height: 100%;
  border-radius: 2px;
  width: 70%;
}

/* Transform Section Responsive */
@media (max-width: 768px) {
  .transform-section {
    padding: 4rem 1rem;
    gap: 3rem;
  }

  .transform-container {
    flex-direction: column;
    padding: 2rem;
    gap: 3rem;
  }

  .transform-features {
    grid-template-columns: 1fr;
  }

  .transform-buttons {
    flex-direction: column;
  }

  .transform-mockup {
    height: 400px;
    max-width: 300px;
  }

  .mockup-content {
    padding: 1rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.pricing-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.pricing-title .highlight {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-cards {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  justify-content: center;
}

.pricing-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-card.basic {
  flex: 1;
  align-self: flex-start;
}

.pricing-card.premium {
  flex: 1;
}

.pricing-card.premium {
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(to right, #fe2c55, #25f4ee) border-box;
  box-shadow: 0 0 30px rgba(79, 126, 247, 0.2);
  position: relative;
}

.pricing-card.premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 126, 247, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0.5;
  border-radius: 16px;
  z-index: 0;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(254, 44, 85, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(254, 44, 85, 0.2);
}

.pricing-plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.pricing-features-for-basic-plan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.feature-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.125rem;
}

.feature-icon.included {
  background: var(--accent-green);
  color: var(--bg-dark);
}

.feature-icon.not-included {
  background: #ef4444;
  color: white;
}

.pricing-button {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.pricing-button.basic {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid white;
}

.pricing-button.basic:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.pricing-button.premium {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  color: var(--text-primary);
}

.pricing-button.premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 126, 247, 0.3);
}

/* Pricing Section Responsive */
@media (max-width: 768px) {
  .pricing-section {
    padding: 4rem 1rem;
    gap: 3rem;
  }

  .pricing-cards {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid transparent;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4))
      padding-box,
    linear-gradient(to right, #fe2c55, #25f4ee) border-box;
  border-radius: 24px;
  padding: 4rem 3rem;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(254, 44, 85, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 126, 247, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0.5;
  border-radius: 14px;
}

.cta-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.cta-title .highlight {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cta-btn-primary {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  color: var(--text-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 126, 247, 0.3);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.cta-disclaimer {
  font-size: 0.875rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.footer-logo-img {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
}

.footer-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 250px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-blue);
  color: white;
}

.footer-newsletter {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.newsletter-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
  color: var(--text-secondary);
}

.newsletter-input:focus {
  border-color: var(--primary-blue);
}

.newsletter-button {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(79, 126, 247, 0.3);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-blue);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* CTA & Footer Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 1rem;
  }

  .cta-container {
    padding: 3rem 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 300px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Action Section Responsive */
@media (max-width: 768px) {
  .action-section {
    padding: 4rem 1rem;
  }

  .action-content {
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
  }

  .action-video {
    order: -1;
    width: 70%;
    max-width: 100%;
    height: 25rem;
    align-self: center;
  }

  .action-steps {
    gap: 1.5rem;
    order: 1;
  }

  .action-steps-title {
    font-size: 1.25rem;
    text-align: left;
  }

  .step-icon {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .step-icon img {
    width: 16px;
    height: 16px;
  }

  .step-title {
    font-size: 1.125rem;
  }

  .step-description {
    font-size: 0.9rem;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.8rem;
  z-index: 1001;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-container {
    align-items: center;
  }
}

.experience-title {
  color: #ffffff;
  font-size: xx-large;
}

.experience-title .highlight {
  background: linear-gradient(to right, #fe2c55, #25f4ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 15, 35, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid var(--border-color);
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.active {
  max-height: 500px;
  padding: 2rem;
}

.mobile-menu-close {
  display: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  list-style: none;
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover {
  color: var(--primary-blue);
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-buttons .btn {
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 var(--space-sm);
    min-height: 60px;
  }

  .logo-container {
    height: 40px;
    font-size: 1.1rem;
    gap: 0.2rem;
  }

  .logo-img {
    height: 75%;
  }

  .logo-text {
    font-size: 0.75em;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0.6rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-left: 0;
  }

  .hero-description {
    font-size: var(--text-sm);
    margin-left: 0;
  }

  .hero-badge {
    margin-top: 2rem !important;
  }

  .hero-stats {
    margin-top: var(--space-md);
    margin-right: 0;
  }

  .stat-number {
    font-size: var(--text-2xl);
    margin-left: 0;
  }

  .stat-label {
    margin-left: 0;
    font-size: var(--text-xs);
  }

  .action-title {
    font-size: var(--text-3xl);
  }

  .viral-title {
    font-size: var(--text-3xl);
  }

  .transform-title {
    font-size: var(--text-3xl);
  }

  .pricing-title {
    font-size: var(--text-3xl);
  }

  .cta-title {
    font-size: var(--text-3xl);
  }

  .platform-title {
    font-size: var(--text-3xl);
  }

  .experience-title {
    font-size: var(--text-3xl);
  }

  .dashboard-mockup {
    display: none;
  }

  .dashboard-content {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }

  .btn-action-primary {
    margin-left: 0;
    width: 100%;
  }

  .action-video {
    height: 28rem;
    border-radius: 12px;
  }

  .nav{
    padding: 0rem 0;
  }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-buttons {
    display: none;
  }

  .hero-content {
    order: 1;
    gap: var(--space-md);
    margin-left: 0;
  }

  .hero-badge {
    align-self: center;
    margin-left: 0;
  }

  .creator-card {
    width: 100%;
    max-width: 15.5rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: var(--space-sm);
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    width: 100%;
    text-align: center;
  }

  .dashboard-mockup {
    display: none;
  }
}

/* Modern Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(254, 44, 85, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(37, 244, 238, 0.4);
  }
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

.hero-visual {
  animation: fadeInRight 1s ease-out;
}

.creator-card {
  animation: fadeInUp 0.6s ease-out;
}

.feature-card {
  animation: fadeInUp 0.6s ease-out;
}

.pricing-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 var(--space-md);
    min-height: 70px;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-links a:focus {
  outline-offset: 2px;
}

/* Section Separators */
.section-separator {
  background-color: #181717;
  height: 4rem;
  width: 100%;
  margin: 0;
}

.section-separator--thick {
  height: 2rem;
}


@media (max-width: 1024px) {
  .nav-container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 1024px) {
  .logo-container {
    height: 55px;
    font-size: 1.75rem;
    gap: 0.4rem;
  }
}