/* Base styles and variables */
:root {
  --background: #0a0a0a;
  --surface: #141414;
  --surface-hover: #1f1f1f;
  --primary: #e879f9;
  --primary-hover: #f0abfc;
  --accent: #c026d3;
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --border: #27272a;
  --radius: 12px;
  --shadow-glow: 0 0 40px rgba(232, 121, 249, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
  background: none;
  -webkit-text-fill-color: var(--text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(232, 121, 249, 0.1);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--primary-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 28px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-subtle {
  color: var(--text-muted);
}

.btn-subtle:hover {
  color: var(--text);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--text);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--background) 0%,
    var(--background) 20%,
    rgba(10, 10, 10, 0.8) 50%,
    rgba(10, 10, 10, 0.4) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--border);
}

.stat h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.stat p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Features Section */
.features {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.feature-card:hover {
  background: rgba(67, 26, 107, 0.1);
  border-color: rgba(67, 26, 107, 0.2);
  box-shadow: 0 0 30px rgba(67, 26, 107, 0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* How it works Section */
.how-it-works {
    padding: 1rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.step-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge span {
    font-size: 1.5rem;
}

.badge p {
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Pricing Section */
.pricing {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  background: var(--surface-hover);
  border-color: var(--primary);
  box-shadow: 
      0 10px 30px -10px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(232, 121, 249, 0.1),
      0 0 40px -10px rgba(232, 121, 249, 0.25);
}

.pricing-header {
  text-align: left;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.amount-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.amount-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.amount {
  font-size: 2rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.item-name {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1;
}

.price {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.price span {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: inline-block;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-conversion {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.pricing-features {
  list-style: none;
  margin: 1rem 0;
  flex-grow: 0;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

.pricing-card .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  text-align: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.pricing-card:hover .btn-primary {
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: var(--radius);
  background: linear-gradient(45deg, transparent, rgba(232, 121, 249, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pricing-card:hover::before {
  opacity: 1;
}

/* Footer */
.footer {
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-column a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-background {
    width: 100%;
    opacity: 0.2;
  }
  
  .gradient-overlay {
    background: rgba(10, 10, 10, 0.8);
  }
  
  .stat:not(:last-child)::after {
    display: none;
  }
  
  .hero-stats {
    padding: 1.5rem;
  }
}

/* Ambient Background */
.ambient-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    rgba(67, 26, 107, 0.05),
    rgba(26, 26, 39, 0.05)
  );
}

/* Stripe-inspired subtle grid pattern */
.ambient-background::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px
  ),
  linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  transform: rotate(30deg);
}


/* Update existing gradients to match new theme */
h1 {
  background: linear-gradient(to right, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Add subtle animation to stats */
.stat h3 {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.stat:hover h3 {
  transform: scale(1.1);
}

/* Add these styles for the business info */
.business-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.business-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.business-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.business-info a:hover {
    color: var(--primary);
}

/* Pricing Categories */
.pricing-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 0.5rem;
    background: var(--surface-hover);
    border-radius: calc(var(--radius) * 1.5);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    flex: 0 1 auto;
    min-width: 150px;
    text-align: center;
}

.category-btn:hover {
    color: var(--text);
}

.category-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 
        var(--shadow-glow),
        0 8px 20px -6px rgba(232, 121, 249, 0.5);
}

/* Improve Pricing Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 2.75rem;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.price {
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.price span {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features {
    list-style: none;
    margin: 1rem 0;
    flex-grow: 0;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .pricing-categories {
        max-width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .category-btn {
        width: 100%;
        padding: 1rem;
        min-width: unset;
    }
}

/* Instagram gradient text */
.instagram-gradient {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* TikTok gradient text */
.tiktok-gradient {
    background: linear-gradient(90deg, #25F4EE 0%, #FE2C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Loading and error states */
.loading, .error {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.error {
    color: #ef4444;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--surface);
    padding: 6rem 2rem 2rem;
    transition: all 0.3s ease;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0.75rem 0;
}

.mobile-menu-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .pricing-categories {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Update Button Styles */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-subtle {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
}

.btn-subtle:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.75rem;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 
        var(--shadow-glow),
        0 8px 20px -6px rgba(232, 121, 249, 0.5);
}

/* Update Mobile Menu Styles */
.mobile-menu-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        padding-top: 5rem;
    }

    .mobile-menu a:not(.btn) {
        font-size: 1.25rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu-actions {
        border-top: 1px solid var(--border);
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

/* Add smooth transitions for mobile menu */
.mobile-menu {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(100%);
    opacity: 0;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
}

.service-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.service-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.service-tab.active {
    color: var(--primary);
    position: relative;
}

.service-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.service-categories {
    display: none;
}

.service-categories.active {
    display: block;
}

/* Add mobile-specific adjustments */
@media (max-width: 480px) {
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }

    .pricing-header h3 {
        font-size: 2.25rem;
    }

    .amount-label {
        font-size: 1rem;
    }

    .price {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .price span {
        font-size: 1.75rem;
    }
}

/* Mobile adjustments - keep horizontal layout but adjust sizes */
@media (max-width: 480px) {
    .pricing-header {
        gap: 0.375rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .amount-label {
        font-size: 0.875rem;
    }

    .price span {
        font-size: 1.5rem;
    }
}


.feature-tag {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-tag .feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-tag p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.mobile-menu .service-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu .service-links a {
    font-size: 1.25rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: block;
    width: 100%;
}

.nav-links .service-links {
    display: flex;
    gap: 0.5rem;
    padding: 0.375rem;
    background: var(--surface);
    border-radius: calc(var(--radius) * 1.5);
    border: 1px solid var(--border);
}

.nav-links .service-links a {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-links .service-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: inherit;
}

.nav-links .service-links a:hover::before {
    opacity: 0.05;
}

/* Update active states for cleaner look */
.nav-links .service-links a.active {
    color: white;
    font-weight: 600;
}

/* Platform-specific gradients - simplified and more subtle */
.nav-links .service-links a[href*="instagram"].active {
    background: linear-gradient(45deg, #f09433, #bc1888);
    box-shadow: 0 2px 12px rgba(188,24,136,0.15);
}

.nav-links .service-links a[href*="tiktok"].active {
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
    box-shadow: 0 2px 12px rgba(254,44,85,0.15);
}

.nav-links .service-links a[href*="youtube"].active {
    background: linear-gradient(90deg, #FF0000, #CC0000);
    box-shadow: 0 2px 12px rgba(255,0,0,0.15);
}

.nav-links .service-links a[href*="spotify"].active {
    background: linear-gradient(90deg, #1DB954, #1ed760);
    box-shadow: 0 2px 12px rgba(29,185,84,0.15);
}

.nav-links .service-links a[href*="twitter"].active {
    background: linear-gradient(90deg, #1DA1F2, #0d8bd9);
    box-shadow: 0 2px 12px rgba(29,161,242,0.15);
}

.nav-links .service-links a[href*="reddit"].active {
    background: linear-gradient(90deg, #FF4500, #d93a00);
    box-shadow: 0 2px 12px rgba(255,69,0,0.15);
}

.nav-links .service-links a[href*="telegram"].active {
    background: linear-gradient(90deg, #0088cc, #006699);
    box-shadow: 0 2px 12px rgba(0,136,204,0.15);
}

.nav-links .service-links a[href*="facebook"].active {
    background: linear-gradient(90deg, #1877F2, #0d64d8);
    box-shadow: 0 2px 12px rgba(24,119,242,0.15);
}

/* Hover states - simplified and more consistent */
.nav-links .service-links a:hover:not(.active) {
    color: var(--text);
    background: var(--surface-hover);
}

/* Add subtle transition for active state */
.nav-links .service-links a.active {
    transform: translateY(-1px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Add responsive adjustments for service links */
@media (min-width: 1200px) {
    .nav-links .service-links {
        gap: 0.375rem;
    }
    
    .nav-links .service-links a {
        padding: 0.625rem 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .nav-links .service-links {
        gap: 0.25rem;
    }
    
    .nav-links .service-links a {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }
}

.youtube-gradient {
    background: linear-gradient(90deg, #FF0000 0%, #FF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spotify-gradient {
    background: linear-gradient(90deg, #1DB954 0%, #1ED760 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.twitter-gradient {
    background: linear-gradient(90deg, #1DA1F2 0%, #92c9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Platform Grid Styles */
.platforms-grid {
    padding: 6rem 0;
}

.platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.platform-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.platform-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.platform-stats {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-bottom: 1rem;
}

.platform-stats span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.platform-cta {
    color: var(--primary);
    font-weight: 500;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.platform-badge img {
    width: 24px;
    height: 24px;
}

.platform-badge span {
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Main Specific */
.hero-main {
    text-align: center;
    padding: 8rem 0 4rem;
}

.hero-main h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Platform-specific hover effects */
.platform-card.instagram:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
                linear-gradient(45deg, rgba(188, 42, 141, 0.1), rgba(252, 204, 99, 0.1));
}

.platform-card.tiktok:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
                linear-gradient(45deg, rgba(238, 29, 82, 0.1), rgba(51, 215, 225, 0.1));
}

.platform-card.youtube:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
                linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(200, 0, 0, 0.1));
}

.platform-card.spotify:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
                linear-gradient(45deg, rgba(30, 215, 96, 0.1), rgba(20, 155, 66, 0.1));
}

.platform-card.twitter:hover {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
                linear-gradient(45deg, rgba(29, 161, 242, 0.1), rgba(25, 118, 179, 0.1));
}

.platform-icon svg {
    width: 100%;
    height: 100%;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.platform-card:hover .platform-icon svg {
    color: var(--primary);
}

/* Platform-specific icon colors on hover */
.platform-card.instagram:hover .platform-icon svg {
    color: #E1306C;
}

.platform-card.tiktok:hover .platform-icon svg {
    color: #dd1478;
}

.platform-card.youtube:hover .platform-icon svg {
    color: #FF0000;
}

.platform-card.spotify:hover .platform-icon svg {
    color: #1DB954;
}

.platform-card.twitter:hover .platform-icon svg {
    color: #1DA1F2;
}

/* Platform Badges SVG styling */
.platform-badge svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

/* Platform-specific colors on hover */
.platform-badge:hover svg {
    color: var(--primary);
}

.platform-badge:hover svg {
    transition: color 0.3s ease;
}

/* Individual platform colors on hover */
.platform-badge:nth-child(1):hover svg {  /* Instagram */
    color: #E1306C;
}

.platform-badge:nth-child(2):hover svg {  /* TikTok */
  color: #dd1478;
}

.platform-badge:nth-child(3):hover svg {  /* YouTube */
    color: #FF0000;
}

.platform-badge:nth-child(4):hover svg {  /* Spotify */
    color: #1DB954;
}

.platform-badge:nth-child(5):hover svg {  /* Twitter */
    color: #1DA1F2;
}

/* Features Section */
.features-highlight {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
                linear-gradient(45deg, rgba(var(--primary-rgb), 0.1), rgba(var(--accent-rgb), 0.1));
    border-color: rgba(var(--primary-rgb), 0.2);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Legal Pages Styling */
.legal-content {
    padding: 6rem 0;
}

.legal-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.legal-text h2 {
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: left;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p, .legal-text ul {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.legal-text ul {
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.75rem;
}

/* Add subtle hover effect */
.legal-text:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

/* Ensure the top features block spans the container and centers its content */
.pricing-features-top {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

/* Use flex to center feature items and allow wrapping if needed */
.pricing-features-top .pricing-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

/* Each feature item is centered and set to one line, with ellipsis if too long */
.pricing-features-top .pricing-features li {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px; /* Adjust this max-width as needed */
}
