section,
.cover-hero,
.enhanced-pricing,
.no-risk-message,
.content,
.final-cta {
  margin-top: 100px;
  margin-bottom: 100px;
}

.cover-hero:first-of-type {
  margin-top: 60px; /* Hero starts slightly higher */
}

.cover-hero,
.enhanced-pricing,
.no-risk-message,
.content,
.final-cta {
  padding-top: 80px;
  padding-bottom: 80px;
}


/* ====================== BASE STYLES ====================== */
/* ====================== BEAUTY BRAND BACKGROUND ====================== */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: #2e003c;
  background: linear-gradient(180deg, #f5f0f0 0%, #faf7ff 45%, #f5fcff 100%);
  background-size: 200% 200%;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  animation: subtleShift 30s ease-in-out infinite alternate;
}

/* optional: tone down blobs a bit more */
.gradient-blob {
  opacity: 0.14;
  filter: blur(180px);
}



/* ====================== CONSISTENT SECTION SPACING ====================== */

section {
  margin: 0px auto;
  max-width: 1100px;
  padding: 0px 40px;
}

@media (max-width: 900px) {
  section {
    margin: 0px auto;
    padding: 20px 24px;
  }
}

/* ====================== HERO SECTION ====================== */
.cover-hero {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  border-radius: 32px;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  background: #ffffff; /* pure white */
  z-index: 1;
  box-shadow: 0 8px 32px rgba(123,47,247,0.06); /* slightly softer */
}

.cover-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  /* Brighter white-centered gradient with very subtle brand tint */
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.9) 0%,
    rgba(255,255,255,0.7) 40%,
    rgba(123,47,247,0.05) 70%,
    rgba(0,196,204,0.04) 100%
  );
  z-index: -1;
  filter: blur(40px); /* less haze, more clarity */
}

.cover-hero h1 {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  /* background: linear-gradient(120deg, #7B2FF7, #e24fff, #00C4CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  margin: 18px 0;
  color: #32323f;
}
.cover-hero h2 {
  font-size: 1.4em;
  font-weight: 600;
  color: #4B2450;
  margin-bottom: 20px;
}
.cover-hero p.byline {
  font-size: 1.10em;
  color: #6B49A3;
  font-weight: 500;
}
.cover-img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(160,27,143,0.15);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #6A11CB, #00C4CC);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18em;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 36px;
  cursor: pointer;
  box-shadow: 0 6px 26px rgba(106, 17, 203, 0.25),
              inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.5s ease, box-shadow 0.5s ease, color 0.4s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, #7B2FF7, #00E1D2);
  box-shadow: 0 10px 34px rgba(123, 47, 247, 0.35),
              inset 0 2px 1px rgba(255,255,255,0.2);
  color: #fff;
}


/* ====================== ENHANCED PRICING SECTION ====================== */
.enhanced-pricing {
  position: relative;
  text-align: center;
  padding: 90px 24px 100px;
  max-width: 1100px;
  border-radius: 28px;
  margin: 0 auto; /* keep consistent bottom gap */
  padding-top: 80px;
  padding-bottom: 80px;

  /* 💕 Gradient background that matches your "Choose Your Starter Kit" section */
  background: linear-gradient(135deg, #f7c1e0 0%, #b9a5ff 50%, #a6e7f7 100%);

  /* Adds subtle depth but keeps it light and airy */
  box-shadow: 0 8px 28px rgba(123,47,247,0.08);
  overflow: hidden;
  z-index: 1;
}

/* ✨ Soft glow from below (Framer-style) */
.enhanced-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.35), transparent 70%);
  z-index: 0;
}

/* HEADINGS */
.enhanced-pricing h2 {
  font-size: 2.6em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(123,47,247,0.25);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

/* SUBTEXT */
.enhanced-pricing p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1em;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* GRID LAYOUT */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 3;
}

/* CARD CONTRAST — keeps cards visible on gradient */
.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* Pricing Card Styling */
.pricing-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.6), rgba(255,255,255,0.25));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(123,47,247,0.1);
  transition: transform 0.35s cubic-bezier(.28,.75,.85,1.5), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 38px rgba(123,47,247,0.25);
}

.pricing-card .card-inner {
  position: relative;
  z-index: 2;
  padding: 40px 26px 46px;
  border-radius: inherit;
}

