/* =========================
   1. ROOT & GLOBAL - New Design System (Green & Yellow Focus)
========================= */
:root {
  --color-primary-green:#4CAF50; /* Original Primary Green */
  --color-secondary-yellow:#FFC107; /* Original Secondary Yellow */
  --color-accent-fill:#388e3c; /* Darker Green for CTA Pop */
  --color-dark:#212529; /* Near-black for crisp text */
  --color-light-bg:#f7fbf7; /* Very soft light green background */
  --color-white:#ffffff;
  --color-muted:#495057;
  --max-width:1280px;
  --radius-smooth:12px;
  --shadow-subtle:0 2px 10px rgba(0,0,0,0.05);
  --shadow-deep:0 10px 30px rgba(0,0,0,0.1);
  --font-family:'Poppins',sans-serif;
  --fs-body:1.05rem;
  --fs-h1:clamp(3rem,5vw,4.5rem);
  --fs-h2:clamp(2.2rem,3.8vw,3.2rem);
  --fs-h3:1.6rem;
  --top-bar-height: 3rem; /* Height of the sticky top bar */
}

/* Logo */
.site-logo {
  height: 42px;
}

/* Hamburger Button */
.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    color: var(--color-dark);
  }

  .main-nav {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    background: #fff;
    padding: 1.2rem 0;
    border-top: 1px solid #ddd;
  }

  .main-nav.nav-open {
    display: flex;
  }

  .nav-cta {
    width: fit-content;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Floating WhatsApp Chat */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  pointer-events: all;
  z-index: 2;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: white;
}

.whatsapp-text-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 15s linear infinite;
  z-index: 1;
}

.whatsapp-text-circle svg {
  width: 100%;
  height: 100%;
  fill: var(--color-dark);
  font-size: 8.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.whatsapp-text-circle path {
  fill: none;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 15px;
    right: 15px;
    width: 110px;
    height: 110px;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  .whatsapp-text-circle svg {
    font-size: 10px;
  }
}

/* Typography Consistency */
h1,h2,h3,h4,h5{
  font-family:var(--font-family);
  font-weight:800;
  line-height:1.15;
}

p,label,li,small{
  font-family:var(--font-family);
  font-weight:400;
  line-height:1.7;
}

.btn,
.eyebrow-text,
.brand-title,
.card-badge-top{
  font-weight:700;
}

*,*::before,*::after{
  margin:0;padding:0;box-sizing:border-box;
}

html{scroll-behavior:smooth;}

body{
  font-family:var(--font-family);
  font-size:var(--fs-body);
  color:var(--color-dark);
  background-color:var(--color-white);
}

/* Layout helpers */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 2rem;
}

.section-padded{
  padding:5rem 0;
}

.section-color-soft{background-color:var(--color-light-bg);}

.content-two-col{
  display:grid;
  grid-template-columns:1fr;
  gap:3rem;
  align-items:center;
}

.feature-grid-3{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
}

@media (min-width:768px){
  .content-two-col{grid-template-columns:1fr 1fr;}
  .feature-grid-3{grid-template-columns:repeat(3,1fr);}
  .reverse-on-mobile{grid-template-areas: "col2 col1";}
  .reverse-on-mobile > div:nth-child(1) {grid-area: col1;}
  .reverse-on-mobile > div:nth-child(2) {grid-area: col2;}
}

@media (min-width:1024px){
  .content-two-col{gap:4rem;}
}

.center-block{text-align:center;}
.center-text-only{text-align:center;}
.center-cta-block{text-align:center; margin-top:3rem;}
.mt-sm{margin-top:.75rem;}
.mt-md{margin-top:1.5rem;}
.mt-lg{margin-top:3rem;}
.hidden{display:none!important;}

.analytics-chart-img{
  width:100%;
  height:auto;
  max-width:520px;
  border-radius:var(--radius-smooth);
  box-shadow:var(--shadow-subtle);
  border:1px solid rgba(0,0,0,0.06);
  margin-top:1rem;
}

html.fstf-modal-open,
html.fstf-modal-open body{
  overflow:hidden;
}

.fstf-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:4000;
}

.fstf-modal-overlay.open{
  display:flex;
}

