/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 1;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,191,255,0.12), transparent 60%);
  z-index: 2;
}

.hero-container {
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* TAG */
.tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(109,76,255,0.1);
  border: 1px solid rgba(109,76,255,0.3);
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

/* TITLE */
.hero-title {
  font-size: clamp(42px, 4.5vw, 90px);
  line-height: 1.1;
  font-weight: 800;
  color: white;
}

.hero-title .gradient-text {
  font-size: clamp(52px, 4.5vw, 95px);
}

.gradient-text {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.hero-subtext {
  max-width: 550px;
  font-size: clamp(18px, 1.8vw, 24px);
  color: white;
  margin-top: 20px;
  font-weight: 900;
  
}

/* NEW EXTRA SALES TEXT */
.hero-extra-text {
  margin-top: 40px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: white;
  max-width: 550px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-buttons { justify-content: center; }
}

.btn-primary {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(109, 76, 255, 0.35);
}

.btn-outline {
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 20px;
  border: 2px solid #ddd;
  background: transparent;
  cursor: pointer;
  transition: .25s ease;
  color: white;
}

.btn-outline:hover {
  background: rgba(21,31,157,0.18);
  border-color: #151f9d;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 80px; /* shifted down */
  flex-wrap: wrap;
}

.stat-number {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
}

.stat-label {
  font-size: clamp(14px, 1.4vw, 16px);
  color: white;
}

.divider {
  height: 40px;
  width: 1px;
  background: #ddd;
}

@media (max-width: 600px) {
  .divider { display: none; }
}

/* IMAGE */
.hero-image-wrapper {
  position: relative;
}

.hero-image-box {
  border: 1px solid rgba(109,76,255,0.25);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0,0,0,0.6);
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
}

.image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

/* NEW TEXT BELOW IMAGE */
.hero-image-text {
  margin-top: 20px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: white;
  text-align: center;
}

/* FLOATING GLOWS */
.float-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.circle-1 {
  width: 140px;
  height: 140px;
  top: -40px;
  right: -40px;
  background: rgba(125,76,255,0.4);
  animation: float1 4s infinite ease-in-out;
}

.circle-2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: -40px;
  background: rgba(255,0,150,0.3);
  animation: float2 5s infinite ease-in-out;
}



@media (max-width: 900px) {
  .circle-1, .circle-2 { display: none; }
}

/* ANIMATIONS */
@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes float2 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(25px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Prevent mobile overflow */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden !important;
}

.hero {
  max-width: 100%;
  overflow-x: hidden !important;
}

.hero-grid {
  max-width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
}


.bullet-text {
  display: flex;
  align-items: flex-start;
  gap: 10px; 
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: white;
}

.bullet-icon {
  width: 50px;  /* adjust size */
  height: 50px; /* adjust size */
  margin-top: 4px; /* align with text baseline */
}


















/* ================== FEATURES ================== */
.features {
  position: relative;
  padding: 40px 20px;
  background: #1d2432; /* dark background */
  overflow: hidden;
  color: #fff;
}

.features-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.features-tag {
  display: inline-flex;
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
  margin-bottom: 20px;
  color: #00ffff;
  font-weight: 600;
}

.features-title {
  font-size: clamp(40px, 6vw, 86px);
  margin-bottom: 18px;
  font-weight: 700;
  color: #fff;
}

.features-title .gradient-text {
  background: linear-gradient(90deg, #00ffff, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-subtext {
  color: white;
  font-size: clamp(18px, 2.5vw, 33px);
  max-width: 950px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* GRID */
.features-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
}

/* CARD */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px 30px;
  border-radius: 22px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: #ea0294;
  box-shadow: 0 25px 50px rgba(234, 2, 148, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(0, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
  color: #00ffff;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
}

.feature-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
}

.feature-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: clamp(14px, 1.2vw, 16px);
}






















/* ================== AI POWER SECTION ================== */
.ai-power {
  position: relative;
  padding: 20px;
  overflow: hidden;
  /* Optional Dark Background: Uncomment if needed */
  /* background: linear-gradient(135deg, #151f9d, #ea0294); */
  /* color: #ffffff; */
}

.ai-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff, #eef1ff, #ffffff);
  z-index: 0;
  /* Optional Dark Background */
  /* background: linear-gradient(135deg, #151f9d, #ea0294, #000000); */
}

.ai-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.ai-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.ai-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 320px;
  gap: 16px;
  margin-top: 250px;
}

.ai-image-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  
}



.ai-image {
  width: 100%;
  height: auto;
  display: block;
    object-fit: cover;   /* THIS fills the box */

}

.ai-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(59, 130, 246, 0.2), transparent);
}

/* ================== Floating Circles & Icons ================== */
.ai-float-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.ai-float-circle.circle-1 {
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(59, 130, 246, 0.2);
}

.ai-float-circle.circle-2 {
  bottom: -40px;
  right: -40px;
  width: 192px;
  height: 192px;
  background: rgba(236, 72, 153, 0.2);
}

/* Additional floating 3D/funnel style icons */
.ai-float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 2;
  animation: floatIcon 6s ease-in-out infinite alternate;
}

.ai-float-icon.icon-1 { top: 10%; left: 5%; background: url('assets/funnel1.png') no-repeat center/contain; }
.ai-float-icon.icon-2 { top: 30%; right: 10%; background: url('assets/funnel2.png') no-repeat center/contain; }
.ai-float-icon.icon-3 { bottom: 20%; left: 15%; background: url('assets/funnel3.png') no-repeat center/contain; }

@keyframes floatIcon {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.ai-content {
  flex: 1;
  min-width: 300px;
}

.ai-powered-tag {
  position: absolute;
  top: 20px;
  left: 24%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #151f9d, #ea0294);
  color: #fff;
  font-weight: 600;
  padding: 25px 53px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.9rem;
  animation: floatTag 3s ease-in-out infinite alternate;
  z-index: 5;
  font: bold 2.3rem 'Coming Soon', cursive;
}

@keyframes floatTag {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
  100% { transform: translateX(-50%) translateY(0); }
}

.ai-title {
  font-size: 4.6rem;
  font-weight: 800;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.ai-subtext {
  font-size: 1.3rem;
  color: black;
  margin-bottom: 60px; /* more gap from capability points */
  font: bold 1.5rem 'Coming Soon', cursive;
}

.ai-capabilities {
  display: grid;
  gap: 30px; /* increased spacing between points */
  grid-template-columns: 1fr;
}

.capability {
  display: flex;
  gap: 16px;
  padding: 1px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 20px;
  align-items: center;
}

.cap-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #3b82f6;
}

.capability:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.03);
}

.capability.animate {
  opacity: 1;
  transform: translateX(0);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .ai-grid { flex-direction: column-reverse; gap: 30px; }
  .ai-image-wrapper { margin-top: 100px; min-width: 80%; }
  .ai-powered-tag { top: -20px; left: 50%; padding: 20px 40px; font-size: 1.7rem; }
  .ai-title { font-size: 3rem; margin-bottom: 32px; }
  .ai-subtext { font-size: 1.1rem; margin-bottom: 50px; }
  .cap-icon { width: 40px; height: 40px; font-size: 2rem; }
  .capability { font-size: 18px; }
}

@media (max-width: 768px) {
  .ai-grid { flex-direction: column; gap: 20px; }
  .ai-image-wrapper { margin-top: 60px; min-width: 90%; }
  .ai-powered-tag { top: -10px;  left: 50%; padding: 15px 30px; font-size: 1.5rem; }
  .ai-title { font-size: 2.2rem; text-align: center; margin-bottom: 28px; }
  .ai-subtext { font-size: 1rem; text-align: center; margin-bottom: 40px; }
  .ai-capabilities { grid-template-columns: 1fr; gap: 20px; }
  .capability { flex-direction: row; gap: 12px; padding: 8px; }
  .cap-icon { width: 36px; height: 36px; font-size: 1.8rem; }

  .ai-float-circle.circle-1 { width: 120px; height: 120px; top: -20px; left: -20px; }
  .ai-float-circle.circle-2 { width: 140px; height: 140px; bottom: -20px; right: -20px; }
}

@media (max-width: 480px) {
  .ai-powered-tag { top: -10px; padding: 12px 25px; font-size: 1.3rem; }
  .ai-title { font-size: 1.8rem; margin-bottom: 24px; }
  .ai-subtext { font-size: 0.95rem; margin-bottom: 28px; }
  .ai-image-wrapper { margin-top: 50px; }
  .cap-icon { width: 32px; height: 32px; font-size: 1.6rem; }
  .capability { font-size: 16px; gap: 12px; }
}

/* Text points above image */
.ai-image-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  margin-top: -150px; /* moves it up into that empty space */
  z-index: 3;
  position: relative;
    margin-top: 60px !important;  /* creates breathing room below floating tag */
    margin-bottom: 20px !important;
}

.ai-point {
  font-size: 1.4rem;
  font-weight: 600;
  color: #151f9d;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.ai-image-wrapper {
    margin-top: 0 !important; /* prevents image from jumping too high */
  }



















/* ================== RANDOM 1 ================== */
.random {
  position: relative;
  padding: 6rem 2rem;
  background: #f8f9ff;
  /* matches hero section light background */
}

.random-main-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.random .blue-dot-border-pill {
  display: inline-block;
  border: 2px dotted #3b82f6;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.random .heading-1 {
  font-size: clamp(1rem, 2vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.random .heading-2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.random .brand-text {
  color: #151f9d;
  text-decoration: underline;
}

.random .para-1,
.random .para-2 {
  font-size: clamp(1.6rem, 1.2vw, 2rem);
  margin-bottom: 1.5rem;
  color: #111;
  line-height: normal;
}

.random .para-2.red-text {
  color: #ff0000;
  font-weight: 600;
}

.random1_image {
  width: 100%;
  max-width: 44rem;
  margin: 2rem auto;
  display: block;
  border-radius: 20px;
}



/* Floating Image Animation */
@keyframes floatSide {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.floating-side-image {
  position: absolute;
  right: 2%;
  top: 30%;
  width: 220px;
  animation: floatSide 5s ease-in-out infinite;
  z-index: 1;
}

/* Floating Boxes Animation */
.floating-box {
  position: absolute;
  background: linear-gradient(90deg, #151f9d, #ea0294);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  animation: floatSide 4s ease-in-out infinite;
}

.floating-box.left-top {
  left: 24%;
  top: 48%;
}

.floating-box.left-bottom {
  left: 71%;
  bottom: 20%;
}

/* Responsive */
@media (max-width: 768px) {
  .floating-side-image, .floating-box {
    display: none; 
  }
}


   









/* ================== RANDOM3 SECTION OVERRIDES ================== */ 
#random3 .para-1,
#random3 .para-2,
#random3 .para-3 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.7;
}

#random3 .heading-2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
}

#random3 .hand-font {
  font-size: clamp(3rem, 4vw, 3.8rem) !important;
}

#random3 .blue-border-pill {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem) !important;
  padding: 1rem 2.5rem !important;
}

