/* Section Base Styles */
.st-success-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow: hidden;
}

.st-success-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Layout */
.st-success-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 40px;
}

.st-success-title {
    font-size: clamp(2.5rem, 6vw, 6rem); /* Responsive typography */
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    flex: 2;
}

.st-success-info {
    flex: 1;
    max-width: 350px;
    text-align: right;
}

.st-success-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Visual Part */
.st-success-visual {
    position: relative;
    width: 100%;
}

.st-success-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; /* Subtle rounding as seen in image */
}

/* Rotating Badge Styling */
.st-success-badge {
    position: absolute;
    top: 50px; /* Adjusted to sit near the top right of the image */
    right: 50px;
    width: 140px;
    height: 140px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.st-success-badge:hover {
    transform: scale(1.05);
}

.st-success-svg {
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
}

.st-success-badge-text {
    fill: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.st-success-star {
    position: absolute;
    color: #fff;
    font-size: 24px;
}

/* Animations */
@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .st-success-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .st-success-info {
        text-align: left;
        max-width: 100%;
    }

    .st-success-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 20px;
    }
    
    .st-success-badge-text { font-size: 14px; }
}


:root {
  --dark-text: #2d2424;
  --lavender-bg: #e8eaf6;
  --transition: all 0.3s ease;
}

.escape-hero {
  position: relative;
  background-color: #ffffff;
  min-height: 80vh;
  padding: 80px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.escape-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

/* Left Content Styles */
.escape-content {
  flex: 1;
  max-width: 550px;
}

.escape-title {
  font-size: clamp(60px, 10vw, 110px);
  font-weight: 800;
  color: var(--dark-text);
  line-height: 0.85;
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.escape-title .italic-text {
  font-style: italic;
  font-weight: 300; /* Thinner weight for contrast */
  display: block;
}

.escape-description {
  font-size: 1.25rem;
  color: var(--dark-text);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 480px;
}

.btn-get-started {
  display: inline-block;
  background-color: var(--dark-text);
  color: #ffffff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-get-started:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Right Visual Mockup */
.escape-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.phone-mockup {
  width: 100%;
  max-width: 380px;
  /* Adjust positioning to allow overlap */
  margin-top: 40px;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Background Elements */
.lavender-base {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%; /* Covers bottom part of screen */
  background-color: var(--lavender-bg);
  z-index: 1;
  border-top-right-radius: 40px;
}

.decorative-stroke {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 80%;
  z-index: 2;
  pointer-events: none;
}

/* Responsive Scaling */
@media (max-width: 991px) {
  .escape-container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
  .escape-content {
    max-width: 100%;
    margin-bottom: 60px;
  }
  .escape-description {
    margin: 0 auto 40px;
  }
  .escape-visual {
    justify-content: center;
  }
  .phone-mockup {
    max-width: 300px;
  }
}



/* Hero Section Base */
.pg-hero-section {
    background-color: #061108; /* Deep dark green background */
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
    text-align: center;
}

.pg-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Visual Wrapper with Vertical Stripes */
.pg-visual-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 40px;
}

/* Background Stripes Effect */
.pg-bg-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(35, 84, 38, 0.2) 80px,
        rgba(35, 84, 38, 0.2) 160px
    );
    mask-image: linear-gradient(to bottom, white 50%, transparent);
}

.pg-main-image {
    max-height: 100%;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 80%, transparent);
}

/* Glassmorphism Cards */
.pg-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    width: 200px;
    text-align: left;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pg-card-left { top: 20%; left: 10%; }
.pg-card-right { top: 40%; right: 10%; }

.pg-icon-check {
    background: #ffffff;
    color: #061108;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
}

.pg-glass-card p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Text Content Area */
.pg-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.pg-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
    display: block;
    margin-bottom: 20px;
}

.pg-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.pg-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Buttons */
.pg-button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.pg-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pg-btn-primary {
    background-color: #bfff7d; /* Lime green */
    color: #061108;
}

.pg-btn-primary:hover {
    background-color: #d4ffab;
    transform: translateY(-2px);
}

.pg-btn-secondary {
    background-color: #ffffff;
    color: #061108;
}

.pg-btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.pg-footer-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .pg-main-title { font-size: 2.2rem; }
    .pg-glass-card { display: none; } /* Hide cards on mobile for space */
    .pg-visual-wrapper { height: 350px; }
    .pg-button-group { flex-direction: column; }
}

/* ==============================
   TOP 10 MLM Slider - Premium Card UI
============================== */

.mlm-slider-head{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin: 0 0 14px;
}

.mlm-nav-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mlm-nav-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.mlm-slider-dots{
  display:flex;
  gap:8px;
  align-items:center;
}
.mlm-dotbtn{
  width:8px;
  height:8px;
  border-radius:50%;
  border:0;
  background: rgba(0,0,0,.18);
  cursor:pointer;
}
.mlm-dotbtn.is-active{
  width:18px;
  border-radius:999px;
  background: rgba(0,0,0,.45);
}

.mlm-slider{
  width:100%;
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 1fr);
  gap:18px;
  overflow-x:auto;
  padding: 6px 2px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mlm-slider::-webkit-scrollbar{ display:none; }

/* Card shell */
.mlm-card-pro{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 35px rgba(0,0,0,.06);
  scroll-snap-align:start;
}

/* Cover image like reference card */
.mlm-cover{
  position:relative;
  height: 190px;
  background: linear-gradient(135deg, #dfe5ff, #f3f4f7);
  background-size: cover;
  background-position: center;
}
.mlm-cover-grad{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.55) 100%);
}

