* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

/* Top Banner */
.top-bar {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('../images/dhruv.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 40px 0;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Logos */
.logos img {
  height: 170px;
  margin-right: 20px;
}

/* Heading */
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0;
}

.hero p {
  font-size: 18px;
  color: #ddd;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.cta-btn:hover {
  opacity: 0.9;
  color: #000;
}

.cta-price-old {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 500;
  margin-left: 4px;
}

.promo-code {
  margin-top: 14px;
  font-size: 14px;
  color: #d9d9d9;
  letter-spacing: 0.3px;
}

.promo-code strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Stats Cards */
.stats {
  position: absolute;
  bottom: 40px;
  width: 100%;
  z-index: 2;
}

.stat-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  font-size: 32px;
  margin-bottom: 5px;
}

.stat-card p {
  margin: 0;
  color: #ccc;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .hero h1 {
    font-size: 30px;
    margin: 14px 0;
  }
  .hero p {
    font-size: 15px;
  }
  .hero .logos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
  }
  .hero .logos img {
    height: auto;
    width: auto;
    max-width: 38%;
    max-height: 90px;
    object-fit: contain;
    margin-right: 0;
  }
  .hero .cta-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
  .hero .row.pt-5 {
    padding-top: 24px !important;
  }
  .stat-card {
    padding: 16px 12px;
  }
  .stat-card h3 {
    font-size: 22px;
  }
  .stat-card p {
    font-size: 13px;
  }
  .top-bar {
    font-size: 12px;
    padding: 6px 10px;
  }
  .marquee-content span {
    margin: 0 24px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 26px;
  }
  .hero .cta-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* Marquee */
.marquee-bar {
  background: #1c1a1a;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  margin: 0 40px;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Section */
.how-it-works {
  background: #000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Radial background effect */
.how-it-works::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Text Styles */
.small-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

.sub-title {
  font-size: 14px;
  color: #ccc;
}

.main-title {
  font-size: 40px;
  font-weight: 700;
  margin: 10px 0;
}

.description {
  color: #bbb;
  margin-bottom: 30px;
}

.big-highlight {
  font-size: 42px;
  font-weight: 800;
  margin-top: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Cards */
.work-card {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #fff;
  transition: 0.3s;
}

.work-card img {
  width: 100%;
  display: block;
}

/* Rotation effect */
.rotate-left {
  transform: rotate(-5deg);
}

.rotate-right {
  transform: rotate(5deg);
}

.card-text {
  margin-top: 15px;
  font-weight: 600;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }

  .main-title {
    font-size: 28px;
  }

  .big-highlight {
    font-size: 24px;
  }

  .rotate-left,
  .rotate-right {
    transform: none;
  }
}

/* Section */
.features-section {
  background: #000;
  padding: 100px 0;
}

/* Heading */
.feature-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

.feature-title {
  font-size: 36px;
  font-weight: 700;
}

/* Mobile Mockup */
.mobile-mockup {
  width: 260px;
  height: 520px;
  margin: auto;
}

.mobile-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Feature Box */
.feature-box {
  max-width: 400px;
}

.feature-box h4 {
  font-size: 22px;
  margin-top: 15px;
}

.feature-box p {
  color: #bbb;
  font-size: 14px;
}

/* Icons */
.icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.icon.pink {
  background: linear-gradient(135deg, #ff00cc, #cc00ff);
}

.icon.orange {
  background: linear-gradient(135deg, #ff9900, #ff6600);
}

/* Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }

  .feature-title {
    font-size: 24px;
  }

  .mobile-mockup {
    margin-bottom: 30px;
    width: 100%;
    max-width: 240px;
    height: auto;
  }

  .mobile-mockup img {
    width: 100%;
    max-width: 240px;
    height: auto;
  }

  .feature-box {
    text-align: center;
    margin: auto;
    max-width: 100%;
  }

  .testimonial-section,
  .results-section {
    padding: 60px 0;
  }
}

/* Common */
.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
}

/* Sections */
.testimonial-section,
.results-section {
  background: #000;
  padding: 100px 0;
}

/* Cards */
.testimonial-card,
.review-card {
  background: #0b0b0b;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #222;
  text-align: left;
  height: 100%;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.quote {
  color: #ccc;
  font-style: italic;
}

.testimonial-card h6,
.review-card h6 {
  margin-top: 15px;
  margin-bottom: 0;
}

.testimonial-card span {
  font-size: 13px;
  color: #888;
}

/* Stars */
.stars {
  color: #fff;
  margin-bottom: 10px;
}

/* Rating pill */
.rating-pill {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 18px;
  border-radius: 25px;
  background: #111;
  border: 1px solid #333;
  font-size: 14px;
}

/* Review source label */
.review-source {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  display: block;
}

/* Swiper spacing */
.swiper {
  padding-bottom: 20px;
}

/* Section */
.final-section {
  background: #000;
  padding: 100px 0;
}

/* Headings - final section uses same .section-title */

/* Comparison */
.comp-title {
  margin-bottom: 20px;
}

.comp-list {
  list-style: none;
  padding: 0;
}

.comp-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

/* Red X */
.comp-list.negative li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: #ff4d4d;
}

/* Green Check */
.comp-list.positive li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #00ff99;
}

/* Pricing */
.pricing-wrapper {
  display: flex;
  justify-content: center;
}

/* Glow Card */
.pricing-card {
  width: 320px;
  padding: 40px 25px;
  border-radius: 20px;
  background: linear-gradient(145deg, #111, #1a1a1a);
  border: 1px solid #333;
  position: relative;
  box-shadow: 0 0 40px rgba(255,255,255,0.08);
}

/* Glow effect */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.2), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

/* Price */
.price {
  font-size: 48px;
  margin: 20px 0;
}

.price-old {
  font-size: 24px;
  text-decoration: line-through;
  opacity: 0.6;
  margin-left: 10px;
  font-weight: 400;
}

/* Features */
.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 20px 0;
}

.price-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.price-features li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #fff;
}

