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

/* Hero Section */
.hero {
  padding: 80px 20px 40px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 24px;
  font-size: 14px;
  margin-bottom: 32px;
}

.badge-label {
  background: #10b981;
  color: #000;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 12px;
}

.badge-text {
  color: #10b981;
}

.badge-arrow {
  color: #10b981;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 60px 20px;
}

.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px;
  margin: 12px;
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 1px solid #10b981;
  background: #000000;
}

.recommended-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: #10b981;
  color: #000;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.card-header {
  margin-bottom: 32px;
}

.plan-name {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}

.currency {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
}

.price {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.period {
  font-size: 18px;
  color: #a0a0a0;
  margin-left: 4px;
}

.plan-description {
  color: #a0a0a0;
  font-size: 16px;
}

.features-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: #e5e5e5;
  font-size: 15px;
}

.checkmark {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Buttons */
.cta-button {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cta-primary {
  background: #fff;
  color: #000;
}

.cta-primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #3a3a3a;
}

.cta-secondary:hover {
  background: #2a2a2a;
  border-color: #4a4a4a;
}

/* About Section */
.about-section {
  padding: 80px 20px;
}

.about-premium-section {
  padding: 80px 20px;
  background: #000;
}

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

.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-description {
  font-size: 20px;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 60px;
}

.benefits-grid {
  margin-bottom: 60px;
}

.benefit-card {
  padding: 32px 20px;
  text-align: center;
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.benefit-text {
  font-size: 16px;
  color: #a0a0a0;
  line-height: 1.6;
}

.cta-footer {
  margin-top: 60px;
}

.cta-footer-text {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
}

.cta-large {
  display: inline-block;
  width: auto;
  padding: 18px 48px;
  font-size: 18px;
  background: #10b981;
  color: #000;
}

.cta-large:hover {
  background: #0ea572;
  transform: translateY(-2px);
}

.cta-footer-note {
  margin-top: 16px;
  font-size: 14px;
  color: #7a7a7a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .price {
    font-size: 48px;
  }

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

  .about-description {
    font-size: 18px;
  }

  .benefit-card {
    margin-bottom: 24px;
  }

  .pricing-card {
    margin: 12px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px 30px;
  }

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

  .pricing-section {
    padding: 40px 10px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .mobile-spacer{
    margin-top: 80px;
  }
}

/* ABOUT CSS */
.about-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F5F5F5;
    color: #000000;
    line-height: 1.6;
}

/* Header Styles */
.about-header {
    background-color: #000000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.about-logo {
    color: #00B16A;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.about-nav-link {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.about-nav-link:hover {
    color: #00B16A;
}

.about-nav-link-active {
    color: #00B16A;
}

.about-nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00B16A;
}

/* Main Content */
.about-main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.about-hero {
    background-color: #000000;
    color: #F5F5F5;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F5F5F5;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #00B16A;
    font-weight: 500;
}

/* Section Styles */
.about-section {
    padding: 4rem 2rem;
}

.about-section:nth-child(even) {
    background-color: #FFFFFF;
}

.about-section-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-section-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000000;
}

.about-section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000000;
}

.about-code {
    background-color: #000000;
    color: #00B16A;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Examples */
.about-examples {
    margin-top: 2rem;
}

.about-examples-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.about-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.about-example-card {
    background-color: #F5F5F5;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.about-section:nth-child(even) .about-example-card {
    background-color: #F5F5F5;
}

.about-example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 177, 106, 0.2);
    border-color: #00B16A;
}

.about-example-bang {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00B16A;
    margin-bottom: 0.5rem;
}

.about-example-query {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.about-example-description {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.5;
}

.about-example-card-instant {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

/* CTA Section */
.about-cta {
    background-color: #00B16A;
    color: #F5F5F5;
    padding: 4rem 2rem;
    text-align: center;
}

.about-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #F5F5F5;
}

.about-cta-button {
    display: inline-block;
    background-color: #000000;
    color: #F5F5F5;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.about-footer {
    background-color: #000000;
    color: #F5F5F5;
    padding: 2rem;
    text-align: center;
}

.about-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-footer-text {
    margin-bottom: 1rem;
    color: #F5F5F5;
}

.about-footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.about-footer-link {
    color: #F5F5F5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-footer-link:hover {
    color: #00B16A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .about-nav {
        gap: 1rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-section-text {
        font-size: 1rem;
    }

    .about-examples-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-title {
        font-size: 1.8rem;
    }

    .about-footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}