.fstf-modal{
  width:100%;
  max-width:860px;
  background:var(--color-white);
  border-radius:16px;
  padding:26px 22px;
  box-shadow:var(--shadow-deep);
  position:relative;
  max-height:85vh;
  overflow:auto;
}

.fstf-modal h2{
  margin-top:0;
}

.fstf-modal h3{
  margin-top:1.2rem;
}

.fstf-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.12);
  background:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  font-weight:700;
  color:var(--color-dark);
}

/* Typography */
h1{
  font-size:var(--fs-h1);
  margin-bottom:1.25rem;
}

/* Make hero heading and layout slightly more compact so key text is above the fold */
.hero-impact h1{
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height:1.05;
  margin-bottom:0.9rem;
}

h2{
  font-size:var(--fs-h2);
  margin-bottom:1.5rem;
  text-align:left;
}

.section-title-center{text-align:center;}

h3{
  font-size:var(--fs-h3);
  margin-bottom:1rem;
  font-weight:700;
}

p{
  margin-bottom:1.2rem;
  color:var(--color-muted);
}

.text-accent{color:var(--color-primary-green);}
.text-accent-dark{color:var(--color-dark);}

.eyebrow-text{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.85rem;
  color:var(--color-primary-green);
  font-weight:700;
  margin-bottom:.5rem;
}

.eyebrow-text-dark{
  color:var(--color-dark);
}

.hero-subtitle{
  font-size:1.15rem;
  font-weight:500;
  color:var(--color-dark);
  margin-bottom:1.75rem;
}

.section-sub-center{
  max-width:800px;
  margin:0 auto 3rem;
  text-align:center;
  color:var(--color-muted);
}

.highlight-paragraph{
  font-size:1.2rem;
  font-weight:600;
  color:var(--color-primary-green);
}

.highlight-paragraph-small{
  font-weight:600;
  color:var(--color-dark);
}

/* Lists */
.check-list-modern{
  list-style:none;
  padding:0;
  margin:1.5rem 0 0;
}

.check-list-modern li{
  display:flex;
  align-items:flex-start;
  margin-bottom:1rem;
  font-weight:500;
  color:var(--color-dark);
}

.check-list-modern li::before{
  content:"✓";
  margin-right:.8rem;
  font-size:1.3rem;
  color:var(--color-primary-green);
  line-height:1.2;
}

/* Urgent bullets styling: slightly stronger weight and yellow accent */
.urgent-bullets{
  margin-top:1rem;
}
.urgent-bullets li{
  font-weight:700;
  color:var(--color-dark);
  margin-bottom:.8rem;
}
.urgent-bullets li::before{
  color:var(--color-secondary-yellow);
}

.check-list-modern.large-check li::before{font-size:1.6rem;}
.check-list-modern.small-check li{font-size:1rem;}
.check-list-modern.small-check li::before{font-size:1rem;}
.check-list-modern.center-list{text-align:left;}

.mini-icon-list{
  list-style:none;
  padding:0;
  margin:1rem 0 1.25rem;
}

.mini-icon-list li{
  display:flex;
  align-items:center;
  margin-bottom:.6rem;
  font-size:.95rem;
  color:var(--color-muted);
}

.mini-icon-list li::before{
  content:"•";
  margin-right:.75rem;
  font-size:1.5rem;
  color:var(--color-secondary-yellow);
  line-height:1;
}

.mini-icon-list.tight-list li{margin-bottom:.4rem;}


/* Buttons - Modern & Bold */
.btn{
  display:inline-block;
  padding:1rem 2.5rem;
  border-radius:var(--radius-smooth);
  border:none;
  cursor:pointer;
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
  transition:all .3s ease;
  text-align:center;
}

.btn-primary-modern{
  background-color:var(--color-primary-green);
  color:var(--color-white);
  box-shadow:0 6px 20px rgba(76,175,80,.3);
}

.btn-primary-modern:hover{
  background-color:#388e3c;
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(76,175,80,.4);
}

.btn-secondary-modern{
  background-color:var(--color-secondary-yellow);
  color:var(--color-dark);
  box-shadow:0 4px 15px rgba(255,193,7,.2);
}

.btn-secondary-modern:hover{
  background-color:#ffb300;
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(255,193,7,.3);
}