/* Button */
.buy-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  text-align: center;
}

.buy-btn:hover {
  opacity: 0.9;
  color: #000;
}

/* Featured */
.featured p {
  color: #aaa;
  margin-bottom: 15px;
}

.logos span {
  margin: 0 35px;
  color: #777;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .final-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .comparison {
    text-align: center;
  }

  .comparison .col-md-3 {
    margin-bottom: 24px;
  }

  .pricing-card {
    width: 100%;
    max-width: 360px;
    padding: 30px 20px;
  }

  .price {
    font-size: 36px;
  }

  .price-old {
    font-size: 18px;
  }

  .logos span {
    display: block;
    margin: 8px 0;
  }
}

/* FAQ Section */
.faq-section {
  background: #000;
  padding: 100px 0;
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
}

/* Accordion - needs !important to override Bootstrap */
.accordion-item {
  background: #0b0b0b !important;
  border: 1px solid #222 !important;
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  background: #0b0b0b !important;
  color: #fff !important;
  font-size: 16px;
  padding: 20px;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #111 !important;
  color: #fff !important;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background: #111 !important;
  color: #bbb;
  padding: 20px;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: url('../images/ctabg.png') center/cover no-repeat;
}

/* Dark overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

/* Text */
.cta-title {
  font-size: 48px;
  font-weight: 700;
}

.cta-sub {
  color: #ccc;
  margin: 15px 0 25px;
  font-size: 18px;
}

/* CTA Button override */
.cta-section .cta-btn {
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* Sticky Buy Bar */
.sticky-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b0b0b;
  border-top: 1px solid #222;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.sticky-buy-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-buy-info h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
}

.sticky-buy-info p {
  color: #9a9a9a;
  font-size: 14px;
  margin: 0;
}

.sticky-price {
  color: #ff3b2f;
  font-weight: 700;
  font-size: 18px;
}

.sticky-price-old {
  color: #9a9a9a;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 4px;
}

.sticky-buy-btn {
  background: #ff3b2f;
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: background 0.2s;
}

.sticky-buy-btn:hover {
  background: #e62f24;
  color: #fff;
}

body {
  padding-bottom: 96px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 26px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 16px;
  }

  .accordion-body {
    font-size: 14px;
    padding: 16px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-sub {
    font-size: 15px;
  }

  .cta-section .cta-btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: normal;
    display: inline-block;
    max-width: 100%;
  }

  .sticky-buy-bar {
    padding: 10px 12px;
    gap: 10px;
  }

  .sticky-buy-info {
    min-width: 0;
    flex: 1;
  }

  .sticky-buy-info h5 {
    font-size: 12px;
    margin-bottom: 2px;
    white-space: normal;
    line-height: 1.3;
  }

  .sticky-buy-info p {
    font-size: 11px;
    white-space: normal;
    line-height: 1.3;
  }

  .sticky-price {
    font-size: 14px;
  }

  .sticky-price-old {
    font-size: 11px;
  }

  .sticky-buy-btn {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  body {
    padding-bottom: 110px;
  }
}
