* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #191a23;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Styles */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(25, 26, 35, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #191a23;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  content: "📈";
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #191a23;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #b9ff66;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #b9ff66;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #191a23;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #191a23 0%, #2a2b35 100%);
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(185,255,102,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.2s forwards;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
}

.section-header.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #191a23;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(25, 26, 35, 0.1);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(25, 26, 35, 0.15);
}

.pricing-card.popular {
  border: 3px solid #b9ff66;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  background: #b9ff66;
  color: #191a23;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  width: 150px;
  text-align: center;
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card.popular .pricing-header {
  background: linear-gradient(135deg, #191a23 0%, #2a2b35 100%);
  color: #fff;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-card.popular .plan-description {
  color: #ccc;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #191a23;
}

.pricing-card.popular .price {
  color: #b9ff66;
}

.price-period {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.pricing-card.popular .price-period {
  color: #ccc;
}

.pricing-body {
  padding: 2rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #f1f3f4;
}

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

.feature-icon {
  width: 20px;
  height: 20px;
  background: #b9ff66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon::after {
  content: "✓";
  color: #191a23;
  font-weight: 600;
  font-size: 0.8rem;
}

.feature-text {
  color: #191a23;
  font-weight: 500;
}

.pricing-cta {
  width: 100%;
  background: #191a23;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.pricing-cta:hover {
  background: #b9ff66;
  color: #191a23;
  transform: translateY(-2px);
}

.pricing-card.popular .pricing-cta {
  background: #b9ff66;
  color: #191a23;
}

.pricing-card.popular .pricing-cta:hover {
  background: #fff;
  color: #191a23;
}

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

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

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(25, 26, 35, 0.05);
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.animate {
  animation: fadeInUp 0.4s ease forwards;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #191a23;
  user-select: none;
}

.faq-question:hover {
  color: #b9ff66;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #191a23;
  color: #fff;
  text-align: center;
}

.cta-content {
  opacity: 0;
  transform: translateY(30px);
}

.cta-content.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.cta-button {
  background: #b9ff66;
  color: #191a23;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0 0.5rem;
}

.cta-button:hover {
  background: #fff;
  transform: translateY(-3px);
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-button.secondary:hover {
  background: #fff;
  color: #191a23;
}

/* Footer */
footer {
  background: #191a23;
  color: #fff;
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid #333;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  color: #b9ff66;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

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

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.social-icon {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.social-icon{
     width: 80%;
  height: 100%;
}

.social-icon:hover {
  background: #b9ff66;
  color: #191a23;
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid #333;
  padding-top: 2rem;
  color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
/* Media Queries */

/* Tablets */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - standard */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

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

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

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .cta-content h2 {
        font-size: 1.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }
}

/* Small mobile - narrow screens */
@media (max-width: 480px) {
    .hero {
        padding: 90px 0 50px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .pricing-section, 
    .faq-section, 
    .cta-section {
        padding: 50px 0;
    }

    .price {
        font-size: 2.2rem;
    }

    .cta-button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .social-icons {
        gap: 0.5rem;
    }
        .social-icon{
        width: 100% ;
    }
}