.btn-accent-fill{
  background-color:var(--color-accent-fill); /* Darker Green */
  color:var(--color-white);
  box-shadow:0 8px 25px rgba(56,142,60,.4);
  font-weight:800;
}

.btn-accent-fill:hover{
  background-color:#2e7d32;
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(56,142,60,.5);
}

.btn-ghost-link{
  background:transparent;
  color:var(--color-primary-green);
  border:none;
  padding:0;
  font-weight:600;
  font-size:1rem;
}

.btn-ghost-link:hover{
  text-decoration:underline;
  color:#388e3c;
  transform:none;
}

.btn-block-cta{
  width:100%;
}

.btn-large{
  padding:1.1rem 2.8rem;
  font-size:1.1rem;
}

.btn-extra-large{
  padding:1.4rem 3rem;
  font-size:1.25rem;
}

/* Sticky Top Bar */
.top-bar-sticky{
  position:sticky;
  top:0;
  z-index:1000;
  background-color:var(--color-accent-fill);
  color:var(--color-white);
  text-align:center;
  padding:.6rem 0;
  font-size:.95rem;
  box-shadow:var(--shadow-deep);
  height: var(--top-bar-height); /* Explicit height for the top bar */
}

.top-bar-sticky strong{font-weight:800;}

.top-bar-sticky a{
  color:var(--color-secondary-yellow);
  font-weight:800;
  text-decoration:underline;
  margin-left:.5rem;
}

@media (max-width: 768px){
  .top-bar-sticky{ text-align:right; }
  .top-bar-sticky .top-bar p{
    padding-left:7.25rem;
    padding-right:1rem;
  }
}

.top-bar {
  background: var(--color-primary);
  color: #fff !important;
}

.top-bar p, .top-bar a {
  color: #fff !important;
}

.logo-row img {
  height: 36px;
  object-fit: contain;
  opacity: .85;
  filter: grayscale(100%);
  transition: .3s ease;
}
.logo-row img:hover {
  opacity: 1;
  filter: none;
}


/* =========================
   NEW FIXED CORNER LOGO STYLES
========================= */
#fixed-corner-logo {
    position: fixed;
    /* Adjusted top to ensure the logo is fully visible and has space above it (Desktop) */
    top: 0.5rem; 
    left: 0;
    /* Increased size */
    width: 120px; 
    height: 120px; 
    z-index: 1001; 
    pointer-events: none; 
}

.logo-square-frame {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 5px; 
    background-color: var(--color-white); 
    border-radius: var(--radius-smooth);
    overflow: hidden;
    pointer-events: all; 
    
    /* Using multiple box-shadows for the colored tape border effect */
    box-shadow: 
        0 0 0 4px var(--color-primary-green), 
        0 0 0 8px var(--color-secondary-yellow), 
        var(--shadow-deep); 
    
    /* Position the logo to overlap the top bar and the hero section */
    /* The 50% shift ensures the center of the logo sits where the original hero content starts */
    position: absolute;
    top: var(--top-bar-height); 
    left: 1rem;
    transform: translateY(-50%); 
}

.f-logo-intro {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

@media (max-width: 768px) {
    #fixed-corner-logo {
        /* Adjusted size for mobile */
        width: 90px;
        height: 90px;
        /* Adjusted top to ensure space on mobile */
        top: 0.25rem;
    }
    .logo-square-frame {
        left: .5rem; 
        box-shadow: 
            0 0 0 3px var(--color-primary-green),
            0 0 0 6px var(--color-secondary-yellow),
            var(--shadow-deep);
        /* Positioning on mobile */
        top: var(--top-bar-height); 
    }
}

@media (min-width: 1024px) {
    /* Push the logo slightly into the white space for better visibility */
    .logo-square-frame {
        left: 2rem; 
    }
}
/* =========================
   END NEW FIXED CORNER LOGO STYLES
========================= */


/* Hero */
.hero-impact{
  padding:110px 0 3rem; /* Reduced from 130px to move content up */
  background:linear-gradient(135deg,rgba(76,175,80,.05) 0%,rgba(255,255,255,1) 80%);
}

@media (max-width: 768px) {
  .hero-impact {
    padding-top: 80px; /* Reduced from 100px for mobile */
  }
}

