* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #5737c4;
  --secondary: #cc2eb2;
  --accent: #6c5ce7;
  --dark: #1a1a2e;
  --darker: #16213e;
  --light: #f8f9fa;
  --text: #2d3436;
  --text-light: #636e72;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-hover: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--primary) 100%
  );
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
  --border-radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-premium {
  position: relative;
  min-height: 100vh;
  background: #fcfcfd;

  overflow: hidden;
  padding-top: 120px;
}

.hero-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(87, 55, 196, 0.06);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -5%;
  right: -8%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -5%;
  animation-delay: 2s;
  background: rgba(204, 46, 178, 0.05);
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 50%;
  animation-delay: 4s;
  background: rgba(108, 92, 231, 0.04);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
  }
}

/* .hero-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        } */

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  position: absolute;
  left: 0;
}

/* 992px and below */
@media (max-width: 991.98px) {
  .hero-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-badge {
    position: static; /* absolute remove */
    margin: 0;
    order: -1; /* heading ke upar */
  }

  .hero-title {
    text-align: center;
  }

  .hero-subheading {
  font-size: 20px !important;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 700;
}
}

.badge-thatswhy {
  display: inline-block;
  background: var(--gradient);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark);
  margin: 0;
  text-align: center;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheading {
  font-size: 1.7rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 700;
}



.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-light);
  /* line-height: 1.7; */
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--gradient);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(87, 55, 196, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(87, 55, 196, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(87, 55, 196, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(87, 55, 196, 0.05);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.hero-visual img {
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

.scroll-text {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.bottom-heading{
    font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
}

.heading-every-merchen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);

  margin: 0 auto;
}

/* Cards Grid - 4 columns above 1300px */
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1300px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Cards Grid - Auto fit */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card-premium {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-premium:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
  transition: var(--transition);
}

.card-premium:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}

.card-premium h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--dark);
}

.card-premium p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Dark Card */
.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.card-dark h3 {
  color: white;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* Quote Section */
.quote-section {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.quote-section blockquote {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
  opacity: 0.95;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.split-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Check List */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  color: var(--text-light); 
}

.check-list li {
  display: flex;
  align-items: flex-start; /* Center ki jagah */
  gap: 0.75rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7; /* Multi-line text ke liye */
}

.check-list li i {
  color: var(--primary);
  font-size: 0.9rem; /* Minus ke liye better size */
  flex-shrink: 0;
  margin-top: 0.45rem; /* Text ki first line ke sath align */
}

/* List Items Grid */
.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.list-item i {
  color: var(--primary);
  background: rgba(87, 55, 196, 0.08);
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Free Badge */
.free-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 2rem;
  /* margin-bottom: 1.5rem; */
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(87, 55, 196, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(87, 55, 196, 0);
  }
}

/* Big Quote Box */
.big-quote-box {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 5px;
}

.big-quote-box p {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.cta-premium {
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta-premium h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-premium p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn-cta-primary {
  background: white;
  color: var(--primary);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

/* Card Token Box */
.token-flow-box {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: inline-block;
  margin-top: 2rem;
}

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.stat-item p {
  font-weight: 600;
  color: var(--dark);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-block-100 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.content-block-100 p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  text-wrap: balance;
}
/* Content Block */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-block p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-premium {
    padding-top: 100px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
  #textspacetop{
  margin-top: 20px !important;
}
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
  .hero-premium {
    padding-top: 150px;
    text-align: center;
  }

  .free-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  /* margin-bottom: 1.5rem; */
  animation: pulse 2s infinite;
}



}

/* ============================================
   STOP SECTION - Complete CSS
   Fully Responsive
   ============================================ */

.stop-section {
  background: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stop-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(87, 55, 196, 0.015) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.stop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stop-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stop-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.stop-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0f0a1a;
  margin: 0;
  line-height: 1.2;
}

.stop-gradient-text {
  background: linear-gradient(135deg, #5737c4 0%, #cc2eb2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stop-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.stop-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(15, 10, 26, 0.06);
  transition: 0.35s ease;
  padding: 1.25rem;
}

.stop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(15, 10, 26, 0.12);
}

.stop-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5737c4, #cc2eb2);
}

/* Image */
.stop-image {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.4rem;
  background: #f5f5f7;
}

.stop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

/* Premium dark overlay */
.stop-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.05),
    transparent
  );
}

/* Hover Zoom */
.stop-card:hover .stop-image img {
  transform: scale(1.08);
}

.stop-card-text {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  color: #111827;
  text-align: center;
  margin: 0;
  padding: 0 0.5rem;
}

.stop-build {
  text-align: center;
  /* background: linear-gradient(135deg, rgba(87, 55, 196, 0.02) 0%, rgba(204, 46, 178, 0.02) 100%); */
  /* padding: 2.5rem 2rem; */
  border-radius: 24px;
  /* border: 1px solid rgba(87, 55, 196, 0.04); */
}

.stop-build-line1 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #0f0a1a;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  letter-spacing: -0.3px;
}

.stop-build-line2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #5737c4 0%, #cc2eb2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  margin: 0;
}

@keyframes stopBounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 992px) {
  .stop-cards-grid {
    gap: 1.25rem;
  }

  .stop-card {
    padding: 2rem 1.5rem;
  }

  .stop-card-text {
    max-width: 95%;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .stop-section {
    padding: 3.5rem 0;
  }

  .stop-container {
    padding: 0 20px;
  }

  .stop-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .stop-card {
    padding: 2rem 1.5rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .stop-card-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .stop-heading {
    margin-bottom: 2.5rem;
  }

  .stop-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .stop-build {
    padding: 2rem 1.5rem;
  }

  .stop-build-line1 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }

  .stop-build-line2 {
    font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  }

  .stop-arrow-wrap {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .stop-section {
    padding: 2.5rem 0;
  }

  .stop-container {
    padding: 0 16px;
  }

  .stop-card {
    padding: 1.75rem 1.25rem;
  }

  .stop-icon-wrap {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .stop-step-label {
    font-size: 0.65rem;
  }

  .stop-card-text {
    font-size: 0.95rem;
  }

  .stop-title {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }

  .stop-build {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  .stop-build-line1 {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  }

  .stop-build-line2 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

  .stop-arrow-circle {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .stop-cards-grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 360px) {
  .stop-card {
    padding: 1.5rem 1rem;
  }

  .stop-card-text {
    font-size: 0.85rem;
  }

  .stop-icon-wrap {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .stop-build-line1 {
    font-size: 1rem;
  }

  .stop-build-line2 {
    font-size: 1.2rem;
  }
}

@media (hover: none) {
  .stop-card:hover {
    transform: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  }

  .stop-card {
    cursor: default;
  }
}