#random3 span.brand-text {
  font-size: inherit;
}

#random3 .grid-2-col-item {
  font-size: clamp(1.3rem, 1.6vw, 1.6rem) !important;
  line-height: 1.8 !important;
   color: #333;
  font-weight: 500;
}

/* Increase image size slightly so balance stays good */
#random3 .image100 {
  max-width: 560px !important;
}


#random3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

#random3 .desktop-max-width,
#random3 .random2-main-container {
  max-width: 1400px !important;  /* wider container */
  width: 100%;
}

#random3 .grid-2-col-box {
  gap: 30px !important;
  grid-template-columns: 1fr 1fr;
    align-items: flex-start !important;
  gap: 40px;
}

/* Reduce paragraph max-width so they stretch */
#random3 p,
#random3 h2 {
  max-width: 100% !important;
}

#random3 .grid-2-col-item p {
  margin-bottom: 1.2rem;
}

#random3 .grid-2-col-item p.br-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  #random3 .grid-2-col-box {
    display: flex !important;
    flex-direction: column;
  }

  /* Image first */
  #random3 .grid-2-col-box > .grid-2-col-item:nth-child(2) {
    order: 1;
  }

  /* Text second */
  #random3 .grid-2-col-box > .grid-2-col-item:nth-child(1) {
    order: 2;
  }

  /* Better mobile spacing */
  #random3 .grid-2-col-item {
    margin-bottom: 20px;
  }

  #random3 .image100 {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px auto;
  }
}
























/* ================== RANDOM3 SECTION ================== */
.random3 {
  position: relative;
  padding: 6rem 2rem;
  background: #f8f8f8;
  /* matches hero section */
}

.random3 .random2-main-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Section Tag */
.random3 .hand-font {
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 1rem;
  color: #111;
}

/* Heading */
.random3 .heading-2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.random3 .brand-text {
  font-weight: 700;
}

/* Subtext */
.random3 .para-3 {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #555;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1.6;
}

/* Pill */
.random3 .blue-border-pill {
  display: inline-block;
  width: fit-content;
  margin: 0 auto 3rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 2px dotted #3b82f6;
  font-weight: 600;
  color: #151f9d;
  background: transparent;
}

/* Two-column grid */
.random3 .grid-2-col-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.random3 .grid-2-col-item {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  color: #333;
}

/* Image styling */
.random3 .image100 {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .random3 .grid-2-col-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .random3 .grid-2-col-item {
    margin: 0 auto;
  }

  .random3 .image100 {
    max-width: 80%;
  }
}

@media (max-width: 600px) {
  .random3 {
    padding: 4rem 1rem;
  }
}

.brand-text_2 {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

    text-shadow: 0 0 3px rgba(234, 2, 148, 0.35);

  font-size: 80px;
}














/* ================== VALUE SECTION ================== */

.mailer-rocket-value-section {
  --bg-color: #1a1a2e;
  --text-color: #ffffff;
  --accent-yellow: #ffd700;
  --accent-shadow: #ccaa00;
  --card-bg: #27273d;

  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
  overflow-x: hidden;
}

/* 2. Headline Styling */
.mailer-rocket-value-section .headline {
  font-size: 4.5em;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.3;
}

.mailer-rocket-value-section .headline strong {
  font-weight: 700;
  font-style: normal;
}

/* 3. The Main Pricing Card Container */
.pricing-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  /* Subtle shadow for depth */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 4. Card Header (Mailer Rocket & Price labels) */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: bold;
  padding: 25px 5px 15px 10px; /* top right bottom left */
  font-size: 2.3em;
}

.card-header .logo-name {
  display: flex;
  align-items: center;       /* vertically center everything */
  gap: 47px;                 /* space between icon and text */
  white-space: nowrap;       /* prevent wrapping */
}

.card-header .icon {
  display: flex;             /* treat as flex item */
  align-items: center;       /* vertical center inside itself */
  font-size: 1.5em;            /* bigger icon */
  line-height: 1;            /* avoid extra spacing */
}

.card-header .project-name {
  display: flex;             /* treat as flex item */
  align-items: center;       /* vertical center text */
  font-size: 3.5em;          /* scale text with icon */
  font-weight: bold;
  line-height: 1;            /* match icon height */
}



/* 5. Feature List Styling */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
padding: 16px 25px; /* more space around content */
  font-size: 6.1em; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Remove border from the last item */
.feature-list .feature-item:last-child {
  border-bottom: none;
}

.feature-name {
  text-align: left;
  flex-grow: 1;
    padding-left: 20px; /* add space from left edge */

  /* Allows the name to take up available space */
}

/* 6. Price Tag Styling (The cool part!) */
.feature-price {
  background-color: var(--accent-yellow);
  color: var(--bg-color);
  /* Dark text on yellow background */
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 5px;
  min-width: 80px;
  /* Ensures all tags have a consistent width */
  text-align: center;
  position: relative;
  box-shadow: 0 4px 0 var(--accent-shadow);
  transform: translateY(0);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  cursor: default;
  margin-right: 40px;
}

/* Optional: Add a slight press effect on hover/active for a cooler look */
.feature-price:hover {
  box-shadow: 0 2px 0 var(--accent-shadow);
  transform: translateY(2px);
}

.feature-price.priceless {
  font-style: italic;
  background-color: var(--accent-yellow);
  box-shadow: 0 4px 0 var(--accent-shadow);
}