.hero-grid-layout{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
}

@media (min-width:1024px){
  .hero-grid-layout{
    grid-template-columns:1.5fr 1fr;
    align-items:flex-start;
  }
}

/* Key Value Callout */
.value-callout-card{
  background-color:var(--color-light-bg);
  border-radius:var(--radius-smooth);
  padding:1.5rem 1.5rem 1rem;
  margin:2rem 0;
  display:flex;
  flex-direction:column;
  gap:1rem;
  border:1px solid #c8e6c9; /* Light green border */
  max-width:450px;
}

.callout-price-group{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding-bottom:1rem;
  border-bottom:1px dashed #c8e6c9;
}

.old-price-strike{
  text-decoration:line-through;
  color:var(--color-muted);
  font-size:.9rem;
}

.new-price-large{
  font-size:2.8rem;
  font-weight:800;
  color:var(--color-primary-green);
  line-height:1.2;
}

.new-price-large small{
  font-size:.5em;
  font-weight:600;
  color:var(--color-muted);
}

/* Media Card with clear offer details */
.media-offer-card{
  background-color:var(--color-white);
  border-radius:var(--radius-smooth);
  padding:2rem;
  box-shadow:var(--shadow-deep);
  text-align:center;
  position:relative;
  z-index:2;
  border-top:5px solid var(--color-primary-green);
}

.dashboard-preview-img{
  max-width:500px;
  width:100%;
  height:auto;
  border-radius:6px;
  box-shadow:0 8px 25px rgba(0,0,0,.15);
  margin-bottom:1.5rem;
  border:3px solid var(--color-light-bg);
}

.card-badge-top{
  display:inline-block;
  padding:.3rem 1rem;
  border-radius:999px;
  background-color:var(--color-secondary-yellow);
  color:var(--color-dark);
  font-size:.85rem;
  margin-bottom:1rem;
}

.card-feature-list{
  text-align:left;
  margin:1.5rem 0;
}

.card-feature-list p{
  font-size:1rem;
  font-weight:500;
  color:var(--color-dark);
  margin-bottom:.5rem;
}

.tiny-note-sub{
  font-size:.85rem;
  color:var(--color-muted);
  margin-top:.75rem;
}

/* Trust Icons */
.trust-icons-row{
  margin-top:2rem;
}

.trust-text{
  font-size:.95rem;
  font-weight:500;
  color:var(--color-muted);
}

.logo-row-flat{
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  align-items:center;
  margin-top:.75rem;
  padding-left:1rem;
}

.logo-row-flat img{
  max-height:24px;
  opacity:.6;
  filter:grayscale(100%);
}

/* --- NEW DASHBOARD PREVIEW SECTION STYLES --- */
.dashboard-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dashboard-preview-grid {
    grid-template-columns: 1.2fr 1.5fr;
    gap: 5rem;
  }
}

.value-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.dashboard-image-block {
  position: relative;
  text-align: center;
}

.dashboard-full-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-smooth);
  box-shadow: var(--shadow-deep);
  border: 4px solid var(--color-white);
  max-width: 700px; /* Optional: limit max size */
}

/* Arrow Styling (Desktop) */
.dashboard-arrow-desktop {
  position: absolute;
  top: 50%;
  right: -3rem; /* Position the arrow between the columns */
  width: 150px;
  height: 40px;
  transform: translateY(-50%);
  display: none; /* Hidden on mobile by default */
}

.dashboard-arrow-desktop svg {
  width: 100%;
  height: 100%;
}

/* Arrow Styling (Mobile) */
.dashboard-arrow-mobile {
  display: block; /* Shown on mobile by default */
  width: 30px;
  height: 50px;
  margin: 1.5rem auto;
}

.dashboard-arrow-mobile svg {
  width: 100%;
  height: 100%;
  transform: rotate(180deg); /* Rotate the default SVG for a down arrow */
}

@media (min-width: 1024px) {
  .dashboard-arrow-desktop {
    display: block; /* Show the right arrow on desktop */
  }
  .dashboard-arrow-mobile {
    display: none; /* Hide the down arrow on desktop */
  }
}
/* --- END NEW DASHBOARD PREVIEW SECTION STYLES --- */


