/* Color palette */
:root {
  --bg-dark: #171916;
  --bg-card: #1D1F1C;
  --neon-green: #C5FF95;
  --neon-green-bright: #A3FF12;
  --text-main: #fff;
  --text-muted: #bdbdbd;
  --btn-dark: #232526;
  --btn-dark-border: #333;
  --badge-bg: #232526;
  --badge-star: #FFD700;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  margin: 0;
}

.header {
  width: 100%;
  background: rgba(24,26,27,0.98);
  box-shadow: 0 2px 16px 0 #000a;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  width: 150px;
  height: 32px;
}
.logo-text {
  color: var(--neon-green);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--neon-green);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}
.btn {
  font-family: inherit;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.btn-signup {
  background: var(--neon-green);
  color: #181A1B;
  border: none;
}
.btn-signup:hover {
  background: var(--neon-green-bright);
}
.btn-signin {
  background: var(--btn-dark);
  color: var(--text-main);
  border: 1.5px solid var(--btn-dark-border);
}
.btn-signin:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

main {
  margin-top: 90px;
  z-index: 1;
  position: relative;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background-image: url('../images/rect36.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0; 
  background-image: url('../images/big-circle.png');
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat !important;
  z-index: -1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(100%);
  width: 100vw;
  height: 40vh;
  background: url('../images/rect36.png') center bottom/contain no-repeat;
  z-index: 2;
  opacity: 0.8;
  pointer-events: none;
  background-repeat: no-repeat !important;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(182,255,108,0.15);
  border-radius: 16px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(182,255,108,0.15);
}

.hero-rating img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #b6ff6c;
  margin-left: -8px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #b6ff6c;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-buttons .btn-cta {
  background: #b6ff6c;
  color: #222;
  font-weight: 600;
  font-size: 1.15rem;
  border-radius: 8px;
  padding: 0.85rem 2.5rem;
  box-shadow: 0 2px 16px 0 rgba(182,255,108,0.15);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hero-buttons .btn-cta:hover {
  background: #d1ffb6;
  color: #111;
  box-shadow: 0 4px 32px 0 rgba(182,255,108,0.25);
}

.hero-floating-ig {
  position: absolute;
  right: -8vw;
  bottom: 18vh;
  width: 320px;
  height: 320px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.85;
  animation: floatY 4s ease-in-out infinite;
}

.hero-floating-x {
  position: absolute;
  left: -10vw;
  bottom: 10vh;
  width: 400px;
  height: 400px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.85;
  animation: floatY 5s ease-in-out infinite 1s;
}

.badge, .hero-title, .hero-subtitle, .btn-cta {
  position: relative;
  z-index: 10;
}

.badge {
  background: var(--badge-bg);
  color: var(--text-main);
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px #0004;
}
.badge-star {
  color: var(--badge-star);
  font-size: 1.2rem;
}
.badge-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #232526;
  margin-left: -8px;
  box-shadow: 0 1px 4px #0003;
}

.hero-title {
  font-family: 'Segoe UI', sans-serif;
  font-size: 68px;
  font-weight: 900;
  color: var(--neon-green);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  max-width: 600px;
}
.btn-cta {
  background: var(--neon-green);
  color: #181A1B;
  font-size: 1.15rem;
  padding: 0.9rem 2.5rem;
  border-radius: 10px;
  font-weight: 900;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 16px #B6FF6C33;
}
.btn-cta:hover {
  background: var(--neon-green-bright);
}

.why-choose {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-green);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--neon-green);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: var(--text-main);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.core-services {
  padding: 6rem 2rem;
  background: var(--bg-card);
}

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

.service-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--neon-green);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--text-main);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--neon-green);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.8rem;
}

.how-it-works {
  padding: 6rem 2rem;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.step-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: left;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-green);
  line-height: 1;
}

.step-content h4 {
  color: var(--text-main);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing {
  padding: 6rem 2rem;
  background: var(--bg-card);
}

.pricing-coupon {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.coupon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/rect36.png') center center/cover no-repeat;
  opacity: 0.1;
}

.coupon-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.coupon-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-green);
  margin-bottom: 1.5rem;
}

