/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Announcement Banner */
.announcement-banner {
  background-color: #fffce0;
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.emoji {
  margin: 0 5px;
}

.explore-link {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 600;
}

/* Navigation Bar */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}

.logo img {
  height: 32px;
  margin-right: 8px;
}

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

.nav-links a {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
}

.dropdown {
  position: relative;
}

.dropdown i {
  font-size: 12px;
  margin-left: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  z-index: 1000;
  padding: 10px 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #1a1a1a;
  font-size: 14px;
  transition: all 0.2s ease;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #7873F5;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.auth-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.login-btn {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
}

.signup-btn {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-align: center;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Standard button style */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: #ddd;
  color: #000;
}

.btn-secondary:hover {
  background-color: #ccc;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 40px 0;
}

.hero-section > * {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.hero-text, .hero-text-moved {
  flex: 1;
}

.hero-text-moved {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 50px auto;
  max-width: 800px;
}

.hero-description-moved {
  margin-top: 30px;
}

.hero-description-moved h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-description-moved p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Center container for precise alignment */
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.hero-text .platform-pitch {
  margin-top: 20px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text .platform-pitch h2,
.hero-text .platform-pitch h3 {
  text-align: center !important;
  margin-bottom: 10px;
  width: 100%;
  display: block;
}

.hero-text .platform-pitch p {
  max-width: 600px;
  margin: 0 auto 20px auto;
  text-align: center !important;
  width: 100%;
  display: block;
}

.button-container {
  text-align: center;
  margin-top: 20px;
}

.hero-text .platform-pitch .cta-button {
  display: inline-block;
}

.hero-subheading {
  display: block;
  font-size: 50px;
  font-weight: 300;
  color: #9ba4b0;
  margin-bottom: 10px;
}

.hero-heading {
  display: block;
  font-size: 50px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
}

.hero-cta {
  flex: 1;
}

.hero-description h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-description p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 25px;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Features Showcase */
.features-showcase {
  display: flex;
  gap: 20px;
  margin: 40px auto;
  max-width: 1400px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.feature-card-main {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 520px;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
}

.features-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-top-row, .features-bottom-row {
  display: flex;
  gap: 20px;
  flex: 1;
}

.feature-card-small {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 250px;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
}

.feature-info {
  padding: 15px;
  background-color: #ffffff;
  margin-top: auto;
}

.feature-card-large {
  background-color: #ffffff;
}

.feature-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-info p {
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
}

.feature-card-main .feature-image, 
.feature-card-small .feature-image {
  flex: 1;
  object-fit: cover;
  height: auto;
  min-height: 60%;
}

.feature-card-main:hover,
.feature-card-small:hover,
.feature-card-large:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #fff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
}

/* Creator Examples Section */
.creators-examples-section {
  padding: 100px 0;
  background-color: #f9f9fa;
  overflow: hidden;
}

.examples-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #1a1a1a;
}

/* Examples Section */
.examples-section {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  width: 100%;
  box-sizing: border-box;
}

.examples-section::-webkit-scrollbar {
  display: none;
}

/* Auto-scrolling container */
#autoscroll-examples {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  position: relative;
  white-space: nowrap;
  padding: 10px 20px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}
#webinar-autoscroll {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  position: relative;
  white-space: nowrap;
  padding: 10px 20px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}