/* Video Section */
.video-explanation h2{text-align:left;}

.video-container-responsive{
  position:relative;
  width:100%;
  padding-bottom:56.25%;
  border-radius:var(--radius-smooth);
  overflow:hidden;
  box-shadow:var(--shadow-deep);
}

.video-container-responsive iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* Cards (Diagnosis/Reality Check) */
.card-clean{
  background-color:var(--color-white);
  border-radius:var(--radius-smooth);
  padding:2rem 1.75rem;
  box-shadow:var(--shadow-subtle);
  height:100%;
}

.card-accent-left-blue{border-left:5px solid var(--color-primary-green);}
.card-accent-left-yellow{border-left:5px solid var(--color-secondary-yellow);}
.card-shadow{box-shadow:var(--shadow-deep);}

.card-negative{
  background-color:#fffde7; /* Lighter yellow */
  border-left:5px solid var(--color-secondary-yellow);
}

.card-note-sub{
  font-size:.9rem;
  font-style:italic;
  margin-top:1rem;
  color:#495057;
}

.diagnosis-intro-text{
  text-align:left;
  font-size:1.1rem;
  margin-bottom:1.5rem;
}

/* Feature/Pillar Cards */
.pillar-card{
  background-color:var(--color-white);
  border-radius:var(--radius-smooth);
  padding:2rem;
  box-shadow:var(--shadow-subtle);
  position:relative;
  overflow:hidden;
  transition:transform .3s ease,box-shadow .3s ease;
}

.pillar-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-deep);
}

.pillar-number{
  position:absolute;
  top:1.5rem;
  right:1.5rem;
  font-size:3.5rem;
  font-weight:900;
  color:rgba(76,175,80,.08);
  line-height:1;
}

.pillar-card-1{border-top:4px solid var(--color-primary-green);}
.pillar-card-2{border-top:4px solid var(--color-accent-fill);}
.pillar-card-3{border-top:4px solid var(--color-secondary-yellow);}

/* Registration/Form Section */
.section-registration-bg{background-color:#e9f6eb;} /* Very light green */

.step-progress-bar{
  max-width:600px;
  margin:0 auto 2.5rem;
  display:flex;
  justify-content:center;
  gap:1rem;
}

.step-item-active,
.step-item-inactive{
  flex:1;
  min-width:140px;
  padding:.7rem 1rem;
  border-radius:999px;
  text-align:center;
  font-size:.9rem;
  display:flex;
  flex-direction:column;
  gap:.2rem;
}

.step-item-active{
  background-color:var(--color-primary-green);
  color:var(--color-white);
}

.step-item-active span,
.step-item-active small{
  color:var(--color-white);
  font-weight:600;
}

.step-item-inactive{
  background-color:#e9ecef;
  border:1px solid #ced4da;
}

.step-item-inactive span{
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:500;
  color:var(--color-muted);
}

.step-item-inactive small{
  font-size:.75rem;
  color:#868e96;
}

.form-conversion-card{
  max-width:760px;
  margin:0 auto;
  background:var(--color-primary-green);
  color:var(--color-white);
  border-radius:var(--radius-smooth);
  box-shadow:0 15px 40px rgba(76,175,80,.25);
  padding:3rem 2.5rem;
}

.form-card-header{margin-bottom:2rem;}

.form-card-header h2{
  color:var(--color-white);
  font-size:2rem;
  text-align:center;
}

.form-card-header p{
  margin-bottom:0;
  color:#e4f5e4;
  font-size:1rem;
  text-align:center;
}

.form-group-modern{margin-bottom:1.5rem;}

.form-group-modern label{
  display:block;
  margin-bottom:.5rem;
  font-weight:600;
  font-size:1rem;
  color:var(--color-white);
}

.form-conversion-card input,
.form-conversion-card select,
.form-conversion-card textarea{
  width:100%;
  padding:1rem;
  border-radius:8px;
  border:none;
  font-family:var(--font-family);
  font-size:1rem;
  background:#ffffff;
  color:var(--color-dark);
  transition:box-shadow .2s ease,transform .1s ease;
}

.form-conversion-card input:focus,
.form-conversion-card select:focus,
.form-conversion-card textarea:focus{
  outline:none;
  box-shadow:0 0 0 4px rgba(255,255,255,.5);
}

/* Payment Prompt (Step 2) */
.section-payment-bg{background-color:var(--color-light-bg);}

.payment-unlock-card{
  max-width:800px;
  margin:0 auto;
  background-color:var(--color-white);
  border-radius:var(--radius-smooth);
  padding:3rem 2.5rem;
  box-shadow:var(--shadow-deep);
  text-align:center;
  border-bottom:5px solid var(--color-secondary-yellow); /* Yellow bottom border */
}

.payment-unlock-card h2{text-align:center;}

.locked-content-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  margin-top:2.5rem;
  text-align:left;
}