.coupon-price span {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.btn-coupon {
  background: var(--neon-green);
  color: #181A1B;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 2rem;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-coupon:hover {
  background: var(--neon-green-bright);
}

.reseller-panels {
  padding: 6rem 2rem;
  text-align: center;
}

.reseller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.reseller-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.reseller-card h3 {
  color: var(--text-main);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.reseller-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.reseller-panels .btn-cta {
  margin-bottom: 0;
  display: inline-block;
}

.testimonial {
  padding: 6rem 2rem;
  background: var(--bg-card);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-dark);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.testimonial-name {
  font-weight: 700;
  color: var(--text-main);
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq {
  padding: 6rem 2rem;
}

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

.faq-item {
  background: var(--bg-card);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  position: relative;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--neon-green);
}

.final-cta {
  padding: 6rem 2rem;
  background: url('../images/rect36.png') center center/cover no-repeat, var(--bg-card);
  position: relative;
}

.final-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.final-cta-text {
  text-align: left;
}

.final-cta-text h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

.final-cta-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
}

.final-cta-buttons .btn {
  flex: 1;
}

.final-cta-img {
  position: relative;
}

.final-cta-img img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

@keyframes phone-float {
  0% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-10px);
  }
  100% {
    transform: translateY(-50%) translateY(0);
  }
}

.cta-phone {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 300px;
  height: auto;
  margin: 0;
  z-index: 2;
  animation: phone-float 4s ease-in-out infinite;
}

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

@media (max-width: 900px) {
  .nav {
    padding: 1rem 1rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-floating-ig {
    width: 180px;
    height: 180px;
    right: -14vw;
    bottom: 12vh;
  }
  .hero-floating-x {
    width: 220px;
    height: 220px;
    left: -18vw;
    bottom: 8vh;
  }
  .feature-grid, .service-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .feature-card, .service-card, .step-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .pricing-coupon, .reseller-grid {
    padding: 2rem;
  }
  .coupon-content, .reseller-card {
    padding: 1.5rem;
  }
  .hero, .hero::before, .hero::after {
    background-repeat: no-repeat !important;
  }
  .cta-phone {
    right: 2%;
    max-width: 200px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .nav-buttons {
    gap: 0.5rem;
  }
  .hero-bg-icons,
  .why-choose-bg-logo,
  .hero-curve {
    display: none !important;
  }
  .logo-img {
    width: 90px;
    height: 24px;
  }
  .hero {
    padding: 24px 16px 0 16px;
    background: url('../images/hero-mobile.png') center center/cover no-repeat;
    position: relative;
  }
  .hero-floating-ig {
    width: 90px;
    height: 90px;
    right: -18vw;
    bottom: 6vh;
  }
  .hero-floating-x {
    width: 120px;
    height: 120px;
    left: -24vw;
    bottom: 4vh;
  }
  .final-cta {
    padding: 4rem 1rem;
  }
  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .final-cta-text {
    text-align: center;
  }
  .final-cta-text h3 {
    font-size: 2rem;
  }
  .final-cta-text p {
    font-size: 1rem;
  }
  .final-cta-buttons {
    justify-content: center;
  }
  .final-cta-buttons .btn {
    padding: 0.8rem 1.5rem;
  }
  .final-cta-img {
    order: -1;
  }
  .final-cta-img img {
    max-width: 300px;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero::before,
  .hero::after {
    background-image: none !important;
  }
  .hero-content h1 {
    font-size: 25px;
    line-height: 1.2;
  }
  .hero-content .hero-subtitle {
    font-size: 1rem;
  }
  .cta-phone {
    position: static !important;
    display: block;
    max-width: 90vw !important;
    height: auto !important;
    margin: 2rem auto 0 auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    animation: phone-float 4s ease-in-out infinite !important;
  }
  .final-cta-img {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-floating-ig {
    display: block;
    width: 160px;
    height: 160px;
    right: 10px;
    top: 40%;
    animation: floatY 3s ease-in-out infinite;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Reseller Benefits Section */
.reseller-benefits {
  padding: 4rem 0;
  background: var(--bg-dark);
}

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

.benefit-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--btn-dark-border);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-color: var(--neon-green);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--text-main);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Reseller CTA Section */
.reseller-cta {
  padding: 4rem 0;
  background: var(--bg-card);
}

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

.cta-content h2 {
  color: var(--neon-green);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--neon-green);
  color: var(--bg-dark);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--neon-green-bright);
  color: var(--bg-dark);
}

.btn-secondary {
  background: var(--btn-dark);
  color: var(--text-main);
  border: 1.5px solid var(--btn-dark-border);
  padding: 0.8rem 2rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

