/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #6a36ff;
  color: white;
  border-color: #6a36ff;
}

.btn-primary:hover {
  background-color: #1475b8;
  border-color: #1475b8;
}

.btn-secondary {
  background-color: transparent;
  color: #666;
  border-color: #ddd;
}

.btn-secondary:hover {
  background-color: #f8f9fa;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo svg {
  height: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 48px;
}

.nav-link {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #333;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
 /* text-align: center; */
  background-color: #f5f6f7;
}

.hero-title {
  font-size: 48px;
  font-weight: 300;
  color: #333;
  margin-bottom: 48px;
  line-height: 1.2;
}

.pricing-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 276px;
  margin-bottom: 48px;
}

.channel-selector,
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 46px;
}

.channel-label,
.billing-label {
  font-weight: 500;
  color: #666;
  font-size: 14px;
}

.channel-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 8px 16px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  color: #666;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.counter-btn:hover {
  background-color: #e9ecef;
}

.counter-value {
  font-weight: 600;
  color: #333;
  min-width: 20px;
  text-align: center;
}

.toggle-switch {
  display: flex;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 4px;
}

.toggle-btn {
  padding: 8px 16px;
  border: none;
  background-color: transparent;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.toggle-btn.active {
  background-color: #fff;
  color: #333;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.savings-badge {
  position: absolute;
  top: -8px;
  right: 5px;
  background-color: #6a36ff;
  color: white;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.toggle-btn:not(.active) .savings-badge {
  opacity: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 10px 0;
  background-color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.pricing-card.recommended {
  border-color: #6a36ff;
  transform: scale(1.05);
}

.recommended-badge {
 /* position: absolute; */
  /*top: -12px;
  left: 50%;
  transform: translateX(-50%); */
  max-width: 130px;
  background-color: #6a36ff;
  color: white;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-header {
  /* text-align: center; */
  margin-bottom: 24px;
}

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

.price {
  margin-bottom: 12px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #333;
}

.price-period {
  font-size: 16px;
  color: #666;
  margin-left: 4px;
}

.plan-description {
  color: #666;
  font-size: 14px;
}

.cta-btn {
  width: 100%;
  background-color: #6a36ff;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: background-color 0.2s ease;
}

.cta-btn:hover {
  background-color: #1475b8;
}

.pricing-card:not(.recommended) .cta-btn {
  background-color: #333;
}

.pricing-card:not(.recommended) .cta-btn:hover {
  background-color: #555;
}

.features h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

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

.feature-list li {
  padding: 8px 0;
  color: #666;
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #168CD9;
  font-weight: 600;
}

.more-channels {
  text-align: center;
  margin-bottom: 32px;
}

.more-channels p {
  color: #666;
  font-size: 14px;
}

.more-channels a {
  color: #168CD9;
  text-decoration: none;
  font-weight: 500;
}

.more-channels a:hover {
  text-decoration: underline;
}

.compare-plans-btn {
  display: block;
  margin: 0 auto;
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.compare-plans-btn:hover {
  background-color: #555;
}

/* Feature Comparison Table */
.comparison-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.comparison-title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
 /* text-align: center; */
  margin-bottom: 48px;
}

.plan-selector-mobile {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.plan-btn {
  padding: 12px 24px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #666;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.plan-btn.active,
.plan-btn:hover {
  background-color: #168CD9;
  color: white;
  border-color: #168CD9;
}

.comparison-table {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e6ed;
}

.feature-column {
  padding: 24px;
  display: flex;
  align-items: center;
}

.plan-buttons-desktop {
  display: flex;
  gap: 8px;
}

.plan-column {
  padding: 24px;
  text-align: center;
  border-left: 1px solid #e0e6ed;
  position: relative;
}

.plan-column h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

.recommended-col {
  background-color: rgba(22, 140, 217, 0.05);
  border-left-color: #168CD9;
  border-right: 1px solid #168CD9;
}

.recommended-badge-small {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #168CD9;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn-small {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.2s ease;
}

.cta-btn-small.primary {
  background-color: #168CD9;
  color: white;
  border-color: #168CD9;
}

.cta-btn-small:hover {
  background-color: #f8f9fa;
}

.cta-btn-small.primary:hover {
  background-color: #1475b8;
}

.feature-category {
  border-bottom: 1px solid #e0e6ed;
}

.category-title {
  background-color: #2c5530;
  color: white;
  padding: 16px 24px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #f0f2f5;
}

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

.feature-name {
  padding: 20px 24px;
  text-align: left;
}

.feature-name span:first-child {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 4px;
}

.feature-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.feature-value {
  padding: 20px 16px;
  text-align: center;
  border-left: 1px solid #e0e6ed;
  font-weight: 600;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-value.check {
  color: #168CD9;
  font-size: 18px;
  font-weight: 700;
}

.recommended-col + .feature-value,
.feature-row .feature-value:nth-child(3) {
  background-color: rgba(22, 140, 217, 0.05);
}

/* Social Media Icons */
.social-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.social-section h3 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 48px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.social-icon {
  width: 64px;
  height: 64px;
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon img {
  width: 32px;
  height: 32px;
}

/* Customer Testimonial */
.testimonial-section {
  padding: 80px 0;
  background-color: #2c5530;
  color: white;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial p {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 32px;
  color: white;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-style: normal;
}

.author-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #fff;
}

.faq-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 48px;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "↓";
  font-size: 16px;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #2c5530;
  color: white;
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-table {
    overflow-x: auto;
  }

  .table-header,
  .feature-row {
    min-width: 800px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-menu {
    margin-left: 0;
    gap: 24px;
  }

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

  .pricing-controls {
    flex-direction: column;
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card.recommended {
    transform: none;
  }

  .plan-selector-mobile {
    display: flex;
  }

  .comparison-table {
    display: none;
  }

  .social-icons {
    gap: 16px;
  }

  .social-icon {
    width: 56px;
    height: 56px;
  }

  .social-icon img {
    width: 28px;
    height: 28px;
  }

  .testimonial p {
    font-size: 24px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .author-info {
    text-align: center;
  }

  .faq-section h2 {
    font-size: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .price-amount {
    font-size: 36px;
  }

  .testimonial p {
    font-size: 20px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 16px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .btn {
    width: 100%;
  }

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

  .plan-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