.locked-feature-item{
  display:flex;
  align-items:flex-start;
  gap:1.2rem;
  padding:1rem 0;
  border-bottom:1px dashed #e9ecef;
}

.locked-feature-item:last-child{border-bottom:none;}

.lock-icon{
  font-size:1.8rem;
  line-height:1;
  margin-top:.1rem;
  color:var(--color-secondary-yellow);
}

.locked-text-title{
  font-weight:700;
  color:var(--color-dark);
  font-size:1.1rem;
}

.final-price-action-box{
  margin-top:2.5rem;
  padding:2.5rem 2rem;
  border-radius:var(--radius-smooth);
  background-color:#fff8e1; /* Very light yellow */
  color:var(--color-dark);
  text-align:center;
  box-shadow:var(--shadow-deep);
}

.price-unlocked-large{
  display:block;
  font-size:3.5rem;
  font-weight:800;
  color:var(--color-primary-green);
  margin:.5rem 0 1.2rem;
}

.price-unlocked-large small{
  font-size:.4em;
  font-weight:500;
}

.tiny-note-bank{
  font-size:.9rem;
  margin-top:1.5rem;
  color:#495057;
}

/* Author */
.center-image-block{text-align:center;}

.author-photo-modern{
  max-width:300px;
  width:100%;
  height:auto;
  border-radius:50%;
  box-shadow:var(--shadow-deep);
  border:5px solid var(--color-white);
  outline:4px solid var(--color-primary-green);
}

.author-bio-block h2{text-align:left;}

.author-expertise-badges{margin-top:1.5rem;}

.author-expertise-badges span{
  display:inline-block;
  padding:.35rem 1rem;
  border-radius:999px;
  background-color:#e9ecef;
  color:var(--color-dark);
  font-size:.9rem;
  font-weight:600;
  margin:.3rem .5rem .3rem 0;
}

/* FAQs */
.faq-accordion-list{
  max-width:800px;
  margin:2.5rem auto 0;
}

.faq-item-modern{
  margin-bottom:1.5rem;
  border:1px solid #ced4da;
  border-radius:var(--radius-smooth);
  overflow:hidden;
  transition:box-shadow .3s ease;
}

.faq-item-modern:hover{
  box-shadow:var(--shadow-subtle);
}

.faq-question-btn{
  width:100%;
  padding:1.2rem 1.5rem;
  background-color:var(--color-white);
  border:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:1.1rem;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  color:var(--color-dark);
}

.faq-icon-toggle{
  display:block;
  width:1.5rem;
  height:1.5rem;
  /* Green Plus Icon */
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234CAF50'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E") no-repeat center center;
  transition:transform .3s ease;
}

.faq-answer-content{
  max-height:0;
  overflow:hidden;
  padding:0 1.5rem;
  background-color:var(--color-light-bg);
  transition:max-height .4s ease-in-out,padding .4s ease-in-out;
}

.faq-answer-content p{
  margin:0 0 1rem;
  padding-top:1rem;
  font-size:1rem;
  color:var(--color-muted);
}

.faq-item-modern.active .faq-answer-content{
  max-height:300px;
  padding-bottom:1.5rem;
}

.faq-item-modern.active .faq-question-btn{color:var(--color-primary-green);}

.faq-item-modern.active .faq-icon-toggle{
  transform:rotate(45deg);
  /* Green Minus Icon */
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23388e3c'%3E%3Cpath d='M19 13H5v-2h14v2z'/%3E%3C/svg%3E") no-repeat center center;
}