.example-card {
  flex: 0 0 auto;
  width: 216px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 312px; /* Fixed height for consistency */
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.example-image {
  width: 100%;
  height: 216px;
  object-fit: cover;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.example-info {
  padding: 15px;
  background-color: #fff;
  flex-grow: 1; /* Allow info section to fill remaining space */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.example-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.example-role {
  display: block;
  font-size: 12px;
  color: #6a6a6a;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.example-followers {
  display: block;
  font-size: 12px;
  color: #6a6a6a;
  margin-top: 2px;
}

/* Platform Pitch Section */
.platform-pitch {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Creator Platform Section */
.creator-platform-section {
  padding: 40px 0;
  text-align: center;
  background-color: lavender;
}

.creator-platform-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.platform-subheading {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.platform-description {
  font-size: 20px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 40px;
  max-width: 650px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.platform-cta {
  margin-top: 20px;
}

.platform-pitch h2 {
  font-size: 45px;
  font-weight: 300;
  color: #9ba4b0;
  margin-bottom: 5px;
}

.platform-pitch h3 {
  font-size: 45px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
}

.platform-pitch p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features-section {
  background-color: #f0ebff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.features-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.features-title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.features-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 50px;
}

.cursive {
  font-style: italic;
  font-weight: 400;
  color: #7873F5;
}

.highlight {
  font-weight: 600;
  font-style: normal;
  color: #000;
}

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

.feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item:nth-child(odd) {
  background-color: #ffffff;
}

.feature-item:nth-child(even) {
  background-color: #f0f0f5;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 24px;
  color: #333;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
  color: #fff;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}

.features-cta {
  text-align: center;
  margin-top: 50px;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 110, 196, 0.05) 0%, rgba(120, 115, 245, 0.05) 100%);
  z-index: 0;
}

/* Animation for feature items */
.feature-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

/* Floating Username Claim Button */
.floating-username-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  max-width: 90%;
  width: auto;
  min-width: 300px;
}

.floating-username-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.username-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.cuepop-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.username-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.username-text .domain {
  color: #333;
  font-weight: 600;
}

.username-text .username-placeholder {
  color: #999;
  font-style: italic;
}

.claim-username-btn {
  background: linear-gradient(to right, #86ff00, #7ee800);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.claim-username-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(134, 255, 0, 0.3);
  background: linear-gradient(to right, #7ee800, #70d400);
}

/* Close button for the banner */
.banner-close {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.banner-close:hover {
  color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .floating-username-banner {
    bottom: 15px;
    left: 15px;
    right: 15px;
    transform: none;
    max-width: none;
    width: auto;
    padding: 12px 20px;
    min-width: auto;
  }

  .floating-username-banner.visible {
    transform: none;
  }

  .username-text {
    font-size: 14px;
  }

  .claim-username-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .cuepop-logo {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .floating-username-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .username-info {
    justify-content: center;
  }

  .claim-username-btn {
    width: 100%;
    text-align: center;
  }
}

.onboarding-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.step-dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
}

.step-dot.active {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
}

.step-title {
  text-align: center;
  margin-bottom: 10px;
}

.step-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.question-container {
  display: none;
}

.question-container.active {
  display: block;
}

.option-button {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-button:hover {
  border-color: #7873F5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navigation {
  margin-top: 30px;
  text-align: center;
}

.next-btn {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dashboard-link {
  display: block;
  margin-top: 20px;
  color: #7873F5;
  text-decoration: none;
  font-size: 14px;
}

.dashboard-link:hover {
  text-decoration: underline;
}
.signup-flex-container {
  display: flex;
  min-height: 100vh;
}
.signup-left {
  flex: 1;
  padding: 120px 5vw 80px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signup-left-body {
  width: 60%;
}
.signup-logo {
  height: 45px;
  margin-bottom: 40px;
}

.signup-title {
  font-size: 33px;
  color: #1c1c1c;
  font-weight: 900;
  margin-bottom: 15px;
}

.signup-desc {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.username-section {
  margin-bottom: 30px;
  margin-top: 70px;
  display: block;
}

.username-label {
  font-size: 15px;
  color: #1c1c1c;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.username-input-group {
  position: relative;
}

.username-prefix {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
  font-weight: 900;
}

.username-input {
  width: 100%;
  padding: 20px 35px 21px 117px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.username-check {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #009e00;
  font-size: 16px;
  font-weight: 900;
  display: none;
}

.signup-next-btn {
  width: 100%;
  padding: 15px;
  background: #f0f0f0;
  color: #666;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.signup-next-btn.enabled {
  background: #1c1c1c;
  color: #fff;
}

.signup-terms {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.signup-alt {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
}

.signup-alt a {
  color: #5e50fa;
  text-decoration: none;
  font-weight: 600;
}

.signup-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 40px 5vw;
}

.signup-demo-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signup-quote {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-style: italic;
}

.signup-quote-author {
  font-weight: 600;
  color: #1a1a1a;
}

.signup-quote-url {
  color: #666;
  font-size: 18px;
}

/* Social Signup Success Bar */
.signup-success-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 57px;
  background-color: #57f50d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.signup-success-inner {
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  text-align: left;
}
.signup-success-msg {
  color: black;
  font-size: 13px;
  line-height: 1;
}
.signup-success-username {
  color: black;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-top: 5px;
}
@media (max-width: 992px) {
  .signup-flex-container {
    flex-direction: column;
    min-height: unset;
  }
  .signup-right {
    display: none;
  }
  .signup-left {
    padding: 24px 10vw;
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .signup-left-body {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .signup-left {
    padding: 24px 10vw;
  } 
  .signup-left-body {
    width: 100%;
  }
  .signup-right {
    display: none;
  }
  .signup-title {
    font-size: 24px;
  }
  .signup-desc, .signup-quote, .signup-quote-url {
    font-size: 14px;
  }
  .signup-demo-img {
    border-radius: 10px;
  }
}
/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-section .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .link-in-bio {
    grid-column: span 6;
    height: 400px;
  }

  .media-kit, .email-marketing, .online-store, .ai-powered {
    grid-column: span 3;
    height: 200px;
  }

  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.examples-section-subtitle {
  text-align: center; 
  margin-bottom: 20px; 
  font-size: 18px; 
  color: #4a4a4a;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .navbar .container {
    padding: 0 15px;
    overflow: visible;
  }

  .auth-buttons {
    flex-shrink: 0;
    margin-left: 10px;
    margin-right: 5px;
  }

  /* Features section mobile fixes */
  .feature-row {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .feature-card-large {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 440px !important;
  }

  .feature-image {
    width: 94% !important;
    height: 280px !important;
    object-fit: cover !important;
    display: block !important;
  }

  .feature-info {
    margin-top: 20px !important;
  }
  .feature-label {
    background-color: #f3f3f3;
  }
  .navbar {
    position: relative;
    z-index: 1000;
  }
  .examples-section-subtitle {
    padding: 2px !important;
  }
  .hero-subheading, .hero-heading {
    font-size: 36px;
  }

  .hero-description h2 {
    font-size: 24px;
  }

  .platform-pitch h2, .platform-pitch h3 {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-title {
    font-size: 32px;
  }

  /* Fix container overflow */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* Fix overflow with hero section */
  .hero-section {
    overflow-x: hidden;
  }

  /* Fix overflow with features */
  .feature-card {
    height: auto;
    min-height: 250px;
  }

  /* Fix email sections */
  .email-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pink-bg, .blue-bg, .orange-bg, .black-bg, 
  .green-bg, .light-blue-bg {
    width: 100%;
  }

  .blue-bg, .orange-bg {
    flex-direction: column;
  }

  .email-content {
    width: 100%;
  }

  .email-image {
    width: 100%;
    text-align: center;
  }

  /* Fix examples section */
  .examples-section {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 20px 0;
  }

  .example-card {
    flex: 0 0 auto;
    width: 160px;
  }

  /* Fix features-showcase section */
  .features-showcase {
    flex-direction: column;
  }

  .feature-card-main, .features-right,
  .features-top-row, .features-bottom-row {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section .features-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }

  .link-in-bio, .media-kit, .email-marketing, .online-store, .ai-powered {
    grid-column: span 1;
    height: 200px;
  }

  .example-card {
    width: 150px;
  }

  .example-image {
    height: 150px;
  }

  .features-section .features-grid {
    grid-template-columns: 1fr;
  }

  .features-title {
    font-size: 28px;
  }

  /* Fix container overflow */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    overflow-x: hidden;
  }
}

/* Features Showcase Section */
.features-showcase-section {
  padding: 80px 0;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.features-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 110, 196, 0.05) 0%, rgba(120, 115, 245, 0.05) 100%);
  z-index: 0;
}

.features-showcase-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.features-showcase-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}

.features-showcase-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Cost Comparison Section */
.cost-comparison-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}

.cost-comparison-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.comparison-title .subtitle {
  font-size: 42px;
  font-weight: 300;
  color: #9ba4b0;
}

.comparison-title .title {
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.1;
}

.comparison-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.competitors-card, .beacons-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 45%;
}

.competitors-card {
  background-color: #f9f9f9;
  transform: rotate(-2deg);
}

.beacons-card {
  background-color: #000;
  color: #fff;
  transform: rotate(2deg);
  padding: 40px 30px;
}

.competitor-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.competitor-logo {
  margin-bottom: 15px;
}

.logo-box {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 5px;
}

.green { background-color: #4cd964; color: #000; }
.yellow { background-color: #ffcc00; color: #000; }
.pink { background-color: #ff66b2; color: #000; }
.blue { background-color: #33a8ff; color: #fff; }
.navy { background-color: #0066cc; color: #fff; }
.orange { background-color: #ff6600; color: #fff; }

.competitor-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

.competitor-name {
  font-weight: 600;
}

.competitor-desc {
  color: #666;
  font-size: 10px;
}

.competitor-price {
  font-weight: 700;
}

.total-cost {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.cost-label {
  font-size: 22px;
  font-weight: 700;
}

.cost-sublabel {
  font-size: 14px;
  color: #666;
}

.vs-badge {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  color: #555;
}

.beacons-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.beacons-logo img {
  width: 40px;
  height: 40px;
}

.beacons-logo span {
  font-size: 24px;
  font-weight: 700;
}

.beacons-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-pill {
  background-color: #fff;
  color: #000;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
/* Billing Section Styles */
.billing-section {
  padding: 60px 0;
  background-color: #f8f9ff;
}

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

.billing-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 30px;
  margin-top: 40px;
}

.billing-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.billing-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.plan-summary {
  margin-bottom: 30px;
}

.selected-plan {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #f8f9ff;
  border-radius: 10px;
  margin-bottom: 20px;
}

.plan-details {
  margin: 30px 0;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.plan-feature i {
  color: #4cd964;
}

.total-section {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.final-total {
  font-weight: 700;
  font-size: 1.2em;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .billing-grid {
    grid-template-columns: 1fr;
  }
}

.billing-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.billing-form {
  margin-top: 30px;
}

.plan-summary {
  background: #f8f9ff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.selected-plan {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-meta,
.address-meta {
  display: flex;
  gap: 10px;
}

.card-meta input,
.address-meta input {
  flex: 1;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}

.submit-button:hover {
  opacity: 0.9;
}
.beacons-price {
  text-align: center;
  margin-top: 20px;
}

.price-tag {
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
}

.price-detail {
  font-size: 12px;
}

/* Creator Spotlight Section */
.creator-spotlight-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}

.spotlight-header {
  text-align: center;
  margin-bottom: 50px;
}

.spotlight-title {
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
}

.spotlight-title .highlight {
  color: #7873F5;
  position: relative;
}

.spotlight-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 50px;
}

.creator-card {
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.main-creator {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.creator-image-container {
  position: relative;
  overflow: hidden;
}

.creator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-creator .creator-image-container {
  height: 450px;
}

.creator-card:not(.main-creator) .creator-image-container {
  height: 240px;
}

.creator-card:hover .creator-image {
  transform: scale(1.05);
}

.creator-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #fff;
  color: #1a1a1a;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.creator-info {
  padding: 15px;
}

.creator-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.creator-followers {
  font-size: 14px;
  color: #6a6a6a;
}

.spotlight-cta {
  text-align: center;
  margin-top: 20px;
}

/* Media Queries for Creator Spotlight Section */
@media (max-width: 1200px) {
  .creator-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-creator {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 992px) {
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-creator {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .main-creator .creator-image-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .creator-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .main-creator {
    grid-column: 1;
    grid-row: 1;
  }

  .creator-card:not(.main-creator) .creator-image-container,
  .main-creator .creator-image-container {
    height: 250px;
  }

  .spotlight-title {
    font-size: 32px;
  }

  .spotlight-subtitle {
    font-size: 16px;
  }
}

/* Media Queries for Cost Comparison Section */
@media (max-width: 992px) {
  .comparison-title .subtitle,
  .comparison-title .title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .comparison-cards {
    flex-direction: column;
    gap: 50px;
  }

  .competitors-card, .beacons-card {
    width: 90%;
    transform: none;
    margin-top: 15px;
  }

  .vs-badge {
    position: absolute;
    top: 63.2%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  .comparison-title .subtitle,
  .comparison-title .title {
    font-size: 30px;
  }
}

/* New Hero Banner Section */
.new-hero-banner {
  padding: 60px 0 80px;
  background-color: #f9f9fa;
  overflow: hidden;
  position: relative;
}

.hero-banner-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.hero-banner-text {
  flex: 1;
}

.banner-subtitle {
  font-size: 50px;
  font-weight: 300;
  color: #9ba4b0;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.banner-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
}

.hero-banner-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.right-content p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 25px;
  line-height: 1.6;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.feature-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.link-bio-card {
  grid-column: 1;
  grid-row: 1 / span 2;
  background-color: #e6f0ff;
}

.media-kit-card {
  grid-column: 2;
  grid-row: 1;
  background-color: #e0e0ff;
}

.email-card {
  grid-column: 3;
  grid-row: 1;
  background-color: #fff0e0;
}

.store-card {
  grid-column: 2;
  grid-row: 2;
  background-color: #e8fff0;
}

.ai-card {
  grid-column: 3;
  grid-row: 2;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.ai-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  height: 100%;
  width: 100%;
}

.ai-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.ai-content h3 {
  font-weight: 600;
  font-size: 18px;
}

/* Media Queries for the New Hero Banner Section */
@media (max-width: 1100px) {
  .hero-banner-content {
    flex-direction: column;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }

  .link-bio-card {
    grid-column: span 2;
    grid-row: 1;
    height: 300px;
  }

  .media-kit-card {
    grid-column: 1;
    grid-row: 2;
    height: 200px;
  }

  .email-card {
    grid-column: 2;
    grid-row: 2;
    height: 200px;
  }

  .store-card {
    grid-column: 1;
    grid-row: 3;
    height: 200px;
  }

  .ai-card {
    grid-column: 2;
    grid-row: 3;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .banner-subtitle, .banner-title {
    font-size: 36px;
  }

  .right-content h2 {
    font-size: 22px;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }

  .link-bio-card, .media-kit-card, .email-card, .store-card, .ai-card {
    grid-column: 1;
    height: 200px;
  }

  .link-bio-card {
    grid-row: 1;
  }

  .media-kit-card {
    grid-row: 2;
  }

  .email-card {
    grid-row: 3;
  }

  .store-card {
    grid-row: 4;
  }

  .ai-card {
    grid-row: 5;
  }
}

.comparison-title .title {
  font-size: 30px;
}


@media (max-width: 576px) {
  .competitor-logos {
    grid-template-columns: 1fr;
  }

  .comparison-title .subtitle,
  .comparison-title .title {
    font-size: 26px;
  }

  .cost-label {
    font-size: 18px;
  }

  .cost-sublabel {
    font-size: 12px;
  }
}

/* Creator Platform Section */
.creator-platform-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}
/* Floating Background Elements */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-10px) translateX(5px) rotate(5deg); 
  }
  50% { 
    transform: translateY(-5px) translateX(-5px) rotate(-3deg); 
  }
  75% { 
    transform: translateY(-15px) translateX(3px) rotate(8deg); 
  }
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  transition: transform 0.3s ease;
  will-change: transform;
}

.confetti-dot {
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Scroll-based parallax effect */
.creator-platform-section .floating-icon,
.creator-platform-section .confetti-dot {
  animation-play-state: running;
}

/* Ensure content stays above floating elements */
.creator-platform-section .container {
  position: relative;
  z-index: 2;
}
.creator-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 110, 196, 0.05) 0%, rgba(120, 115, 245, 0.05) 100%);
  z-index: 0;
}

.platform-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.platform-heading {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.platform-subheading {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.platform-description {
  font-size: 20px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 40px;
  max-width: 650px;
  text-align: center;
  width: 100%;
}

.platform-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Media Queries for Creator Platform Section */
@media (max-width: 768px) {
  .platform-heading,
  .platform-subheading {
    font-size: 36px;
  }

  .platform-description {
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .platform-heading,
  .platform-subheading {
    font-size: 30px;
  }

  .creator-platform-section {
    padding: 70px 0;
  }
}

/* Email Marketing Section */
.email-marketing-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.email-marketing-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.email-header {
  text-align: center;
  margin-bottom: 60px;
}

.email-title {
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: #000;
}

.email-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

.email-card {
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  align-items: flex-start;
  min-height: 220px;
  height: 100%;
}

.pink-bg {
  background-color: #ffe0e9;
  grid-column: span 4;
  grid-row: span 1;
  min-height: 220px;
}

.blue-bg {
  background-color: #d0e6ff;
  grid-column: span 8;
  grid-row: span 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 220px;
}

.orange-bg {
  background-color: #fff2e0;
  grid-column: span 6;
  grid-row: span 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 220px;
}

.black-bg {
  background: linear-gradient(135deg, #FF6EC4, #7873F5);
  color: #fff;
  grid-column: span 6;
  grid-row: span 1;
  min-height: 220px;
}

.green-bg {
  background-color: #e0ffea;
  grid-column: span 4;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.light-blue-bg {
  background-color: #e6f7ff;
  grid-column: span 8;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.email-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.email-card p {
  font-size: 16px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.85;
}

.email-content {
  flex: 1;
  padding-top: 0;
  padding-bottom: 20px;
  z-index: 2;
}

.email-image {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  max-width: 200px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-mockup {
  max-width: 240px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.analytics-mockup {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.email-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infinity-icon {
  width: 60px;
  height: 60px;
  filter: hue-rotate(280deg);
}

.automation-icon {
  font-size: 50px;
  margin-top: 10px;
  color: #22c55e;
}

.ai-features {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}

.ai-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.ai-feature {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.ai-feature:nth-child(2n) {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Media queries for email section responsiveness */
@media (max-width: 1200px) {
  .email-grid {
    grid-template-columns: repeat(12, 1fr);
    width: 100%;
  }

  .pink-bg {
    grid-column: span 4;
  }

  .blue-bg {
    grid-column: span 8;
  }

  .black-bg {
    grid-column: span 6;
  }

  .orange-bg {
    grid-column: span 6;
  }

  .green-bg {
    grid-column: span 4;
  }

  .light-blue-bg {
    grid-column: span 8;
  }

  .email-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 992px) {
  .email-title {
    font-size: 40px;
  }

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

  .pink-bg, .blue-bg, .orange-bg, .black-bg, .green-bg, .light-blue-bg {
    grid-column: span 2;
    grid-row: auto;
    min-height: 220px;
    height: auto;
  }

  .blue-bg, .orange-bg {
    display: flex;
    flex-direction: column;
  }

  .email-content {
    padding-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .email-image {
    width: 100%;
    text-align: center;
  }

  .email-image img {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .email-title {
    font-size: 32px;
  }

  .email-grid {
    grid-template-columns: 1fr;
  }

  .pink-bg, .blue-bg, .orange-bg, .black-bg, .green-bg, .light-blue-bg {
    grid-column: span 1;
  }

  .email-card h3 {
    font-size: 20px;
  }
}

/* For Brands Page Styles */
.dark-theme {
  background-color: #0a0a0a;
  color: #fff;
}

.navbar.dark, .announcement-banner.dark {
  background-color: #0a0a0a;
  color: #fff;
  border-bottom-color: #222;
}

.navbar.dark .nav-links a, .navbar.dark .logo a {
  color: #fff;
}

.navbar.dark .login-btn {
  color: #fff;
}

/* Keep footer section with light background and dark text when in dark theme */
.dark-theme .footer-section {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

/* Brands Hero Section */
.brands-hero-section {
  background-color: #0a0a0a;
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.brands-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.brands-subtitle {
  font-size: 18px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 30px;
}

.brands-cta {
  margin-top: 30px;
}

/* Creator Gallery Section */
.creator-gallery-section {
  padding: 40px 0;
  background-color: #0a0a0a;
  overflow: hidden;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.creator-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1/1;
  height: 100%;
}

.creator-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.creator-item:hover img {
  transform: scale(1.05);
}

/* Brands Metrics Section */
.brands-metrics-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
}

.brands-metrics-section h2 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
}

.brands-metrics-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.metrics-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.metric-item h4 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.metric-item p {
  font-size: 16px;
  color: #aaa;
}

/* Strategic Advantage Section */
.strategic-advantage-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
}

.strategic-advantage-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.advantage-item {
  padding: 30px;
  border-radius: 15px;
  background-color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.advantage-icon i {
  font-size: 24px;
  color: #fff;
}

.advantage-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.advantage-item p {
  font-size: 15px;
  color: #aaa;
}

.advantage-item.infinity {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: radial-gradient(circle, #333, #111);
  display: flex;
  align-items: center;
  justify-content: center;
}


.infinity-icon img {
  width: 100%;
  max-width: 150px;
}

/* Campaign Features Section */
.campaign-features-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #fff;
}

.campaign-features-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  /* background-color: #111;
  border-radius: 15px; */
  padding: 10px;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
}

.feature-card .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card .feature-icon i {
  font-size: 20px;
  color: #fff;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

/* Platform Benefits Section */
.platform-benefits-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #fff;
}

.benefits-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.benefits-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  flex: 1;
}

.benefits-content .cta-button {
  margin-bottom: 20px;
}

.benefits-list {
  flex: 1;
  margin-left: 50px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background-color: #86ff00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 12px;
  color: #000;
}

.benefit-item p {
  font-size: 16px;
  color: #fff;
}

/* Trusted Brands Section */
.trusted-brands-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #fff;
}

.trusted-brands-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.trusted-brands-section .cta-button {
  display: block;
  max-width: 200px;
  margin: 0 auto 60px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
}

.brand-logo img {
  max-width: 100%;
  max-height: 40px;
}

/* Creator Showcase Section */
.creator-showcase-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #fff;
}

.creator-faces-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.creator-face {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
}

.creator-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-cta {
  text-align: center;
}

.creator-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Dark Theme */
.footer-section.dark {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 0;
  border-top: 1px solid #222;
}

.footer-section.dark .footer-tagline,
.footer-section.dark .footer-column h3,
.footer-section.dark .footer-header h2 {
  color: #fff;
}

.footer-section.dark .footer-column ul li a {
  color: #aaa;
}

.footer-section.dark .footer-column ul li a:hover {
  color: #fff;
}

.footer-section.dark .footer-bottom p {
  color: #666;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  color: #aaa;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .brands-hero-content h1 {
    font-size: 42px;
  }
  
  .creator-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-item.infinity {
    grid-column: 1;
    grid-row: auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-content {
    flex-direction: column;
  }
  
  .benefits-list {
    margin-left: 0;
    margin-top: 30px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-columns {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-column {
    flex: 0 0 30%;
  }
}

@media (max-width: 768px) {
  .brands-hero-content h1 {
    font-size: 36px;
  }
  
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metrics-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .creator-faces-grid {
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 0 0 45%;
  }
}

@media (max-width: 576px) {
  .brands-hero-content h1 {
    font-size: 30px;
  }
  
  .creator-grid {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: 1fr;
  }
  
  .creator-cta h2 {
    font-size: 28px;
  }
  
  .footer-column {
    flex: 0 0 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Footer Section */
.footer-section {
  background-color: #f0f0f0;
  padding: 60px 0;
  color: #1a1a1a;
}

.footer-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-header h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
}

.footer-header .highlight {
  font-weight: 600;
  font-style: normal;
  color: #000;
}

.footer-cta {
  display: flex;
  gap: 15px;
}

.creator-btn {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.creator-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.login-link {
  background-color: #ddd;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-link:hover {
  background-color: #ccc;
  transform: translateY(-2px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-info {
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 14px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #7873F5;
}

.new-badge {
  display: inline-block;
  background-color: #4cd964;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  vertical-align: middle;
}

.social-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: #777;
  text-align: center;
}

/* About Page Styles */
.about-hero-section {
  background-color: #f9f9fa;
  padding: 100px 0 60px;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.our-story-section {
  padding: 80px 0;
}

.story-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.mission-section {
  padding: 80px 0;
  background-color: #f9f9fa;
}

.mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.mission-statement {
  font-size: 24px;
  font-style: italic;
  color: #000;
  margin-bottom: 50px;
  position: relative;
  padding: 0 30px;
}

.mission-statement::before,
.mission-statement::after {
  content: '"';
  font-size: 60px;
  color: rgba(120, 115, 245, 0.2);
  position: absolute;
  top: -20px;
}

.mission-statement::before {
  left: 0;
}

.mission-statement::after {
  right: 0;
  top: -10px;
  transform: rotate(180deg);
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.mission-pillar {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.mission-pillar:hover {
  transform: translateY(-10px);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.pillar-icon i {
  font-size: 30px;
  color: #fff;
}

.mission-pillar h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.mission-pillar p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

.team-section {
  padding: 80px 0;
}

.team-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.team-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
}

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

.team-member {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 20px 5px;
}

.member-role {
  font-size: 14px;
  color: #7873F5;
font-weight: 600;
  margin: 0 20px 15px;
}

.member-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 20px 20px;
}

.investors-section {
  padding: 80px 0;
  background-color: #f9f9fa;
  text-align: center;
}

.investors-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.investors-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.investor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.investor-logo {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.investor-logo:hover {
  opacity: 1;
}

.join-team-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(to right, rgba(255, 110, 196, 0.1), rgba(120, 115, 245, 0.1));
}

.join-team-content {
  max-width: 700px;
  margin: 0 auto;
}

.join-team-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.join-team-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}

.careers-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.careers-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Page Styles */
.contact-hero-section {
  background-color: #f9f9fa;
  padding: 100px 0 60px;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container, .contact-info-container {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-form-container h2, .contact-info-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.form-group input, .form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: #7873F5;
  box-shadow: 0 0 0 2px rgba(120, 115, 245, 0.2);
  outline: none;
}

.submit-button {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.error-message {
  color: red;
  padding-top: 0px;
}
/* Contact Info Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 20px;
  color: #fff;
}

.info-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.info-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.info-content a {
  color: #7873F5;
  transition: color 0.3s;
}

.info-content a:hover {
  color: #FF6EC4;
}

.social-media-contact {
  margin-top: 20px;
}

.social-media-contact h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon i {
  font-size: 18px;
  color: #333;
  transition: color 0.3s;
}

.social-icon:hover {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  transform: translateY(-3px);
}

.social-icon:hover i {
  color: #fff;
}

/* Contact FAQ Section */
.contact-faq-section {
  padding: 60px 0 80px;
  background-color: #f9f9fa;
}

.contact-faq-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.faq-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive Contact Styles */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-hero-content h1 {
    font-size: 44px;
  }

  .faq-grid-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 36px;
  }

  .contact-form-container, .contact-info-container {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .contact-hero-content h1 {
    font-size: 32px;
  }

  .contact-form-container h2, .contact-info-container h2 {
    font-size: 24px;
  }
}

/* Responsive styles for about page */
@media (max-width: 992px) {
  .about-hero-content h1 {
    font-size: 44px;
  }

  .story-content {
    flex-direction: column;
  }

  .mission-pillars {
    grid-template-columns: repeat(1, 1fr);
  }

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

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 36px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .story-text h2, 
  .mission-content h2,
  .team-section h2,
  .investors-section h2,
  .join-team-content h2 {
    font-size: 30px;
  }

  .mission-statement {
    font-size: 20px;
  }

  .investor-logos {
    gap: 20px;
  }
}

/* Media Queries for Footer */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

/* Feature Detail Page Styles */
.feature-hero-section {
  background-color: #fff;
  padding: 80px 0 50px;
  text-align: center;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}

.feature-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.feature-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.feature-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 30px;
}

.demo-showcase-section {
  padding: 20px 0 60px;
  overflow: hidden;
}

.demo-showcase {
  background-color: #d0e6ff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-content {
  width: 50%;
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

.demo-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.demo-content p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.demo-cta {
  display: inline-block;
  background-color: #ff6600;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.demo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.demo-image {
  width: 50%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.platform-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.stat-label {
  font-size: 14px;
  color: #4a4a4a;
}

.platform-quality-section {
  padding: 60px 0;
  text-align: center;
  background-color: #fff;
}

.platform-quality-section h2 {
  font-size: 36px;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3;
}

.feature-grid-section {
  padding: 40px 0 80px;
  overflow: hidden;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-box {
  padding: 30px;
  border-radius: 15px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: inherit;
}

.feature-box p {
  font-size: 16px;
  color: inherit;
  opacity: 0.9;
  max-width: 100%;
}

.feature-img-container {
  margin-top: 20px;
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.feature-img-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .feature-box {
    padding: 25px 20px;
  }

  .feature-box h3 {
    font-size: 20px;
  }

  .feature-box p {
    font-size: 14px;
  }

  .feature-img-container {
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .feature-box {
    min-height: auto;
    padding: 20px 15px;
  }
}

.pink-bg {
  background-color: #ffe0e9;
  color: #1a1a1a;
}

.blue-bg {
  background-color: #e0e0ff;
  color: #1a1a1a;
}

.green-bg {
  background-color: #e0ffea;
  color: #1a1a1a;
}

.black-bg {
  background-color: #000;
  color: #fff;
}

.analytics-bg {
  background-color: #fff2e0;
  color: #1a1a1a;
}

.light-blue-bg {
  background-color: #e6f7ff;
  color: #1a1a1a;
}

.feature-image {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40%;
  height: 50%;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons i {
  font-size: 24px;
  color: #1a1a1a;
  background-color: rgba(255, 255, 255, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-features {
  margin-top: 20px;
}

.ai-features i {
  font-size: 50px;
  color: #fff;
}

.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
  margin-top: 20px;
}

.chart-bar {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 5px 5px 0 0;
  transition: height 0.5s ease;
}

.customization-section {
  padding: 80px 0;
  background-color: #f9f9fa;
}

.customization-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.customization-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.customization-image {
  flex: 1;
}

.customization-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.customization-details {
  flex: 1;
}

.detail-item {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.detail-item h3 {
  font-size: 20px;
  font-weight: 600;
  width: 200px;
  flex-shrink: 0;
}

.detail-line {
  flex: 1;
  height: 2px;
  background-color: #ddd;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.faq-toggle {
  background-color: #f0f0f0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-toggle i {
  font-size: 12px;
  color: #333;
}

.faq-answer {
  padding-top: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-toggle {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
}

.faq-item.active .faq-toggle i {
  color: #fff;
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 20px;
  opacity: 1;
}

.final-cta-section {
  padding: 80px 0;
  background-color: #000;
  color: #fff;
}

.final-cta-content {
  text-align: center;
  margin-bottom: 50px;
}

.final-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item {
  flex: 0 0 auto;
  margin-bottom: 20px;
  width: 300px;
  max-width: 100%;
}

.final-cta-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.final-cta-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .final-cta-gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    width: 100%;
    max-width: 350px;
  }
}

/* Media Queries for Feature Detail Page */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .demo-showcase {
    flex-direction: column;
    padding: 25px;
  }

  .demo-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .demo-image {
    width: 100%;
    display: block;
  }

  .demo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .customization-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .customization-image {
    margin-bottom: 20px;
  }

  .feature-hero-content {
    padding: 0 20px;
  }

  .feature-hero-content h1 {
    font-size: 36px;
  }

  .platform-quality-section h2,
  .customization-section h2,
  .final-cta-content h2 {
    font-size: 30px;
    padding: 0 20px;
  }

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

@media (max-width: 768px) {
  .feature-hero-content h1 {
    font-size: 32px;
  }

  .feature-subtitle {
    font-size: 16px;
  }

  .demo-content h2 {
    font-size: 28px;
  }

  .platform-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

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

  .final-cta-gallery img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .final-cta-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .customization-details .detail-item h3 {
    width: 150px;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-image {
    border-radius: 10px;
  }

  .feature-box p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .feature-box {
    min-height: 200px;
    padding: 25px 20px;
  }

  .feature-hero-content h1 {
    font-size: 28px;
  }

  .feature-subtitle {
    font-size: 14px;
  }

  .demo-content h2 {
    font-size: 24px;
  }

  .demo-showcase {
    padding: 20px;
  }

  .platform-quality-section h2,
  .customization-section h2,
  .final-cta-content h2 {
    font-size: 24px;
  }

  .faq-container .faq-question h3 {
    font-size: 16px;
  }
}

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-column {
    min-width: 45%;
  }
}

@media (max-width: 576px) {
  .footer-header h2 {
    font-size: 26px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-cta {
    flex-direction: column;
    width: 100%;
  }

  .creator-btn, .login-link {
    text-align: center;
  }
}

/* Pricing Page Styles */
.pricing-header-section {
  background-color: #f9f9fa;
  padding: 80px 0 40px;
  text-align: center;
}

.pricing-header h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-header p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto 40px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 500;
}

.toggle-label.active {
  font-weight: 700;
}

.save-badge {
  background-color: #4cd964;
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  margin-left: 5px;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height:18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Pricing Plans Section */
.pricing-plans-section {
  padding: 60px 0;
}

.pricing-plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  width: 320px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eee;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlighted {
  background: linear-gradient(to bottom, #fff, #f9f0ff);
  box-shadow: 0 10px 30px rgba(120, 115, 245, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-card-header {
  margin-bottom: 30px;
  text-align: center;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-price {
  margin-bottom: 15px;

/* Post Activity Page Styles */
.post-activity-hero {
  padding: 80px 0 60px;
  background-color: #f9f9fa;
  overflow: hidden;
}

.post-activity-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 30px;
}

.post-activity-content {
  flex: 1;
}

.post-activity-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.post-activity-content h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.post-activity-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
  max-width: 500px;
}

.blue-icon {
  background-color: #4285f4;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.blue-icon i {
  font-size: 28px;
}

.post-activity-image {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
}

/* Calendar styles */
.post-activity-dashboard {
  width: 90%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.mobile-calendar {
  width: 50%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 15px;
  align-self: flex-end;
  margin-right: 20px;
  box-sizing: border-box;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

.month-display {
  font-size: 18px;
  font-weight: 600;
}

.calendar-nav {
  display: flex;
  gap: 10px;
}

.nav-btn {
  background-color: #f0f0f0;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-btn:hover {
  background-color: #e0e0e0;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 5px;
  box-sizing: border-box;
}

.calendar-grid.small {
  grid-gap: 2px;
}

.calendar-day {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 5px;
  background-color: #f5f5f5;
  transition: background-color 0.3s, transform 0.3s;
  min-height: 30px; /* Add minimum height */
}

.calendar-day.empty {
  background-color: transparent;
}

.calendar-day.active {
  background-color: #4285f4;
  color: white;
}

.calendar-day:not(.empty):hover {
  cursor: pointer;
  transform: scale(1.05);
  background-color: #e0e0e0;
}

.calendar-day.active:hover {
  background-color: #3b77db;
}

/* Mobile calendar styles */
.mobile-calendar .calendar-weekdays {
  font-size: 12px;
}

.mobile-calendar .calendar-day {
  font-size: 12px;
  min-height: 25px; /* Smaller min-height for mobile */
}

/* Calendar demo in growth section */
.calendar-demo {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 15px;
}

.demo-showcase {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.demo-showcase .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 5px;
  max-width: 100%;
  margin: 0 auto;
}

.demo-showcase .calendar-day {
  min-height: 40px;
}

/* Video placeholder */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  background-color: #000;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}

.video-placeholder i {
  font-size: 60px;
  margin-bottom: 15px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.video-placeholder span {
  font-size: 18px;
  font-weight: 500;
}

.video-placeholder:hover i {
  opacity: 1;
  transform: scale(1.1);
}

/* Activity preview in platforms section */
.activity-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.calendar-mini {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calendar-header-mini {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.calendar-grid-mini {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mini-week {
  display: flex;
  gap: 5px;
}

.mini-day {
  flex: 1;
  aspect-ratio: 1/1;
  background-color: #f5f5f5;
  border-radius: 3px;
}

.mini-day.active {
  background-color: #4285f4;
}

.activity-mobile-preview {
  display: flex;
  justify-content: center;
}

.mobile-frame {
  width: 140px;
  height: 240px;
  background-color: #000;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.calendar-mini-mobile {
  width: 100%;
  height: 100px;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  margin-top: 30px;
}

.post-activity-info {
  padding: 80px 0;
  background-color: #fff;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-column h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  color: #4a4a4a;
}

.feature-list li:last-child {
  border-bottom: none;
}

.growth-section {
  padding: 80px 0;
  background-color: #f5f7f9;
}

.growth-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #1a1a1a;
}

.growth-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.demo-showcase {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
}

.how-to-use {
  padding: 80px 0;
  background-color: #fff;
}

.how-to-use h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.steps-container {
  margin-bottom: 50px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.step-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.step-item:last-child {
  border-bottom: none;
}

.step-item p {
  font-size: 18px;
  line-height: 1.6;
  color: #1a1a1a;
}

.step-item strong {
  color: #4285f4;
  font-weight: 700;
  font-size: 20px;
  margin-right: 8px;
}

.step-item ul {
  margin-top: 15px;
  margin-left: 40px;
}

.step-item ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #4a4a4a;
  position: relative;
}

.step-item ul li:before {
  content: "•";
  color: #4285f4;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.video-container {
  max-width: 900px;
  margin: 40px auto 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefits-section {
  padding: 80px 0;
  background-color: #f5f7f9;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.benefit-item p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
}

.platforms-section {
  padding: 80px 0;
  background-color: #fff;
}

.platforms-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #1a1a1a;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.platform-card {
  background-color: #f9f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tiktok {
  background-color: #000;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.twitter {
  background-color: #1da1f2;
}

.facebook {
  background-color: #4267B2;
}

.youtube {
  background-color: #FF0000;
}

.platform-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.platform-card p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 400px;
}

.cta-banner {
  padding: 100px 0;
  background-color: #c2ff00;
  text-align: center;
}

.cta-banner h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #000;
}

.cta-banner .cta-button {
  padding: 16px 40px;
  font-size: 18px;
  background: #000;
}

.cta-banner .cta-button:hover {
  background: #222;
  transform: translateY(-5px);
}

/* Responsive styles for Post Activity page */
@media (max-width: 992px) {
  .post-activity-grid {
    flex-direction: column;
  }
  
  .post-activity-content {
    text-align: center;
  }
  
  .post-activity-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .blue-icon {
    margin-left: auto;
    margin-right: auto;
  }
  
  .info-columns {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .benefits-grid,
  .platforms-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .post-activity-image {
    margin-top: 40px;
    width: 100%;
  }
  
  .post-activity-dashboard {
    width: 100%;
    max-width: 500px;
  }
  
  .mobile-calendar {
    width: 60%;
    max-width: 300px;
    align-self: center;
    margin-right: 0;
  }
  
  .steps-container {
    padding: 0 20px;
  }
  
  .how-to-use h2,
  .platforms-section h2,
  .growth-section h2 {
    padding: 0 20px;
  }
  
  .calendar-day {
    min-height: 35px;
  }
}

@media (max-width: 768px) {
  .post-activity-content h1 {
    font-size: 36px;
  }
  
  .post-activity-content h2 {
    font-size: 24px;
  }
  
  .growth-section h2,
  .how-to-use h2,
  .platforms-section h2,
  .cta-banner h2 {
    font-size: 30px;
  }
  
  .post-activity-hero {
    padding: 60px 0 40px;
  }
  
  .post-activity-dashboard {
    width: 100%;
  }
  
  .mobile-calendar {
    width: 60%;
    align-self: center;
    margin-right: 0;
  }
  
  .post-activity-info,
  .growth-section,
  .how-to-use,
  .benefits-section,
  .platforms-section {
    padding: 60px 0;
  }
  
  .cta-banner {
    padding: 80px 0;
  }
  
  .benefit-item,
  .platform-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .post-activity-content h1 {
    font-size: 32px;
  }
  
  .mobile-calendar {
    width: 80%;
  }
  
  .platform-icons {
    gap: 10px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .benefit-item h3,
  .platform-card h3 {
    font-size: 20px;
  }
  
  .step-item p {
    font-size: 16px;
  }
  
  .growth-section p {
    font-size: 16px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .cta-banner .cta-button {
    padding: 14px 30px;
    font-size: 16px;
  }
  
  .calendar-day {
    font-size: 12px;
  }
}

}

.price {
  font-size: 48px;
  font-weight: 700;
}

.period {
  font-size: 16px;
  color: #666;
}

.plan-description {
  font-size: 14px;
  color: #666;
}

/* Privacy Policy Page Styles */
.policy-hero-section {
  background-color: #f9f9fa;
  padding: 80px 0 60px;
  text-align: center;
}

.policy-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.policy-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

.policy-content-section {
  padding: 60px 0 80px;
  background-color: #fff;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.policy-introduction {
  margin-bottom: 40px;
  font-size: 18px;
  color: #333;
}

.policy-section {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.policy-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #1a1a1a;
}

.policy-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

.policy-section ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.policy-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.contact-info {
  background-color: #f9f9fa;
  padding: 20px;
  border-radius: 10px;
  list-style: none;
  margin-left: 0 !important;
}

.contact-info li {
  margin-bottom: 10px;
}

/* Responsive styles for Privacy Policy */
@media (max-width: 992px) {
  .policy-hero-content h1 {
    font-size: 40px;
  }
  
  .policy-subtitle {
    font-size: 16px;
  }
  
  .policy-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .policy-hero-content h1 {
    font-size: 36px;
  }
  
  .policy-section h2 {
    font-size: 24px;
  }
  
  .policy-section h3 {
    font-size: 18px;
  }
  
  .policy-introduction {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .policy-hero-content h1 {
    font-size: 30px;
  }
  
  .policy-section h2 {
    font-size: 22px;
  }
  
  .policy-section p,
  .policy-section ul li {
    font-size: 15px;
  }
}

.pricing-card-body {
  flex: 1;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.features-list li i {
  margin-right: 10px;
  font-size: 14px;
}

.features-list li i.fa-check {
  color: #4cd964;
}

.features-list li i.fa-times {
  color: #ff3b30;
}

.features-list li.disabled {
  color: #999;
}

.pricing-card-footer {
  text-align: center;
}

.plan-button {
  display: inline-block;
  padding: 12px 40px;
  background-color: #f0f0f0;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.plan-button:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.highlight-button {
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight-button:hover {
  background: linear-gradient(to right, #ff5ebe, #6a66f0);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Compare Plans Section */
.compare-plans-section {
  background-color: #f9f9fa;
  padding: 80px 0;
}

.compare-header {
  text-align: center;
  margin-bottom: 50px;
}

.compare-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.compare-header p {
  font-size: 18px;
  color: #666;
}

.compare-table-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.compare-table th, .compare-table td {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.compare-table th {
  font-weight: 700;
  background-color: #f5f5f7;
}

.compare-table th.feature-column {
  text-align: left;
}

.compare-table tr td:first-child {
  text-align: left;
  font-weight: 500;
}

.compare-table .highlight-column {
  background-color: #f0e9ff;
}

.category-row {
  background-color: #f9f9fa;
}

.category-row td {
  font-weight: 700 !important;
  color: #666;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px 20px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.faq-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.faq-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
}

.faq-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles for Pricing Page */
@media (max-width: 1100px) {
  .pricing-plans {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .pricing-card.highlighted {
    transform: none;
  }
}

@media (max-width: 992px) {
  .pricing-header h1 {
    font-size: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 36px;
  }

  .pricing-header p {
    font-size: 16px;
  }

  .compare-table th, .compare-table td {
    padding: 12px 15px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .pricing-header h1 {
    font-size: 30px;
  }

  .pricing-card {
    width: 100%;
    max-width: 320px;
  }

  .compare-header h2, .faq-header h2 {
    font-size: 28px;
  }

  .category-row td {
    font-size: 12px;
  }
}
/* Link in Bio Page Styles */
.linkbio-hero-section {
  padding: 80px 0 60px;
  background-color: #f9f9fa;
  overflow: hidden;
}

.linkbio-hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.linkbio-hero-text {
  flex: 1;
}

.linkbio-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.linkbio-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 30px;
  max-width: 500px;
}

.linkbio-cta {
  margin-top: 20px;
}

.linkbio-hero-image {
  flex: 1;
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.phone-grid {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.phone-image {
  width: calc(50% - 7.5px);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Overview Section */
.linkbio-features-section {
  padding: 80px 0;
  background-color: #fff;
}

.linkbio-features-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.linkbio-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.linkbio-feature {
  background-color: #f9f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.linkbio-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 24px;
  color: #fff;
}

.linkbio-feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.linkbio-feature p {
  font-size: 15px;
  color: #4a4a4a;
}

/* Customization Section */
.linkbio-customization-section {
  padding: 80px 0;
  background-color: #f9f9fa;
}

.customization-grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

.customization-text {
  flex: 1;
}

.customization-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.customization-text p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.customization-list {
  list-style: none;
  padding: 0;
}

.customization-list li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.customization-list li i {
  margin-right: 10px;
  color: #4cd964;
}

.customization-image {
  flex: 1;
}

.custom-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* How it Works Section */
.linkbio-how-section {
  padding: 80px 0;
  background-color: #fff;
}

.linkbio-how-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

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

.step {
  text-align: center;
  padding: 30px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.step p {
  font-size: 15px;
  color: #4a4a4a;
}

/* Templates Section */
.linkbio-templates-section {
  padding: 80px 0;
  background-color: #f9f9fa;
}

.linkbio-templates-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

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

.template-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.template-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.template-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.template-card h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 20px 20px 10px;
}

.template-card p {
  font-size: 15px;
  color: #4a4a4a;
  padding: 0 20px 20px;
}

/* Success Stories Section */
.linkbio-success-section {
  padding: 80px 0;
  background-color: #fff;
}

.linkbio-success-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.success-profiles {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.success-profile {
  text-align: center;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.success-profile h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.profile-occupation {
  font-size: 14px;
  color: #4a4a4a;
}

/* FAQ Section */
.linkbio-faq-section {
  padding: 80px 0;
  background-color: #f9f9fa;
}

.linkbio-faq-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* CTA Section */
.linkbio-cta-section {
  padding: 80px 0;
  background-color: #000;
  color: #fff;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Media queries for Link in Bio page */
@media (max-width: 992px) {
  .linkbio-hero-content {
    flex-direction: column;
  }

  .linkbio-features-grid,
  .steps-grid,
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .customization-grid {
    flex-direction: column;
  }

  .success-profiles {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .linkbio-hero-text h1 {
    font-size: 36px;
  }

  .linkbio-features-section h2,
  .customization-text h2,
  .linkbio-how-section h2,
  .linkbio-templates-section h2,
  .linkbio-success-section h2,
  .linkbio-faq-section h2,
  .cta-content h2 {
    font-size: 30px;
  }

  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .linkbio-features-grid,
  .templates-grid {
    grid-template-columns: 1fr;
  }
  
  .success-profiles {
    flex-direction: column;
    align-items: center;
  }
}

/* Fitness Creators Page Styles */
.fitness-hero-section {
  padding: 80px 0 60px;
  background-color: #f8f9ff;
  overflow: hidden;
}

.fitness-hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.fitness-hero-text {
  flex: 1;
}

.fitness-hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.fitness-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.fitness-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.fitness-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.fitness-feature .feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, rgba(255, 110, 196, 0.1), rgba(120, 115, 245, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6EC4;
}

.fitness-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.fitness-feature p {
  font-size: 16px;
  color: #333;
}

.fitness-hero-image {
  flex: 1;
  position: relative;
}

.fitness-hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fitness-cta {
  margin-top: 30px;
}

.fitness-btn {
  display: inline-block;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fitness-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(120, 115, 245, 0.4);
}
/* Features Showcase Section */
.features-showcase-section {
  padding: 80px 0;
  background-color: white;
}
/* Steps Section */
.fitness-steps-section {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.video-showcase {
  max-width: 800px;
  margin: 0 auto 60px;
}

.video-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-container img {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(94, 80, 250, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-button i {
  color: white;
  font-size: 30px;
  margin-left: 5px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 30px;
  border-radius: 15px;
  background-color: #f8f9ff;
  border: 1px solid rgba(120, 115, 245, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(120, 115, 245, 0.15);
  border-color: rgba(120, 115, 245, 0.3);
}

.step-number {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: block;
}

.step-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.step-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}

/* One-Stop Solution Section */
.one-stop-section {
  padding: 80px 0;
  background-color: #f8f9ff;
}

.solution-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-text {
  flex: 1;
}

.subsection-title {
  font-size: 18px;
  font-weight: 600;
  color: #5e50fa;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.solution-text h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.solution-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.offering-features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.offering-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(to right, rgba(255, 110, 196, 0.1), rgba(120, 115, 245, 0.1));
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.offering-feature i {
  color: #FF6EC4;
}

.solution-image {
  flex: 1;
}

.solution-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Payments Section */
.payments-section {
  padding: 80px 0;
  background-color: white;
}

.payments-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.payments-image {
  flex: 1;
}

.payments-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.payments-text {
  flex: 1;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-method {
  width: 50px;
  height: 50px;
  background-color: #f8f9ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #5e50fa;
}

/* Marketing Section */
.marketing-section {
  padding: 80px 0;
  background-color: #f8f9ff;
}

.marketing-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.marketing-text {
  flex: 1;
}

.marketing-features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.marketing-feature {
  flex: 1;
  padding: 20px;
  background-color: white;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.marketing-feature .feature-icon {
  width: 50px;
  height: 50px;
  background-color: #5e50fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
}

.marketing-feature p {
  font-size: 16px;
  color: #333;
}

.marketing-image {
  flex: 1;
}

.marketing-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #f9f9fa;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.testimonial-author p {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-style: normal;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.primary-btn {
  display: inline-block;
  background-color: white;
  color: #5e50fa;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background-color: #f0f0f5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.secondary-btn {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.mobile-menu-toggle {
  display: none;
}
/* Media queries for mobile view */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.show-mobile {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 15px;
  }

  .navbar .container {
    padding: 0 15px;
    position: relative;
  }

  .auth-buttons {
    flex-shrink: 0;
  }

  .navbar {
    position: relative;
    z-index: 1000;
  }

  .hero-subheading, .hero-heading {
    font-size: 36px;
  }

  .hero-description h2 {
    font-size: 24px;
  }

  .platform-pitch h2, .platform-pitch h3 {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-title {
    font-size: 32px;
  }

  /* Fix container overflow */
  .container {
    max-width: 100%;
    padding: 0 15px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* Fix overflow with hero section */
  .hero-section {
    overflow-x: hidden;
  }

  /* Fix overflow with features */
  .feature-card {
    height: auto;
    min-height: 250px;
  }

  /* Fix email sections */
  .email-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pink-bg, .blue-bg, .orange-bg, .black-bg, 
  .green-bg, .light-blue-bg {
    width: 100%;
  }

  .blue-bg, .orange-bg {
    flex-direction: column;
  }

  .email-content {
    width: 100%;
  }

  .email-image {
    width: 100%;
    margin-top: 20px;
  }

  /* Fix examples section */
  .examples-section {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 20px 0;
  }

  .example-card {
    flex: 0 0 auto;
    width: 160px;
    height: auto;
    min-height: 240px;
  }

  /* Fix features-showcase section */
  .features-showcase {
    flex-direction: column;
  }

  .feature-card-main, .features-right,
  .features-top-row, .features-bottom-row {
    width: 100%;
  }

  /* Fix mobile footer */
  .footer-cta {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .creator-btn, .login-link {
    width: 100%;
    text-align: center;
  }
  
  /* Fitness page mobile styles */
  .fitness-hero-content,
  .solution-content,
  .payments-content,
  .marketing-content {
    flex-direction: column;
  }
  
  .fitness-hero-text h1 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .steps-container {
    flex-direction: column;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .offering-features,
  .marketing-features {
    flex-direction: column;
  }
}
/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #f9f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  height: 200px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 25px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  color: #1a1a1a;
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.testimonial-author p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 0;
  font-style: normal;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  max-width: 800px;
  margin: -30px auto 40px;
}

.purple-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #9c27b0, #7873F5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 28px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 30px;
    padding: 0 20px;
  }
}

/* Signup Page Styles */
.signup-section {
  padding: 0;
  min-height: 70vh;
  align-items: center;
}

.signup-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.signup-logo {
  height: 35px;
  justify-content: center;
  margin-bottom: 30px;
}

.signup-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.signup-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.social-signup-container {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.social-login-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
  width: 100%;
}

.social-login-btn i {
  margin-right: 10px;
  font-size: 18px;
}

.social-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.google-btn {
  background-color: white;
  color: #333;
}

.facebook-btn {
  background-color: #4267B2;
  color: white;
  border: none;
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border: none;
}

.signup-divider {
  position: relative;
  text-align: center;
  margin: 30px 0;
}

.signup-divider::before,
.signup-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background-color: #ddd;
}

.signup-divider::before {
  left: 0;
}

.signup-divider::after {
  right: 0;
}

.signup-divider span {
  background-color: white;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  color: #666;
}

.login-redirect {
  margin-bottom: 20px;
}
.instagram-btn {
  display: inline-block;
  background: linear-gradient(to right, #c13584, #fd1d1d);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(120, 115, 245, 0.3);
}
.login-redirect-btn {
  display: inline-block;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.login-redirect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(120, 115, 245, 0.3);
}

.terms-privacy {
  margin-top: 30px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.terms-privacy a {
  color: #7873F5;
  text-decoration: underline;
}

/* Media Kit Page Styles */
.media-kit-hero-section {
  padding: 80px 0 60px;
  background-color: #f9f9fa;
  overflow: hidden;
}

.media-kit-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.media-kit-hero-text {
  flex: 1;
}

.media-kit-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.media-kit-hero-text h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.media-kit-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 30px;
  max-width: 550px;
}

.media-kit-cta {
  margin-top: 30px;
}

.media-kit-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.media-kit-hero-image img {
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.media-kit-features-section {
  padding: 80px 0;
  background-color: #fff;
}

.media-kit-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.media-kit-feature {
  background-color: #f9f9fa;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.media-kit-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.media-kit-feature .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(to right, #9c27b0, #7873F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.media-kit-feature .feature-icon i {
  font-size: 28px;
  color: #fff;
}

.media-kit-feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.media-kit-feature p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
}

.analytics-showcase-section {
  padding: 80px 0;
  background-color: #f9f9fa;
}

.analytics-showcase-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.analytics-showcase-text {
  flex: 1;
}

.analytics-showcase-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.analytics-showcase-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.analytics-features-list {
  list-style: none;
  padding: 0;
}

.analytics-features-list li {
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.analytics-features-list li i {
  color: #9c27b0;
  margin-right: 15px;
  font-size: 20px;
}

.analytics-showcase-image {
  flex: 1;
}

.analytics-dashboard {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dashboard-header {
  margin-bottom: 25px;
}

.dashboard-header h3 {
  font-size: 22px;
  font-weight: 700;
}

.metrics-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  background-color: #f9f9fa;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
}

.metric-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, #9c27b0, #7873F5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
}

.metric-content {
  flex: 1;
}

.metric-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #4a4a4a;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.metric-change {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.metric-change i {
  margin-left: 5px;
}

.positive {
  color: #4cd964;
}

.negative {
  color: #ff3b30;
}

.audience-demographics {
  background-color: #f9f9fa;
  border-radius: 12px;
  padding: 20px;
}

.audience-demographics h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.demographics-charts {
  display: flex;
  gap: 30px;
}

.demographics-chart {
  flex: 1;
}

.demographics-chart h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.chart-visual {
  display: flex;
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}

.chart-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
}

.chart-label {
  font-size: 14px;
  color: #4a4a4a;
}

.chart-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 150px;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.age-bar {
  width: 80%;
  background: linear-gradient(to bottom, #9c27b0, #7873F5);
  border-radius: 6px 6px 0 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  font-size: 12px;
  font-weight: 600;
}

.age-percentage {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.brand-collaborations-section {
  padding: 80px 0;
  background-color: #fff;
}

.collaborations-showcase {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.collaboration-card {
  flex: 1;
  background-color: #f9f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collaboration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.collaboration-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.collaboration-content {
  padding: 25px;
}

.brand-logo {
  margin-bottom: 20px;
}

.brand-logo img {
  height: 40px;
}

.collaboration-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.collaboration-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.campaign-results {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
}

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

.result-value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #9c27b0;
}

.result-label {
  font-size: 14px;
  color: #4a4a4a;
}

.how-it-works-section {
  padding: 80px 0;
  background-color: #f9f9fa;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  margin-bottom: 40px;
  gap: 30px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #FF6EC4, #7873F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
}

.media-kit-pricing-section {
  padding: 80px 0;
  background-color: #fff;
}

.pricing-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-content > p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-options {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.pricing-plan {
  background-color: #f9f9fa;
  border-radius: 15px;
  padding: 40px;
  width: 350px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-plan.featured {
  background: linear-gradient(to bottom, #ffffff, #f0e8ff);
  border: 2px solid #9c27b0;
  transform: scale(1.05);
}

.pricing-plan.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #9c27b0, #7873F5);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-plan h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: #4a4a4a;
}

.pricing-plan > p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 25px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.plan-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.plan-features li i {
  color: #9c27b0;
  margin-right: 10px;
}

.plan-cta {
  display: inline-block;
  background-color: #9c27b0;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.plan-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.featured-cta {
  background: linear-gradient(to right, #9c27b0, #7873F5);
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
}

.media-kit-faq-section {
  padding: 80px 0;
  background-color: #f9f9fa;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-toggle i {
  font-size: 14px;
  color: #4a4a4a;
  transition: all 0.3s ease;
}

.faq-answer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: none;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

.faq-item.active .faq-toggle {
  background: linear-gradient(to right, #9c27b0, #7873F5);
}

.faq-item.active .faq-toggle i {
  color: white;
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

.media-kit-cta-section {
  padding: 100px 0;
  background: linear-gradient(to right, #9c27b0, #7873F5);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-content .cta-button {
  background-color: white;
  color: #771887;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-content .cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Media queries for Media Kit page */
@media (max-width: 1200px) {
  .media-kit-hero-content,
  .analytics-showcase-content,
  .collaborations-showcase {
    padding: 0 20px;
  }
  
  .media-kit-features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .media-kit-hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .media-kit-hero-text {
    order: 1;
  }
  
  .media-kit-hero-image {
    order: 0;
    margin-bottom: 40px;
  }
  
  .media-kit-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .purple-icon {
    margin-left: auto;
    margin-right: auto;
  }
  
  .analytics-showcase-content {
    flex-direction: column;
  }
  
  .analytics-showcase-text {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .analytics-features-list li {
    justify-content: center;
  }
  
  .collaborations-showcase {
    flex-direction: column;
  }
  
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number {
    margin-bottom: 15px;
  }
  
  .pricing-options {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-plan {
    width: 100%;
    max-width: 400px;
  }
  
  .pricing-plan.featured {
    transform: scale(1);
  }
  
  .pricing-plan.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .media-kit-hero-text h1 {
    font-size: 36px;
  }
  
  .media-kit-hero-text h2 {
    font-size: 28px;
  }
  
  .media-kit-features-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-cards {
    grid-template-columns: 1fr;
  }
  
  .demographics-charts {
    flex-direction: column;
    gap: 30px;
  }
  
  .section-title,
  .analytics-showcase-text h2,
  .pricing-content h2,
  .cta-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .media-kit-hero-text h1 {
    font-size: 32px;
  }
  
  .media-kit-hero-text h2 {
    font-size: 24px;
  }
  
  .media-kit-subtitle {
    font-size: 16px;
  }
  
  .campaign-results {
    flex-direction: column;
    gap: 15px;
  }
  
  .step-content h3 {
    font-size: 20px;
  }
  
  .step-content p {
    font-size: 16px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .media-kit-cta-section {
    padding: 60px 20px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}
/* Announcements Page Styles */
.announcements-hero-section {
  padding: 100px 0 80px;
  background-color: #f9f9fa;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcements-hero-section .container {
  max-width: 800px;
}

.announcements-hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.announcements-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 20px;
}

.announcements-grid-section {
  padding: 60px 0;
  background-color: #fff;
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.announcement-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.announcement-image {
  height: 200px;
  overflow: hidden;
}

.announcement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.announcement-card:hover .announcement-image img {
  transform: scale(1.05);
}

.announcement-content {
  padding: 25px;
}

.announcement-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.announcement-date, .announcement-category {
  font-size: 14px;
  color: #666;
}

.announcement-category {
  color: #7873F5;
  font-weight: 600;
}

.announcement-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.announcement-content h2 a {
  color: #1a1a1a;
  text-decoration: none;
}

.announcement-content p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #7873F5;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Announcement Detail Page Styles */
.announcement-detail-section {
  padding: 80px 0;
  background-color: #fff;
}

.announcement-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.announcement-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 16px;
}

.author-role {
  font-size: 14px;
  color: #666;
}

.announcement-feature-image {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.announcement-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.announcement-content-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.announcement-content {
  flex: 1;
  max-width: 800px;
}

.announcement-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 20px;
}

.announcement-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.announcement-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.announcement-content li {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

.sidebar {
  width: 300px;
  flex-shrink: 0;
}

.share-widget {
  background-color: #f9f9fa;
  padding: 25px;
  border-radius: 15px;
  position: sticky;
  top: 20px;
}

.share-widget h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share-button {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
}

.share-button:hover {
  transform: translateY(-3px);
  color: #7873F5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section {
  margin: 40px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .announcements-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  
  .announcement-content-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .announcements-hero-section h1 {
    font-size: 36px;
  }
  
  .announcements-grid {
    grid-template-columns: 1fr;
  }
  
  .announcement-header h1 {
    font-size: 32px;
  }
  
  .announcement-content h2 {
    font-size: 24px;
  }
  
  .announcement-content p,
  .announcement-content li {
    font-size: 16px;
  }
}

.field_with_errors {
  display: inline;
  padding: 0;
  margin: 0;
}

.field_with_errors input,
.field_with_errors textarea {
  border: 1px solid #ff0000;
}

.error-messages {
  color: #ff0000;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #fff5f5;
  border-radius: 4px;
}

.error-messages ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-field {
  border: 1px solid #ff0000 !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Toast Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background-color: #e8fff3;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 498px;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.toast.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.toast.error .toast-header {
    background-color: #f8d7da;
    border-bottom: 1px solid #f5c6cb;
    color: #721c24;
}

.toast.error .toast-header strong {
    color: #721c24;
}

.toast.error .toast-body {
    color: #721c24;
}

.toast.error .btn-close {
    color: #721c24;
}

.toast.error .btn-close:hover {
    color: #721c24;
}

.toast.show {
    opacity: 1;
}

.toast-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #e8fff3;
    border-bottom: 1px solid #c3e6cb;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #155724;
}

.toast-header strong {
    color: #155724;
}

.toast-body {
    padding: 1rem;
    color: #155724;
}

.btn-close {
    padding: 0.5rem 0.75rem;
    margin: -0.5rem -0.75rem -0.5rem auto;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    opacity: 0.5;
    color: #155724;
}

.btn-close:hover {
    opacity: 0.75;
    color: #155724;
}

.btn-close:focus {
    outline: none;
    box-shadow: none;
    opacity: 1;
}