/* Top chips */
.mlm-topchips{
  position:absolute;
  top:14px;
  left:14px;
  right:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  z-index:2;
}
.mlm-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:#111;
  background: rgba(255,255,255,.9);
  border:1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(6px);
}
.mlm-chip-rank{
  background: rgba(255,255,255,.95);
}
.mlm-chip-rev{
  margin-left:auto;
}

/* Cover title bottom like reference */
.mlm-cover-title{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:2;
  color:#fff;
}
.mlm-cover-name{
  font-size:18px;
  font-weight:900;
  letter-spacing:.2px;
}
.mlm-cover-cat{
  margin-top:4px;
  font-size:13px;
  opacity:.92;
}

/* Body */
.mlm-body{
  padding:16px 16px 18px;
}

.mlm-row{
  margin-top:12px;
}
.mlm-row:first-child{ margin-top:0; }

.mlm-k{
  font-size:12px;
  font-weight:900;
  opacity:.70;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:6px;
}
.mlm-v{
  font-size:13.5px;
  line-height:1.5;
  opacity:.92;
}

.mlm-pill{
  display:inline-flex;
  font-size:12.8px;
  font-weight:900;
  padding: 10px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.05);
  line-height:1.2;
}

/* actions like reference */
.mlm-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
  padding-top:14px;
  border-top: 1px dashed rgba(0,0,0,.12);
}

.mlm-link{
  font-weight:900;
  text-decoration:none;
  font-size:13px;
  color:#3558ff;
}
.mlm-cta{
  text-decoration:none;
  background: #2d2424;
  color:#fff;
  padding: 10px 16px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  white-space:nowrap;
}

/* Mobile: full premium look */
@media (max-width: 768px){
  .mlm-slider{
    grid-auto-columns: 88%;
  }
  .mlm-cover{
    height: 170px;
  }
  .mlm-actions{
    flex-direction:column;
    align-items:flex-start;
  }
  .mlm-cta{
    width:100%;
    text-align:center;
  }
}

/* ==========================================
   MOBILE FIX: Ensure Top10 Slider is visible
========================================== */

/* Make the whole section flow vertically on mobile */
@media (max-width: 991px){
  .escape-hero{
    min-height: auto;          /* ✅ don't lock to 80vh */
    padding: 60px 0 40px;      /* ✅ give bottom space */
    display: block;            /* ✅ avoid flex centering hiding lower content */
  }

  .escape-container{
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 18px;
    gap: 18px;
  }

  .escape-content{
    max-width: 100%;
    text-align: center;
    margin: 0;
  }

  /* Put visual below or hide it */
  .escape-visual{
    justify-content: center;
    margin-top: 10px;
  }

  /* ✅ Lavender layer should be behind everything */
  .lavender-base{
    height: 55%;
    z-index: 0; /* ✅ behind */
  }

  .decorative-stroke{
    z-index: 0;
    opacity: .55;
  }

  /* ✅ Slider wrapper must be on top and visible */
  .escape-hero .escape-container + .escape-container{
    position: relative;
    z-index: 5;
    margin-top: 18px !important;
  }

  /* Slider itself */
  .mlm-slider{
    grid-auto-columns: 92%;
    padding-bottom: 22px;
  }

  /* Arrows and dots visible */
  .mlm-slider-head{
    position: relative;
    z-index: 6;
    margin-top: 10px;
  }
}

/* ================================
   Quick self-check list box (pg section)
   Paste at END of your CSS file
================================ */

/* Wrapper box (the div you added with inline styles) */
.pg-content-wrapper .pg-selfcheck-box{
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,0.035);
  border: 1px solid rgba(0,0,0,0.08);
}

/* Title */
.pg-content-wrapper .pg-selfcheck-title{
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 12px;
  font-size: 16px;
  color: #fff;
}

/* UL reset + spacing */
.pg-content-wrapper .pg-selfcheck-list{
  list-style: none;           /* ✅ remove default bullets */
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

/* Each LI as a "row" with custom bullet */
.pg-content-wrapper .pg-selfcheck-list li{
  position: relative;
  padding-left: 34px;         /* space for bullet */
  font-size: 15px;
  line-height: 1.65;
  color: #fff
}


/* Emphasis inside list */
.pg-content-wrapper .pg-selfcheck-list strong{
  font-weight: 800;
  color: #fff;
}

/* Bottom note text */
.pg-content-wrapper .pg-selfcheck-note{
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
}

/* Dark mode friendly (if your section has dark bg like screenshot) */
.pg-hero-section.is-dark .pg-selfcheck-box{
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}
.pg-hero-section.is-dark .pg-selfcheck-title{
  color: rgba(255,255,255,.92);
}
.pg-hero-section.is-dark .pg-selfcheck-list li{
  color: rgba(255,255,255,.85);
}
.pg-hero-section.is-dark .pg-selfcheck-list li::before{
  background: #b9ff6a;         /* highlight green bullet */
  box-shadow: 0 0 0 6px rgba(185,255,106,.14);
}
.pg-hero-section.is-dark .pg-selfcheck-list strong{
  color: #fff;
}
.pg-hero-section.is-dark .pg-selfcheck-note{
  color: rgba(255,255,255,.70);
}

/* Mobile */
@media (max-width: 768px){
  .pg-content-wrapper .pg-selfcheck-box{
    padding: 16px;
  }
  .pg-content-wrapper .pg-selfcheck-list li{
    font-size: 14px;
    padding-left: 32px;
  }
}