/* Practical Activity section */
.section-activity-gradient{
  background:linear-gradient(135deg,var(--color-light-bg) 0%,#e9f6eb 100%);
}

.activity-instruction-block h2{text-align:left;}

.activity-cta-card{
  background-color:var(--color-white);
  border-radius:var(--radius-smooth);
  padding:2rem;
  box-shadow:var(--shadow-deep);
  border:3px solid var(--color-secondary-yellow);
}

/* Lead Magnet */
.section-lead-magnet-dark{
  background-color:var(--color-dark);
  color:var(--color-white);
}

.lead-magnet-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2.5rem;
  padding:3rem 2rem;
  border-radius:var(--radius-smooth);
}

.lead-magnet-grid h2{
  text-align:left;
  color:var(--color-white);
  margin-bottom:1rem;
}

.lead-text-white{color:#f8f9fa;}
.tiny-note-white{color:#adb5bd;font-size:.9rem;}

.lead-form-modern{
  margin-top:1rem;
}

.lead-form-modern input{
  padding:.9rem 1rem;
  border-radius:8px;
  border:none;
  margin-bottom:1rem;
  font-family:var(--font-family);
  font-size:1rem;
}

.form-row-compact{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

@media (min-width:768px){
  .lead-magnet-grid{grid-template-columns:1.2fr 1fr;}
  .form-row-compact{flex-direction:row;}
  .form-row-compact input{flex:1;}
  .form-row-compact button{width:auto;min-width:180px;}
}

/* Final Word */
.section-final-word{
  padding:4rem 0 6rem;
  background:linear-gradient(180deg,rgba(76,175,80,.02) 0%,rgba(255,255,255,1) 100%);
}

.benefit-points-grid{
  max-width:600px;
  margin:2rem auto 2.5rem;
  text-align:left;
}

.benefit-point{
  font-weight:600;
  color:var(--color-dark);
  margin-bottom:.5rem;
  font-size:1.1rem;
}

/* Final CTA */
.section-final-cta-dark{
  background-color:var(--color-dark);
  color:var(--color-white);
  padding:4rem 0;
  text-align:center;
}

.section-final-cta-dark h2{
  color:var(--color-white);
  margin-bottom:1.25rem;
  text-align:center;
}

/* =========================
   NEW ROBUST CONTENT STYLES
========================= */

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.audience-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-smooth);
  box-shadow: var(--shadow-subtle);
  border-bottom: 4px solid #eee;
  transition: all 0.3s ease;
  text-align: center;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
  border-bottom-color: var(--color-primary-green);
}

.audience-icon {
  font-size: 2.5rem;
  color: var(--color-primary-green);
  margin-bottom: 1.5rem;
}

/* Value Stack */
.value-stack-box {
  background: var(--color-white);
  border-radius: var(--radius-smooth);
  box-shadow: var(--shadow-deep);
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 4rem auto;
  border: 2px solid #e8f5e9;
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid #eee;
}

.value-item:last-child {
  border-bottom: none;
}

.value-label {
  font-weight: 600;
  color: var(--color-dark);
}

.value-price {
  font-weight: 700;
  color: var(--color-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.total-value-row {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-primary-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-dark);
}

.total-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary-green);
}

/* Transformation Visual */
.transformation-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
  padding: 6rem 0;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .transformation-grid {
    grid-template-columns: 1fr 100px 1fr;
  }
}

.trans-card {
  padding: 2.5rem;
  border-radius: var(--radius-smooth);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.trans-card-struggle {
  border-left: 5px solid var(--color-secondary-yellow);
}

.trans-card-flourish {
  border-left: 5px solid var(--color-primary-green);
  background: rgba(76, 175, 80, 0.1);
}

.trans-arrow {
  text-align: center;
  font-size: 3rem;
  color: var(--color-primary-green);
}

.trans-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: block;
}

.transformation-section .check-list-modern li {
  color: #f8f9fa; /* Bright white/gray for readability on dark bg */
}

.transformation-section .check-list-modern li::before {
  color: var(--color-primary-green); /* Keep checkmarks green */
}

.text-highlight-yellow {
  background: var(--color-secondary-yellow);
  padding: 0 5px;
  color: var(--color-dark);
}