/* 7. Total Value Footer Styling */
.total-value {
  font-size: 1.8em; /* bigger total value text */
  margin-top: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.total-value strong {
  font-weight: bold;
  color: var(--accent-yellow);
  font-style: italic;
  /* To match the '1237' in the image */
}

/* 8. Responsiveness (for smaller screens) */
@media (max-width: 480px) {
  .mailer-rocket-value-section .headline {
    font-size: 1.5em;
  }

  .card-header {
    padding: 12px 15px;
    font-size: 1em;
  }

  .feature-item {
    flex-direction: row;        /* keep name and price in the same line */
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }
 .feature-name {
    font-size: 0.9em;          /* slightly smaller text */
    padding-left: 5px;
  }


   .feature-price {
    font-size: 0.85em;         /* smaller price text */
    min-width: 60px;           /* smaller box */
    padding: 4px 10px;
    margin-right: 10px;         /* keep right margin */
  }

  .total-value {
    font-size: 1.2em;
  }
}


/* --- Text Gradient Effect for "Priceless" in the Headline --- */

.headline .gradient-text {
  /* Required to apply background properties to the text */
  display: inline-block;

  /* 1. Set the gradient as the background */
  background: linear-gradient(90deg, #151f9d, #ea0294);

  /* 2. Clip the background to the shape of the text */
  -webkit-background-clip: text;
  /* For Chrome, Safari */
  background-clip: text;

  /* 3. Make the text transparent so the background shows through */
  -webkit-text-fill-color: transparent;
  /* For Chrome, Safari */
  text-fill-color: transparent;

  /* Styling to make it look like the original image's Priceless text */
  font-weight: 700;
  font-style: normal;
  /* Override the headline's italic style */
}















/* ================== CTA SECTION ================== */

/* 1. CTA Section Container */
.cta-section {
  /* Keep existing styles: background, padding, color, font-family */
  background: linear-gradient(135deg, #4b0082, #8a2be2);
  padding: 60px 20px;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;

  /* === KEY CHANGE 1: Enable positioning for children === */
  position: relative;

  overflow: hidden;
  /* Prevent the image from causing horizontal scroll */
  min-height: 450px;
  /* Ensure space for the assets if content is short */
}

/* 2. Content Centering (important for responsiveness) */
.cta-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  /* To keep text above the 3D visual effects if you add them */
  z-index: 10;
}

/* 3. Red Urgency Banner */
.urgency-banner {
  background-color: #ff0000;
  /* Bright Red */
  color: white;
  padding: 8px 15px;
  font-size: 0.9em;
  font-weight: 500;
  max-width: 90%;
  margin: 0 auto 25px;
  border-radius: 5px;
  /* Small shadow to make it pop */
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  line-height: 1.4;
}

.urgency-banner strong {
  font-weight: 800;
}

/* 4. Main Headline */
.cta-headline {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.cta-headline strong {
  color: #ffd700;
  /* Yellow accent for emphasis */
}

.mini-text {
  font-size: 0.9em;
  opacity: 0.8;
  margin-bottom: 10px;
}

/* 5. Star Rating */
.star-rating {
  margin: 10px 0 20px;
  font-size: 1.5em;
  letter-spacing: 5px;
}

/* 6. The Glossy CTA Button */
.cta-button-link {
  display: inline-block;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.5em;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  /* Limit button width */
  margin: 20px 0;

  /* Base Gradient and 3D Shadow for the glossy effect */
  background: linear-gradient(180deg, #ff9900, #ff6600);
  /* Orange to Dark Orange */
  box-shadow: 0 7px 0 #cc5200;
  /* Darker orange for 3D effect */
  transition: transform 0.15s, box-shadow 0.15s;
}

/* Optional: Button Press Effect */
.cta-button-link:hover {
  background: linear-gradient(180deg, #ffad33, #ff7b33);
  /* Slightly brighter on hover */
}

.cta-button-link:active {
  /* "Presses" the button down */
  transform: translateY(4px);
  box-shadow: 0 3px 0 #cc5200;
}

/* 7. Fine Print and Payment Icons */
.fine-print {
  font-size: 0.75em;
  max-width: 60%;
  margin: 15px auto 10px;
  line-height: 1.5;
  opacity: 0.9;
}

.secure-icon {
  margin-right: 5px;
  font-size: 1em;
}

.payment-icons img {
  max-width: 400px;
  margin-top: 10px;
  margin-left: 207px;
  /* desktop only */
}

/* Tablet */
@media (max-width: 1024px) {
  .payment-icons img {
    max-width: 300px;
    margin-left: 120px;
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  .payment-icons img {
    max-width: 220px;
    margin-left: 0;
    /* center it */
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Small Mobile */
@media (max-width: 600px) {
  .payment-icons img {
    max-width: 180px;
  }
}

/* Extra Small Phones */
@media (max-width: 450px) {
  .payment-icons img {
    max-width: 150px;
  }
}



/* 8. Responsiveness */
@media (max-width: 600px) {
  .cta-section {
    padding: 40px 15px;
  }

  .cta-headline {
    font-size: 1.4em;
  }

  .cta-button-link {
    font-size: 1.2em;
    padding: 12px 20px;
    max-width: 90%;
  }

  .fine-print {
    max-width: 90%;
  }
}

/* 1. New container for all fine print */
.disclaimer-area {
  margin: 20px auto 10px;
  max-width: 600px;
}

/* 2. WarriorPlus Disclaimer Specific Styling */
.warriorplus-disclaimer {
  font-size: 0.7em;
  /* Very small */
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  /* Dimmed white/light gray */
  margin-bottom: 10px;
}

/* 3. Guarantee Fine Print Styling */
.guarantee-fine-print {
  font-size: 0.75em;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
  /* Remove default paragraph margins */
}





/* === SHOPPING CART 3D ASSET === */
.cta-asset.cart-image {
  position: absolute;
  right: 20px;
  bottom: 40px;
  z-index: 5;
  width: clamp(150px, 22vw, 350px);
  /* Auto-scales from small to large */
  height: auto;
  pointer-events: none;
  opacity: 0.95;
}

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
  .cta-asset.cart-image {
    right: 10px;
    bottom: 20px;
    width: clamp(130px, 28vw, 260px);
    opacity: 0.9;
  }
}

/* --- Large Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  .cta-asset.cart-image {
    right: -40px;
    /* Slightly pushed out so it doesn't overlap text */
    bottom: 10px;
    width: clamp(110px, 30vw, 200px);
    opacity: 0.55;
    /* Light fade but still visible */
  }
}

/* --- Small Mobile (≤ 600px) --- */
@media (max-width: 600px) {
  .cta-asset.cart-image {
    right: -60px;
    bottom: 5px;
    width: 120px;
    /* Very small and subtle */
    opacity: 0.35;
  }
}

/* --- Extra Small Phones (≤ 450px) --- */
@media (max-width: 450px) {
  .cta-asset.cart-image {
    display: none;
    /* Cleanest mobile experience */
  }
}












:root {
            /* Core Colors */
            --cs-bg-color: #000000;
            --cs-card-bg: #0f0f0f;
            --cs-text-main: #ffffff;
            --cs-text-muted: #9ca3af; /* gray-400 */
            --cs-border: #1f2937; /* gray-800 */
            
            /* Accent Colors */
            --cs-red: #ef4444;
            --cs-green: #22c55e;
            --cs-purple: #a855f7;
            
            /* Spacing */
            --cs-gap: 2rem;
        }

        /* Base Reset for this section */
        .cs-section {
            background-color: var(--cs-bg-color);
            color: var(--cs-text-main);
            font-family: 'Inter', sans-serif;
            padding: 5rem 1rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        .cs-section * {
            box-sizing: border-box;
        }

        /* --- Header Styling --- */
        .cs-header {
            text-align: center;
            max-width: 56rem; /* max-w-4xl */
            margin-bottom: 4rem;
        }

        .cs-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .cs-title {
                font-size: 3rem; /* md:text-5xl */
            }
        }

        /* Gradient Text Logic */
        .cs-gradient-text {
            background: linear-gradient(to right, #4ade80, #3b82f6); /* green-400 to blue-500 */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cs-subtitle {
            color: var(--cs-text-muted);
            font-size: 1.125rem;
            font-family: 'Permanent Marker', cursive;
            margin-top: 1.5rem;
        }

        /* --- Grid & 3D Container --- */
        .cs-grid-container {
            width: 100%;
            max-width: 80rem; /* max-w-7xl */
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            perspective: 1500px; /* Essential for 3D effect */
            padding: 1rem;
        }

        @media (min-width: 768px) {
            .cs-grid-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* --- Card Core Styling --- */
        .cs-card {
            background-color: var(--cs-card-bg);
            border: 1px solid var(--cs-border);
            border-radius: 0.75rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%; /* Ensures equal height in grid */
            position: relative;
            
            /* 3D Transition Properties */
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-style: preserve-3d;
            
            /* Resting State: Tilted and Scaled Down */
            transform: rotateX(5deg) rotateY(5deg) scale(0.95);
            opacity: 0.9;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
        }

        /* --- 3D Hover Effects --- */
        .cs-card:hover {
            transform: rotateX(0deg) rotateY(0deg) scale(1.02); /* Straighten & Pop */
            opacity: 1;
            z-index: 10;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
        }

        /* Color Modifiers */
        .cs-card--red:hover {
            box-shadow: 0 20px 50px -12px rgba(239, 68, 68, 0.3);
            border-color: rgba(239, 68, 68, 0.5);
        }
        .cs-card--green:hover {
            box-shadow: 0 20px 50px -12px rgba(34, 197, 94, 0.3);
            border-color: rgba(34, 197, 94, 0.5);
        }
        .cs-card--purple:hover {
            box-shadow: 0 20px 50px -12px rgba(168, 85, 247, 0.3);
            border-color: rgba(168, 85, 247, 0.5);
        }

        /* Top Line Accent */
        .cs-top-line {
            height: 0.5rem;
            width: 100%;
        }
        .cs-card--red .cs-top-line { background-color: var(--cs-red); }
        .cs-card--green .cs-top-line { background-color: var(--cs-green); }
        .cs-card--purple .cs-top-line { background-color: var(--cs-purple); }

        /* Card Content Area */
        .cs-card-content {
            padding: 2rem;
            flex: 1; /* Pushes footer down, fills height */
            display: flex;
            flex-direction: column;
        }

        /* Badge */
        .cs-badge {
            align-self: center;
            padding: 0.5rem 1.5rem;
            border-radius: 0.25rem;
            font-weight: 700;
            font-size: 1.125rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
            color: #fff;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .cs-card--red .cs-badge { background-color: var(--cs-red); box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.5); }
        .cs-card--green .cs-badge { background-color: var(--cs-green); box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.5); }
        .cs-card--purple .cs-badge { background-color: var(--cs-purple); box-shadow: 0 10px 20px -5px rgba(168, 85, 247, 0.5); }

        /* Typography inside Card */
        .cs-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .cs-card-desc {
            color: var(--cs-text-muted);
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* List Styling */
        .cs-list {
            list-style: none;
            padding: 0;
            margin: 0;
            flex: 1; /* Takes up available space */
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cs-list-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .cs-icon {
            font-size: 1.125rem;
            margin-top: 0.25rem;
        }
        .cs-card--red .cs-icon { color: var(--cs-red); }
        .cs-card--green .cs-icon { color: var(--cs-green); }
        .cs-card--purple .cs-icon { color: var(--cs-green); } /* Purple card uses green checks in image */

        .cs-item-text strong {
            display: block;
            color: #e5e7eb; /* gray-200 */
            margin-bottom: 0.25rem;
        }
        .cs-item-text span {
            font-size: 0.875rem;
            color: #6b7280; /* gray-500 */
            line-height: 1.4;
        }

        /* Footer/Quote */
        .cs-quote {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--cs-border);
            font-size: 0.75rem;
            color: #4b5563;
            font-style: italic;
        }

       












/* ================== STATS SECTION ================== */        

:root {
  --problem-red: #cc0000;
  --solution-green: #008000;
  --result-blue: #151f9d;
  /* Provided Blue/Purple */
  --result-pink: #ea0294;
  /* Provided Pink/Fuchsia */
  --text-color: #ffffff;
  --bg-color: #000000;
  /* Pure Black Background */
  --column-bg: #1a1a1a;
  /* Dark gray for column background */
  --shadow-color: rgba(0, 0, 0, 0.7);
}

/* 1. Main Section Styles */
.case-study-section {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', Arial, sans-serif;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  /* Important to hide the rotated edges of the 3D boxes */
}

/* 2. Header Styles */
.case-study-header {
  max-width: 900px;
  margin: 0 auto 50px;
}

.main-title {
  font-size: 2.2em;
  font-weight: 300;
  line-height: 1.3;
}

.main-title strong {
  font-weight: 700;
}

.subtitle {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

/* 3. Three-Column Grid (Flexbox for Layout & 3D Perspective) */
.three-column-grid {
  display: flex;
  gap: 65px;
  /* Reduced gap from 20px to 15px */
  max-width: 1200px;
  /* Adjusted from 1280px to ensure margin on wide screens */
  margin-left: 80px;

  /* === 3D EFFECT SETUP === */
  perspective: 1500px;
  align-items: flex-start;
}

.column {
  padding: 20px;
  text-align: left;
  background-color: var(--column-bg);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 30px var(--shadow-color);
  border: 1px solid transparent;
  transition: transform 0.5s ease;

  /* === BASE 3D POSITION === */
  transform: rotateX(5deg) translateZ(0);
}

/* Customize Column Widths (Solution Biggest, Problem Medium, Result Smallest) */
.problem-column {
  flex: 0 0 35%;
  /* Problem: Medium size */
  transform: rotateX(5deg) translateZ(20px);
}

.solution-column {
  flex: 0 0 45%;
  /* Solution: Biggest size */
  transform: rotateX(5deg) translateZ(40px);
}

.result-column {
  flex: 0 0 20%;
  /* Result: Smallest size */
  transform: rotateX(5deg) translateZ(0);
}

/* HOVER EFFECT: Makes the column flatten and move forward when hovered */
.column:hover {
  transform: rotateX(0deg) translateZ(60px) scale(1.02);
  box-shadow: 0 20px 50px var(--shadow-color);
  z-index: 10;
}


/* 4. Column Title (The colored banner at the top) */
.column-title {
  text-align: center;
  font-size: 1.3em;
  padding: 8px 15px;
  margin: -20px auto 20px;
  border-radius: 5px;
  max-width: fit-content;
  font-weight: bold;
}

/* ACCENT COLORS AND BORDER GRADIENTS */
.problem-column {
  border-image: linear-gradient(to bottom, var(--problem-red), transparent) 1;
}

.red-accent {
  background-color: var(--problem-red);
}

.solution-column {
  border-image: linear-gradient(to bottom, var(--solution-green), transparent) 1;
}

.green-accent {
  background-color: var(--solution-green);
}

.result-column {
  /* Using the requested gradient colors for the border */
  border-image: linear-gradient(to bottom, var(--result-blue) 0%, var(--result-pink) 70%, transparent 100%) 1;
}

.blue-accent {
  /* Using the requested gradient colors for the title bar */
  background-image: linear-gradient(90deg, var(--result-blue), var(--result-pink));
  color: var(--text-color);
}

/* 5. Content within the Columns */
.struggle-headline {
  font-size: 1.15em;
  font-weight: bold;
  margin-bottom: 15px;
}

.intro-text {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pain-points,
.solution-features,
.result-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pain-points li,
.solution-features li,
.result-metrics li {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 0.95em;
}

.cross-icon,
.check-icon {
  margin-right: 8px;
  font-size: 1.1em;
}

.pain-points li .cross-icon {
  color: var(--problem-red);
}

.solution-features li .check-icon,
.result-metrics li .check-icon {
  color: var(--solution-green);
}

.bottom-note {
  margin-top: 30px;
  font-style: italic;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.9);
}


/* 6. Responsiveness for mobile screens */
@media (max-width: 900px) {
  .case-study-section {
    padding: 40px 10px;
  }

  .three-column-grid {
    flex-direction: column;
    /* Stack columns vertically on smaller screens */
    perspective: none;
    /* Disable 3D effect on mobile for better flow */
  }

  .column {
    margin-bottom: 20px;
    max-width: 100%;
    /* Reset 3D transform for mobile stacking */
    transform: none !important;
    flex: 1 1 100% !important;
  }

  .column:hover {
    transform: none !important;
    box-shadow: 0 5px 20px var(--shadow-color);
  }

  .column-title {
    margin-left: auto;
    margin-right: auto;
  }
}


















/* Gradient Text (re-defined here for isolation) */
.gradient-text {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- STATS SECTION CSS --- */

/* Animation Keyframes */
@keyframes rotateY {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* Custom Icon Class for continuous rotation */
.icon-rotate {
  animation: rotateY 3s linear infinite;
}

/* Card visibility states (simulating framer-motion's initial and whileInView) */
.stat-card {
  /* Initial state matching { opacity: 0, scale: 0.8, rotateY: -30 } */
  opacity: 0;
  transform: translateY(30px) scale(0.8) rotateY(-30deg);
  /* Transition matching { duration: 0.6, type: "spring", stiffness: 100 } */
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
  transform-style: preserve-3d;
  /* Required for 3D rotation effects */
}

.stat-card.animate-in {
  /* Final state matching { opacity: 1, scale: 1, rotateY: 0 } */
  opacity: 1;
  transform: translateY(0) scale(1) rotateY(0deg);
}

/* Card Hover Effects matching whileHover */
.stat-card:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-value {
  /* Initial state matching { scale: 0 } */
  transform: scale(0);
  /* Transition matching { delay: 0.3, type: "spring" } */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;

  /* --- RESPONSIVE FONT SIZE FIX --- */
  /* Scale from 2.5rem (40px) on mobile up to 3.75rem (60px) on desktop */
  font-size: clamp(1.6rem, 4vw + 0.5rem, 3.75rem);
}

.stat-card.animate-in .stat-value {
  /* Final state matching { scale: 1 } */
  transform: scale(1);
}

/* Icon color definitions based on Tailwind syntax (bg-gradient-to-br) */
.color-cyan-blue {
  background-image: linear-gradient(to bottom right, #22d3ee, #3b82f6);
}

.color-purple-pink {
  background-image: linear-gradient(to bottom right, #c084fc, #ec4899);
}

.color-green-emerald {
  background-image: linear-gradient(to bottom right, #4ade80, #10b981);
}

.color-yellow-orange {
  background-image: linear-gradient(to bottom right, #facc15, #f97316);
}

.color-indigo-purple {
  background-image: linear-gradient(to bottom right, #818cf8, #a855f7);
}

.color-pink-rose {
  background-image: linear-gradient(to bottom right, #f472b6, #f43f5e);
}

.color-cyan-teal {
  background-image: linear-gradient(to bottom right, #22d3ee, #14b8a6);
}

.color-violet-purple {
  background-image: linear-gradient(to bottom right, #a78bfa, #9333ea);
}

.card-gradient {
  /* Simulating the glass/dark card background */
  background-color: rgba(31, 41, 55, 0.8);
  /* dark gray/blue semi-transparent */
}













/* ================== BEFORE/AFTER SECTION CSS ================== */
.gradient-text {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-gradient {
  background-color: rgba(31, 41, 55, 0.8);
  /* dark gray/blue semi-transparent */
}

:root {
  --color-primary: #3b82f6;
  /* Blue */
  --color-secondary: #ec4899;
  /* Pink */
  --color-background: #111;
  --color-text: #ffffff;
}

.before-after-section {
  background-color: var(--color-background);
  color: var(--color-text);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* Keyframes for the Before/After header entrance */
@keyframes header-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.before-after-header {
  opacity: 0;
  animation: header-fade-in 0.6s ease-out forwards;
}

/* Keyframes for the sad/happy wiggle effect */
@keyframes sad-wiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  75% {
    transform: rotate(-5deg);
  }
}

@keyframes happy-bounce {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  30% {
    transform: scale(1.2) rotate(10deg);
  }

  60% {
    transform: scale(1) rotate(-10deg);
  }
}

.before-emoji-wiggle {
  animation: sad-wiggle 2s ease-in-out infinite;
}

.after-emoji-bounce {
  animation: happy-bounce 2s ease-in-out infinite;
}

/* Keyframes for the Rotating Gradient Icon */
@keyframes rotate-360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.icon-rotate-infinite {
  animation: rotate-360 2s linear infinite;
}

/* Specific item backgrounds */
.bg-red-500\/10 {
  background-color: rgba(239, 68, 68, 0.1);
}

.border-red-500\/20 {
  border-color: rgba(239, 68, 68, 0.2);
}

.bg-primary\/10 {
  background-color: rgba(59, 130, 246, 0.1);
}

.border-primary\/20 {
  border-color: rgba(59, 130, 246, 0.2);
}

.hover\:border-primary\/50:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

/* Icon container colors */
.bg-red-500\/20 {
  background-color: rgba(239, 68, 68, 0.2);
}

.text-red-400 {
  color: #f87171;
}

.text-primary {
  color: var(--color-primary);
}

/* Icon background gradient */
.bg-gradient-primary-secondary {
  background-image: linear-gradient(to bottom right, var(--color-primary), var(--color-secondary));
}

/* Glow effect for After card */
.glow-effect {
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  transition: box-shadow 0.5s ease;
}

/* Before/After Card Layout */
.ba-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
}
















/* ================== PERFORMANCE SECTION CSS ================== */

:root {
    --color-primary: #3b82f6;
    --color-secondary: #ec4899;
    --color-background: #111;
    --color-text: #ffffff;
    --muted-foreground: #9ca3af;
}

.gradient-text {
    background: linear-gradient(90deg, #151f9d, #ea0294);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-gradient {
    background-color: rgba(31, 41, 55, 0.8);
    color: var(--color-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.metric-card {
    background-color: rgba(25, 30, 40, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.15); /* Light border matching primary color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@keyframes slide-fade-in {
    from {
        opacity: 0;
        transform: translate(var(--initial-x, 0), var(--initial-y, 0));
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.animate-entrance {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1), opacity 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translate(0, 0) !important;
}

.text-primary {
    color: var(--color-primary);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.bg-primary\/10 {
    background-color: rgba(59, 130, 246, 0.1);
}

.border-primary\/10 {
    border-color: rgba(59, 130, 246, 0.1);
}

.bg-gradient-to-t-background-to-transparent {
    background-image: linear-gradient(to top, var(--color-background) 80%, transparent);
}

/* --- 3D Funnel-Themed Floating Assets CSS --- */

/* General floating animation */
@keyframes float-funnel {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(10px, -20px) rotate(3deg) scale(1.02);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* Arrow animation: draw and flow along the path */
@keyframes dash-flow {
    0% {
        stroke-dashoffset: 600;
        opacity: 0.5;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -600;
        opacity: 0.5;
    }
}

.floating-assets-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
    perspective: 1000px;
    /* Needed for 3D rotation */
}

.floating-asset {
    position: absolute;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.7));
    opacity: 0.25;
    transition: opacity 0.5s;
}

/* Asset 1: Funnel Top (Large Polygon, Top Left) */
.asset-1 {
    top: 5%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(160deg, #3b82f6, #60a5fa);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    /* Trapezoid for funnel mouth */
    animation: float-funnel 10s ease-in-out infinite alternate;
    transform: rotateX(60deg) rotateZ(-10deg);
}

/* Asset 2: Curved Animated Arrow (Center) */
.asset-curved-arrow {
    top: 15%;
    left: 10%;
    width: 400px;
    height: 200px;
    opacity: 0.3;
    animation: float-funnel 15s ease-in-out infinite reverse;
    /* Rotate to give it perspective */
    transform: rotateX(45deg) rotateZ(10deg);
}

/* Styling the path for the animated flow effect */
.asset-curved-arrow #curve {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: dash-flow 6s linear infinite;
    /* Increased duration for smoother flow */
    animation-delay: 1s;
}

.asset-curved-arrow polyline {
    /* Ensure arrowhead fills properly and has a slight glow */
    filter: drop-shadow(0 0 5px #ec4899);
}

/* Asset 3: Conversion Target/Success Circle (Bottom Right) */
.asset-3 {
    bottom: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, #10b981, #065f46);
    /* Green/Success color */
    border-radius: 50%;
    animation: float-funnel 8s ease-in-out infinite reverse;
    transform: rotateX(20deg) rotateY(15deg) scale(1.1);
}

#performance_title_heading {
  font-size: 2.1rem;
  font-weight: 800;
  
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Makes gradient visible */
}


















/* ================== TESTIMONIALS SECTION CSS ================== */

/* --- CSS Variables --- */
:root {
  --color-primary: #3b82f6;
  /* Blue */
  --color-secondary: #ec4899;
  /* Pink */
  --color-background: #111;
  /* Dark background for sections */
  --color-text: #ffffff;
  --muted-foreground: #9ca3af;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass Card Background for testimonials */
.card-gradient {
  background-color: rgba(31, 41, 55, 0.8);
  color: var(--color-text);
  /* Simulating border-primary/10 on the dark background */
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: transform 0.3s ease;
}

.card-gradient:hover {
  transform: translateY(-5px);
}

/* Star Colors */
.fill-primary {
  fill: var(--color-primary);
}

.text-primary {
  color: var(--color-primary);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

/* Background for the section itself */
.testimonials-section-bg {
  background-color: var(--color-background);
  position: relative;
}

.testimonials-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Simulating bg-gradient-to-b from-muted/20 via-background to-muted/20 */
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 10%, rgba(17, 17, 17, 1) 70%);
  opacity: 0.8;
}

/* --- Animations --- */

/* Base class for elements waiting for observation */
.testimonial-item {
  opacity: 0;
  /* Initial state matching { opacity: 0, y: 30 } */
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.testimonial-item.animate-in {
  /* Final state matching { opacity: 1, y: 0 } */
  opacity: 1;
  transform: translateY(0);
}

/* Testimonial container styling for flex */
.testimonial-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  flex-grow: 1;
  /* Ensures the text takes up vertical space */
}













/* ================== SUCESS STORIES SECTION CSS ================== */
/* --- CSS Variables --- */
:root {
  --color-primary: #3b82f6;
  /* Blue */
  --color-secondary: #ec4899;
  /* Pink */
  --color-background: #111;
  /* Dark background for sections */
  --color-text: #ffffff;
  --muted-foreground: #9ca3af;
}


/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Background */
.card-gradient {
  background-color: #1d2432;
  color: var(--color-text);
  /* Simulating border-primary/10 on the dark background */
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: transform 0.3s ease;
}

.card-gradient:hover {
  transform: translateY(-5px);
}

/* Metric Colors */
.text-primary {
  color: var(--color-primary);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.border-border\/30 {
  border-color: rgba(255, 255, 255, 0.3);
}

/* Background for the section itself */
.case-studies-section-bg {
  background-color: #1d2432;
  position: relative;
}

.case-studies-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Simulating bg-gradient-to-b from-background via-secondary/5 to-background */
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.05) 10%, rgba(17, 17, 17, 1) 70%);
  opacity: 0.8;
}

/* --- Animations --- */

/* Base class for elements waiting for observation */
.case-study-item {
  opacity: 0;
  /* Initial state matching { opacity: 0, y: 30 } */
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.case-study-item.animate-in {
  /* Final state matching { opacity: 1, y: 0 } */
  opacity: 1;
  transform: translateY(0);
}

/* Quote styling */
blockquote {
  flex-grow: 1;
}

















/* --- Variables for easy color/font management --- */
:root {
  --color-primary: #151f9d;
  /* Deep Blue/Purple */
  --color-secondary: #ea0294;
  /* Vibrant Magenta/Pink */
  --color-text-light: #f5f5f5;
  --color-text-dark: #333;
  --color-card-background: #f0f0f0;
}

/* --- General Section Styling --- */
.comparison-section {
  font-family: Arial, sans-serif;
  /* Use your project's font */
  padding: 60px 20px;
  text-align: center;
  background-color: white;
  /* Match your page background */
}

.section-title {
  font-size: 5.5em;
  margin-bottom: 50px;
  color: var(--color-text-dark);
  font-weight: bolder;
  line-height: normal;
}

.highlight-text {
  font-weight: bold;
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.7em;
}


/* --- Comparison Container (Flexbox) --- */
.comparison-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Card Styling --- */
.comparison-card {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
}

.card-title {
  font-size: 2.8em;
  font-weight: bold;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 25px;
}

/* --- Specific Card Styles --- */
.before-card {
  background-color: var(--color-card-background);
  border: 2px solid #151f9d;
  /* Light Gray */
}

.before-card .card-title {
  background-color: #e0e0e0;
  /* Subtle Gray for the title box */
  color: var(--color-text-dark);
}

.after-card {
  background-color: #ffffff;
  /* White card */
  border: 2px solid var(--color-secondary);
}

.after-card .card-title {
  background-color: var(--color-primary);
  /* Deep Blue/Purple */
  box-shadow: 0 5px 15px rgba(21, 31, 157, 0.4);
}

/* --- Earnings Box Styling --- */
.earnings-box {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.before-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  color: var(--color-text-dark);
}

.after-box {
  background-color: #38b000;
  /* Use a distinct green for 'success' */
  color: var(--color-text-light);
  border: 1px solid #2a8a00;
}

.earnings-label {
  font-size: 1.9em;
  opacity: 0.8;
}

.earnings-amount {
  font-size: 2.5em;
  font-weight: 900;
  line-height: 1.2;
}

.earnings-date {
  font-size: 0.8em;
  opacity: 0.6;
}

/* --- Feature List Styling --- */
.feature-list {
  list-style: none;
  /* Remove default bullets */
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 10px 0;
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* Custom bullet for 'Before' list (dark) */
.before-card .feature-list li::before {
  content: "•";
  color: #888;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Custom bullet for 'After' list (primary color) */
.after-card .feature-list li::before {
  content: "✓";
  color: var(--color-secondary);
  /* Vibrant Magenta checkmark */
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
}

/* --- Responsiveness for smaller screens --- */
@media (max-width: 768px) {
  .comparison-container {
    flex-direction: column;
    align-items: center;
  }

  .comparison-card {
    margin-bottom: 20px;
    max-width: 90%;
  }

  .section-title {
    font-size: 2em;
  }
  .earnings-amount {
    font-size: 2em;
  }
}















/* --- Variables for colors and glow effects --- */
:root {
  --color-dark-bg: #0d0d1a;
  /* Very dark background */
  --color-primary-glow: #151f9d;
  /* Deep Blue/Purple */
  --color-secondary-glow: #ea0294;
  /* Vibrant Magenta/Pink */
  --color-text-light: #f5f5f5;
  --color-text-faded: #a0a0c0;
}

/* --- Section Container (random6) --- */
.random6 {
  font-family: Arial, sans-serif;
  /* Use your project's font */
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  /* Background Glow Effects matching the image */
  background-image: radial-gradient(circle at 30% 10%, rgba(21, 31, 157, 0.1), transparent 50%),
    radial-gradient(circle at 75% 85%, rgba(234, 2, 148, 0.1), transparent 70%);
}
.random6 .desktop-max-width {
  max-width: 1500px; /* Increased from 1200px to fill side gaps */
  width: 95%; /* Ensures a small safety margin on edges */
}
.desktop-max-width {
  max-width: 1200px;
  margin: 0 auto;
}

.random2-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Title and Pill Styling --- */
.glow-pill {
  font-size: 1.1em;
  font-weight: bold;
  padding: 8px 30px;
  border-radius: 50px;
  display: inline-block;
  color: var(--color-text-light);
  /* Neon Glow Effect (Primary Color) */
  background-color: var(--color-primary-glow);
  box-shadow: 0 0 15px var(--color-primary-glow), 0 0 30px rgba(21, 31, 157, 0.8);
  margin-bottom: 30px;
}

.heading-3 {
  font-size: 5.2em;       
  font-weight: 800;       
  line-height: 1.15;
  color: var(--color-text-light);
}


.t-center {
  text-align: center;
}

.brand-text {
  font-size: 1em;
  /* Matches the parent heading size */
  font-weight: bold;
  color: var(--color-secondary-glow);
  /* Subtle Text Glow Effect (Secondary Color) */
  text-shadow: 0 0 5px rgba(234, 2, 148, 0.7), 0 0 10px rgba(234, 2, 148, 0.5);
  display: inline-block;
  margin-top: 10px;
  /* Separates it slightly from the line above */
}

/* --- Content Layout (Text and Image) --- */
.grid-2-col-box {
  display: grid;
  grid-template-columns: 1fr 0.8fr; /* Text takes slightly more space than image */
  gap: 50px;
  
  /* Make the box fill the new wider container */
  width: 100%; 
  max-width: 100%; 
  margin: 50px auto;
  
  text-align: left;
  align-items: center;
}
.grid-2-col-item:nth-child(1) {
  padding-left: 0;
  margin-left: 0; /* Resetting the negative margin to fix centering */
}

.grid-2-col-item {
  padding: 10px;
}

.para-1 {
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--color-text-faded);
}

.para-1 strong {
  color: var(--color-text-light);
  font-weight: bold;
}

/* --- Image Styling --- */
.image100 {
  width: 100%;
  max-width: 550px; /* Allowed image to get bigger to match the wider layout */
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  /* When screen gets smaller, revert to equal columns */
  .grid-2-col-box {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Responsiveness for smaller screens --- */
@media (max-width: 992px) {
  .grid-2-col-box {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 40px;
    width: 90%;
    max-width: 600px; /* Limit width on tablet for readability */
    text-align: center; /* Center text on mobile */
  }

  .grid-2-col-item {
    padding: 0;
  }
   .grid-2-col-item:nth-child(1) {
    margin-left: 0;       /* reset so text doesn’t overflow */
  }

  /* Reverse order on mobile to put text above the image */
  .grid-2-col-box > .grid-2-col-item:nth-child(2) {
    order: -1; 
  }

  .heading-3 {
    font-size: 2em;
  }
   .point-line {
    text-align: left; /* Keep bullets left-aligned even on mobile */
    font-size: 1.1em; /* Slightly smaller text on mobile */
    padding-left: 45px;
  }
}

.point-line {
  position: relative;
  padding-left: 50px; /* Space for the icon */
  margin-bottom: 25px;
  font-size: 1.3em;
  line-height: 1.5;
  color: var(--color-text-light);
  font-weight: 700;
}

.point-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px; /* Aligns icon with text */
  width: 35px;
  height: 35px;
  background-image: url("assets/ai-funnel-3d-icon-png-download-8502232-removebg-preview.png");
  background-size: contain;
  background-repeat: no-repeat;
}
















:root {
  --color-primary: #151f9d; 
  --color-secondary: #ea0294;
  --color-dark-bg: #0d0d1a;
}

/* Inter font */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f3f4f6;
}

/* Bigger glowing pill */
.glow-pill-style {
  background-color: var(--color-primary);
  box-shadow: 0 0 20px var(--color-primary), 0 0 40px rgba(21, 31, 157, 0.8);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  
  font-size: 1.25rem;      /* Bigger text */
  padding: 0.9rem 2.3rem;  /* Bigger pill box */
  border-radius: 9999px;
  font-weight: 800;
}

/* Highlight text glow */
.glow-text-secondary {
  color: var(--color-secondary);
  text-shadow: 0 0 10px rgba(234, 2, 148, 0.7), 0 0 18px rgba(234, 2, 148, 0.5);
}

/* Bigger number circle */
.problem-number {
  color: var(--color-secondary);
  background: linear-gradient(135deg, rgba(234, 2, 148, 0.2), transparent 70%);
  border: 1px solid rgba(234, 2, 148, 0.4);
  box-shadow: 0 0 12px rgba(234, 2, 148, 0.25);

  width: 3.2rem;    /* Bigger circle */
  height: 3.2rem;
  font-size: 1.6rem;
  font-weight: 800;
}

/* Section BG */
.section-bg-dark {
  background-color: var(--color-dark-bg);
  background-image: radial-gradient(circle at 20% 10%, rgba(21, 31, 157, 0.13), transparent 50%),
                    radial-gradient(circle at 80% 90%, rgba(234, 2, 148, 0.13), transparent 70%);
}

/* Global text scale-up for this section */
.section-bg-dark h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem); 
  font-weight: 900;
}

.section-bg-dark h3 {
  font-size: 1.75rem;
  font-weight: 800;
}

.section-bg-dark p {
  font-size: 1.2rem;
  line-height: 1.65;
  font-weight: 600;
}















/*=================== RANDOM7 SECTION CSS ================== */

:root {
  --color-primary: #151f9d;
  /* Deep Blue/Purple */
  --color-secondary: #ea0294;
  /* Vibrant Magenta/Pink */
  --color-dark-bg: #0d0d1a;
  --color-text-faded: #a0a0c0;
  --color-text-light: #f5f5f5;
}

/* Section background with subtle radial gradients */
.section-bg-dark {
  background-color: var(--color-dark-bg);
  background-image: radial-gradient(circle at 20% 10%, rgba(21, 31, 157, 0.1), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(234, 2, 148, 0.1), transparent 70%);
  position: relative;
  overflow: hidden;
}

/* Floating ICONS container */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Base Funnel Shape */
.funnel-3d {
  width: 55px;
  height: 75px;
  position: absolute;

  background: linear-gradient(
    to bottom,
    rgba(234, 2, 148, 0.8),
    rgba(21, 31, 157, 0.8)
  );

  clip-path: polygon(
    50% 0%,
    100% 20%,
    75% 100%,
    25% 100%,
    0% 20%
  );

  border-radius: 6px;
  filter: drop-shadow(0 0 20px rgba(234, 2, 148, 0.35));

  transform-style: preserve-3d;
  opacity: 0.18;

  animation: floatIcon 7s infinite ease-in-out alternate;
}

/* Position + scale variation for each funnel */
.funnel-3d:nth-child(1) { left: 8%;  top: 60%; animation-delay: 0s;   transform: scale(1.2); }
.funnel-3d:nth-child(2) { left: 20%; top: 25%; animation-delay: 1.2s; transform: scale(0.9); }
.funnel-3d:nth-child(3) { left: 75%; top: 22%; animation-delay: 2.1s; transform: scale(1.1); }
.funnel-3d:nth-child(4) { left: 60%; top: 68%; animation-delay: 3.4s; transform: scale(0.95); }
.funnel-3d:nth-child(5) { left: 42%; top: 13%; animation-delay: 4.3s; transform: scale(1.25); }
.funnel-3d:nth-child(6) { left: 88%; top: 48%; animation-delay: 1.8s; transform: scale(0.85); }
.funnel-3d:nth-child(7) { left: 5%;  top: 15%; animation-delay: 2.8s; transform: scale(1.3); }
.funnel-3d:nth-child(8) { left: 32%; top: 80%; animation-delay: 3.9s; transform: scale(1.05); }
.funnel-3d:nth-child(9) { left: 90%; top: 12%; animation-delay: 0.7s; transform: scale(0.75); }
.funnel-3d:nth-child(10){ left: 55%; top: 90%; animation-delay: 5s;   transform: scale(1.4); }


/* Floating animation */
@keyframes floatIcon {
  0% {
    transform: translateY(0) rotateX(25deg) rotateY(15deg) scale(1);
    opacity: 0.18;
  }
  50% {
    transform: translateY(-40px) rotateX(15deg) rotateY(25deg) scale(1);
    opacity: 0.28;
  }
  100% {
    transform: translateY(0) rotateX(25deg) rotateY(15deg) scale(1);
    opacity: 0.18;
  }
}



/* --- STYLES FOR random7 SECTION --- */
.random7 {
  padding: 100px 20px;
}

.random7 {
  position: relative;
  z-index: 2;
}

.random2-main-container,
.grid-2-col-box,
.grid-2-col-item {
  position: relative;
  z-index: 5;
}
.desktop-max-width {
  max-width: 1200px;
  margin: 0 auto;
}

.random2-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Glow Pill */
.glow-pill {
  color: var(--color-secondary);
  background: none;
  text-shadow: 0 0 8px rgba(234, 2, 148, 0.7);
  border: 2px solid var(--color-secondary);
  padding: 8px 30px;
  border-radius: 50px;
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: 700;
}

.para-3 {
  font-size: 1.5em;
  color: var(--color-text-light);
  margin-bottom: 5px;
}

.heading-3 {
  font-size: 3em;
  font-weight: 800;
  color: var(--color-text-light);
  line-height: 1.1;
  margin-bottom: 5px;
}

.heading-1 {
  font-size: 1.25em;
  font-weight: 400;
  color: var(--color-text-faded);
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.5;
}

.t-center {
  text-align: center;
}

/* Make grid columns more balanced */
.grid-2-col-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* content column slightly bigger than image */
  gap: 40px; /* increase gap to spread content better */
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0 20px; /* adds space on both sides */
  align-items: start; /* align items to top */
  text-align: left;
}

/* Ensure paragraph stretches fully */
.grid-2-col-box .grid-2-col-item:last-child {
  max-width: none;
}

/* Add space above image (we’ll use a mini heading there) */
.above-image-points {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--color-text-light);
  font-weight: 600;
}


.image100 {
  width: 100%;
  height: auto;
  max-width: 450px;
  display: block;
  margin: 0 auto;
}

.para-1 {
  font-size: 1.55em;
  line-height: 1.6;
  color: var(--color-text-faded);
}




/* --- List Box Styling --- */
.list-box {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
}

.list-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.list-item svg {
  flex-shrink: 0;
}

.list-item-image {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px var(--color-primary));
  stroke: var(--color-secondary);
}

.list-item-text {
  color: var(--color-text-light);
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .random7 {
    padding: 50px 10px;
  }

  .heading-3 {
    font-size: 2em;
  }

  .para-3 {
    font-size: 1.3em;
  }

  .heading-1 {
    font-size: 1em;
  }
.grid-2-col-box {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 10px; /* ensures it fits on small screens */
    gap: 20px;
  }

  .grid-2-col-box > .grid-2-col-item:first-child {
    order: 1;
  }

  .grid-2-col-box > .grid-2-col-item:last-child {
    order: 0;
  }

  .para-1 {
    text-align: center;
  }

  .list-item {
    justify-content: center;
    text-align: left;
  }

  .list-item-image {
    margin-right: 10px;
  }
}
/* Mobile tweaks */
@media (max-width: 600px) {
  .funnel-3d {
    width: 40px;
    height: 55px;
    opacity: 0.14;
  }
}


.points-vertical {
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between boxes */
  max-width: 400px;
  margin: 0 auto;
}

.point-box {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.8), #0e0e1c);
  /* subtle gradient matching your section */
  color: var(--color-text-light);
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  font-weight: 600;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 15px;
}

.point-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .points-vertical {
    max-width: 90%;
    gap: 12px;
  }

  .point-box {
    font-size: 1em;
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .point-box {
    font-size: 0.95em;
    padding: 12px 16px;
  }
}
















/* --- CSS Variables --- */
:root {
  --color-primary: #3b82f6;
  /* Blue */
  --color-secondary: #ec4899;
  /* Pink */
  --color-background: #111;
  /* Dark background for sections */
  --color-text: #ffffff;
  --muted-foreground: #9ca3af;
}

/* Utility classes using variables */
.text-primary {
  color: var(--color-primary);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.bg-primary\/10 {
  background-color: rgba(59, 130, 246, 0.1);
}

.border-primary\/20 {
  border-color: rgba(59, 130, 246, 0.2);
}


/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Background */
.how-it-works-bg {
  background-color: var(--color-background);
  position: relative;
}

.how-it-works-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Simulating bg-gradient-to-b from-background via-muted/20 to-background */
  background: radial-gradient(circle at center, rgba(156, 163, 175, 0.2) 10%, rgba(17, 17, 17, 1) 70%);
  opacity: 0.5;
}

/* --- Animations --- */

/* Base class for entrance animation (simulating { opacity: 0, y: 30 }) */
.step-item {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
}

.step-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Header animation initial state */
.header-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.header-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Connector Line styling for visibility */
.connector-line {
  /* Mimics the React component's connector line on desktop */
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

/* Number opacity for Z-0 effect */
.step-number {
  color: rgba(59, 130, 246, 0.1);
  /* Primary/10 color */
}



















/* --- CSS Variables --- */
:root {
  --color-primary: #3b82f6;
  /* Blue */
  --color-secondary: #ec4899;
  /* Pink */
  --color-background: #111;
  /* Dark background for sections */
  --color-text: #ffffff;
  --muted-foreground: #9ca3af;
}

/* Utility classes using variables */
.text-primary {
  color: var(--color-primary);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #151f9d, #ea0294);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Background */
.card-gradient {
  background-color: rgba(31, 41, 55, 0.8);
  color: var(--color-text);
  /* Simulating border-primary/20 on the dark background */
  border: 2px solid rgba(59, 130, 246, 0.2);
}

/* Background for the section itself */
.comparison-section-bg {
  background-color: var(--color-background);
  position: relative;
}

.comparison-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Simulating bg-gradient-to-b from-muted/20 via-background to-muted/20 */
  background: radial-gradient(circle at center, rgba(156, 163, 175, 0.2) 10%, rgba(17, 17, 17, 1) 70%);
  opacity: 0.5;
}

/* --- Animations --- */

/* Header animation initial state (simulating { opacity: 0, y: 20 }) */
.header-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.header-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Card animation initial state (simulating { opacity: 0, y: 30 }) */
.card-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.card-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Feature row animation (simulating { opacity: 0, x: -20 }) */
.feature-row {
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, background-color 0.15s;
}

.feature-row.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Specific Icon Colors */
.icon-check-primary {
  color: var(--color-primary);
}

.icon-cross-muted {
  color: var(--muted-foreground);
}

.icon-cross-muted\/50 {
  color: rgba(156, 163, 175, 0.5);
}











:root {
  --primary-purple: #6a00ff;
  /* Deep purple for button/text */
  --primary-pink: #e91e63;
  /* Vibrant pink */
}


/* Custom gradient for the featured card */
.featured-gradient {
  background: linear-gradient(135deg, #4b0082, #9932cc, #ff007f);
  /* Darker purple to vibrant pink */
}

/* Custom button styling for the default cards */
.default-button {
  background: linear-gradient(to right, #6a00ff, #e91e63);
  transition: all 0.3s ease;
}

.default-button:hover {
  box-shadow: 0 10px 20px rgba(106, 0, 255, 0.4);
  transform: translateY(-2px);
}

/* Hover effect for the featured card */
.featured-card:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 10;
}







/* Custom vibrant gradient matching the Momentum card */
.cta-gradient {
  background: linear-gradient(90deg, #4b0082, #ff007f);
  /* Blue/Purple to Vibrant Pink */
}

/* Styling for the Get Started button */
.cta-button {
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 0, 127, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 0, 127, 0.5);
  /* Change text color on hover for visual feedback */
  color: #4b0082;
}

/* Adjusting text shadow for better readability against the gradient */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}








/* Gradient text */
.gradient-text_1 {
  background: linear-gradient(90deg, #4b0082, #ff007f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Card styling */
.card-gradient_1 {
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.card-gradient_1:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* Accordion trigger */
.accordion-trigger_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  transition: color 0.3s ease;
  user-select: none;
}

.accordion-trigger_1:hover {
  color: #6a00ff;
}

/* Icon rotation */
.accordion-icon_1 {
  transition: transform 0.3s ease;
}

.accordion-trigger_1[aria-expanded="true"] .accordion-icon_1 {
  transform: rotate(180deg);
}

/* Accordion content */
.accordion-content_1 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-bottom: 0;
  color: #6b7280;
  font-size: 1.2rem;
}

.accordion-content_1.open {
  max-height: 500px;
  padding-bottom: 1.5rem;
  transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

.accordion-content-inner_1 {
  padding: 0.5rem 1.5rem 0 1.5rem;
}

/* Muted text */
.text-muted-foreground_1 {
  color: #6b7280;
}











/* Section Background */
.final-choice {
  text-align: center;
  padding: 60px 20px;
  background-color: #000;
  /* black background */
}

/* Gradient Heading */
.final-choice h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #151f9d, #ea0294);
  /* your gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Choice Container */
.choice-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Choice Box */
.choice {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image Styling */
.image-box {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 5px solid;
  transition: transform 0.3s ease;
}

/* Left and Right Image Borders */
.left-choice .image-box {
  border-color: #5c6ef8;
  width: 320px;
  height: 220px;
}

.right-choice .image-box {
  border-color: #28e12f;
  width: 320px;
  height: 220px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-box:hover {
  transform: scale(1.05);
}

/* Description Boxes */
.description {
  padding: 20px;
  border-radius: 10px;
  font-size: 0.95em;
  line-height: 1.5;
}

.left-choice .description {
  background-color: #5c6ef8;
  color: white;
  border: 3px solid #5c6ef8;
}

.right-choice .description {
  background-color: #28e12f;
  color: white;
  border: 3px solid #28e12f;
}

/* Responsive Adjustments */
@media (max-width: 700px) {
  .choice-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}













.goodbye-problems {
  padding: 30px 10px;
  background: linear-gradient(135deg, #151f9d, #ea0294);
  /* gradient background */
  text-align: center;
}

.goodbye-problems .intro-text {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 10px;
  color: black;
  font-weight: bold;

}

.goodbye-problems .main-heading {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 40px;
  color: black;
}


/* Content Layout */
.goodbye-problems .content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* Image Styling */
.goodbye-problems .image-box {
  flex: 1;
  max-width: 400px;
  overflow: hidden;
  margin-bottom: 20px;
}

.goodbye-problems .image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Problem List Styling */
.problem-list {
  flex: 1;
  max-width: 500px;
  list-style: none;
  padding: 0;
  text-align: left;
}

.problem-list li {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
}

/* Checkmark styling */
.problem-list li::before {
  content: '✔';
  color: #28e12f;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  line-height: 1;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .goodbye-problems .content {
    flex-direction: column;
    align-items: center;
  }

  .problem-list {
    text-align: center;
  }

  .problem-list li {
    padding-left: 0;
  }

  .problem-list li::before {
    position: relative;
    left: 0;
    margin-right: 5px;
  }
}


/* Floating Brains Container */
.goodbye-problems {
  position: relative;
  overflow: hidden;
}

/* Common brain style */
.floating-brain {
  position: absolute;
  width: 50px; /* start small, will vary via animation */
  height: 50px;
  pointer-events: none;
  opacity: 0.8;
  animation: floatBrain 20s linear infinite;
}

/* Different sizes & speeds for variation */
.floating-brain.small { width: 30px; height: 30px; animation-duration: 25s; }
.floating-brain.medium { width: 50px; height: 50px; animation-duration: 20s; }
.floating-brain.large { width: 70px; height: 70px; animation-duration: 30s; }

/* Floating animation */
@keyframes floatBrain {
  0% {
    transform: translate3d(var(--x-start, 0px), var(--y-start, 0px), 0) rotate(0deg);
  }
  50% {
    transform: translate3d(calc(var(--x-start, 0px) + 20px), calc(var(--y-start, 0px) - 30px), 0) rotate(180deg);
  }
  100% {
    transform: translate3d(var(--x-start, 0px), var(--y-start, 0px), 0) rotate(360deg);
  }
}











.future-email {
  padding: 60px 20px;
  background: #11192a;
  text-align: center;
  color: #fff;
}

.future-email .intro-text {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 10px;
}

.future-email .main-heading {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}

.future-email .content {
  display: flex;
  justify-content: center;      /* Center everything nicely */
  align-items: flex-start;
  gap: 25px;                    /* Smaller gap */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: nowrap;            /* Keep them side by side */
}



.future-email .text-box {
  flex: 1.6;           /* stretch more than image */
  max-width: none;     /* remove restriction */
  text-align: left;
}

.future-email .text-box,
.future-email .image-box {
  flex: 1;
}


.future-email .text-box p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 1em;
}

/* Image Styling */
.future-email .image-box {
  flex: 1;
  max-width: 380px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.future-email .main-heading,
.future-email .intro-text {
  width: 100%;
}

.future-email .image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .future-email .content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .future-email .text-box {
    text-align: center;
  }
}


.text-box .line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.text-box .line img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.text-box .line p {
  margin: 0;
}








/* Act Fast Section */
.act-fast {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f2f2f2, #ffffff);
  color: #000;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.act-fast .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* 3D Floating Alert Icons */
.floating-alert {
  position: absolute;
  font-size: 90px;
  opacity: 0.4;
  filter: blur(1px);
  animation: alertFloat 8s infinite ease-in-out;
  transform-style: preserve-3d;
}

.alert-1 { top: 10%; left: 5%; animation-delay: 0s; }
.alert-2 { bottom: 20%; right: 10%; animation-delay: 2s; }
.alert-3 { top: 50%; right: 35%; animation-delay: 4s; }

@keyframes alertFloat {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-25px) translateX(20px) rotate(10deg); }
  100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

/* Main Content Layout */
.act-fast .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  transform: rotateX(2deg) rotateY(-2deg);
}

.act-fast .text-box {
  flex: 1 1 620px;
  background: #fff;
  padding: 25px 35px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transform: translateZ(40px);
}

.act-fast .text-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: red;
}

.act-fast .text-box p {
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Image Box */
.act-fast .image-box {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
  transform: translateZ(30px);
}

.act-fast .image-box img {
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .act-fast .content {
    flex-direction: column-reverse;
    text-align: center;
    transform: none;
  }

  .act-fast .text-box {
    transform: none;
  }

  .act-fast .image-box {
    margin-bottom: 25px;
    transform: none;
  }
}
.bullet-para {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.bullet-icon-2 {
  width: 42px;
  height: 42px;
  margin-top: 4px; /* vertically aligns with text */
}








/* --- Newsletter Section --- */
.newsletter-section {
  position: relative;
  padding: 8rem 1rem;
  background: linear-gradient(135deg, #ffffff, #eef1ff, #ffffff);
  overflow: hidden;
  text-align: center;
}

/* --- Icon Circle --- */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
}

.mail-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #3b82f6;
}

/* --- Heading --- */
.heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #111;
}

.gradient-text {
  background: linear-gradient(90deg, #3b82f6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Subtext --- */
.subtext {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 2rem;
}

/* --- Form --- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto 1rem auto;
}

.email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.375rem;
  background-color: #fff;
  color: #111;
}

.subscribe-btn {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background-color: #3b82f6;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.subscribe-btn:hover {
  background-color: #2563eb;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* --- Footer Text --- */
.footer-text {
  font-size: 0.875rem;
  color: #555;
}

/* --- Toast Message --- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3b82f6;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 100;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
}

/* --- Responsive --- */
@media (min-width: 640px) {
  .form {
    flex-direction: row;
  }

  .email-input {
    flex: 1;
  }
}








.team-section {
  text-align: center;
  padding: 60px 20px;
  background: rgb(36, 36, 36)
}

.main-heading {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 50px;
  color: #fff;
}

.team-profiles {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  color: white
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #ff00ff;
  /* You can customize the gradient border with JS if needed */
  object-fit: cover;
  margin-bottom: 15px;
}

.name {
  font-size: 1.1em;
  margin: 0;
}

.description {
  max-width: 800px;
  margin: 15px auto;
  line-height: 1.6;
  font-size: 1em;
  color: #f1f1f1;
}










.footer {
  background: rgba(255, 255, 255, 0.95);
  /* almost white */
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  /* subtle dark border */
  color: #333;
  /* dark text for readability */
  padding: 4rem 1rem;
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sparkles {
  width: 2rem;
  height: 2rem;
  color: #6366f1;
  /* keep accent color */
}

.gradient-text_2 {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-grid h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #111;
  /* dark heading */
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li a {
  color: #333;
  /* dark link */
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  border-radius: 4px;
}

.footer-grid ul li a:hover {
  color: #fff;
  background: linear-gradient(90deg, #6366f1, #ec4899);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #333;
  /* dark icons */
  transition: color 0.3s, transform 0.3s;
}

.icon:hover {
  color: #6366f1;
  transform: scale(1.1);
}

.footer p {
  margin: 0;
  font-size: 0.875rem;
  color: #555;
  /* slightly lighter for subtlety */
}











.t-center {
    text-align: center;
}

.everything-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.stripe {
    width: 100%;
    padding: 2rem 2rem; /* reduce from 20rem */
    background-color: blueviolet;
    color: #fff;
}























/*=============ai lifestyle css=================*/

.af-lifestyle-section {
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
    overflow: hidden; /* Prevents decorations from spilling */
}

.af-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- Header Styling --- */
.af-header {
    text-align: center;
    margin-bottom: 50px;
}

.af-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 700;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 15px;
}

.af-header h2 span {
    color: #e60000; /* Red color from image */
}

.af-subtext {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.af-transition-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    font-style: italic;
    margin-top: 20px;
}

/* --- Grid Styling --- */
.af-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
}

.af-card {
    text-align: center;
    position: relative;
}

.af-card h3 {
    font-size: 1rem;
    color: #1a1a1a;
    font-style: italic;
    font-weight: 500;
    margin-top: 20px;
}

/* --- The Monitor Component (Pure CSS) --- */
.af-monitor-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    z-index: 1;
}

.monitor-frame {
    background-color: #333436;
    border-radius: 12px 12px 0 0;
    padding: 12px 12px 0 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.monitor-screen {
    background-color: #000;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.monitor-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.monitor-stand {
    width: 60px;
    height: 25px;
    background-color: #333436;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.monitor-base {
    width: 120px;
    height: 8px;
    background-color: #333436;
    border-radius: 10px 10px 0 0; /* Slight curve */
    margin: 0 auto;
    position: relative;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}

/* --- Decorative Elements (Ditto Style) --- */

/* The Dotted Background Pattern */
.af-dots-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#d1dcf0 20%, transparent 20%);
    background-position: 0 0;
    background-size: 8px 8px;
    z-index: 0;
    opacity: 0.6;
}

/* The CSS Plant (Left Side) */
.af-plant {
    position: absolute;
    bottom: 5px; /* Aligned with bottom of monitor stand */
    left: -30px;
    width: 60px;
    height: 80px;
    z-index: 3;
}

.af-plant .pot {
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 30px;
    height: 25px;
    background-color: #343a40;
    border-radius: 2px 2px 8px 8px;
}

/* Plant Leaves using CSS borders */
.af-plant .leaf {
    position: absolute;
    background-color: #4a6bff; /* The blueish color from image */
    border-radius: 0 50% 0 50%;
}

.af-plant .l1 {
    width: 25px;
    height: 25px;
    bottom: 25px;
    left: 10px;
    transform: rotate(-45deg);
}

.af-plant .l2 {
    width: 20px;
    height: 20px;
    bottom: 40px;
    left: 25px;
    transform: rotate(10deg);
    border-radius: 50% 0 50% 0;
}

/* Add a pseudo-element for the 3rd leaf effect */
.af-plant::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #4a6bff;
    bottom: 30px;
    left: 40px;
    border-radius: 50% 50% 0 50%;
    transform: rotate(30deg);
}

/* --- Responsive Media Queries --- */

@media (max-width: 992px) {
    .af-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .af-grid {
        grid-template-columns: 1fr;
    }
    
    .af-header h2 {
        font-size: 1.8rem;
    }
    
    .af-plant {
        left: -10px; /* Pull plant tighter on small screens */
    }
}














/*=============refund policy css=================*/
/* --- AIFunnelX Guarantee Section CSS --- */

/* Import Poppins Font if not already done */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --af-blue: #151f9d;
    --af-pink: #ea0294;
}

.af-guarantee-section {
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
    /* Subtle background gradient using brand colors with low opacity */
    background: linear-gradient(180deg, rgba(21, 31, 157, 0.05) 0%, rgba(234, 2, 148, 0.05) 100%);
    overflow: hidden;
}

.af-section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Headline Styling */
.af-guarantee-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--af-blue);
    line-height: 1.2;
    margin-bottom: 40px;
}

.af-guarantee-headline span {
    color: var(--af-pink);
    font-style: italic;
}

/* --- The 3D Container Box --- */
.af-guarantee-box {
    /* Cool gradient background mixing the two brand colors */
    background: linear-gradient(135deg, rgba(21, 31, 157, 0.1) 0%, rgba(234, 2, 148, 0.15) 100%);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    /* 3D Layered Shadow Effect */
    box-shadow: 
        0 10px 30px -10px rgba(21, 31, 157, 0.3), /* Blue Shadow */
        0 20px 60px -20px rgba(234, 2, 148, 0.2),  /* Pink Shadow */
        inset 0 0 20px rgba(255, 255, 255, 0.5); /* Inner light for depth */
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px); /* Adds a modern frosted glass feel */
}

.af-guarantee-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- Left Column: Badge & Animation --- */
.af-badge-col {
    flex: 0 0 auto;
}

.af-floating-badge img {
    max-width: 280px;
    height: auto;
    display: block;
    /* Makes the golden badge pop with a shadow */
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
    /* Floating animation */
    animation: af-float 4s ease-in-out infinite;
}

@keyframes af-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* --- Right Column: Text Content --- */
.af-text-col {
    flex: 1;
    text-align: left;
    color: #333;
}

.af-text-col p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #2c3e50;
}

.af-text-col p strong {
    color: var(--af-blue);
    font-weight: 700;
}

.af-disclaimer {
    font-style: italic;
    font-size: 1rem;
    color: #555 !important;
    background: rgba(255,255,255,0.4);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--af-pink);
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .af-guarantee-headline {
        font-size: 2rem;
    }
    
    .af-guarantee-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .af-text-col {
        text-align: center;
    }

    .af-floating-badge img {
        max-width: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .af-guarantee-headline {
        font-size: 1.6rem;
    }
    
    .af-guarantee-box {
        padding: 30px 20px;
    }
    
    .af-text-col p {
        font-size: 1rem;
    }
}











/* =========================================
   STICKY PROMO BAR STYLES
   ========================================= */

.sticky-promo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000; /* Pure black background */
    color: #ffffff;
    z-index: 998; /* Sits below the toast notification */
    padding: 12px 0;
    font-family: 'Segoe UI', sans-serif; /* Matches your other fonts */
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2); /* Subtle shadow on top */
}

/* Container to align items horizontally */
.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Keeps content centered on big screens */
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
}

/* --- 1. LOGO STYLES --- */
.promo-logo img {
    height: 30px; /* Adjust based on your logo size */
    display: block;
}

/* --- 2. TEXT STYLES --- */
.promo-text {
    font-size: 26px;
    font-weight: 800; /* Bold */
    font-style: italic; /* Italic like the image */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap; /* Keeps text on one line if possible */
}

.urgent-red {
    color: #ff0000; /* Bright Red */
    margin-right: 5px;
}

.arrows {
    margin-left: 5px;
}

/* --- 3. BUTTON STYLES --- */
.promo-btn {
    background-color: #ff0000; /* Red button */
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 50px; /* Fully rounded pill shape */
    transition: transform 0.2s, background-color 0.2s;
    white-space: nowrap;
    border: 2px solid #ff0000;
}

.promo-btn:hover {
    background-color: #cc0000; /* Darker red on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.old-price {
    text-decoration: line-through; /* Strikethrough effect */
    opacity: 0.7;
    margin-right: 4px;
    font-weight: 400;
    color: #ffffff;
}

/* =========================================
   RESPONSIVE DESIGN (Mobile)
   ========================================= */
@media (max-width: 768px) {
    .sticky-promo-bar {
        padding: 10px 0;
    }
    
    .promo-content {
        flex-direction: column; /* Stack items vertically */
        gap: 10px;
    }

    .promo-text {
        font-size: 13px; /* Smaller text on phone */
    }

    .promo-logo img {
        height: 25px; /* Smaller logo */
    }
    
    .promo-btn {
        width: 100%; /* Full width button on mobile for easier tapping */
        text-align: center;
        padding: 12px 0;
    }
}