/* Pricing text */
.price-original {
  display: block;
  font-size: 1.1em;                   /* 🔹 larger text */
  color: rgba(123,47,247,0.55);
  text-decoration: line-through;
  font-weight: 600;                   /* 🔹 make it bolder */
  margin-bottom: 6px;
  opacity: 0.8;
  position: relative;
  top: 2px;
}

.price-current {
  display: block;
  font-size: 2.4em;                   /* slight bump to keep hierarchy */
  font-weight: 800;
  background: linear-gradient(120deg, #00C4CC, #7B2FF7, #FF4FD8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 1.4em;
  font-weight: 700;
  color: #2e003c;
  margin-bottom: 10px;
}
.pricing-card p {
  font-size: 1em;
  color: #5c4c7f;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Buttons */
.price-btn {
  display: inline-block;
  padding: 12px 36px;
  border: none;
  border-radius: 40px;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(135deg, #6A11CB, #00C4CC);
  color: #fff;
  box-shadow: 0 4px 20px rgba(106,17,203,0.25),
              inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.5s ease, box-shadow 0.5s ease, color 0.3s ease;
  cursor: pointer;
}

.price-btn:hover {
  background: linear-gradient(135deg, #7B2FF7, #00E1D2);
  box-shadow: 0 8px 28px rgba(123,47,247,0.35),
              inset 0 2px 1px rgba(255,255,255,0.2);
  color: #fff;
}

/* Primary Highlight Version (use for featured pricing) */
.price-btn.primary {
  background: linear-gradient(135deg, #7B2FF7, #00C4CC);
  color: #fff;
  box-shadow: 0 6px 26px rgba(123,47,247,0.25);
}

.price-btn.primary:hover {
  background: linear-gradient(135deg, #00C4CC, #7B2FF7);
  box-shadow: 0 10px 34px rgba(123,47,247,0.35);
}


/* Featured Card */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.pricing-card.featured {
  background: linear-gradient(140deg, #ffffff 0%, #fcf9ff 50%, #ffffff 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(123,47,247,0.25);
  transform: scale(1.05);
  border: none;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured:hover {
  transform: scale(1.07);
  box-shadow: 0 16px 46px rgba(123,47,247,0.3);
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #7B2FF7, #FF4FD8);
  padding: 8px 0;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 3px 10px rgba(123,47,247,0.3);
  z-index: 5;
}
.pricing-card.featured .card-inner {
  padding-top: 80px;
}

/* ====================== NO-RISK PURCHASE MESSAGE ====================== */

.no-risk {
  margin: 50px auto 40px;
}

.no-risk-message {
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  padding: 40px 50px;
  background: linear-gradient(135deg, #ffffff, #f9f8ff);
  border-radius: 24px;
  box-shadow: 0 6px 22px rgba(123,47,247,0.08);
  position: relative;
  overflow: hidden;
}

.no-risk-message::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123,47,247,0.1), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}
.no-risk-message::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,196,204,0.1), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.no-risk-inner {
  position: relative;
  z-index: 2;
}

.no-risk-message h3 {
  font-size: 1.9em;
  font-weight: 800;
  background: linear-gradient(120deg, #7B2FF7, #00C4CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.no-risk-message p {
  font-size: 1.15em;
  color: #4b3c70;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

.no-risk-message p strong {
  font-weight: 700;
  color: #2e003c;
}

.no-risk-message .highlight {
  background: linear-gradient(120deg, #7B2FF7, #00C4CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Subtle hover pulse (Framer-style detail) */
.no-risk-message:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(123,47,247,0.12);
  transition: all 0.3s ease;
}

.no-risk-message .fine-print {
  font-size: 0.9em;
  color: rgba(75, 60, 112, 0.75);
  margin-top: 14px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .no-risk-message {
    padding: 30px 24px;
    margin: 50px auto 70px;
  }
  .no-risk-message h3 {
    font-size: 1.6em;
  }
  .no-risk-message p {
    font-size: 1em;
  }
}

/* ====================== DIVIDER BETWEEN SECTIONS ====================== */

/* .section-divider {
  height: 1px;
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(123,47,247,0.2), rgba(0,196,204,0.2));
  opacity: 0.3;
} */

/* ====================== WHY CHOOSE THIS AUDIOBOOK ====================== */

.why-choose {
  background: linear-gradient(180deg, #fdf8ff 0%, #f2faff 100%);
  padding-top: 25px !important; /* was likely around 50px */
  margin-top: 0 !important;
}

.content.why-choose {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 70px 50px;
  max-width: 1050px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  overflow: hidden;
  margin: 0 auto; /* keep consistent bottom gap */
  padding-top: 80px;
  padding-bottom: 80px;
}


.content.why-choose::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(123,47,247,0.08), rgba(0,196,204,0.06), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.content.why-choose h2 {
  text-align: center;
  font-size: 2.2em;
  font-weight: 800;
  background: linear-gradient(120deg, #7B2FF7, #00C4CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

/* List Layout */
.content.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.content.why-choose li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.1em;
  color: #3f2c69;
  background: #faf8ff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(123,47,247,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content.why-choose li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(123,47,247,0.1);
}

.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  stroke: url(#grad);
  transition: transform 0.35s ease, opacity 0.3s ease, filter 0.4s ease;
  opacity: 0.9;
  filter: drop-shadow(0 0 2px rgba(123,47,247,0.15));
}

.content.why-choose li:hover .icon {
  transform: scale(1.12);
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(123,47,247,0.35)) 
          drop-shadow(0 0 12px rgba(0,196,204,0.25));
}

.content.why-choose li:hover .icon path {
  fill: url(#grad);
  fill-opacity: 0.15;
  transition: fill-opacity 0.4s ease;
}

.content.why-choose .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
  opacity: 0.9;
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .content.why-choose {
    padding: 60px 26px;
  }
  .content.why-choose h2 {
    font-size: 1.8em;
  }
  .content.why-choose li {
    font-size: 1em;
  }
}

/* === WHY CHOOSE LAYOUT WITH IMAGE === */
.why-choose-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.why-text {
  flex: 1 1 480px;
}

.why-image {
  flex: 1 1 400px;
  text-align: center;
}

.why-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(123,47,247,0.12);
  transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}

.why-image img:hover {
  transform: scale(1.03);
}

/* Align icons and text neatly */
.why-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.why-text ul li .icon {
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .why-choose-inner {
    flex-direction: column;
    text-align: center;
  }
  .why-image img {
    margin-top: 30px;
    max-width: 320px;
  }
  .why-text ul li {
    justify-content: flex-start;
    text-align: left;
  }
}

/* ====================== TESTIMONIAL SLIDER ====================== */


/* ====================== TESTIMONIALS POP SECTION ====================== */
.testimonials {
  position: relative;
  border-radius: 32px;
  padding: 100px 50px 120px;
  max-width: 1100px;
  margin: 100px auto;
  text-align: center;
  color: #2e003c;
  overflow: hidden;
  padding-bottom: 40px !important; /* was likely around 80–100px */
  margin-bottom: 0 !important;

  /* Frosted glass look */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(123,47,247,0.15);
}

.testimonial-section {
  margin: 0 auto; /* keep consistent bottom gap */
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Gradient glow behind section */
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(123,47,247,0.18), rgba(0,196,204,0.12), transparent 80%);
  z-index: -1;
  filter: blur(100px);
}

/* Section Title */
.testimonials h2 {
  font-size: 2.4em;
  font-weight: 700;
  /* background: linear-gradient(120deg, #7B2FF7, #00C4CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  margin-bottom: 60px;
  color: #32323f;
}

/* Slider Track */
.testimonial-slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.9s cubic-bezier(.25,.8,.25,1);
}

/* Individual Slide */
.testimonial-slide {
  min-width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s ease;
}

.quote {
  font-size: 1.25em;
  font-style: italic;
  line-height: 1.8;
  color: #3c2f63;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Person */
.person {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(123,47,247,0.2);
}

.person h4 {
  margin: 0;
  font-weight: 700;
  color: #2e003c;
}
.person span {
  display: block;
  font-size: 0.9em;
  color: #7a6e9b;
}

/* Dots */
.slider-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(123,47,247,0.25);
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: linear-gradient(120deg, #7B2FF7, #00C4CC);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(123,47,247,0.3);
}

/* Decorative gradient edges */
.testimonials::after {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
  z-index: -1;
  filter: blur(90px);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 70px 28px;
  }
  .testimonials h2 {
    font-size: 1.9em;
  }
  .quote {
    font-size: 1.05em;
  }
}


/* ====================== What's Included in the Nail Bar Side Hustle Kit? KIT DETAILS - CLEAN FLOATING STYLE ====================== */
.kit-details {
  position: relative;
  max-width: 1100px;
  background: none; /* ❌ remove the white box */
  box-shadow: none;
  border-radius: 0;    /* ↓ tighter top/bottom spacing */
  max-width: 1100px;
  margin: 0 auto; /* keep consistent bottom gap */
  padding-top: 10px;
  padding-top: 10px !important; /* was likely 60–80px */
  margin-top: 0 !important;
}

.kit-details::before {
  display: none; /* ❌ no gradient overlay */
}

.kit-details h2 {
  text-align: center;
  font-size: 2.4em;
  font-weight: 800;
  background: linear-gradient(120deg, #7B2FF7, #00C4CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 70px;
}

/* Grid layout remains the same */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 950px;
}

/* Each card now pops more against background */
.kit-grid li {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 30px 32px;
  box-shadow: 0 8px 32px rgba(123,47,247,0.08);
  border: 1px solid rgba(123,47,247,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kit-grid li:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 36px rgba(123,47,247,0.14);
  transition: all 0.35s ease;
}

/* --- Icon container --- */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.1));
  box-shadow: 0 6px 14px rgba(123,47,247,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: iconPop 0.6s ease forwards;
  backdrop-filter: blur(6px);
}

.kit-grid li:hover .icon-circle {
  transform: scale(1.12);
  box-shadow: 0 10px 26px rgba(123,47,247,0.25);
}

/* --- SVG Icons --- */
.kit-details li svg {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.kit-details li:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 10px rgba(123,47,247,0.25));
}

/* --- Entrance Animation --- */
@keyframes iconPop {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

/* --- If section has .reveal but NOT active, start hidden --- */
.reveal:not(.active) .kit-details li{
  opacity: 0;
  transform: translateY(30px);
}

/* --- Animate in when active --- */
.reveal.active .kit-details li{
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}


/* --- Staggered animation timing --- */
.kit-details li:nth-child(1) { transition-delay: 0.05s; }
.kit-details li:nth-child(2) { transition-delay: 0.1s; }
.kit-details li:nth-child(3) { transition-delay: 0.15s; }
.kit-details li:nth-child(4) { transition-delay: 0.2s; }
.kit-details li:nth-child(5) { transition-delay: 0.25s; }

/* Responsive */
@media (max-width: 768px) {
  .kit-details {
    padding: 0px 28px;
    margin: 0 auto;
  }
  .kit-details h2 {
    font-size: 1.9em;
  }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .content.why-choose {
    padding: 60px 28px;
  }
  .content.why-choose h2, .kit-details h2 {
    font-size: 1.8em;
  }
  .kit-details ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ====================== fINAL CTA ====================== */

/* ====================== FINAL CALL TO ACTION ====================== */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #f7c1e0 0%, #b9a5ff 50%, #a6e7f7 100%);
  color: #fff;
  border-radius: 28px;
  padding: 80px 30px;
  margin: 100px auto;
  max-width: 1000px;
  box-shadow: 0 10px 45px rgba(123,47,247,0.18);
  position: relative;
  overflow: hidden;
}

/* soft glow to add depth */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.35), transparent 70%);
  z-index: 0;
  filter: blur(60px);
  animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
  100% { opacity: 0.3; transform: scale(1); }
}

.final-cta h3 {
  font-size: 2.5em;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.final-cta p {
  font-size: 1.1em;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.12);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

/* CTA button */
.cta-button.final-btn {
  display: inline-block;
  padding: 18px 54px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #6A11CB, #00C4CC);
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(106,17,203,0.25);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.cta-button.final-btn:hover {
  background: linear-gradient(135deg, #7B2FF7, #00E1D2);
  box-shadow: 0 12px 40px rgba(123,47,247,0.35);
  transform: translateY(-4px);
}

.final-cta .alt-offer {
  margin-top: 16px;
  font-size: 1em;
  color: rgba(255,255,255,0.9);
}

.final-cta .alt-offer a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.final-cta .alt-offer a:hover {
  color: #7B2FF7;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
  border-radius: inherit;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta {
    padding: 60px 24px;
    margin: 70px auto;
  }
  .final-cta h3 {
    font-size: 1.6em;
  }
  .final-cta p {
    font-size: 1em;
  }
}


/* ====================== MODAL STYLES ====================== */
.modal { display: none; 
  position: fixed; 
  z-index: 200; 
  inset: 0; 
  background: linear-gradient(180deg, #fff 0%, #faf5ff 100%); 
  border: 1px solid rgba(123,47,247,0.15); 
  box-shadow: 0 20px 60px rgba(123,47,247,0.25); 
  backdrop-filter: blur(8px); justify-content: center; 
  align-items: center; 
  animation: fadeIn 0.3s ease forwards; }

.modal-content { 
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%); 
  border: 1px solid rgba(123,47,247,0.15); 
  border-radius: 22px; 
  max-width: 420px; 
  width: 90%; 
  padding: 42px 32px; 
  box-shadow: 0 20px 60px rgba(123,47,247,0.25); 
  text-align: center; 
  position: relative; 
  animation: scaleIn 0.3s ease forwards; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}


/* --- Mobile-specific fix for viewport height changes --- */
@media (max-width: 768px) {
  .modal {
    align-items: flex-start; /* prevents bounce on address bar resize */
  }

  .modal-content {
    margin-top: 10vh; /* keeps consistent spacing on small screens */
    margin-bottom: 10vh;
  }
}

@media (max-width: 400px) {
  .modal-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal-content input[type="email"] {
    width: 100%;
    max-width: none;
    padding: 14px 16px;
    margin: 0 auto;
  }
}

/* Optional smooth centering for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .modal {
    align-items: center;
  }
}

/* Headline with icon alignment */
.modal-content h3::before {
  content: "💅";
  display: block;
  font-size: 1.9em;
  text-align: center;
  margin-bottom: 8px;
  -webkit-text-fill-color: initial; /* ensures no gradient or masking */
  background: none;
  filter: none;
  animation: none; /* remove glow if you had it */
}

.modal-content p {
  color: #4b3c70;
  font-size: 1em;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 90%;
}

.modal-content input {
  width: 100%;
  padding: 14px;
  border: 1.5px solid rgba(123,47,247,0.2);
  border-radius: 40px;
  font-size: 1em;
  margin-bottom: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.modal-content input[type="email"] {
  width: 100%;
  max-width: 320px;
  padding: 14px 18px;
  border: 1.5px solid rgba(123,47,247,0.2);
  border-radius: 40px;
  font-size: 1em;
  text-align: center;
  outline: none;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
  box-sizing: border-box; /* ✅ ensures total width respects container */
}

/* Center the form contents */
#freebieForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

/* Input field centered and balanced */
#freebieForm input {
  width: 100%;
  max-width: 320px;
  padding: 14px 18px;
  border: 1.5px solid rgba(123,47,247,0.2);
  border-radius: 40px;
  font-size: 1em;
  text-align: center;
  outline: none;
  transition: all 0.3s ease;
  margin: 0 auto;
}

/* Button centered */
/* Button fix */
#freebieForm button {
  width: 100%;
  max-width: 260px;
  padding: 14px 0;
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, #7B2FF7, #00C4CC);
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 14px;
  box-shadow: 0 8px 28px rgba(123,47,247,0.25);
  transition: all 0.3s ease;
}

#freebieForm button:hover {
  background: linear-gradient(135deg, #8B3CFF, #00E1D2);
  box-shadow: 0 10px 34px rgba(123,47,247,0.35);
  transform: translateY(-2px);
}

#freebieForm input:focus {
  border-color: #7B2FF7;
  box-shadow: 0 0 10px rgba(123,47,247,0.15);
}

.modal-content small {
  display: inline-block;
  margin-top: 16px;
  color: #6b5d8b;
  font-size: 0.85em;
  text-align: center;
}

.modal-content small::before {
  content: "✅ ";
}


.close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.6em;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #7B2FF7;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



/* ====================== FOOTER ====================== */
footer {
  text-align: center;
  padding: 18px 0 12px;
  color: #555;
  font-size: 0.95em;
  margin-top: 80px;
}

/* ====================== ANIMATIONS ====================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ====================== RESPONSIVE DESIGN ====================== */
@media (max-width: 950px) {
  .enhanced-pricing, .content, .kit-details { max-width: 94vw; padding-left: 3vw; padding-right: 3vw; }
}

@media (max-width: 900px) {
  .enhanced-pricing,
  .no-risk-message,
  .content.why-choose,
  .testimonials,
  .final-cta {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media (max-width: 900px) {
  .cover-hero,
  .enhanced-pricing,
  .no-risk-message,
  .content.why-choose,
  .testimonials,
  .final-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


@media (max-width: 768px) {
  .pricing-grid { gap: 20px; }
}
@media (max-width: 600px) {
  .cta-button { padding: 12px 28px; font-size: 1em; }
  .content.why-choose h2, .kit-details h2, .enhanced-pricing h2 { font-size: 1.6em; }
  .gradient-blob { width: 200px; height: 200px; filter: blur(80px); opacity: 0.2; animation: none; }
  .enhanced-pricing { padding: 60px 18px; }
  .enhanced-pricing p { margin-bottom: 40px; }
  .pricing-card .card-inner { padding: 32px 22px; }
  .price-current { font-size: 1.8em; }
  .pricing-card p { font-size: 0.95em; }
}


/* ==========================================================
   ✨ GLOBAL SECTION RHYTHM SYSTEM
   Ensures consistent, elegant vertical spacing between sections
   ========================================================== */

/* ✅ Base spacing for all key sections */
.cover-hero,
.enhanced-pricing,
.no-risk-message,
.content.why-choose,
.testimonials,
.final-cta {
  margin-top: 100px;
  margin-bottom: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* 🧭 Hero section starts a bit higher */
.cover-hero:first-of-type {
  margin-top: 60px;
}

/* 💅 Lighten internal rhythm for visually “heavy” sections
   (gradient backgrounds and large cards) */
.enhanced-pricing,
.testimonials,
.final-cta {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* 🧩 Simplify sections that sit within white/neutral zones */
.no-risk-message,
.content.why-choose{
  margin-top: 90px;
  margin-bottom: 90px;
}

/* 🧈 Ensure even breathing room around section dividers */
/* .section-divider {
  margin: 80px auto;
  height: 1px;
  width: 85%;
  max-width: 1000px;
  background: linear-gradient(90deg, rgba(123,47,247,0.2), rgba(0,196,204,0.2));
  opacity: 0.3;
  border-radius: 2px;
} */

/* 📱 Responsive adjustments (mobile & tablet) */
@media (max-width: 900px) {
  .cover-hero,
  .enhanced-pricing,
  .no-risk-message,
  .content.why-choose,
  .final-cta {
    margin-top: 70px;
    margin-bottom: 70px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* .section-divider {
    margin: 60px auto;
  } */
}

/* 🦋 Optional: Slight compression for small mobile screens */
@media (max-width: 600px) {
  .cover-hero,
  .enhanced-pricing,
  .no-risk-message,
  .content.why-choose,
  .final-cta {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ====================== EMAIL OPT-IN (FREE PREVIEW) ====================== */
/* ========== OPT-IN SECTION ========== */
.email-optin {
  text-align: center;
  padding-bottom: 20px !important; /* was likely 50px */
  margin-bottom: 20px !important; 
  max-width: 680px;
  margin-top: 0 !important; /* removes extra space above heading */
  padding-top: 10px !important; /* keeps minimal breathing room */
}

.email-optin h3 {
  font-size: 1.9em;
  font-weight: 700;
  /* background: linear-gradient(120deg, #7B2FF7, #00C4CC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  margin-bottom: 14px;
  color: #525258;
}

.email-optin p {
  font-size: 1.05em;
  color: #4b3c70;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* === FORM FLEX CONTAINER === */
.optin-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 420px;
  margin: 0 auto;
}

/* === EMAIL INPUT === */
.optin-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0 20px;
  height: 56px; /* ⬆️ Increased height */
  border: 1.8px solid rgba(123,47,247,0.25);
  border-radius: 40px;
  font-size: 1.05em;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
}

.optin-form input[type="email"]:focus {
  border-color: #7B2FF7;
  box-shadow: 0 0 8px rgba(123,47,247,0.25);
}

/* === SUBMIT BUTTON === */
.optin-form button {
  padding: 0 32px;
  height: 56px; /* ⬆️ Match input height */
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, #7B2FF7, #00C4CC);
  color: #fff;
  font-weight: 700;
  font-size: 1.05em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(123,47,247,0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.optin-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(123,47,247,0.3);
}

/* === PRIVACY NOTE === */
.privacy-note {
  font-size: 0.85em;
  color: rgba(75, 60, 112, 0.8);
  margin-top: 18px;      /* reduced from 50px */
  padding-top: 0;        /* removed padding */
  line-height: 1.5;
  display: block;
  opacity: 0.9;
}

/* === RESPONSIVE FIXES === */
@media (min-width: 641px) {
  .optin-form {
    flex-wrap: nowrap;
  }
  .optin-form input[type="email"] {
    border-radius: 40px 0 0 40px;
  }
  .optin-form button {
    border-radius: 0 40px 40px 0;
  }
}



/* Floating “Divider Icon” (Most Elegant) */

/* ====================== SECTION CONNECTOR ====================== */
.section-connector {
  text-align: center;
  margin: -30px 0 -10px; /* connects sections smoothly */
  position: relative;
  z-index: 5;
  margin-bottom: 10px !important;
}

.connector-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: floatIcons 8s ease-in-out infinite alternate;
}

.connector-icon span {
  font-size: 2.2em;
  display: inline-block;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 0 10px rgba(123,47,247,0.15));
  cursor: default;
}

/* Hover glow */
.connector-icon span:hover {
  transform: scale(1.25) rotate(-6deg);
  filter: drop-shadow(0 0 12px rgba(123,47,247,0.45))
          drop-shadow(0 0 22px rgba(0,196,204,0.35));
}

/* Floating animation */
@keyframes floatIcons {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .connector-icon {
    gap: 22px;
  }
  .connector-icon span {
    font-size: 1.8em;
  }
}


/* ======= FINAL FIX FOR EXTRA TOP SPACE ======= */
@media (max-width: 900px) {
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
  }

  /* Make blobs purely decorative, not affect layout */
  .gradient-blob,
  .gradient-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: -2 !important;
    pointer-events: none;
  }

  /* Fix the hero placement */
  .cover-hero {
    margin-top: 0 !important;
    padding-top: 80px !important;
    position: relative;
    z-index: 1;
  }

  /* If there’s still a small offset, force hero to start at 0 */
  body > .cover-hero:first-of-type {
    margin-top: 0 !important;
    transform: translateY(-20px);
  }

  /* Ensure no invisible animation padding from reveal/fade */
  .reveal.fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== FIX: Remove top white gap on mobile (375px and below) ===== */
@media (max-width: 480px) {
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fff;
  }


  header {
    margin-top: 75px; /* creates space for the fixed */
    padding-top: 20px;
  }

  html {
    scroll-behavior: smooth;
  }
}

@media (max-width: 900px) {
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
  }
}

/* ===== Fix spacing below "By Tune Hustle" ===== */
.byline {
  margin-bottom: 8px; /* tighter gap for desktop */
}

@media (max-width: 480px) {
  .byline {
    margin-bottom: 4px !important; /* almost no space on mobile */
    font-size: 0.95em; /* optional: slightly smaller text */
  }

  .cover-hero .cta-button {
    margin-top: 6px !important; /* bring button closer */
  }

  .cover-hero h2 {
    margin-bottom: 10px !important; /* reduce space above "By Tune Hustle" */
  }
}

/* ==== FINAL SECTION SPACING FIX ==== */

/* Reduce spacing between Testimonials and Kit Details */
.testimonials {
  margin-bottom: 40px !important;  /* overrides global 100px */
  padding-bottom: 40px !important; /* tighter space below quote area */
}

.kit-details {
  margin-top: 0px !important;     /* overrides global 100px */
  padding-top: 30px !important;    /* tighter above kit heading */
}

@media (max-width: 900px) {
  .cover-hero,
  .enhanced-pricing,
  .no-risk-message,
  .content.why-choose,
  .testimonials,
  .final-cta {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}


@media (max-width: 480px) {

  /* ONLY fix on homepage */
  body.home{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 999;
  }

  /* Only move sections down on homepage */
  body.home header,
  body.home .cover-hero {
    margin-top: 80px;
    padding-top: 20px;
  }
}