.section-title-robust {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-final-cta-dark p{
  color:#adb5bd;
  max-width:800px;
  margin:0 auto 2rem;
}

/* Footer */
.footer-minimal{
  background-color:#1c1c1c;
  color:#bdbdbd;
  padding:1.5rem 0;
  font-size:.9rem;
}

.footer-content-modern{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
  align-items:center;
}

.footer-minimal a{
  color:#bdbdbd;
  text-decoration:none;
}

.footer-minimal a:hover{color:var(--color-white);}

.footer-links-group a{margin-left:1.5rem;}
@media (max-width:600px){
  .footer-content-modern{flex-direction:column;text-align:center;}
  .footer-links-group{display:flex;flex-direction:column;gap:.5rem;}
  .footer-links-group a{margin-left:0;}
}

.final-word {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

#final-word h2 {
  text-align: left;
}

#final-word p {
  color: var(--color-dark);
}

/* Cleanup of previous logo section styles */
.section-logo-intro { display: none; }
.logo-circle-frame { display: none; }

/* =========================
   RESPONSIVE REFINEMENTS (Mobile Optimization)
   ========================= */

/* Global Image Safeguard */
img {
  max-width: 100%;
  height: auto;
}

/* Better Table/Code scrolling if ever needed */
pre, table {
  overflow-x: auto;
}

@media (max-width: 768px) {
  /* --- Layout & Spacing --- */
  .container {
    padding: 0 1.25rem; /* Reduce side padding for more content space */
  }
  
  .section-padded {
    padding: 3rem 0; /* Tighter vertical spacing */
  }

  /* --- Hero Section --- */
  .hero-impact {
    padding-top: 100px; /* Reduced to show more content above the fold */
    padding-bottom: 2rem;
    text-align: left; /* Aligned left for better mobile reading as requested */
  }
  
  .hero-grid-layout {
    gap: 1.5rem;
  }
  
  .hero-impact h1 {
    font-size: 2.4rem; /* Readable, not overwhelming */
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  /* --- Typography Sizing --- */
  h2 {
    font-size: 1.8rem; /* Smaller section headings */
    line-height: 1.2;
  }
  
  h3 {
    font-size: 1.4rem;
  }

  .new-price-large {
    font-size: 2.5rem;
  }
  
  .price-unlocked-large {
    font-size: 3rem;
  }

  /* --- Components & Cards --- */
  .media-offer-card,
  .value-callout-card,
  .pillar-card,
  .card-clean,
  .payment-unlock-card,
  .form-conversion-card,
  .download-card {
    padding: 1.5rem 1.25rem !important; /* Force tighter padding on all cards */
  }

  .value-callout-card {
    margin: 1.5rem auto; /* Center it */
  }

  /* --- Buttons --- */
  .btn-large, 
  .btn-extra-large,
  .btn-block-cta {
    width: 100%; /* Full width buttons for easier tapping */
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: normal; /* Allow text wrapping in buttons if needed */
    height: auto;
    min-height: 54px;
  }

  /* --- Forms --- */
  .form-conversion-card input,
  .form-conversion-card select {
    padding: 0.9rem; /* Comfortable touch target */
    font-size: 16px; /* Prevent iOS zoom on focus */
  }

  /* --- Steps --- */
  .step-progress-bar {
    margin-bottom: 2rem;
    gap: 0.5rem;
  }
  
  .step-item-active, 
  .step-item-inactive {
    min-width: 0; /* Allow flex shrink */
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  /* --- Video --- */
  .video-container-responsive {
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  /* --- Logo Position Update --- */
  #fixed-corner-logo {
      width: 85px;
      height: 85px;
      top: 5px;
      left: 0;
  }
}

@media (max-width: 480px) {
  /* --- Ultra-Small Screens (Small iPhones/Androids) --- */
  :root {
    --fs-body: 1rem; /* Slightly smaller body text */
  }

  .container {
    padding: 0 1rem;
  }
  
  .hero-impact {
    padding-top: 100px; /* Reduced to show more content above the fold */
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .eyebrow-text {
    font-size: 0.75rem;
  }

  .pillar-number {
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }
  
  .check-list-modern li {
    font-size: 0.95rem;
  }
  
  /* Ensure logo doesn't cover too much */
  #fixed-corner-logo {
      width: 75px;
      height: 75px;
  }
}
