:root {
  --dark-green: #041c14;
  --accent-lime: #d0ff33;
  --soft-white: #fdfcf7;
  --glass-bg: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

.mobile-only {
  display: none !important;
}

body {
  background: var(--dark-green);
  color: #fff;
  overflow-x: hidden;
}

.section-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.green-section {
  background: var(--dark-green);
  padding: 5vh 5% 0 5%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1.55;
  min-height: 52vh;
}

.green-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      1200px 700px at 75% 40%,
      rgba(208, 255, 51, 0.15),
      transparent 60%
    ),
    radial-gradient(
      1000px 600px at 15% 15%,
      rgba(255, 255, 255, 0.04),
      transparent 50%
    ),
    radial-gradient(
      800px 500px at 50% 100%,
      rgba(208, 255, 51, 0.08),
      transparent 70%
    ),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 25px
    );
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  animation: backgroundPulse 15s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-2%, 2%) scale(1.08);
    opacity: 0.9;
  }
}

.green-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, #fff 100%, transparent 0),
    radial-gradient(2px 2px at 40% 70%, #fff 100%, transparent 0),
    radial-gradient(2px 2px at 50% 40%, #fff 100%, transparent 0),
    radial-gradient(2px 2px at 80% 20%, #fff 100%, transparent 0),
    radial-gradient(2px 2px at 90% 60%, #fff 100%, transparent 0),
    radial-gradient(
      circle at 85% 30%,
      rgba(208, 255, 51, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  animation: floatingParticles 20s linear infinite;
}

@keyframes floatingParticles {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 0% 100%;
  }
}

.hero-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-decor-leaf {
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  opacity: 0.9;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.hero-decor-leaf svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.top-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5vh;
  z-index: 10;
  position: relative;
}

.badge {
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--dark-green);
  padding: 8px 20px;
  border-radius: 50px;
  width: max-content;
  font-size: 14px;
  font-weight: 800;
  box-shadow:
    0 0 25px rgba(208, 255, 51, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-text {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  margin-left: -5px;
}

.badge-text strong {
  font-size: 20px;
  color: var(--dark-green);
}

.badge-text small {
  font-size: 8px;
  font-weight: 800;
  text-align: left;
}

.menu-icon {
  color: rgba(255, 255, 255, 0.95);
  font-size: 28px;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.menu-icon:hover {
  background: rgba(255, 255, 255, 0.08);
}

.badge-avatars {
  display: flex;
  margin-right: 12px;
}

.badge-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.badge-avatars img:first-child {
  margin-left: 0;
}

h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 7.5vh, 92px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5vh;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.sub-headline {
  font-size: clamp(22px, 3vh, 32px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5vh;
  line-height: 1.3;
}

.highlight {
  color: var(--accent-lime);
  text-shadow: 0 0 10px rgba(208, 255, 51, 0.2);
  font-weight: 600;
}

.problem-text {
  font-size: clamp(14px, 1.8vh, 18px);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1vh;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.root-cause {
  font-size: clamp(32px, 4.5vh, 52px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
  margin-bottom: 4vh;
  letter-spacing: -0.02em;
  opacity: 0.9;
}

.root-one {
  color: var(--accent-lime);
  font-weight: 800;
  font-size: 1.14em;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.root-cause-accent {
  color: var(--accent-lime);
  font-weight: 800;
}

.fix-section {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  backdrop-filter: blur(8px);
  margin-top: 2vh;
}

.fix-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--accent-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lime);
  background: radial-gradient(
    circle,
    rgba(208, 255, 51, 0.25) 0%,
    transparent 70%
  );
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(208, 255, 51, 0.4);
}

.fix-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.fix-text {
  font-size: clamp(14px, 2vh, 16px);
  line-height: 1.4;
  max-width: 550px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-right: 4%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(208, 255, 51, 0.15) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
  bottom: 0;
}

/* Rounded background elements removed */
/* 
.hero-visual::before {
    ...
}
.hero-visual::after {
    ...
}
*/

/* .glow-circle removed */

.woman-img {
  width: 140%;
  max-width: clamp(550px, 65vw, 1050px);
  max-height: clamp(600px, 95vh, 1050px);
  height: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
  margin-bottom: -5px;
  margin-right: -15%;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

/* Divider & Features */
.curve-divider {
  width: 100%;
  height: 120px;
  position: relative;
  margin-top: -5px;
  z-index: 3;
  pointer-events: none;
}

.curve-layer {
  filter: blur(4px);
  opacity: 0.4;
}

.curve-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.features-container {
  background: var(--soft-white);
  padding: 0 5% 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-card-single {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin-top: -4vh;
  position: relative;
  z-index: 10;
  padding: 1vh 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.feature-item {
  flex: 1;
  text-align: center;
  color: var(--dark-green);
}

.feature-divider {
  width: 1px;
  height: 45px;
  background: #eaeaea;
}

.feature-icon {
  width: 3.5vh;
  height: 3.5vh;
  min-width: 36px;
  min-height: 36px;
  background: #eef5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.3vh auto;
  overflow: hidden;
  position: relative;
}

.feature-icon svg {
  width: 70%;
  height: 70%;
  color: var(--dark-green);
}

.feature-title {
  font-size: clamp(18px, 3vh, 22px);
  font-weight: 800;
  margin-bottom: 2px;
}

.feature-sub {
  font-size: clamp(14px, 2.2vh, 16px);
  color: #666;
}

/* White Section Content */
.white-section {
  background: var(--soft-white);
  color: var(--dark-green);
  padding: 0.5vh 5%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.white-container {
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2px;
  text-align: center;
}

.proof-img {
  width: 8vh;
  height: 8vh;
  min-width: 60px;
  min-height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.proof-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.proof-text h3 {
  font-size: clamp(20px, 3vh, 28px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 4px 0;
}

.proof-text p {
  font-size: clamp(12px, 1.8vh, 14px);
  margin: 0;
  line-height: 1.2;
}

/* CTA Box Wrapper */
.cta-box-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 2px;
  padding-top: 0;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Tag badge — sits inside the button, aligned with the dashed border line */
.cta-tag {
  position: absolute;
  top: 11px;
  /* aligned with the dashed border inset */
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-lime);
  color: var(--dark-green);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: clamp(9px, 1.2vh, 11px);
  font-weight: 900;
  letter-spacing: 0.08em;
  z-index: 10;
  white-space: nowrap;
  line-height: 1;
}

/* Main CTA button: dark green rectangle with dashed inset border */
.cta-box {
  background: linear-gradient(160deg, #1a2e1a 0%, #0f2010 100%);
  border-radius: 20px;
  /* top padding clears the tag badge height (~24px) + dashed border inset (~11px) */
  padding: 44px 70px 18px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 1;
  min-height: 80px;
  width: 100%;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
  outline: none;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Dashed inset border — the decorative lime dash frame */
.cta-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1.5px dashed rgba(208, 255, 51, 0.6);
  border-radius: 14px;
  pointer-events: none;
  z-index: 0;
}

.cta-title {
  font-size: clamp(16px, 2.2vh, 20px);
  font-weight: 800;
  line-height: 1.15;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Make CTA buttons fully functional */
.cta-box:hover {
  /* hover animation removed */
}

.cta-box:active {
  transform: translateY(0px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-box:focus {
  outline: 2px solid var(--accent-lime);
  outline-offset: 2px;
}

/* Ensure button text doesn't get selected */
.cta-box * {
  user-select: none;
  pointer-events: none;
}

/* ================= CTA BUTTONS & ARROWS UI/UX REFINEMENT ================= */

/* Unified styling for all circular arrow indicators */
.cta-arrow,
.fmr-cta-btn,
.ts-cta-btn,
.nfe-btn-arrow,
.faq-btn-arrow,
.fcta-btn-icon-circle,
.fmr-arrow-inner {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  line-height: 0 !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
  box-sizing: border-box !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

/* Sizing and Positioning */
.cta-arrow {
  position: absolute !important;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--accent-lime);
  color: var(--dark-green);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.fmr-cta-btn {
  width: 64px;
  height: 64px;
  background: var(--accent-lime);
  color: var(--dark-green);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ts-cta-btn {
  width: 48px;
  height: 48px;
  background: var(--accent-lime);
  color: var(--dark-green);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nfe-btn-arrow,
.faq-btn-arrow,
.fcta-btn-icon-circle {
  width: 32px;
  height: 32px;
  background: var(--dark-green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Professional SVG Arrow Styling */
.cta-arrow svg,
.fmr-cta-btn svg,
.ts-cta-btn svg,
.nfe-btn-arrow svg,
.faq-btn-arrow svg,
.fcta-btn-icon-circle svg,
.fmr-arrow-inner svg {
  width: 40% !important;
  height: 40% !important;
  display: block !important;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s ease;
}

/* Animations for better UX */
@keyframes arrowNudgeX {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@keyframes arrowNudgeXAbsolute {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-50%) translateX(5px);
  }
}

/* Base Nudge Animation Removed */
/* Hover States - animations removed */

/* Arrow stays same on hover */
.cta-box:hover .cta-arrow,
.ts-cta-box:hover .ts-cta-btn {
  transform: translateY(-50%) !important;
}

.fmr-cta-box:hover .fmr-cta-btn {
  /* no animation */
}

/* Smooth Parent Hover Polish */
.cta-box,
.fmr-cta-box,
.ts-cta-box,
.nfe-cta-btn,
.faq-cta-btn,
.fcta-main-btn {
  cursor: pointer;
}

.nfe-cta-btn:hover,
.faq-cta-btn:hover,
.fcta-main-btn:hover {
  /* no hover animation */
}

/* Mobile Adjustments for Alignment */
@media (max-width: 1024px) {
  .cta-arrow {
    width: 34px;
    height: 34px;
    right: 10px;
  }

  .fmr-cta-btn {
    width: 48px;
    height: 48px;
  }

  .ts-cta-btn {
    width: 38px;
    height: 38px;
  }

  .cta-title {
    padding: 0 36px 0 36px !important;
  }
}

.benefits-bar {
  display: flex;
  justify-content: center;
  margin-top: 2px;
  text-align: center;
  gap: 15px;
  flex-wrap: nowrap;
  width: 100%;
}

.benefit-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5vh;
  font-size: clamp(11px, 1.6vh, 13px);
  font-weight: 600;
  min-width: 0;
}

.benefit-item > div:last-child {
  text-align: center;
  line-height: 1.2;
}

.benefit-icon {
  font-size: clamp(20px, 2.5vh, 24px);
}

@media (max-width: 1024px) {
  body {
    overflow-y: auto;
    height: auto;
  }

  .app-container {
    height: auto;
    overflow: visible;
  }

  .menu-icon {
    display: grid;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  /* Show only on mobile */
  .hero-container {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: auto;
    overflow: visible;
    gap: 20px;
  }

  .hero-text {
    width: 100%;
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin: -15px 0 0 0;
    /* Reduced gap */
    z-index: 2;
    display: flex;
    justify-content: center;
    pointer-events: none;
    overflow: visible;
  }

  .curve-divider {
    height: 60px;
    margin-top: -20px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual::after {
    display: none;
  }

  .woman-img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 115%;
    max-width: none;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: bottom;
    display: block;
    pointer-events: auto;
    margin: -40px 0 0 -11.5%;
  }

  .cta-box {
    flex-direction: row;
    text-align: center;
    padding: 44px 14px 10px 14px;
  }

  .cta-tag {
    top: 18px;
    font-size: 8px;
    padding: 3px 12px;
    border-radius: 14px;
  }

  .cta-title {
    margin-top: -2px;
    text-align: center;
  }

  .green-section {
    padding: 3vh 4% 0 4%;
    min-height: auto;
    flex: none;
    overflow: visible;
  }

  .top-nav {
    margin-bottom: 2vh;
    justify-content: center !important;
  }

  .badge {
    padding: 4px 10px;
  }

  .badge-text strong {
    font-size: 16px;
  }

  .social-proof {
    gap: 10px;
    margin-bottom: 4px;
  }

  .proof-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .cta-box-wrapper {
    margin-top: 4px;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-bar {
    margin-top: 8px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .benefit-item {
    font-size: 9px;
    gap: 2px;
    min-width: 0;
    flex-shrink: 1;
  }

  .benefit-item > div:last-child {
    font-size: 9px;
    line-height: 1.1;
  }

  .benefit-item {
    font-size: 10px;
  }

  .badge-text small {
    font-size: 6px;
  }

  .badge-avatars img {
    width: 22px;
    height: 22px;
  }

  h1 {
    font-size: clamp(32px, 4.5vh, 42px);
    margin-bottom: 12px;
  }

  .sub-headline {
    font-size: clamp(18px, 2.6vh, 22px);
    max-width: 28ch;
    line-height: 1.35;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .problem-text {
    font-size: clamp(12px, 1.5vh, 14px);
    margin-bottom: 5px;
  }

  .root-cause {
    font-size: clamp(22px, 3.5vh, 32px);
    margin-bottom: 18px;
  }

  .fix-section {
    max-width: 100%;
    width: 100%;
    margin-top: 1vh;
    position: relative;
    z-index: 10;
    padding: 12px 16px;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .fix-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
    background: transparent;
    border: 2px solid var(--accent-lime);
    box-shadow: none;
  }

  .fix-text {
    font-size: clamp(11px, 1.4vh, 13px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.35;
    font-weight: 600;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.8),
      0 0 12px rgba(0, 0, 0, 0.6);
    text-align: left;
  }

  .features-card-single {
    padding: 15px 0;
    margin-top: -60px;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-sub {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .feature-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
  }

  .feature-divider {
    height: 32px;
  }

  .social-proof {
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    margin-top: 1.5vh;
  }

  .proof-img {
    width: 68px;
    height: 68px;
    min-width: 68px;
    min-height: 68px;
  }

  .proof-text {
    padding-left: 10px;
  }

  .proof-text h3 {
    font-size: clamp(19px, 2.8vh, 23px);
    margin: 0 0 2px 0;
  }

  .proof-text p {
    font-size: clamp(12px, 1.8vh, 14px);
    margin: 0;
  }

  .cta-box-wrapper {
    margin-top: 0vh;
    padding-top: 0;
  }

  .cta-title {
    font-size: clamp(14px, 2vh, 16px);
  }

  .cta-arrow {
    width: 30px;
    height: 30px;
    right: 8px;
    font-size: 16px;
  }

  .benefits-bar {
    margin-top: 5px;
    gap: 5px;
    flex-wrap: nowrap;
  }

  .benefit-item {
    font-size: clamp(9px, 1.2vh, 11px);
    gap: 2px;
    min-width: 0;
    flex-shrink: 1;
  }

  .benefit-item > div:last-child {
    font-size: clamp(8px, 1.1vh, 10px);
    line-height: 1.1;
  }

  .benefit-icon {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 36px;
  }

  .root-cause {
    font-size: 28px;
  }

  .cta-title {
    font-size: 16px;
  }

  .benefit-item {
    font-size: 10px;
  }

  .benefit-item > div:last-child {
    font-size: 8px;
    line-height: 1;
  }

  .benefit-icon {
    font-size: 16px;
  }

  .benefits-bar {
    gap: 3px;
  }
}

/* ================= PAGE TWO ================= */
.page-two {
  background: #ffffff;
  padding: 6vh 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vh;
}

.p2-container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}

.p2-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 2vh;
}

.p2-header-text {
  flex: 1;
  z-index: 2;
  padding-right: 15px;
}

.p2-header-text h2 {
  font-size: clamp(28px, 4.5vh, 42px);
  color: var(--dark-green);
  margin: 0 0 10px 0;
  line-height: 1.1;
  font-weight: 800;
}

.p2-header-text h3 {
  font-size: clamp(18px, 2.8vh, 24px);
  color: #444;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.underline-green {
  position: relative;
  display: inline-block;
  color: #1a1a1a;
}

.underline-green::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dark-green);
  border-radius: 2px;
}

.p2-header-img {
  position: relative;
  width: 45%;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.p2-img-decoration {
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(208, 255, 51, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p2-img-decoration::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 85%;
  border: 1.5px dashed rgba(45, 90, 39, 0.15);
  border-radius: 50%;
  top: 7.5%;
  left: 7.5%;
}

.p2-woman {
  width: 100%;
  position: relative;
  z-index: 1;
  display: block;
  mix-blend-mode: multiply;
}

.p2-scribble {
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 24px;
  z-index: 2;
  transform: rotate(-10deg);
}

/* Cards */
.p2-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}

.p2-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.p2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.p2-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: #f7f9f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
}

.p2-icon svg {
  display: block;
}

.p2-text {
  flex: 1;
}

.p2-text strong {
  display: block;
  color: var(--dark-green);
  font-size: clamp(15px, 2.2vh, 18px);
  font-weight: 800;
  margin-bottom: 2px;
  line-height: 1.3;
}

.p2-text p {
  color: #666;
  font-size: clamp(13px, 1.8vh, 15px);
  margin: 0;
  line-height: 1.3;
}

/* Middle Banner */
.p2-banner-middle {
  background: linear-gradient(135deg, #f7f1df 0%, #ebf1cf 100%);
  border-radius: 24px;
  padding: 28px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border: 1px solid #ece6d6;
  text-align: center;
  overflow: hidden;
}

.p2-banner-text {
  order: 1;
}

.p2-banner-img {
  order: 2;
  width: min(100%, 240px);
  height: auto;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.p2-banner-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.p2-banner-text p {
  font-size: 16px;
  color: #666;
  margin: 0 0 5px 0;
}

.p2-banner-text strong {
  font-size: clamp(18px, 2.5vh, 22px);
  color: var(--dark-green);
  font-weight: 800;
}

/* Bottom Banner */
.p2-banner-bottom {
  background: linear-gradient(135deg, #06321f 0%, #0b4a24 55%, #06321f 100%);
  border-radius: 26px;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(4, 28, 20, 0.2);
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.p2-bb-icon-wrapper {
  width: 35%;
  min-width: 100px;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.p2-bb-icon-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(234, 241, 222, 0.22);
  box-shadow: inset 0 0 0 8px rgba(6, 50, 31, 0.35);
}

.p2-bb-icon-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 2px dashed rgba(234, 241, 222, 0.28);
  opacity: 0.75;
}

.p2-bb-sprout-icon {
  width: 80px;
  height: 80px;
  display: block;
  position: relative;
  z-index: 1;
}

.p2-bb-content-box {
  background: #fbf9f4;
  border-radius: 20px;
  padding: 20px 170px 20px 30px;
  flex: 1;
  margin: 8px 8px 8px 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.p2-bb-content-box::after {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 10px;
  width: 120px;
  height: 40px;
  border-radius: 999px;
  transform: rotate(-10deg);
  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(107, 154, 22, 0.28),
      transparent 55%
    ),
    radial-gradient(
      circle at 48% 55%,
      rgba(107, 154, 22, 0.18),
      transparent 58%
    ),
    radial-gradient(
      circle at 78% 50%,
      rgba(107, 154, 22, 0.22),
      transparent 58%
    );
  pointer-events: none;
  opacity: 0.9;
}

.p2-bb-content-box p {
  font-size: clamp(14px, 2vh, 16px);
  color: #444;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.p2-bb-content-box strong {
  font-size: clamp(18px, 2.5vh, 26px);
  color: var(--dark-green);
  font-weight: 800;
  line-height: 1.2;
}

.p2-bb-leaf-decor {
  position: absolute;
  right: 0;
  top: 50%;
  width: clamp(96px, 7.5vw, 130px);
  max-height: 86%;
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
  transform: translateY(-50%);
}

/* ================= PAGE THREE ================= */
.page-three {
  background: #fdfaf6;
  padding: 4px 7px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.p3-container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}

.p3-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p3-header-text {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.p3-header-img {
  width: 100%;
  position: relative;
}

.p3-woman {
  width: 100%;
  position: relative;
  z-index: 1;
  display: block;
}

@media (max-width: 380px) {
  .p3-header {
    grid-template-columns: minmax(0, 1.1fr) minmax(108px, 0.9fr);
    padding-left: 22px;
    min-height: 178px;
  }

  .p3-header-text h2 {
    font-size: 31px;
  }

  .p3-sub {
    font-size: 15px;
  }

  .p3-desc p {
    font-size: 11px;
  }

  .p3-header-img {
    width: 132%;
    margin-right: -22%;
  }
}

/* Problem Box Premium Redesign */
.p3-problem-box {
  background: #fdfaf6;
  border-radius: 28px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(4, 28, 20, 0.05);
  border: 1px solid #f0efeb;
  max-width: 900px;
  margin: 30px auto;
}

.p3-prob-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #041c14;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
}

.p3-prob-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 10px;
}

.p3-prob-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 5px;
}

.p3-prob-icon {
  width: 58px;
  height: 58px;
  background: #e4eecc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041c14;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.p3-prob-col:hover .p3-prob-icon {
  transform: translateY(-3px);
}

.p3-prob-col strong {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #041c14;
  margin-bottom: 6px;
  line-height: 1.2;
}

.p3-prob-col p {
  font-size: 12px;
  color: #4a5a4a;
  line-height: 1.3;
  margin: 0;
}

.p3-prob-divider {
  width: 1px;
  height: 90px;
  background: #e5e8da;
  margin-top: 10px;
}

.p3-prob-footer-divider {
  width: 100%;
  height: 1px;
  background: #f0f2e8;
  margin: 10px 0 20px;
}

.p3-prob-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.p3-scribble-icon {
  width: 50px;
  height: 50px;
  background: #fdfaf6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041c14;
}

.p3-prob-footer-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.p3-prob-footer-text strong {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #041c14;
  line-height: 1.1;
}

.p3-prob-footer-text span {
  font-size: 15px;
  color: #4a5a4a;
  line-height: 1.2;
}

/* Mobile Specific for Problem Box */
@media (max-width: 767px) {
  .p3-problem-box {
    padding: 30px 15px;
    border-radius: 24px;
    margin: 20px auto;
    width: 95%;
  }

  .p3-prob-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .p3-prob-columns {
    gap: 5px;
  }

  .p3-prob-icon {
    width: 48px;
    height: 48px;
  }

  .p3-prob-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .p3-prob-col strong {
    font-size: 13px;
  }

  .p3-prob-col p {
    font-size: 11px;
  }

  .p3-prob-divider {
    height: 70px;
  }

  .p3-prob-footer-text strong {
    font-size: 16px;
  }

  .p3-prob-footer-text span {
    font-size: 14px;
  }

  .p3-mcard-icon {
    color: #0b4a24 !important;
  }

  .p3-mcard-icon svg,
  .p3-mcard-icon img {
    filter: brightness(0) !important;
    opacity: 0.8;
  }
}

/* End of Problem Box Redesign */

/* Solution Intro */
.p3-solution-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(112px, 0.72fr);
  align-items: center;
  background: #fbf8ef;
  border: 1px solid #f1eadc;
  border-radius: 14px 14px 0 0;
  gap: 14px;
  margin: 18px 8px 20px;
  min-height: 166px;
  overflow: visible;
  padding: 22px 12px 24px 24px;
  position: relative;
  z-index: 2;
}

.p3-si-text {
  min-width: 0;
}

.p3-si-text h3 {
  font-size: clamp(20px, 5.4vw, 26px);
  color: var(--dark-green);
  margin: 0 0 14px 0;
  line-height: 1.08;
  font-weight: 800;
}

.p3-si-text p {
  font-size: clamp(14px, 3.8vw, 17px);
  color: #1f1f1f;
  margin: 0 0 8px 0;
  line-height: 1.22;
}

.p3-si-text strong {
  display: block;
  font-size: clamp(16px, 4.4vw, 20px);
  color: #111;
  font-weight: 800;
  line-height: 1.22;
}

.p3-si-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.p3-root-icon-bg {
  width: 98px;
  height: 98px;
  background: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.p3-root-icon-bg svg {
  width: 54px !important;
  height: 54px !important;
}

.p3-root-icon-bg::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border: 1px dashed var(--accent-lime);
  border-radius: 50%;
  top: -10%;
  left: -10%;
  opacity: 0.4;
  animation: rotate 20s linear infinite;
}

@media (max-width: 380px) {
  .p3-solution-intro {
    grid-template-columns: minmax(0, 1.08fr) minmax(92px, 0.68fr);
    min-height: 152px;
    padding: 18px 8px 20px 18px;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 18px;
  }

  .p3-si-text h3 {
    font-size: 19px;
  }

  .p3-si-text p {
    font-size: 13px;
  }

  .p3-si-text strong {
    font-size: 15px;
  }

  .p3-root-icon-bg {
    width: 82px;
    height: 82px;
  }

  .p3-root-icon-bg svg {
    width: 46px !important;
    height: 46px !important;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Method Box */
.p3-method-box {
  background: var(--dark-green);
  border-radius: 14px;
  padding: 28px 12px 14px;
  position: relative;
  text-align: center;
  width: calc(100% - 16px);
  margin: 0 8px 18px;
  overflow: visible;
}

.p3-method-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-lime);
  color: var(--dark-green);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.p3-method-box h2 {
  color: #fff;
  font-size: clamp(20px, 5.4vw, 26px);
  margin: 0 0 14px 0;
  font-weight: 800;
}

.p3-method-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.p3-mcard {
  background: #fbf8ef;
  border: 1px solid #f1eadc;
  border-radius: 8px;
  min-height: 118px;
  padding: 12px 5px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s ease;
}

.p3-mcard:hover {
  background: #fbf8ef;
}

.p3-mcard-icon {
  width: 38px;
  height: 38px;
  background: #dce6c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  color: var(--dark-green);
}

.p3-mcard-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.p3-mcard strong {
  color: #111;
  font-size: clamp(10px, 2.85vw, 13px);
  margin-bottom: 5px;
  display: block;
  font-weight: 700;
}

.p3-mcard p {
  color: #1f1f1f;
  font-size: clamp(8px, 2.35vw, 11px);
  margin: 0;
  line-height: 1.22;
}

@media (max-width: 380px) {
  .p3-method-box {
    padding: 26px 10px 12px;
  }

  .p3-method-box h2 {
    font-size: 20px;
  }

  .p3-method-cards {
    gap: 5px;
  }

  .p3-mcard {
    min-height: 108px;
    padding: 10px 3px 9px;
  }

  .p3-mcard-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 6px;
  }

  .p3-mcard-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  .p3-mcard strong {
    font-size: 9px;
  }

  .p3-mcard p {
    font-size: 8px;
  }
}

/* Benefits List */
.p3-benefits-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 20px 15px;
  background: #fbf8ef;
  border: 1px solid #eee5d6;
  border-radius: 25px;
  margin: 25px 0;
  box-shadow: 0 8px 24px rgba(4, 28, 20, 0.05);
}

.p3-bl-img {
  width: 40%;
  max-width: 150px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.p3-bl-illustration {
  width: 100%;
  height: auto;
  display: block;
}

.p3-bl-text {
  flex: 1;
  min-width: 0;
}

.p3-bl-text h4 {
  font-size: clamp(16px, 4.5vw, 20px);
  color: var(--dark-green);
  margin: 0 0 10px 0;
  font-weight: 800;
}

.p3-bl-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p3-bl-text li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(11px, 2.8vw, 13px);
  color: #31443a;
  line-height: 1.2;
  font-weight: 600;
}

.check {
  color: #719d34;
  font-weight: 900;
  font-size: 1.1em;
}

@media (min-width: 1025px) {
  .p3-method-cards {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

/* CTA Spacing override */
.p3-cta {
  margin-top: 1vh;
}

.p3-footer-bar {
  padding-bottom: 2vh;
  color: var(--dark-green);
}

/* ================= STORY SECTION ================= */
.story-section {
  background: #ffffff;
  padding: 6vh 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}

.story-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-badge {
  background: #f7f9f2;
  color: var(--dark-green);
  padding: 6px 15px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.story-header h1 {
  font-size: clamp(28px, 4.5vh, 42px);
  color: var(--dark-green);
  line-height: 1.1;
  margin: 0;
  font-weight: 800;
}

.it-experience {
  background: #fcfbf8;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #f0efeb;
}

.it-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.story-main-img {
  width: 100%;
  position: relative;
}

.story-main-img img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.story-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
}

.diagnosis-card h3 {
  font-size: 20px;
  color: var(--dark-green);
  margin-bottom: 20px;
  line-height: 1.3;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.condition-item {
  background: #fdfcf7;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.condition-icon {
  color: var(--dark-green);
}

.condition-sleep-svg {
  width: clamp(24px, 2.2vw, 32px) !important;
  height: clamp(24px, 2.2vw, 32px) !important;
}

.doctors-card {
  background: #fcfbf8;
  border: 1px dashed #dcdbd5;
}

.doctors-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.confused-icon-bg {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.doctors-text p {
  font-size: 16px;
  color: #555;
  margin: 0 0 5px 0;
}

.lifestyle-card {
  background: var(--dark-green);
  color: #fff;
}

.lifestyle-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.lifestyle-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-lime);
}

.lifestyle-title h3 {
  font-size: 20px;
  margin: 0 0 5px 0;
  line-height: 1.3;
  color: var(--dark-green);
}

.lifestyle-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 15px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  flex: 1;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: var(--accent-lime);
}

.stat-icon {
  color: var(--accent-lime);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 255, 51, 0.2);
  border-radius: 50%;
  font-size: 28px;
}

.stat-text {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

.helped-card {
  text-align: center;
}

.helped-header h2 {
  font-size: 32px;
  color: var(--dark-green);
  margin-top: 10px;
}

.helped-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.helped-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: #444;
}

.quote-card {
  background: #fdfcf7;
  position: relative;
}

.quote-mark {
  font-size: 60px;
  color: var(--accent-lime);
  font-family: serif;
  line-height: 1;
}

.quote-text p {
  font-size: 18px;
  font-style: italic;
  color: #444;
  line-height: 1.4;
}

.signature-name {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--dark-green);
  margin-top: 15px;
}

@media (min-width: 1025px) {
  .story-header {
    display: grid;
    grid-template-columns: 1fr 350px;
    grid-template-areas:
      "content image"
      "experience image";
    align-items: center;
    gap: 25px 60px;
  }

  .story-header-content {
    grid-area: content;
    flex: none;
    /* Reset flex if it was set */
  }

  .story-main-img {
    grid-area: image;
    width: 100%;
    /* Fill the grid column */
    max-width: 350px;
  }

  .it-experience {
    grid-area: experience;
    margin-top: 0;
    width: 100%;
    max-width: 500px;
  }

  .conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= PAGE TWO DESKTOP ================= */
@media (min-width: 1025px) {
  .page-two {
    min-height: 100vh;
    overflow: hidden;
    padding: 4vh 0;
    display: grid;
    grid-template-columns: minmax(auto, 650px) minmax(auto, 400px);
    justify-content: center;
    grid-template-rows: auto 1fr auto;
    gap: 20px 40px;
    background: #ffffff;
    width: 100%;
    margin: 0;
  }

  .p2-header {
    display: contents;
    /* Unwraps children into main grid */
  }

  .p2-header-text {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding-right: 0;
    margin-top: 2vh;
  }

  .p2-header-text h2 {
    font-size: clamp(32px, 4.5vh, 48px);
    margin-bottom: 8px;
  }

  .p2-header-text h3 {
    font-size: clamp(22px, 3vh, 32px);
  }

  .p2-header-img {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 320px;
    margin-top: 2vh;
  }

  .p2-blob {
    transform: scale(1.3) translateY(5%);
  }

  .p2-scribble {
    font-size: 40px;
    top: 20px;
    left: -10px;
    line-height: 1;
    transform: rotate(-10deg);
  }

  .p2-cards {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-self: center;
    margin-bottom: 0;
  }

  .p2-card {
    padding: 1.5vh 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .p2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .p2-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 24px;
  }

  .p2-text strong {
    font-size: clamp(14px, 1.8vh, 16px);
    margin-bottom: 3px;
  }

  .p2-text p {
    font-size: clamp(12px, 1.5vh, 14px);
  }

  .p2-banner-middle {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    margin: 0;
    padding: 2.5vh 25px 18px;
    flex-direction: column;
    text-align: center;
  }

  .p2-banner-img {
    margin-top: 6px;
  }

  .p2-banner-text p {
    font-size: clamp(14px, 2vh, 16px);
  }

  .p2-banner-text strong {
    font-size: clamp(18px, 2.5vh, 22px);
  }

  .p2-banner-bottom {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
  }

  .p2-bb-left {
    width: 15%;
    max-width: 120px;
  }

  .p2-bb-left span {
    font-size: 40px !important;
  }

  .p2-bb-right {
    padding: 2vh 30px;
  }

  .p2-bb-right p {
    font-size: clamp(13px, 1.8vh, 15px);
  }

  .p2-bb-right strong {
    font-size: clamp(18px, 2.5vh, 22px);
  }

  .p2-bb-right::after {
    font-size: 70px;
    right: 20px;
    bottom: -15px;
  }

  /* ================= PAGE THREE DESKTOP ================= */
  @media (min-width: 1025px) {
    .page-three {
      padding: 6vh 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 4vh;
      align-items: center;
      background: #ffffff;
    }

    .p3-content-wrapper {
      max-width: 1100px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .p3-blob {
      display: none !important;
    }

    .p3-header-img {
      width: 40%;
      max-width: 320px;
      margin-right: 0;
      justify-self: auto;
      align-self: center;
    }

    .p3-problem-box {
      padding: 20px 40px;
      max-width: 100%;
      width: 100%;
      margin: 0;
    }

    .p3-problem-box h4 {
      font-size: 20px;
      margin-bottom: 20px;
    }

    .p3-prob-columns {
      margin-bottom: 15px;
    }

    .p3-prob-icon {
      width: 50px;
      height: 50px;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .p3-prob-col strong {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .p3-prob-col p {
      font-size: 13px;
      line-height: 1.3;
    }

    .p3-prob-divider {
      height: 50px;
    }

    .p3-prob-footer {
      padding-top: 15px;
      gap: 15px;
    }

    .p3-prob-footer p {
      font-size: 16px;
    }

    .p3-prob-f-icon {
      font-size: 30px;
    }

    .p3-solution-intro {
      max-width: 820px;
      width: 100%;
      margin: 10px auto 24px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 136px;
      align-items: center;
      gap: 36px;
      background: #fbf8ef;
      border: 1px solid #eee5d6;
      border-radius: 20px;
      min-height: 190px;
      overflow: visible;
      padding: 30px 40px;
      box-shadow: 0 12px 32px rgba(4, 28, 20, 0.07);
    }

    .p3-si-text {
      max-width: 460px;
    }

    .p3-si-text h3 {
      font-size: 32px;
      margin-bottom: 12px;
      line-height: 1.05;
    }

    .p3-si-text p {
      font-size: 17px;
      margin-bottom: 10px;
      line-height: 1.35;
      color: #31443a;
    }

    .p3-si-text strong {
      font-size: 22px;
      line-height: 1.18;
      color: var(--dark-green);
    }

    .p3-si-img {
      width: 100%;
      justify-content: center;
    }

    .p3-root-icon-bg {
      width: 112px;
      height: 112px;
      box-shadow: 0 14px 32px rgba(4, 28, 20, 0.16);
    }

    .p3-root-icon-bg svg {
      width: 58px !important;
      height: 58px !important;
    }

    .p3-root-icon-bg span {
      font-size: 50px !important;
    }

    .p3-method-box {
      padding: 30px 40px 20px 40px;
      border-radius: 20px;
      max-width: 100%;
      width: 100%;
      margin: 0;
      overflow: visible;
    }

    .p3-method-badge {
      font-size: 12px;
      padding: 6px 20px;
      top: -14px;
      border-radius: 20px;
    }

    .p3-method-box h2 {
      font-size: 32px;
      margin-bottom: 25px;
    }

    .p3-method-cards {
      gap: 15px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .p3-mcard {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 15px;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    .p3-mcard:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-3px);
    }

    .p3-mcard-icon {
      width: 50px;
      height: 50px;
      background: rgba(208, 255, 51, 0.1);
      color: var(--accent-lime);
      font-size: 26px;
      margin-bottom: 15px;
    }

    .p3-mcard-icon svg {
      width: 32px !important;
      height: 32px !important;
    }

    .p3-mcard strong {
      color: #fff;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .p3-mcard p {
      color: #aaa;
      font-size: 13px;
      line-height: 1.3;
    }

    .p3-benefits-list {
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
      padding: 30px 40px;
      gap: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 20px;
    }

    .p3-bl-img {
      width: clamp(160px, 26vw, 280px);
    }

    .p3-bl-img span {
      font-size: 70px !important;
    }

    .p3-bl-text h4 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    .p3-bl-text li {
      font-size: 16px;
      margin-bottom: 8px;
      gap: 10px;
    }

    .p3-cta {
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
    }

    .p3-footer-bar {
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
      padding-top: 2px;
      padding-bottom: 0;
    }
  }
}

/* ================= STORY SECTION ================= */
.story-section {
  background: #fdfaf6;
  padding: 30px 20px 10px 20px;
  color: var(--dark-green);
  border-top: none;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.white-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
}

.story-header {
  text-align: left;
  position: relative;
  min-height: 215px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(128px, 0.92fr);
  align-items: center;
  column-gap: 8px;
}

.story-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}

.story-badge {
  background: #eef2e1;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-green);
  border: none;
  width: fit-content;
  align-self: flex-start;
}

.story-badge svg {
  width: 14px !important;
  height: 14px !important;
  margin-right: 4px !important;
}

.story-header h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 6.5vw, 30px);
  line-height: 1.08;
  color: var(--dark-green);
  margin-bottom: 14px;
  max-width: 100%;
}

.green-text {
  position: relative;
  display: inline;
  color: #2d5a27;
  text-decoration: underline;
  text-decoration-color: #2d5a27;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.it-experience {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 12px 18px;
  border: 1px solid #eef2e1;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(4, 28, 20, 0.05);
  max-width: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.it-icon {
  width: 32px;
  height: 32px;
  background: #f4f6ed;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.it-experience p {
  font-size: clamp(9px, 2.7vw, 11px);
  color: #444;
  line-height: 1.28;
  margin: 0;
}

.it-experience p strong {
  color: #2d5a27;
  font-weight: 700;
  display: block;
}

.story-main-img {
  position: relative;
  width: 145%;
  max-width: none;
  margin: 0 0 0 -40%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: end;
}

.img-decoration {
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(
    circle,
    rgba(135, 179, 94, 0.25) 0%,
    rgba(135, 179, 94, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.story-main-img img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

@media (max-width: 380px) {
  .story-section {
    padding: 22px 16px 10px;
  }

  .story-header {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 0.88fr);
    min-height: 205px;
  }

  .story-header h1 {
    font-size: 22px;
  }

  .it-experience {
    padding: 7px 8px;
  }

  .it-icon {
    width: 28px;
    height: 28px;
  }

  .it-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .story-main-img {
    width: 150%;
    margin-left: -48%;
  }
}

/* Cards */
.story-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #f4f6ed;
  position: relative;
  z-index: 3;
}

.diagnosis-card {
  background: #f8f4ec;
  border: none;
  box-shadow: none;
}

.diagnosis-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #1a1a1a;
  font-family: "Outfit", sans-serif;
}

.diagnosis-card h3 strong {
  color: #2d5a27;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.condition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  padding: 10px 4px;
}

.condition-icon {
  width: 46px;
  height: 46px;
  background: #e9ecd8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.condition-item span {
  font-size: 10px;
  font-weight: 600;
  color: #333;
  line-height: 1.1;
  word-break: break-word;
}

/* Doctors Card */
.doctors-card {
  background: #fbf5ee;
  padding: 16px;
  border: none;
}

.doctors-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.confused-icon-bg {
  width: 50px;
  height: 50px;
  background: #f2e2ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.doctors-text {
  flex: 1;
}

.doctors-text p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 2px;
}

.doctors-text strong {
  font-size: 14px;
  color: #2d5a27;
  font-weight: 700;
}

.leaf-decor {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  opacity: 0.9;
}

/* Lifestyle Card */
.lifestyle-card {
  padding: 25px 20px;
}

.lifestyle-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.lifestyle-img-container {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.lifestyle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lifestyle-title h3 {
  font-size: 20px;
  margin-bottom: 6px;
  line-height: 1.2;
  color: var(--dark-green);
}

.lifestyle-underline {
  width: 50px;
  height: 3px;
  background: #87b35e;
  margin-bottom: 10px;
}

.lifestyle-title p {
  font-size: 15px;
  color: #555;
}

.lifestyle-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid #f4f6ed;
  gap: 0;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: left;
  min-width: 0;
  padding: 8px 6px;
  background: transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-item:hover {
  background: transparent;
  transform: none;
  border-color: transparent;
}

.stat-icon {
  color: var(--dark-green);
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
}

.lifestyle-stats .stat-icon {
  width: 44px;
  height: 44px;
}

.lifestyle-stats .stat-icon svg {
  width: 38px !important;
  height: 38px !important;
}

.stat-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.15;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: #dfe3d5;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .lifestyle-card {
    background: #fbf8ef;
    border: 1px solid #f1eadc;
    border-radius: 14px;
    box-shadow: none;
    padding: 12px 16px 10px;
    overflow: hidden;
  }

  .lifestyle-top {
    display: grid;
    grid-template-columns: 44% 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
  }

  .lifestyle-img-container {
    width: 100%;
    height: 118px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .lifestyle-title h3 {
    color: #204d21;
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.15;
    margin: 0 0 5px;
    font-weight: 800;
  }

  .lifestyle-underline {
    width: 54px;
    height: 3px;
    background: #8fb85f;
    margin: 0 0 8px;
    border-radius: 10px;
  }

  .lifestyle-title p {
    color: #1f1f1f;
    font-size: clamp(11px, 3.1vw, 13px);
    line-height: 1.25;
    margin: 0;
  }

  .lifestyle-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 0;
    border-top: 0;
    padding-top: 0;
    overflow: visible;
  }

  .stat-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: start;
    align-items: center;
    gap: 22px;
    padding: 5px 4px;
    text-align: left;
  }

  .stat-icon {
    width: 22px;
    height: 22px;
    color: #204d21;
  }

  .stat-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .stat-text {
    color: #1f1f1f;
    font-size: clamp(7px, 2.35vw, 9px);
    line-height: 1.12;
    font-weight: 700;
  }

  .stat-divider {
    width: 1px;
    height: 30px;
    background: #ded8c9;
  }
}

/* Helped Card */
.helped-card {
  padding: 25px;
  border: 1px dashed #ced4be;
}

.helped-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.helped-title p {
  font-size: 16px;
  color: #444;
  margin-bottom: 2px;
}

.helped-title h2 {
  font-size: 28px;
  font-weight: 800;
  color: #2d5a27;
  line-height: 1.1;
}

.helped-content {
  display: flex;
  gap: 15px;
}

.helped-divider {
  width: 1px;
  background: #eee;
}

.helped-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.helped-list li {
  font-size: 14px;
  color: #444;
  display: flex;
  gap: 10px;
  line-height: 1.4;
}

.check-circle {
  color: #55a83a;
  font-weight: bold;
}

/* Quote Card */
.quote-card {
  padding: 25px;
  background: #f9faf4;
}

.quote-content-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}

.quote-text-col {
  flex: 1.5;
  display: flex;
  gap: 10px;
}

.quote-mark {
  font-size: 32px;
  line-height: 1;
  color: #87b35e;
  font-family: serif;
  flex-shrink: 0;
}

.quote-text p {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
}

.quote-text p:last-child {
  margin-bottom: 0;
}

.quote-divider {
  width: 1px;
  height: 60px;
  background: #e0e6d5;
}

.signature-col {
  flex: 1;
}

.signature-name {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: italic;
  color: #222;
  margin-bottom: 5px;
}

.signature-details strong {
  font-size: 13px;
  color: var(--dark-green);
  display: block;
}

.signature-details span {
  font-size: 11px;
  color: #666;
}

@media (max-width: 480px) {
  .quote-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
}

/* CTA & Footer */
.story-cta {
  margin-top: 5px;
}

.story-footer {
  margin-top: 2px;
  padding-bottom: 5px;
}

/* ================= RESULTS SECTION ================= */
.results-section {
  background: #fdfcf7;
  padding: 4vh 5% 4vh 5%;
  display: flex;
  flex-direction: column;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.results-header-text {
  flex: 1;
  z-index: 2;
}

.results-header-text h2 {
  font-size: clamp(24px, 4vh, 32px);
  color: var(--dark-green);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 15px;
}

.results-header-text h2 .dark-green {
  color: #113620;
}

.header-underline {
  width: 60px;
  height: 3px;
  background: #87b35e;
  margin-bottom: 15px;
  border-radius: 2px;
}

.results-subtext p {
  font-size: clamp(12px, 1.8vh, 14px);
  color: #444;
  line-height: 1.4;
  margin-bottom: 2px;
}

.results-subtext strong {
  color: #113620;
  font-weight: 800;
}

.results-header-img {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  max-width: 140px;
}

.results-header-img img {
  width: 100%;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.results-blob {
  position: absolute;
  width: 130px;
  height: 130px;
  background: #eef2e1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  z-index: 1;
}

/* Cards */
.results-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.result-card {
  background: #fbfdf7;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f4e8;
  align-items: center;
}

.result-images {
  display: flex;
  align-items: center;
  position: relative;
  width: 42%;
  gap: 2px;
}

.res-img-wrap {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 120px;
}

.res-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.res-arrow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: #113620;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 3;
  border: 1.5px solid #fff;
}

.res-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 0;
}

.res-before {
  background: #d84339;
}

.res-after {
  background: #2d5a27;
}

.result-info {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-info-top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.res-icon {
  width: 34px;
  height: 34px;
  background: #f0f4e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-info h4 {
  font-size: clamp(13px, 2vh, 15px);
  color: #113620;
  line-height: 1.2;
  margin: 0;
  font-weight: 800;
}

.res-desc {
  font-size: 11px;
  color: #444;
  line-height: 1.3;
  margin-bottom: 8px;
}

.res-author {
  font-size: 10px;
  color: #666;
  line-height: 1.4;
}

/* Notice Box */
.results-notice {
  background: #f0f4e8;
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid #eef2e1;
}

.res-notice-icon {
  width: 40px;
  height: 40px;
  background: #113620;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.res-notice-text {
  font-size: 12px;
  color: #444;
  line-height: 1.4;
}

.res-notice-text strong {
  color: #113620;
  font-size: 13px;
  font-weight: 800;
}

.res-notice-leaf {
  position: absolute;
  right: 15px;
  bottom: -8px;
  font-size: 28px;
}

.results-cta {
  margin-bottom: 10px;
}

.results-footer-bar {
  margin-top: 15px;
  padding-bottom: 10px;
}

@media (min-width: 1025px) {
  .results-section {
    padding: 10vh 5%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .results-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .results-notice {
    max-width: 800px;
    margin: 40px auto;
  }
}

/* Desktop styles for story section */
@media (min-width: 1025px) {
  .story-section {
    padding: 10vh 0;
    width: 100%;
  }

  .story-container {
    max-width: 1400px;
    /* Full width feel */
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .story-header {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
      "content img"
      "box img";
    gap: 20px 60px;
    align-items: center;
    margin-bottom: 40px;
  }

  .story-header-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .it-experience {
    grid-area: box;
  }

  .story-main-img {
    grid-area: img;
  }

  .story-header h1 {
    font-size: clamp(56px, 8vh, 84px);
  }

  .diagnosis-card h3 {
    font-size: 32px;
  }

  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .condition-item {
    background: transparent;
    border-radius: 0;
    padding: 0;
  }

  .condition-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .condition-item span {
    font-size: 16px;
  }

  .lifestyle-title h3 {
    font-size: 28px;
    color: var(--dark-green);
  }

  .lifestyle-underline {
    width: 96px;
    height: 4px;
    margin-bottom: 16px;
  }

  .lifestyle-title p {
    font-size: 26px;
    line-height: 1.18;
    color: var(--dark-green);
  }

  .lifestyle-stats {
    gap: 0;
    padding-top: 32px;
  }

  .stat-item {
    min-height: 0;
    padding: 14px 18px;
    gap: 20px;
    border-radius: 0;
    justify-content: center;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
    color: var(--dark-green);
    background: transparent;
  }

  .stat-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .stat-text {
    font-size: 15px;
    line-height: 1.18;
  }

  .stat-divider {
    height: 62px;
  }

  .helped-title h2 {
    font-size: 36px;
  }

  .quote-text p {
    font-size: 22px;
  }

  .it-experience {
    max-width: 750px;
    padding: 20px 30px;
    background: #fff;
    border: 1px solid #f0f4e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 16px;
  }

  .it-icon {
    width: 40px;
    height: 40px;
    background: #f4f6ed;
    border: none;
    border-radius: 12px;
  }

  .it-experience p {
    font-size: 18px;
  }

  .it-experience p strong {
    display: inline;
  }

  .story-main-img {
    grid-column: 2;
    grid-row: 1 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .story-main-img img {
    max-height: 65vh;
    width: auto;
    position: relative;
    z-index: 2;
  }

  .img-decoration {
    width: 140%;
    height: 140%;
  }

  .diagnosis-card {
    grid-column: 1;
  }

  .doctors-card {
    grid-column: 1;
  }

  .lifestyle-card {
    grid-column: 2;
    grid-row: 2 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 36px 32px;
  }

  .lifestyle-top {
    gap: 30px;
    margin-bottom: 38px;
  }

  .lifestyle-img-container {
    width: 146px;
    height: 146px;
  }

  .helped-card {
    grid-column: 1;
  }

  .helped-content {
    display: block;
  }

  .helped-divider {
    display: none;
  }

  .helped-list {
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    gap: 16px;
  }

  .helped-list li {
    justify-content: center;
    font-size: 19px;
    font-weight: 600;
    color: #111;
  }

  .quote-card {
    grid-column: 2;
    grid-row: 4 / 6;
  }

  .story-cta {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 60px auto 0;
  }

  .story-footer {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 20px auto 0;
  }
}

/* ================= FINAL EXACT MOBILE SECTION (RESPONSIVE) ================= */
.final-mobile-replica {
  display: block;
  font-family: "Outfit", sans-serif;
  background: #fdfcf7;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 0;
}

.fmr-green-section {
  background: #041c14;
  position: relative;
  padding: 60px 5% 0 5%;
  z-index: 1;
}

/* Leaves Decoration */
.fmr-leaf {
  position: absolute;
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233a523b" stroke-width="1.5"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>')
    no-repeat center;
  opacity: 0.2;
}

.fmr-leaf-1 {
  top: 10%;
  right: 10%;
  transform: rotate(45deg);
}

.fmr-leaf-2 {
  top: 40%;
  left: 5%;
  transform: rotate(-30deg);
}

/* Top Nav */
.fmr-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
}

.fmr-badge {
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 8px 18px 8px 8px;
  gap: 12px;
}

.fmr-avatars {
  display: flex;
}

.fmr-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
}

.fmr-avatars img:first-child {
  margin-left: 0;
}

.fmr-badge-text {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.fmr-b-num {
  color: #041c14;
  font-weight: 800;
  font-size: 24px;
}

.fmr-b-sub {
  color: #000;
  font-size: 10px;
  font-weight: 800;
}

.fmr-menu-dots {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .fmr-menu-dots {
    display: none;
  }
}

/* Hero Content */
.fmr-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.fmr-text-col {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.fmr-h1 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.fmr-h2 {
  color: #eee;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 30px;
}

.fmr-yellow {
  color: #d0ff33;
}

.fmr-underline-1 {
  position: relative;
  display: inline-block;
}

.fmr-underline-1::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d0ff33;
  border-radius: 2px;
}

.fmr-p1 {
  color: #aaa;
  font-size: clamp(16px, 1.5vw, 18px);
  margin-bottom: 10px;
}

.fmr-h3 {
  color: #fff;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

/* Fix Box */
.fmr-fix-box {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 500px;
}

.fmr-icon-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #d0ff33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: radial-gradient(
    circle,
    rgba(208, 255, 51, 0.2) 0%,
    transparent 70%
  );
  flex-shrink: 0;
}

.fmr-fix-p {
  color: #fff;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
}

.fmr-yellow-text {
  color: #d0ff33;
  font-weight: 700;
}

/* Image Col */
.fmr-img-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.fmr-yellow-brush {
  position: absolute;
  width: 350px;
  height: 350px;
  background: #d0ff33;
  border-radius: 50%;
  filter: blur(20px);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.6;
}

.fmr-woman {
  width: 100%;
  max-width: 450px;
  object-fit: contain;
  display: block;
}

/* Curved Divider */
.fmr-curve {
  width: 100%;
  height: 50px;
  background: #041c14;
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

.fmr-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* White Section */
.fmr-white-section {
  background: #fdfcf7;
  padding: 1vh 5% 60px 5%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
}

/* Overlapping Cards */
.fmr-cards-box {
  background: #fff;
  border-radius: 24px;
  display: flex;
  width: 100%;
  max-width: 800px;
  margin-top: -75px;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 30px 40px;
  gap: 40px;
}

.fmr-card-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fmr-ci-icon {
  width: 70px;
  height: 70px;
  background: #eef5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}

.fmr-icon-inner {
  font-size: 32px;
  position: relative;
}

.fmr-ci-crossed .fmr-cross-line {
  position: absolute;
  width: 45px;
  height: 3px;
  background: #c2d2aa;
  transform: rotate(-45deg);
  top: 33px;
  left: 12px;
}

.fmr-card-item strong {
  color: #041c14;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}

.fmr-card-item span {
  color: #666;
  font-size: 15px;
}

.fmr-card-divider {
  width: 1px;
  background: #eaeaea;
  height: auto;
  margin: 0 10px;
}

/* Real Results Header */
.fmr-real-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1025px) {
  .fmr-real-results {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(142px, 0.94fr);
    min-height: 280px;
    align-items: center;
    gap: 24px;
    margin: 0 0 38px;
    position: relative;
    overflow: visible;
    background: transparent;
    padding: 0;
  }
}

.fmr-rr-img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

/* Testimonials */
.fmr-testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

/* Desktop: 2-column testimonial grid */
@media (min-width: 1025px) {
  .fmr-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .fmr-testi-card {
    flex-direction: row;
    align-items: center;
  }
}

.fmr-testi-card {
  background: #fbf9ef;
  border: 1px solid #efeadd;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.fmr-tc-images {
  display: flex;
  align-items: stretch;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.fmr-tc-img-box {
  position: relative;
  width: 130px;
}

.fmr-tc-img-box img {
  width: 100%;
  height: 100%;
  max-height: 245px;
  object-fit: cover;
  display: block;
  min-height: 245px;
}

.fmr-tc-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  z-index: 2;
}

.fmr-tc-before {
  background: #c23330;
}

.fmr-tc-after {
  background: #114d23;
}

.fmr-tc-arrow-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #041c14;
  border-radius: 50%;
  border: 3px solid #fbf9ef;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.fmr-arrow-inner {
  color: #fff;
  font-size: 16px;
  margin-left: 2px;
  width: 100%;
  height: 100%;
}

.fmr-tc-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.fmr-tc-icon {
  width: 50px;
  height: 50px;
  background: #eef5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b4a24;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  flex-shrink: 0;
}

.fmr-tc-text h4 {
  font-size: 20px;
  color: #041c14;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.fmr-tc-text p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.fmr-tc-author {
  font-size: 11px;
  color: #666;
  line-height: 1.3;
  display: block;
}

/* System Banner */
.fmr-system-banner {
  background: #f1f5e8;
  border-radius: 24px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 40px auto;
  position: relative;
  overflow: hidden;
}

.fmr-shield-icon {
  width: 60px;
  height: 60px;
  background: #041c14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.fmr-sb-text {
  flex: 1;
  margin: 0 20px;
  text-align: left;
}

.fmr-sb-text p {
  font-size: 14px;
  color: #444;
  margin: 0;
  line-height: 1.3;
}

.fmr-sb-text strong {
  font-size: 20px;
  color: #041c14;
  font-weight: 800;
  display: block;
  margin: 2px 0;
}

.fmr-sb-text .fmr-sb-sub {
  font-size: 12px;
  color: #666;
}

.fmr-sb-icon-right {
  position: absolute;
  bottom: -15px;
  right: 25px;
  opacity: 0.9;
  z-index: 2;
}

.fmr-sb-img {
  width: 65px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

/* CTA Container */
.fmr-cta-container {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-top: 20px;
}

.fmr-cta-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d0ff33;
  color: #041c14;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: 30px;
  z-index: 2;
  letter-spacing: 1px;
}

.fmr-cta-box {
  background: #041c14;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 120px;
}

.fmr-cta-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed #d0ff33;
  border-radius: 16px;
  opacity: 0.5;
  pointer-events: none;
}

.fmr-cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
  padding: 0 92px;
  text-align: center;
}

.fmr-cta-price {
  color: #d0ff33;
  font-size: 36px;
  font-weight: 800;
}

.fmr-cta-btn {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: #d0ff33;
  border: none;
  border-radius: 50%;
  font-size: 36px;
  color: #041c14;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition:
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.fmr-cta-btn:hover {
  box-shadow: 0 10px 24px rgba(208, 255, 51, 0.32);
  filter: brightness(1.04);
}

/* Footer Bar */
.fmr-footer-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  margin: 30px auto 0;
  align-items: center;
}

.fmr-f-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-size: 13px;
  color: #041c14;
  font-weight: 700;
  line-height: 1.25;
  flex: 1;
}

.fmr-f-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  color: #041c14;
}

.fmr-f-divider {
  display: none;
}

/* ================= Mobile Overrides (Matches exact image layout) ================= */
@media (max-width: 1024px) {
  .fmr-green-section {
    padding: 30px 25px 0 25px;
  }

  .fmr-leaf-1 {
    top: 10%;
    right: 5%;
    width: 40px;
    height: 40px;
  }

  .fmr-leaf-2 {
    top: 40%;
    left: 10%;
    width: 40px;
    height: 40px;
  }

  .fmr-top-nav {
    margin-bottom: 25px;
  }

  .fmr-badge {
    padding: 6px 14px 6px 6px;
    gap: 8px;
  }

  .fmr-avatars img {
    width: 28px;
    height: 28px;
    margin-left: -10px;
  }

  .fmr-b-num {
    font-size: 20px;
  }

  .fmr-b-sub {
    font-size: 8px;
  }

  .fmr-menu-dots {
    font-size: 28px;
  }

  .fmr-hero-content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .fmr-text-col {
    width: 65%;
    padding-bottom: 60px;
  }

  .fmr-h1 {
    font-size: clamp(38px, 10vw, 48px);
  }

  .fmr-h2 {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 20px;
  }

  .fmr-p1 {
    font-size: clamp(13px, 3.5vw, 15px);
  }

  .fmr-h3 {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 30px;
  }

  .fmr-underline-1::after {
    height: 3px;
  }

  .fmr-fix-box {
    max-width: 90%;
    gap: 12px;
  }

  .fmr-icon-ring {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .fmr-fix-p {
    font-size: clamp(12px, 3vw, 14px);
  }

  .fmr-img-col {
    position: absolute;
    right: -30px;
    bottom: -15px;
    width: 55%;
    z-index: 1;
    justify-content: center;
    align-items: flex-end;
  }

  .fmr-yellow-brush {
    width: 220px;
    height: 220px;
    filter: blur(10px);
    top: 10%;
    right: 0;
    transform: none;
  }

  .fmr-woman {
    width: 140%;
    max-width: 320px;
  }

  .fmr-curve {
    height: 35px;
  }

  .fmr-white-section {
    padding: 0 25px 40px 25px;
  }

  .fmr-cards-box {
    max-width: 400px;
    margin-top: -55px;
    padding: 20px 0;
    gap: 0;
    flex-direction: row;
  }

  .fmr-ci-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 8px;
  }

  .fmr-icon-inner {
    font-size: 26px;
  }

  .fmr-ci-crossed .fmr-cross-line {
    width: 35px;
    height: 2px;
    top: 26px;
    left: 10px;
  }

  .fmr-card-item strong {
    font-size: 16px;
  }

  .fmr-card-item span {
    font-size: 12px;
  }

  .fmr-card-divider {
    width: 1px;
    height: 70px;
    margin: 10px 0 0 0;
  }

  /* Real Results Mobile */
  .fmr-real-results {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(120px, 0.95fr);
    align-items: center;
    text-align: left;
    gap: 14px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  @media (max-width: 380px) {
    .fmr-real-results {
      grid-template-columns: minmax(0, 1fr) minmax(105px, 0.8fr);
      gap: 10px;
    }
  }

  .fmr-cta-container {
    max-width: 100%;
    margin-top: 15px;
  }

  .fmr-cta-badge {
    font-size: 11px;
    padding: 5px 16px;
    top: -12px;
  }

  .fmr-cta-box {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .fmr-cta-box::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 12px;
  }

  .fmr-cta-title {
    font-size: 20px;
  }

  .fmr-cta-price {
    font-size: 24px;
  }

  .fmr-cta-btn {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .fmr-footer-bar {
    max-width: 100%;
    margin-top: 20px;
  }

  .fmr-f-item {
    gap: 8px;
    font-size: 11px;
  }

  .fmr-f-icon {
    font-size: 18px;
  }

  .fmr-f-divider {
    width: 1px;
    height: 25px;
  }

  /* Mobile Overrides for Testimonials & Banner */
  .fmr-testimonials {
    margin-bottom: 25px;
  }

  .fmr-testi-card {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
    border-radius: 16px;
  }

  .fmr-tc-images {
    width: 100%;
    justify-content: center;
  }

  .fmr-tc-img-box {
    width: 50%;
  }

  .fmr-tc-img-box img {
    min-height: 160px;
  }

  .fmr-tc-content {
    gap: 15px;
  }

  .fmr-tc-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .fmr-tc-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .fmr-tc-text p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .fmr-tc-author {
    font-size: 10px;
  }

  .fmr-system-banner {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 16px;
  }

  .fmr-shield-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .fmr-sb-text {
    margin: 0 15px;
  }

  .fmr-sb-text p {
    font-size: 12px;
  }

  .fmr-sb-text strong {
    font-size: 16px;
  }

  .fmr-sb-text .fmr-sb-sub {
    font-size: 10px;
  }

  .fmr-sb-icon-right {
    font-size: 30px;
    right: 10px;
  }
}

/* ================= TRAINING SECTION (PAGE FOUR) ================= */
.training-section {
  background: #ffffff;
  font-family: "Outfit", sans-serif;
  color: var(--dark-green);
  overflow: hidden;
  width: 100%;
}

/* ---- Green Top ---- */
.ts-green-top {
  background: #ffffff;
  padding: 24px 8% 0 8%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f0f2e8;
}

.ts-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef5e5;
  border: 1px solid #c8deb0;
  color: var(--dark-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.ts-badge-dot {
  font-size: 13px;
}

.ts-hero-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

.ts-hero-text {
  flex: 1;
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
}

.ts-hero-text h2 {
  font-family: "Playfair Display", serif;
  color: var(--dark-green);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.ts-lime {
  color: #3a7d10;
}

.ts-sub-text {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.ts-hero-img-wrap {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  right: -10px;
  bottom: 0;
  z-index: 1;
}

.ts-hero-img {
  width: 100%;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* ---- White Area ---- */
.ts-white-area {
  background: #ffffff;
  padding: 24px 8% 28px 8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- Learn Header ---- */
.ts-learn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-green);
  background: #fff;
  border: 1px solid #eef2e1;
  border-radius: 50px;
  padding: 8px 18px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ts-sparkle {
  font-size: 14px;
}

.ts-learn-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-green);
}

/* ---- Learning Items ---- */
.ts-learn-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ts-learn-item {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #f4f6ed;
}

.ts-li-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #eef5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ts-li-text {
  flex: 1;
  min-width: 0;
}

.ts-li-text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1.3;
  margin-bottom: 2px;
}

.ts-li-text p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

.ts-li-num {
  font-size: 20px;
  font-weight: 800;
  color: #97c587;
  flex-shrink: 0;
  line-height: 1;
}

/* ---- Training Format ---- */
.ts-format-section {
  background: #fff;
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #f4f6ed;
}

.ts-format-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-green);
  text-align: center;
  margin: 0 0 14px 0;
}

.ts-format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ts-format-card {
  background: #f8faf2;
  border-radius: 12px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  border: 1px solid #eef2e1;
}

.ts-fc-icon {
  width: 38px;
  height: 38px;
  background: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ts-format-card strong {
  font-size: 10px;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.ts-format-card p {
  font-size: 10px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* ---- Benefits Box ---- */
.ts-benefits-box {
  background: #fbf8ef;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #9db58c;
  box-shadow: 0 10px 26px rgba(4, 28, 20, 0.05);
}

.ts-bb-inner {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.ts-bb-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #eaf1dc 0 58%, transparent 59%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 76px;
  line-height: 1;
  filter: saturate(1.05);
}

.ts-bb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ts-bb-list li {
  font-size: clamp(14px, 2.9vw, 17px);
  color: #13251c;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ts-bb-list li > span:last-child {
  flex: 1;
  min-width: 0;
}

.ts-check {
  color: #3a7d2c;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.05em;
  line-height: 1.25;
}

.ts-bb-list li strong {
  color: #1a3a10;
  font-weight: 800;
}

@media (max-width: 430px) {
  .ts-benefits-box {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .ts-bb-inner {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .ts-bb-img {
    width: 92px;
    height: 92px;
    font-size: 58px;
  }

  .ts-bb-list {
    gap: 7px;
  }

  .ts-bb-list li {
    font-size: 12px;
    line-height: 1.28;
    gap: 7px;
  }
}

@media (max-width: 360px) {
  .ts-bb-inner {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }

  .ts-bb-img {
    width: 78px;
    height: 78px;
    font-size: 48px;
  }

  .ts-bb-list li {
    font-size: 11px;
  }
}

/* ---- CTA Box ---- */
.ts-cta-wrap {
  position: relative;
  padding-top: 0;
}

.ts-cta-badge-top {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-lime);
  color: var(--dark-green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
}

.ts-cta-box {
  background: var(--dark-green);
  border-radius: 20px;
  position: relative;
  padding: 50px 18px 20px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.ts-cta-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px dashed var(--accent-lime);
  border-radius: 14px;
  opacity: 0.5;
  pointer-events: none;
}

.ts-cta-left {
  flex: 1;
  text-align: center;
  padding: 0 62px;
}

.ts-cta-line1 {
  color: var(--accent-lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0 0 4px 0;
}

.ts-cta-headline {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.ts-cta-lime {
  color: var(--accent-lime);
}

.ts-cta-reserve {
  color: #ccc;
  font-size: 12px;
  margin: 0;
}

.ts-cta-reserve strong {
  color: #fff;
  font-weight: 800;
}

.ts-cta-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--accent-lime);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-weight: 800;
  transition:
    box-shadow 0.3s ease,
    filter 0.3s ease;
  z-index: 2;
}

.ts-cta-btn:hover {
  box-shadow: 0 6px 18px rgba(208, 255, 51, 0.3);
  filter: brightness(1.04);
}

/* ---- Footer Bar ---- */
.ts-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.ts-fb-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  color: #444;
  line-height: 1.3;
  text-align: left;
}

.ts-fb-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.ts-fb-divider {
  width: 1px;
  height: 28px;
  background: #ddd;
  flex-shrink: 0;
}

/* ================= TRAINING SECTION — DESKTOP (min-width: 1025px) ================= */
@media (min-width: 1025px) {
  .training-section {
    display: flex;
    flex-direction: column;
  }

  /* Green Top — two-column editorial */
  .ts-green-top {
    padding: 60px 8% 0 8%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .ts-top-badge {
    font-size: 13px;
    padding: 8px 20px;
    margin-bottom: 28px;
  }

  .ts-hero-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
  }

  .ts-hero-text {
    flex: 1.1;
    padding-bottom: 0;
    max-width: 620px;
  }

  .ts-hero-text h2 {
    font-size: clamp(42px, 5vw, 68px);
    margin-bottom: 18px;
  }

  .ts-sub-text {
    font-size: 18px;
    color: #444;
  }

  .ts-hero-img-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    flex: 0.9;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ts-hero-img {
    max-width: 100%;
    width: 100%;
  }

  /* White Area — full width with centered content */
  .ts-white-area {
    background: #ffffff;
    padding: 50px 8%;
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    align-self: center;
  }

  /* Learn Header */
  .ts-learn-header {
    font-size: 16px;
    padding: 10px 28px;
    margin: 0 auto 8px auto;
  }

  .ts-learn-title {
    font-size: 16px;
  }

  /* Learn Items — 2 columns on desktop */
  .ts-learn-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Last item centered if odd */
  .ts-learn-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .ts-learn-item {
    padding: 16px 20px;
    border-radius: 16px;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .ts-learn-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  }

  .ts-li-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 24px;
  }

  .ts-li-text strong {
    font-size: 15px;
  }

  .ts-li-text p {
    font-size: 13px;
  }

  .ts-li-num {
    font-size: 28px;
  }

  /* Format — 4 columns on desktop */
  .ts-format-section {
    padding: 28px 32px;
  }

  .ts-format-title {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .ts-format-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .ts-format-card {
    padding: 22px 14px;
    border-radius: 16px;
    transition: transform 0.25s ease;
  }

  .ts-format-card:hover {
    transform: translateY(-4px);
  }

  .ts-fc-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .ts-format-card strong {
    font-size: 12px;
  }

  .ts-format-card p {
    font-size: 12px;
  }

  /* Benefits — side by side */
  .ts-benefits-box {
    padding: 26px 34px;
    border-radius: 20px;
    background: #fbf8ef;
    border: 1px solid #9db58c;
    max-width: 950px;
    margin: 0 auto;
  }

  .ts-bb-inner {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
  }

  .ts-bb-img {
    width: 150px;
    height: 150px;
    font-size: 92px;
  }

  .ts-bb-list {
    gap: 11px;
  }

  .ts-bb-list li {
    font-size: 17px;
    line-height: 1.35;
  }

  /* CTA — wider */
  .ts-cta-wrap {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }

  .ts-cta-badge-top {
    font-size: 12px;
    padding: 7px 22px;
    top: 18px;
  }

  .ts-cta-box {
    padding: 65px 40px 32px 40px;
    border-radius: 24px;
  }

  .ts-cta-box::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 16px;
  }

  .ts-cta-line1 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .ts-cta-headline {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.25;
  }

  .ts-cta-reserve {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 4px;
  }

  .ts-cta-reserve strong {
    color: var(--accent-lime);
    font-size: 1.3em;
    font-weight: 900;
    letter-spacing: -0.01em;
  }

  .ts-cta-btn {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }

  /* Footer Bar */
  .ts-footer-bar {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 8px 0;
  }

  .ts-fb-item {
    font-size: 13px;
    gap: 10px;
  }

  .ts-fb-icon {
    font-size: 22px;
  }

  .ts-fb-divider {
    height: 36px;
  }
}

/* ================= SECTION 7: NOT FOR EVERYONE ================= */
.nfe-section {
  background: #041c14;
  font-family: "Outfit", sans-serif;
  color: #fff;
  width: 100%;
  padding: 0 12px;
}

/* ---- Dark Green Top ---- */
.nfe-top {
  padding: 18px 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nfe-top-badge {
  background: #c7dc7d;
  color: #132116;
  font-size: 8px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.nfe-badge-icon {
  font-size: 11px;
}

.nfe-headline-wrap {
  position: relative;
  margin-bottom: 16px;
  width: 100%;
}

.nfe-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 8.2vw, 40px);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 10px 0;
}

.nfe-not {
  color: #d0ff33;
}

.nfe-leaf-deco {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 62%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 34px;
  opacity: 0.72;
}

.nfe-leaf {
  font-size: 18px;
}

.nfe-leaf-left {
  transform: rotate(-24deg);
}

.nfe-leaf-right {
  transform: rotate(24deg) scaleX(-1);
}

.nfe-sub {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  color: #e0e0e0;
  max-width: 300px;
  margin: 0 auto;
}

.nfe-serious {
  color: #d0ff33;
  font-weight: 700;
}

/* Batch Card - Info Grid Layout */
.nfe-batch-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  text-align: left;
  position: relative;
  box-shadow: none;
}

/* Info Grid - 2 columns */
.nfe-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

/* Individual Info Card */
.nfe-info-card {
  background: rgba(15, 47, 36, 0.85);
  border: 1px solid rgba(208, 255, 51, 0.14);
  border-radius: 14px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  position: relative;
  backdrop-filter: blur(6px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.nfe-info-card:hover {
  border-color: rgba(208, 255, 51, 0.28);
  background: rgba(20, 60, 44, 0.9);
}

/* Icon circle at top-left */
.nfe-info-icon {
  width: 30px;
  height: 30px;
  background: rgba(208, 255, 51, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: #d0ff33;
  flex-shrink: 0;
}

.nfe-info-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Label (small, lime colored) */
.nfe-info-label {
  font-size: 14px;
  font-weight: 800;
  color: #d0ff33;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1;
}

/* Value (bold white) */
.nfe-info-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Features Bar */
.nfe-features-bar {
  background: #d0ff33;
  color: #041c14;
  font-size: 10px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  line-height: 1.25;
}

/* ---- Cream Cards Area ---- */
.nfe-cards-area {
  background: #f6f3eb;
  border-radius: 16px;
  margin: 10px 0 0;
  overflow: hidden;
  max-width: 100%;
  border: 1px solid #d8d8ce;
}

.nfe-card {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #dddcd2;
}

.nfe-card:last-child {
  border-bottom: none;
}

.nfe-card-icon {
  width: 54px;
  height: 54px;
  background: #dbe7c6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  margin-right: 14px;
  color: #041c14;
}

.nfe-icon-num {
  background: #183828;
  color: #f7f8ef;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  position: relative;
}

.nfe-icon-num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #dbe7c6;
  border-radius: 50%;
}

.nfe-card-text {
  color: #041c14;
  font-size: 13px;
  min-width: 0;
}

.nfe-card-text strong {
  display: block;
  font-weight: 800;
  margin-bottom: 3px;
  line-height: 1.3;
  font-size: 12px;
}

.nfe-card-text p {
  margin: 0;
  font-size: 11px;
  color: #344339;
  line-height: 1.32;
}

/* ---- Dark CTA Bottom ---- */
.nfe-cta-area {
  padding: 20px 14px 18px;
  text-align: center;
  position: relative;
  max-width: 100%;
  margin: 12px auto 0;
  background: #0b261b;
  border: 1px solid #416446;
  border-radius: 16px;
}

.nfe-cta-leaf-left,
.nfe-cta-leaf-right {
  position: absolute;
  font-size: 34px;
  opacity: 0.32;
  top: 28px;
}

.nfe-cta-leaf-left {
  left: 12px;
  transform: rotate(-20deg);
}

.nfe-cta-leaf-right {
  right: 12px;
  transform: rotate(20deg) scaleX(-1);
}

.nfe-cta-top-line {
  font-size: 12px;
  color: #e0e0e0;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.nfe-cta-headline {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #d0ff33;
  margin: 0 0 18px 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.nfe-cta-headline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #d0ff33;
  border-radius: 2px;
}

.nfe-cta-btn {
  background: #d0ff33;
  color: #041c14;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 14px;
}

.nfe-btn-arrow {
  background: #041c14;
  color: #d0ff33;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.nfe-disclaimer {
  font-size: 10px;
  color: #c1c4b6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  line-height: 1.3;
}

.nfe-disclaimer strong {
  color: #d0ff33;
}

/* ---- Footer Bar ---- */
.nfe-footer-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 8px 20px;
  background: transparent;
  gap: 8px;
}

.nfe-fb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #ccc;
  line-height: 1.3;
  flex: 1;
  justify-content: center;
}

.nfe-fb-icon {
  background: #173022;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid #476749;
  flex-shrink: 0;
}

.nfe-fb-div {
  width: 1px;
  height: 24px;
  background: #36543a;
}

/* ================= SECTION 7 — DESKTOP (min-width: 1025px) ================= */
@media (min-width: 1025px) {
  .nfe-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nfe-top {
    padding: 80px 5% 40px 5%;
    width: 100%;
  }

  .nfe-top-badge {
    font-size: 14px;
    padding: 10px 24px;
    margin-bottom: 30px;
  }

  .nfe-headline {
    font-size: 64px;
    margin-bottom: 16px;
  }

  .nfe-sub {
    font-size: 22px;
    max-width: none;
  }

  .nfe-leaf-left {
    transform: rotate(-30deg) translateX(-200px);
    font-size: 40px;
  }

  .nfe-leaf-right {
    transform: rotate(30deg) scaleX(-1) translateX(-200px);
    font-size: 40px;
  }

  .nfe-batch-card {
    max-width: 1000px;
    width: 100%;
    padding: 0;
    margin-top: 40px;
    background: transparent;
    border: none;
  }

  .nfe-info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .nfe-info-card {
    padding: 22px 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(208, 255, 51, 0.16);
  }

  .nfe-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .nfe-info-icon svg {
    width: 22px;
    height: 22px;
  }

  .nfe-info-label {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .nfe-info-value {
    font-size: 26px;
  }

  .nfe-features-bar {
    max-width: 1000px;
    width: 100%;
    font-size: 16px;
    padding: 16px;
    margin-top: 20px;
  }

  .nfe-cards-area {
    max-width: 1200px;
    width: 90%;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .nfe-card {
    padding: 40px 30px;
    border-bottom: none;
    border-right: 1px solid #e0e5d5;
    flex-direction: column;
    text-align: center;
  }

  .nfe-card:last-child {
    border-right: none;
  }

  .nfe-card-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .nfe-icon-num {
    font-size: 30px;
  }

  .nfe-card-text {
    font-size: 18px;
  }

  .nfe-card-text p {
    font-size: 15px;
    margin-top: 8px;
  }

  .nfe-cta-area {
    max-width: 1000px;
    width: 100%;
    padding: 80px 20px 60px 20px;
  }

  .nfe-cta-top-line {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .nfe-cta-headline {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .nfe-cta-btn {
    font-size: 24px;
    padding: 24px 40px;
    max-width: 500px;
    margin: 0 auto 24px auto;
  }

  .nfe-disclaimer {
    font-size: 14px;
  }

  .nfe-footer-bar {
    padding: 30px;
    gap: 60px;
    width: 100%;
  }

  .nfe-fb-item {
    font-size: 16px;
    gap: 16px;
  }

  .faq-footer {
    padding: 20px;
    font-size: 14px;
    width: 100%;
  }
}

/* ================= SECTION 9: FINAL CTA ================= */
.final-cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 78, 49, 0.62), transparent 45%),
    #031b13;
  color: #fff;
  padding: 10px 0 0;
  font-family: "Outfit", sans-serif;
}

.final-cta-section .section-container {
  width: min(100%, 430px);
  max-width: 430px;
  margin: 0 auto;
  padding: 0 18px 16px;
  text-align: center;
}

.fcta-header {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.fcta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d0ff33;
  border: 1px solid rgba(208, 255, 51, 0.55);
  background: rgba(33, 86, 38, 0.58);
  border-radius: 999px;
  padding: 6px 18px;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.fcta-badge-icon {
  font-size: 13px;
}

.fcta-headline-wrap {
  position: relative;
  margin: 0 auto 7px;
  padding: 0 36px;
}

.fcta-headline {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 7.3vw, 34px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.fcta-white-text {
  color: #fff;
}

.fcta-lime-text {
  color: #d0ff33;
}

.fcta-decor-left,
.fcta-decor-right {
  position: absolute;
  top: 52%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0.82;
  transform: translateY(-50%);
  pointer-events: none;
}

.fcta-decor-left {
  left: 0;
}

.fcta-decor-right {
  right: 0;
}

.fcta-leaf-icon {
  color: #75a233;
  font-size: 32px;
  line-height: 1;
  transform: rotate(-28deg);
}

.fcta-decor-right .fcta-leaf-icon {
  transform: rotate(28deg) scaleX(-1);
}

.fcta-star-icon {
  color: #d0ff33;
  font-size: 11px;
  line-height: 1;
  margin-left: -10px;
}

.fcta-center-leaf {
  position: relative;
  color: #83a83a;
  font-size: 21px;
  line-height: 1;
  opacity: 0.88;
  margin: 6px auto 4px;
  width: 130px;
}

.fcta-center-leaf::before,
.fcta-center-leaf::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: rgba(127, 161, 59, 0.32);
}

.fcta-center-leaf::before {
  right: calc(50% + 18px);
}

.fcta-center-leaf::after {
  left: calc(50% + 18px);
}

.fcta-benefits-box {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto 16px;
  padding: 11px 8px 13px;
  background: rgba(6, 46, 31, 0.82);
  border: 1px solid rgba(100, 142, 72, 0.47);
  border-radius: 11px;
}

.fcta-benefit {
  min-width: 0;
  padding: 0 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(96, 137, 65, 0.3);
}

.fcta-benefit:last-child {
  border-right: 0;
}

.fcta-benefit-icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 0 9px;
  border-radius: 50%;
  border: 1px solid rgba(208, 255, 51, 0.38);
  background: rgba(8, 40, 27, 0.78);
  display: grid;
  place-items: center;
}

.fcta-benefit-icon {
  color: #d0ff33;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fcta-benefit p {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(10px, 2.9vw, 12px);
  font-weight: 700;
  line-height: 1.18;
}

.fcta-benefit-line {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #d0ff33;
}

.fcta-quote-box {
  width: 100%;
  max-width: none;
  position: relative;
  margin: 0 auto 16px;
  padding: 22px 34px 24px;
  text-align: center;
  background: rgba(6, 46, 31, 0.82);
  border: 1px solid rgba(100, 142, 72, 0.47);
  border-radius: 11px;
}

.fcta-quote-left,
.fcta-quote-right {
  position: absolute;
  color: rgba(126, 163, 60, 0.34);
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.fcta-quote-left {
  top: 10px;
  left: 16px;
}

.fcta-quote-right {
  right: 16px;
  bottom: 2px;
}

.fcta-quote-content {
  position: relative;
  z-index: 1;
}

.fcta-quote-white {
  margin: 0 0 4px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 5.3vw, 25px);
  font-weight: 700;
  line-height: 1.12;
}

.fcta-quote-lime {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #d0ff33;
  font-family: "Outfit", sans-serif;
  font-size: clamp(21px, 6vw, 28px);
  font-weight: 800;
  line-height: 1.04;
}

.fcta-squiggle-line {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 134px;
  height: 3px;
  border-radius: 999px;
  background: #d0ff33;
  opacity: 0.82;
  transform: translateX(-50%) rotate(-1deg);
}

.fcta-main-btn {
  width: 100%;
  max-width: none;
  min-height: 62px;
  margin: 0 0 16px;
  padding: 12px 16px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(180deg, #dbff59 0%, #b2ea25 100%);
  color: #041c14;
  font-family: "Outfit", sans-serif;
  font-size: clamp(19px, 5.4vw, 24px);
  font-weight: 800;
  line-height: 1.08;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(113, 141, 25, 0.72);
}

.fcta-btn-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #031b13;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.fcta-features-bar {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}

.fcta-fb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  color: #f2f3de;
  font-size: clamp(8px, 2.35vw, 10px);
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
}

.fcta-fb-icon {
  color: #d0ff33;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.fcta-fb-icon svg {
  width: 15px !important;
  height: 15px !important;
  margin-right: 0 !important;
}

.fcta-batch-box-wrapper {
  width: min(100%, 270px);
  max-width: 270px;
  margin: 0 auto 12px;
  position: relative;
}

.fcta-batch-box-wrapper::before,
.fcta-batch-box-wrapper::after {
  display: none;
}

.fcta-batch-box-wrapper::before {
  right: calc(100% + 10px);
  border-left: 1px dashed rgba(208, 255, 51, 0.65);
  border-radius: 0 0 0 42px;
}

.fcta-batch-box-wrapper::after {
  left: calc(100% + 10px);
  border-right: 1px dashed rgba(208, 255, 51, 0.65);
  border-radius: 0 0 42px 0;
}

.fcta-batch-box {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  justify-content: stretch;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(6, 46, 31, 0.84);
  border: 1px solid rgba(100, 142, 72, 0.47);
}

.fcta-batch-icon {
  width: 43px;
  height: 43px;
  border-radius: 8px;
  background: rgba(208, 255, 51, 0.12);
  color: #d0ff33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
}

.fcta-batch-text {
  text-align: left;
}

.fcta-batch-top {
  margin: 0 0 2px;
  color: #fff;
  font-size: clamp(14px, 3.8vw, 17px);
  font-weight: 700;
  line-height: 1.1;
}

.fcta-batch-bottom {
  margin: 0;
  color: #d0ff33;
  font-size: clamp(15px, 4.1vw, 18px);
  font-weight: 800;
  line-height: 1.05;
}

.fcta-footer {
  position: relative;
  color: #f0f2dc;
  font-size: clamp(9px, 2.5vw, 11px);
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 8px;
  padding-bottom: 25px;
}

.fcta-footer::before,
.fcta-footer::after {
  content: "";
  width: 50px;
  height: 1px;
  background: rgba(127, 161, 59, 0.42);
}

.fcta-footer-icon {
  color: #d0ff33;
}

@media (max-width: 370px) {
  .final-cta-section .section-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fcta-headline-wrap {
    padding: 0 30px;
  }

  .fcta-leaf-icon {
    font-size: 27px;
  }

  .fcta-benefit {
    padding-left: 4px;
    padding-right: 4px;
  }

  .fcta-benefit-icon-wrap {
    width: 42px;
    height: 42px;
  }

  .fcta-main-btn {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
  }

  .fcta-btn-icon-circle {
    width: 34px;
    height: 34px;
  }

  .fcta-batch-box-wrapper::before,
  .fcta-batch-box-wrapper::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .final-cta-section {
    padding-top: 20px;
  }

  .final-cta-section .section-container {
    width: min(100%, 560px);
    max-width: 560px;
  }

  .fcta-headline {
    font-size: 40px;
  }

  .fcta-benefit p,
  .fcta-fb-item {
    font-size: 13px;
  }
}

/* ================= SECTION 8: FAQ FINAL MATCH ================= */
.faq-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 76, 50, 0.55), transparent 42%),
    #031b13;
  color: #fff;
  padding: 60px 0 0;
  margin-top: 60px;
  font-family: "Outfit", sans-serif;
}

.faq-section .section-container {
  width: min(100%, 430px);
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
  text-align: center;
}

.faq-section > .section-container > .faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0 8px 10px;
  cursor: default;
  text-align: center;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d0ff33;
  border: 1px solid rgba(208, 255, 51, 0.56);
  background: rgba(3, 22, 15, 0.72);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.faq-badge-icon {
  font-size: 11px;
}

.faq-headline {
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 4px;
  letter-spacing: 0;
}

.faq-highlight {
  color: #d0ff33;
}

.faq-sub-wrap {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  width: min(100%, 292px);
  margin: 0 auto;
}

.faq-sub {
  margin: 0;
  color: #f3f3df;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.12;
}

.faq-leaf {
  color: #7fa13b;
  font-size: 24px;
  line-height: 1;
  opacity: 0.82;
}

.faq-leaf-left {
  transform: rotate(-24deg);
}

.faq-leaf-right {
  transform: rotate(24deg) scaleX(-1);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: none;
  margin: 0 auto 10px;
}

.faq-item {
  display: block;
  background: rgba(7, 47, 32, 0.88);
  border: 1px solid rgba(102, 142, 72, 0.45);
  border-radius: 8px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(208, 255, 51, 0.035);
  overflow: hidden;
  padding: 0;
  margin: 0;
  transform: none;
}

.faq-item:hover {
  transform: none;
  border-color: rgba(102, 142, 72, 0.45);
  box-shadow: inset 0 0 0 1px rgba(208, 255, 51, 0.035);
}

.faq-item > .faq-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: none;
  padding: 8px 10px 8px 9px;
  cursor: pointer;
  text-align: left;
}

.faq-left {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 10px;
  min-width: 0;
}

.faq-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1d4f2d;
  color: #d0ff33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
  box-shadow: inset 0 0 18px rgba(208, 255, 51, 0.08);
}

.faq-item .icon svg {
  width: 22px !important;
  height: 22px !important;
}

.faq-title {
  color: #fff;
  font-size: clamp(13px, 3.55vw, 15px);
  font-weight: 800;
  line-height: 1.12;
}

.faq-item .toggle {
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(208, 255, 51, 0.18);
  background: linear-gradient(180deg, #285c31 0%, #183f28 100%);
  color: #d0ff33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.16);
  transform: none;
}

.faq-item .toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
}

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: #f1f3dd;
  font-size: clamp(11px, 3vw, 13px);
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  padding: 0 42px 0 63px;
  margin: 0;
}

.faq-item.active .faq-content {
  max-height: 120px;
  opacity: 1;
  margin-top: 0;
  padding-bottom: 10px;
}

.faq-item.active .toggle {
  background: linear-gradient(180deg, #d9ff5a 0%, #aee924 100%);
  color: #041c14;
}

.faq-item.active .toggle::before {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-cta-box-outer {
  width: 100%;
  max-width: none;
  padding: 2px 0 6px;
}

.faq-cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(208, 255, 51, 0.66);
  border-radius: 8px;
  background: rgba(5, 33, 23, 0.9);
  padding: 14px 12px 10px;
  text-align: center;
}

.faq-cta-leaf {
  position: absolute;
  top: 20px;
  color: #7fa13b;
  font-size: 40px;
  line-height: 1;
  opacity: 0.7;
  pointer-events: none;
}

.faq-cta-leaf-left {
  left: 15px;
  transform: rotate(-22deg);
}

.faq-cta-leaf-right {
  right: 15px;
  transform: rotate(22deg) scaleX(-1);
}

.faq-cta-top {
  margin: 0 0 2px;
  color: #f4f4e5;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.faq-cta-headline {
  margin: 0 48px 8px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(19px, 5.8vw, 25px);
  font-weight: 800;
  line-height: 1.08;
}

.faq-cta-btn {
  width: min(100%, 285px);
  min-height: 39px;
  margin: 0 auto 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9ff5a 0%, #aee924 100%);
  color: #041c14;
  font-family: "Outfit", sans-serif;
  font-size: clamp(14px, 3.85vw, 17px);
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(105, 135, 27, 0.65);
}

.faq-btn-arrow {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #041c14;
  color: #d0ff33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-features-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  max-width: none;
  margin: 0;
}

.faq-feature {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 5px;
  text-align: left;
  min-width: 0;
}

.faq-f-icon {
  color: #d0ff33;
  font-size: 18px;
  line-height: 1;
}

.faq-f-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.faq-f-text strong {
  display: block;
  color: #d0ff33;
  font-size: clamp(7px, 2.1vw, 9px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 2px;
}

.faq-f-text p {
  margin: 0;
  color: #f0f0dc;
  font-size: clamp(6px, 1.9vw, 8px);
  font-weight: 500;
  line-height: 1.08;
}

.faq-feature-div {
  width: 1px;
  height: 28px;
  background: rgba(208, 255, 51, 0.28);
}

.faq-footer {
  width: calc(100% + 24px);
  margin-left: -12px;
  background: #03140e;
  color: #e3e5cf;
  text-align: center;
  padding: 5px 8px 6px;
  font-size: 10px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.faq-footer-icon {
  color: #d0ff33;
}

@media (max-width: 370px) {
  .faq-section .section-container {
    padding: 0 36px 0 36px !important;
  }

  .faq-left {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
  }

  .faq-item .icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .faq-content {
    padding-left: 55px;
    padding-right: 36px;
  }

  .faq-cta-headline {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (min-width: 768px) {
  .faq-section {
    padding-top: 60px;
  }

  .faq-section .section-container {
    width: min(100%, 560px);
    max-width: 560px;
  }

  .faq-headline {
    font-size: 38px;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-content {
    font-size: 14px;
  }

  .faq-cta-box {
    padding: 18px 18px 12px;
  }
}

/* ================= SECTION 10: DISCLAIMER ================= */
.disclaimer-section {
  background: #02120a;
  font-family: "Outfit", sans-serif;
  color: #888;
  width: 100%;
  padding: 80px 20px 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #0a291d;
}

.disclaimer-section .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disc-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.disc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.disc-logo-icon {
  color: #d0ff33;
}

.disc-logo-lime {
  color: #d0ff33;
}

.disc-copyright {
  font-size: 14px;
  color: #eee;
}

.disc-links {
  font-size: 14px;
  color: #d0ff33;
  display: flex;
  align-items: center;
  gap: 12px;
}

.disc-links a {
  color: #d0ff33;
  text-decoration: none;
}

.disc-link-divider {
  color: #555;
}

.disc-divider {
  width: 100%;
  max-width: 800px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.disc-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #1a4a36;
  z-index: 1;
}

.disc-divider-icon {
  position: relative;
  z-index: 2;
  background: #02120a;
  padding: 0 16px;
  color: #d0ff33;
  font-size: 18px;
}

.disc-text-area {
  max-width: 800px;
  font-size: 12px;
  line-height: 1.6;
  color: #bbb;
  margin-bottom: 40px;
}

.disc-text-area p {
  margin-bottom: 20px;
}

.disc-text-area p:last-child {
  margin-bottom: 0;
}

.disc-lime {
  color: #d0ff33;
  font-weight: 700;
}

.disc-footer-bar {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.disc-f-item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
}

.disc-f-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #d0ff33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #d0ff33;
  flex-shrink: 0;
}

.disc-f-text {
  display: flex;
  flex-direction: column;
}

.disc-f-text strong {
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.disc-f-text span {
  font-size: 12px;
  color: #999;
  line-height: 1.3;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .disc-footer-bar {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }

  .disc-f-item {
    flex: 1;
    justify-content: center;
  }

  .disc-f-item:not(:last-child) {
    border-right: 1px solid #1a4a36;
  }
}

@media (min-width: 1025px) {
  .disclaimer-section {
    padding: 60px 24px 220px;
  }

  .disc-text-area {
    font-size: 14px;
  }

  .disc-f-text strong {
    font-size: 16px;
  }

  .disc-f-text span {
    font-size: 13px;
  }
}

/* ================= PAGE TWO MOBILE FINAL GUARD ================= */
@media (max-width: 767px) {
  .page-two {
    background: #fdfaf6;
    padding: 22px 18px 18px;
    gap: 14px;
    align-items: stretch;
    overflow: hidden;
  }

  .page-two .p2-container > * {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .p2-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(142px, 0.92fr);
    align-items: end;
    gap: 8px;
    min-height: 255px;
    margin: 0 0 -4px;
    position: relative;
    overflow: visible;
  }

  .p2-header-text {
    align-self: start;
    padding: 28px 0 0 8px;
    z-index: 3;
  }

  .p2-header-text > h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(28px, 4.5vh, 34px) !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    margin-bottom: 6px !important;
    color: #1a4a36 !important;
  }

  .p2-header-text > h3 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(18px, 2.5vh, 22px) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: #444 !important;
    margin-top: 0 !important;
  }

  .p2-header-text .green-text {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }

  .p2-header-text .green-text::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #a5cc39;
    border-radius: 2px;
    opacity: 0.8;
  }

  .p2-header-img {
    width: 150%;
    max-width: none;
    justify-self: end;
    align-self: end;
    margin-right: -34%;
    position: relative;
    z-index: 1;
  }

  .p2-woman {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    object-position: bottom center;
  }

  .p2-cards {
    gap: 12px;
    position: relative;
    z-index: 5;
  }

  .p2-card {
    width: min(100%, 314px);
    min-height: 86px;
    margin: 0 auto;
    padding: 13px 16px 13px 13px;
    display: grid;
    grid-template-columns: 66px 1px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 9px 22px rgba(47, 39, 26, 0.1);
  }

  .p2-card::after {
    content: "";
    width: 1px;
    height: 54px;
    background: #d9d5ca;
    grid-column: 2;
    grid-row: 1;
  }

  .p2-icon {
    grid-column: 1;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    margin: 0 auto;
    background: #edf2d8;
  }

  .p2-text {
    grid-column: 3;
  }

  .p2-text strong {
    color: #0b4a24;
    font-size: clamp(14px, 3.95vw, 17px);
    line-height: 1.16;
    font-weight: 800;
    margin: 0 0 4px;
  }

  .p2-text p {
    color: #111811;
    font-size: clamp(13px, 3.55vw, 15px);
    line-height: 1.18;
    margin: 0;
  }

  .p2-banner-middle {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px 18px 12px 12px;
    min-height: 114px;
    background: #edf1d7;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
  }

  .p2-banner-text {
    order: 2;
  }

  .p2-banner-img {
    order: 1;
    width: 138px;
    height: 120px;
    border-radius: 13px;
    box-shadow: none;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p2-banner-text p {
    color: #111811;
    font-size: clamp(14px, 3.85vw, 17px);
    line-height: 1.18;
    margin: 0 0 8px;
  }

  .p2-banner-text strong {
    color: #0b4a24;
    font-size: clamp(20px, 5.55vw, 25px);
    line-height: 1.08;
    font-weight: 800;
  }

  .p2-banner-bottom {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 126px;
    background: #06321f;
    border-radius: 16px;
    box-shadow: none;
    overflow: hidden;
  }

  .p2-bb-icon-wrapper {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 16px 10px;
  }

  .p2-bb-sprout-icon {
    width: 82px;
    height: 82px;
  }

  .p2-bb-content-box {
    align-self: stretch;
    margin: 12px 0 12px -5px;
    padding: 18px 44px 18px 20px;
    background: #fbf8ef;
    border-radius: 17px 0 0 17px;
    box-shadow: none;
  }

  .p2-bb-content-box p {
    color: #1a2119;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.15;
    margin: 0 0 8px;
  }

  .p2-bb-content-box strong {
    color: #0b4a24;
    font-size: clamp(20px, 5.65vw, 26px);
    line-height: 1.05;
    font-weight: 800;
  }

  .p2-bb-leaf-decor {
    width: 80px;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
  }

  .p2-bb-content-box {
    padding-right: 68px;
  }
}

/* ================= STORY MOBILE FINAL GUARD ================= */
@media (max-width: 767px) {
  .mobile-only {
    display: inline !important;
  }

  .story-section {
    background: #fdfaf6;
    padding: 18px 16px 0;
    overflow: hidden;
  }

  .story-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .final-mobile-replica .fmr-real-results {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(142px, 0.94fr);
    min-height: 280px;
    align-items: center;
    gap: 8px;
    margin: 0 0 -4px;
    position: relative;
    overflow: visible;
    background: transparent;
    padding: 0;
  }

  .story-header {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: auto !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .story-header-content {
    align-self: center !important;
    padding: 0 !important;
    z-index: 10 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .story-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    width: fit-content !important;
    margin: 0 auto 15px !important;
    padding: 6px 13px !important;
    border-radius: 999px !important;
    background: #edf2df !important;
    color: #123c21 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
  }

  .story-badge svg {
    width: 15px !important;
    height: 15px !important;
    margin-right: 0 !important;
  }

  .story-header h1 {
    color: #101810 !important;
    font-size: clamp(20px, 6vw, 26px) !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
  }

  .story-header .green-text {
    color: #0b4a24;
    text-decoration: none;
    display: inline;
  }

  .story-header .green-text::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 5px auto 0;
    border-radius: 999px;
    background: #719d34;
    transform: rotate(-1deg);
  }

  .it-experience {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px !important;
    margin: 25px 0 0 !important;
    border: 1px solid #f0efeb !important;
    border-radius: 18px !important;
    background: #fbf8ef !important;
    box-shadow: 0 4px 12px rgba(47, 39, 26, 0.04) !important;
    text-align: left !important;
  }

  .it-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 10px !important;
    background: #edf2d8 !important;
    color: #0d3e22 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .it-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .it-experience p {
    color: #111811;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    text-align: left;
  }

  .it-experience p strong {
    color: #0b4a24;
    display: inline;
    font-weight: 800;
  }

  .story-main-img {
    grid-column: 2 !important;
    align-self: center !important;
    justify-self: center !important;
    width: 140% !important;
    margin: 0 -35% 0 0 !important;
    z-index: 2 !important;
  }

  .img-decoration {
    width: 110%;
    height: 110%;
    background: radial-gradient(
      circle,
      rgba(160, 184, 91, 0.2) 0 54%,
      transparent 60%
    );
  }

  .story-main-img img {
    width: 100% !important;
    max-height: 280px !important;
    object-fit: contain !important;
    mix-blend-mode: multiply !important;
  }

  .story-card {
    border: 0;
    box-shadow: none;
    border-radius: 15px;
    background: #fbf8ef;
  }

  .diagnosis-card {
    margin-top: 0;
    padding: 15px 12px 14px;
    background: #fbf4ea;
  }

  .diagnosis-card h3 {
    color: #182018;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.18;
    margin: 0 0 13px;
    font-weight: 800;
  }

  .diagnosis-card h3 strong {
    color: #0b4a24;
  }

  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 8px;
    align-items: start;
    margin-top: 15px;
  }

  .condition-item {
    min-width: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    gap: 8px;
    border-right: 0;
  }

  .condition-item:last-child {
    border-right: 0;
  }

  .condition-icon {
    width: 43px;
    height: 43px;
    margin: 0 auto;
    background: #eef1d8;
    color: #0d3e22;
  }

  .condition-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .condition-item span {
    color: #101810;
    font-size: clamp(8px, 2.28vw, 10px);
    line-height: 1.12;
    font-weight: 800;
    word-break: normal;
  }

  .doctors-card {
    padding: 12px 14px;
    background: #fbf1e6;
  }

  .doctors-content {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 12px;
  }

  .confused-icon-bg {
    width: 56px;
    height: 56px;
    background: #f2dcc4;
    color: #0d3e22;
  }

  .confused-icon-bg svg {
    width: 34px !important;
    height: 34px !important;
  }

  .doctors-text p,
  .doctors-text strong {
    font-size: clamp(15px, 4.15vw, 18px);
    line-height: 1.15;
    margin: 0;
  }

  .doctors-text p {
    color: #101810;
    font-weight: 800;
  }

  .doctors-text strong {
    color: #0b4a24;
    font-weight: 800;
  }

  .leaf-decor {
    position: static;
    transform: none;
    justify-self: end;
    font-size: 52px;
    line-height: 1;
  }

  .lifestyle-card {
    padding: 12px 14px 10px;
    background: #fbf8ef;
    overflow: hidden;
  }

  .lifestyle-top {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: 0 0 9px;
  }

  .lifestyle-img-container {
    width: 118px;
    height: 108px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 14px;
    background: radial-gradient(
      circle at 48% 52%,
      rgba(153, 180, 84, 0.2),
      transparent 68%
    );
  }

  .lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .lifestyle-title h3 {
    color: #0b4a24;
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.08;
    margin: 0 0 7px;
    font-weight: 800;
  }

  .lifestyle-underline {
    width: 70px;
    height: 3px;
    border-radius: 999px;
    margin: 0 0 9px;
    background: #83a23a;
  }

  .lifestyle-title p {
    color: #111811;
    font-size: clamp(12px, 3.45vw, 15px);
    line-height: 1.2;
    margin: 0;
  }

  .lifestyle-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 0;
    padding: 0;
    border: 0;
  }

  .stat-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    padding: 4px 3px;
    text-align: left;
  }

  .stat-icon {
    width: 22px;
    height: 22px;
    color: #0d3e22;
  }

  .stat-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .stat-text {
    color: #101810;
    font-size: clamp(8px, 2.35vw, 10px);
    line-height: 1.1;
    font-weight: 700;
  }

  .stat-divider {
    width: 1px;
    height: 32px;
    background: #d8d4c7;
  }

  .quote-card {
    padding: 16px 18px;
    background: #f4f0dc;
  }

  .quote-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(108px, 0.78fr);
    align-items: center;
    gap: 14px;
  }

  .quote-text-col {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
  }

  .quote-mark {
    color: #0b4a24;
    font-size: 36px;
    line-height: 0.8;
  }

  .quote-text p {
    color: #101810;
    font-size: clamp(9px, 2.7vw, 11px);
    line-height: 1.2;
    margin: 0 0 5px;
  }

  .quote-text strong {
    color: #0b4a24;
    font-weight: 800;
  }

  .quote-divider {
    width: 1px;
    height: 70px;
    background: #bfc4ad;
  }

  .signature-name {
    color: #4f5c45;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .signature-details {
    color: #101810;
    font-size: 10px;
    line-height: 1.18;
  }

  .story-cta {
    width: 100%;
    max-width: 430px;
    margin: 2px auto 0;
    padding-top: 10px;
  }

  .story-cta .cta-tag {
    top: 0;
    background: #c5df2c;
    color: #06311f;
    font-size: 10px;
    padding: 4px 12px;
  }

  .story-cta .cta-box {
    min-height: 82px;
    background: #062f1f;
    border: 2px dashed rgba(208, 255, 51, 0.68);
    border-radius: 14px;
    padding: 16px 16px;
  }

  .story-cta .cta-box::before {
    display: none;
  }

  .story-cta .cta-title {
    color: #fff;
    font-size: clamp(24px, 6.7vw, 31px);
    line-height: 1.08;
    font-weight: 800;
    padding: 0 58px 0 10px;
    text-align: center;
  }

  .story-cta .cta-arrow {
    width: 44px;
    height: 44px;
    right: 18px;
    font-size: 22px;
  }

  .story-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 auto;
    padding: 8px 0 0;
    color: #0c2718;
  }

  .story-footer .benefit-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
    padding: 0 5px;
    font-size: clamp(8px, 2.35vw, 10px);
    line-height: 1.12;
    text-align: left;
    font-weight: 700;
  }

  .story-footer .benefit-item:not(:last-child) {
    border-right: 1px solid #d5d9cb;
  }

  .story-footer .benefit-icon {
    width: 24px;
    height: 24px;
    min-width: 0;
    min-height: 0;
    margin: 0;
    color: #0c2718;
    background: transparent;
  }

  .story-footer .benefit-icon svg {
    width: 21px !important;
    height: 21px !important;
  }
}

/* ================= TRAINING MOBILE FINAL OVERRIDE ================= */
@media (max-width: 767px) {
  .training-section {
    background: #fdfaf6;
    color: #101810;
    overflow: hidden;
  }

  .ts-green-top,
  .ts-white-area {
    max-width: 430px;
    margin: 0 auto;
  }

  .ts-green-top {
    background: #fdfaf6;
    padding: 16px 18px 0;
    border: 0;
    overflow: visible;
  }

  .ts-top-badge {
    margin: 0 0 12px;
    padding: 6px 12px;
    border: 0;
    border-radius: 999px;
    background: #edf2df;
    color: #123c21;
    font-size: clamp(10px, 2.8vw, 12px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
  }

  .ts-hero-wrap {
    min-height: 278px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: end;
    gap: 4px;
    overflow: visible;
  }

  .ts-hero-text {
    align-self: start;
    z-index: 3;
    padding: 0 0 18px;
  }

  .ts-hero-text h2 {
    color: #101810;
    font-family: "Outfit", sans-serif;
    font-size: clamp(27px, 7.35vw, 34px);
    line-height: 1.11;
    font-weight: 800;
    margin: 0 0 14px;
    max-width: 270px;
  }

  .ts-lime {
    color: #0b4a24;
    display: inline-block;
    position: relative;
  }

  .ts-lime::after {
    content: "";
    display: block;
    width: 132px;
    height: 3px;
    margin-top: 5px;
    border-radius: 999px;
    background: #719d34;
    transform: rotate(-1deg);
  }

  .ts-sub-text {
    color: #293229;
    font-size: clamp(12px, 3.45vw, 15px);
    line-height: 1.28;
    max-width: 220px;
  }

  .ts-hero-img-wrap {
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 228px;
    max-width: 62vw;
    z-index: 1;
  }

  .ts-hero-img-wrap::before {
    content: "";
    position: absolute;
    width: 215px;
    height: 215px;
    right: 9px;
    bottom: 22px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(154, 178, 91, 0.25) 0 58%,
      transparent 59%
    );
    z-index: -1;
  }

  .ts-hero-img {
    width: 100%;
    max-width: none;
    max-height: 272px;
    object-fit: contain;
    object-position: bottom right;
    mix-blend-mode: multiply;
  }

  .ts-white-area {
    background: #fdfaf6;
    padding: 0 18px;
    gap: 10px;
  }

  .ts-learn-header {
    width: 100%;
    margin: 2px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .ts-learn-title {
    color: #0b4a24;
    font-size: clamp(14px, 3.9vw, 17px);
    font-weight: 800;
  }

  .ts-learn-items {
    gap: 8px;
  }

  .ts-learn-item {
    min-height: 75px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 32px;
    gap: 12px;
    padding: 10px;
    border: 1px solid #eeeae0;
    border-radius: 15px;
    background: #fffefb;
    box-shadow: 0 6px 14px rgba(33, 25, 14, 0.07);
    transform: none !important;
  }

  .ts-learn-item:hover {
    transform: none !important;
  }

  .ts-li-icon {
    position: relative;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #edf1dc;
    color: #0d3e22;
    font-size: 22px;
  }

  .ts-li-icon::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    width: 1px;
    height: 48px;
    background: #dedbd0;
    transform: translateY(-50%);
  }

  .ts-li-text strong {
    color: #122316;
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.13;
    font-weight: 800;
    margin-bottom: 3px;
  }

  .ts-li-text p {
    color: #202720;
    font-size: clamp(11px, 3.2vw, 14px);
    line-height: 1.18;
    font-weight: 500;
  }

  .ts-li-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf1dc;
    color: #6f8626;
    font-size: 11px;
    font-weight: 800;
  }

  .ts-format-section {
    padding: 11px 9px 12px;
    border: 0;
    border-radius: 14px;
    background: #f0efd8;
    box-shadow: none;
  }

  .ts-format-title {
    margin: 0 0 9px;
    color: #132316;
    font-size: clamp(12px, 3.4vw, 14px);
    font-weight: 800;
  }

  .ts-format-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .ts-format-card {
    padding: 0 5px;
    gap: 6px;
    border: 0;
    border-right: 1px solid #d4d2bc;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ts-format-card:last-child {
    border-right: 0;
  }

  .ts-fc-icon {
    width: 39px;
    height: 39px;
    margin: 0 auto 1px;
    background: #0c4a25;
    color: #f2f5df;
    font-size: 18px;
  }

  .ts-format-card strong,
  .ts-format-card p {
    font-size: clamp(8px, 2.15vw, 10px);
    line-height: 1.1;
  }

  .ts-benefits-box {
    padding: 11px;
    border: 1px solid #b6c4aa;
    border-radius: 15px;
    background: #fffdf8;
    box-shadow: none;
  }

  .ts-bb-inner {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
  }

  .ts-bb-img {
    width: 124px;
    height: 124px;
    font-size: 68px;
  }

  .ts-bb-list {
    gap: 7px;
  }

  .ts-bb-list li {
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    gap: 6px;
    color: #121a13;
    font-size: clamp(11px, 3.05vw, 13px);
    line-height: 1.2;
    font-weight: 600;
  }

  .ts-bb-list li strong {
    color: #0b4a24;
    font-weight: 900;
  }

  .ts-cta-wrap {
    margin: 0;
    padding-top: 7px;
  }

  .ts-cta-badge-top {
    top: 12px;
    padding: 2px 8px;
    background: #d5eb39;
    color: #0b351d;
    font-size: clamp(6px, 1.75vw, 7px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
  }

  .ts-cta-box {
    min-height: 88px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    gap: 6px;
    padding: 32px 17px 8px 24px;
    border-radius: 16px;
    background: #01371e;
    box-shadow: 0 7px 16px rgba(0, 33, 17, 0.18);
  }

  .ts-cta-box::before {
    inset: 7px;
    border: 1.5px dashed #899719;
    border-radius: 10px;
  }

  .ts-cta-left {
    min-width: 0;
    padding: 0;
    text-align: center;
    z-index: 2;
  }

  .ts-cta-line1 {
    color: #fff;
    font-size: clamp(15px, 4.45vw, 17px);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 1px;
  }

  .ts-cta-headline {
    color: #fff;
    font-size: clamp(13px, 3.9vw, 15px);
    line-height: 1.02;
    font-weight: 800;
    margin-bottom: 5px;
  }

  .ts-cta-lime {
    color: #d5eb39;
  }

  .ts-cta-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 3px 9px;
    border-radius: 5px;
    background: #fff7dd;
    color: #102319;
    font-size: clamp(9px, 2.75vw, 11px);
    line-height: 1;
    font-weight: 800;
  }

  .ts-cta-reserve strong {
    color: #0b4a24;
    font-size: 1.35em;
  }

  .ts-cta-btn {
    position: static;
    justify-self: center;
    z-index: 2;
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    background: #d5eb39;
    color: #082d18;
    border: 0;
    font-size: 23px;
    line-height: 1;
    transform: none !important;
  }

  .ts-cta-btn:hover {
    transform: none !important;
  }

  .ts-footer-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
    margin: 0;
    padding: 8px 3px 0;
    background: #fdfaf6;
    border: 0;
    color: #0b3c22;
  }

  .ts-fb-item {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    gap: 4px;
    padding: 0 5px;
    color: #122316;
    text-align: left;
    font-size: clamp(8px, 2.2vw, 10px);
    line-height: 1.08;
    font-weight: 700;
  }

  .ts-fb-icon {
    color: #0b4a24;
    font-size: 22px;
    line-height: 1;
    text-align: center;
  }

  .ts-fb-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: #cbcdbb;
  }
}

@media (max-width: 370px) {
  .ts-green-top,
  .ts-white-area {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ts-hero-wrap {
    min-height: 264px;
    grid-template-columns: minmax(0, 1fr) 124px;
  }

  .ts-hero-img-wrap {
    right: -45px;
    width: 210px;
  }

  .ts-learn-item {
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    gap: 9px;
    padding: 9px 8px;
  }

  .ts-li-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .ts-bb-inner {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 8px;
  }

  .ts-bb-img {
    width: 108px;
    height: 108px;
    font-size: 56px;
  }

  .ts-cta-box {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) 36px;
    padding-left: 17px;
    padding-right: 13px;
  }

  .ts-cta-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 21px;
  }
}

/* ================= REAL RESULTS MOBILE FINAL OVERRIDE ================= */
@media (max-width: 1000px) {
  .final-mobile-replica {
    background: #fdfaf6;
    color: #101810;
    overflow: hidden;
  }

  .final-mobile-replica .fmr-white-section {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 14px 18px 0;
    background: #fdfaf6;
  }

  .final-mobile-replica .section-container {
    max-width: 430px;
    padding: 0;
  }

  .final-mobile-replica .fmr-real-results {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .final-mobile-replica .fmr-rr-text {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
    z-index: 10 !important;
  }

  .final-mobile-replica .fmr-rr-text h1,
  .final-mobile-replica .fmr-rr-text h2 {
    color: #101810 !important;
    font-size: clamp(20px, 6vw, 26px) !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .final-mobile-replica .fmr-rr-img-wrapper {
    grid-column: 2 !important;
    align-self: center !important;
    justify-self: center !important;
    width: 130% !important;
    margin: 0 -30% 0 0 !important;
    z-index: 2 !important;
    position: relative !important;
  }

  .final-mobile-replica .fmr-rr-img {
    width: 100% !important;
    height: auto !important;
    max-height: 280px !important;
    object-fit: contain !important;
    mix-blend-mode: multiply !important;
  }

  .final-mobile-replica .fmr-rr-green {
    color: #0b4a24;
  }

  .final-mobile-replica .fmr-rr-underline {
    bottom: -8px;
    width: 72px;
    height: 2px;
    background: #6b8c30;
    border-radius: 999px;
  }

  .final-mobile-replica .fmr-rr-sub {
    color: #151b15;
    font-size: clamp(9px, 2.75vw, 11px);
    line-height: 1.25;
    margin: 0;
    max-width: 185px;
  }

  .final-mobile-replica .fmr-rr-strong {
    color: #0b4a24;
    font-weight: 900;
  }

  .final-mobile-replica .fmr-rr-img-wrapper {
    position: relative;
    justify-self: end;
    align-self: center;
    width: 174px;
    max-width: 48vw;
    margin: 0 -12px 0 0;
  }

  .final-mobile-replica .fmr-rr-img-wrapper::before {
    content: "";
    position: absolute;
    width: 156px;
    height: 156px;
    right: 12px;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(153, 180, 84, 0.22) 0 58%,
      transparent 59%
    );
    z-index: 0;
  }

  .final-mobile-replica .fmr-rr-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-height: 156px;
    object-fit: contain;
    object-position: bottom right;
    mix-blend-mode: multiply;
  }

  .final-mobile-replica .fmr-testimonials {
    max-width: 430px;
    margin: 0 auto 7px;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .final-mobile-replica .fmr-testi-card {
    /* min-height: 101px; */
    /* display: grid; */
    /* grid-template-columns: minmax(0, 43%) minmax(0, 57%); */
    align-items: center;
    gap: 8px;
    padding: 6px;
    border: 1px solid #eee9dc;
    border-radius: 10px;
    background: #fbf9ef;
    box-shadow: 0 3px 10px rgba(35, 27, 16, 0.06);
  }

  .final-mobile-replica .fmr-tc-images {
    width: 100%;
    height: 100%;
    min-height: 250px;
    max-height: 250px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-radius: 7px;
    overflow: visible;
  }

  .final-mobile-replica .fmr-tc-img-box {
    width: auto;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #e8eadf;
  }

  .final-mobile-replica .fmr-tc-img-box:first-child {
    border-radius: 7px 0 0 7px;
  }

  .final-mobile-replica .fmr-tc-img-box:last-child {
    border-radius: 0 7px 7px 0;
  }

  .final-mobile-replica .fmr-tc-img-box img {
    width: 100%;
    height: 100%;
    /* min-height: 89px;
    max-height: 89px; */
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .final-mobile-replica .fmr-tc-label {
    bottom: 3px;
    max-width: calc(100% - 6px);
    padding: 2px 4px;
    border-radius: 3px;
    font-size: clamp(6px, 1.95vw, 8px);
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
  }

  .final-mobile-replica .fmr-tc-arrow-divider {
    width: 21px;
    height: 21px;
    border: 2px solid #fbf9ef;
    background: #0b3d22;
  }

  .final-mobile-replica .fmr-arrow-inner {
    font-size: 11px;
    line-height: 1;
    margin-left: 1px;
  }

  .final-mobile-replica .fmr-tc-content {
    min-width: 0;
    display: block;
    padding: 5px 3px 3px 0;
  }

  .final-mobile-replica .fmr-tc-text {
    min-width: 0;
  }

  .final-mobile-replica .fmr-tc-text h4 {
    color: #122316;
    font-size: clamp(13px, 3.9vw, 16px);
    line-height: 1.08;
    font-weight: 900;
    margin: 0 0 6px;
  }

  .final-mobile-replica .fmr-tc-text p {
    color: #1d241d;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.18;
    font-weight: 500;
    margin: 0 0 7px;
  }

  .final-mobile-replica .fmr-tc-author {
    color: #283028;
    display: block;
    font-size: clamp(8px, 2.55vw, 10px);
    line-height: 1.16;
    font-weight: 700;
  }

  .final-mobile-replica .fmr-system-banner {
    min-height: 47px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    padding: 5px 8px;
    border: 0;
    border-radius: 10px;
    background: #f1f5e8;
    overflow: hidden;
  }

  .final-mobile-replica .fmr-shield-icon {
    width: 35px;
    height: 35px;
    background: #0b3d22;
    color: #fff;
  }

  .final-mobile-replica .fmr-shield-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .final-mobile-replica .fmr-sb-text {
    min-width: 0;
    margin: 0;
    text-align: center;
  }

  .final-mobile-replica .fmr-sb-text p {
    color: #151b15;
    font-size: clamp(9px, 2.75vw, 11px);
    line-height: 1.08;
    margin: 0;
  }

  .final-mobile-replica .fmr-sb-text strong {
    color: #122316;
    font-size: clamp(12px, 3.45vw, 14px);
    line-height: 1.05;
    font-weight: 900;
    margin: 0;
  }

  .final-mobile-replica .fmr-sb-text .fmr-sb-sub {
    color: #151b15;
    font-size: clamp(8px, 2.45vw, 10px);
  }

  .final-mobile-replica .fmr-sb-icon-right {
    position: static;
    align-self: end;
    justify-self: end;
    font-size: 30px;
    line-height: 1;
    opacity: 0.75;
  }

  .final-mobile-replica .fmr-cta-container {
    margin: 0;
    padding-top: 8px;
  }

  .final-mobile-replica .fmr-cta-badge {
    top: 2px;
    padding: 2px 9px;
    border-radius: 3px;
    background: #d6e332;
    color: #0b351d;
    font-size: clamp(8px, 2.25vw, 9px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .final-mobile-replica .fmr-cta-box {
    min-height: 61px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: center;
    gap: 6px;
    padding: 10px 17px 8px 18px;
    border-radius: 12px;
    background: #02351e;
    box-shadow: 0 6px 14px rgba(0, 33, 17, 0.18);
  }

  .final-mobile-replica .fmr-cta-box::before {
    inset: 6px;
    border: 1.5px dashed #879819;
    border-radius: 8px;
    opacity: 1;
  }

  .final-mobile-replica .fmr-cta-left {
    min-width: 0;
    z-index: 2;
  }

  .final-mobile-replica .fmr-cta-title {
    color: #fff;
    font-size: clamp(18px, 5.55vw, 22px);
    line-height: 0.96;
    font-weight: 800;
    padding: 0;
    text-align: center;
  }

  .final-mobile-replica .fmr-cta-price {
    color: #d5eb39;
    font-size: 1.15em;
    font-weight: 900;
  }

  .final-mobile-replica .fmr-cta-btn {
    position: static;
    justify-self: center;
    z-index: 2;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #d5eb39;
    color: #082d18;
    border: 0;
    font-size: 20px;
    line-height: 1;
    transform: none !important;
  }

  .final-mobile-replica .fmr-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 10px 4px;
    background: #fdfaf6;
    gap: 2px;
  }

  .final-mobile-replica .fmr-f-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex: 1;
    min-width: 0;
    color: #122316;
    text-align: left;
    font-size: clamp(10px, 2.8vw, 11px);
    line-height: 1.25;
    font-weight: 800;
  }

  .final-mobile-replica .fmr-f-icon {
    color: #0b4a24;
    line-height: 1;
  }

  .final-mobile-replica .fmr-f-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .final-mobile-replica .fmr-f-divider {
    width: 1px;
    height: 24px;
    background: #cbcdbb;
  }
}

@media (max-width: 370px) {
  .final-mobile-replica .fmr-white-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .final-mobile-replica .fmr-real-results {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.78fr);
    min-height: 146px;
  }

  .final-mobile-replica .fmr-rr-img-wrapper {
    width: 158px;
    margin-right: -18px;
  }

  /* .final-mobile-replica .fmr-testi-card {
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: 6px;
  } */

  .final-mobile-replica .fmr-tc-content {
    padding-right: 0;
  }

  .final-mobile-replica .fmr-tc-text h4 {
    font-size: clamp(12px, 3.75vw, 14px);
  }

  .final-mobile-replica .fmr-tc-text p {
    font-size: clamp(9px, 2.9vw, 11px);
  }

  .final-mobile-replica .fmr-tc-author {
    font-size: clamp(8px, 2.45vw, 9px);
  }

  .final-mobile-replica .fmr-cta-box {
    grid-template-columns: minmax(0, 1fr) 34px;
    padding-left: 15px;
    padding-right: 13px;
  }

  .final-mobile-replica .fmr-cta-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 19px;
  }
}

/* ================= DISCLAIMER FOOTER MOBILE 2-COLUMN OVERRIDE ================= */
@media (max-width: 767px) {
  .disc-footer-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .disc-f-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .disc-f-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .disc-f-icon svg {
    width: 21px !important;
    height: 21px !important;
  }

  .disc-f-text {
    min-width: 0;
  }

  .disc-f-text strong {
    font-size: clamp(12px, 3.45vw, 14px);
    line-height: 1.08;
    margin-bottom: 4px;
  }

  .disc-f-text span {
    font-size: clamp(10px, 2.95vw, 12px);
    line-height: 1.18;
  }
}

/* ================= TRAINING HERO MOBILE EXACT OVERRIDE ================= */
@media (max-width: 767px) {
  .training-section {
    background: #fdfaf6;
  }

  .training-section .ts-green-top {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 8px 18px 0;
    background: #fdfaf6;
    border: 0;
    overflow: hidden;
  }

  .training-section .ts-top-badge {
    position: relative;
    z-index: 4;
    margin: 0 0 5px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eef2df;
    color: #17341f;
    font-size: clamp(6px, 1.85vw, 8px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
  }

  .training-section .ts-badge-dot {
    font-size: 8px;
  }

  .training-section .ts-hero-wrap {
    position: relative;
    min-height: 133px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 143px;
    align-items: end;
    gap: 0;
    overflow: visible;
  }

  .training-section .ts-hero-text {
    position: relative;
    z-index: 3;
    align-self: start;
    padding: 0 0 12px;
    min-width: 0;
  }

  .training-section .ts-hero-text h2 {
    max-width: 186px;
    margin: 0 0 8px;
    color: #101810;
    font-family: "Outfit", sans-serif;
    font-size: clamp(17px, 5.25vw, 22px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
  }

  .training-section .ts-lime {
    color: #0b4a24;
    display: inline-block;
    position: relative;
  }

  .training-section .ts-lime::after {
    width: 94px;
    height: 2px;
    margin-top: 3px;
    background: #6f8f34;
  }

  .training-section .ts-sub-text {
    max-width: 170px;
    color: #1e281f;
    font-size: clamp(7px, 2.2vw, 9px);
    line-height: 1.25;
    font-weight: 600;
    margin: 0;
  }

  .training-section .ts-hero-img-wrap {
    position: absolute;
    right: -14px;
    bottom: 0;
    width: 173px;
    max-width: 52vw;
    z-index: 1;
  }

  .training-section .ts-hero-img-wrap::before {
    width: 154px;
    height: 154px;
    right: 5px;
    bottom: 2px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(154, 178, 91, 0.24) 0 58%,
      transparent 59%
    );
  }

  .training-section .ts-hero-img {
    display: block;
    width: 100%;
    max-height: 136px;
    object-fit: contain;
    object-position: bottom right;
    mix-blend-mode: multiply;
  }
}

@media (max-width: 370px) {
  .training-section .ts-green-top {
    padding-left: 14px;
    padding-right: 14px;
  }

  .training-section .ts-hero-wrap {
    min-height: 128px;
    grid-template-columns: minmax(0, 1fr) 124px;
  }

  .training-section .ts-hero-text h2 {
    max-width: 168px;
    font-size: 17px;
  }

  .training-section .ts-sub-text {
    max-width: 150px;
    font-size: 7px;
  }

  .training-section .ts-hero-img-wrap {
    right: -20px;
    width: 158px;
  }
}

/* ================= FAQ + FINAL STEP DESKTOP RESPONSIVE OVERRIDE ================= */
@media (min-width: 1025px) {
  .faq-section {
    padding: 96px 5% 72px;
    background:
      radial-gradient(
        circle at 18% 8%,
        rgba(118, 156, 58, 0.18),
        transparent 28%
      ),
      radial-gradient(
        circle at 82% 16%,
        rgba(38, 113, 70, 0.22),
        transparent 30%
      ),
      linear-gradient(180deg, #041c14 0%, #03140e 100%);
  }

  .faq-section .section-container {
    width: 100%;
    max-width: 1180px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 44px;
    align-items: start;
    text-align: left;
  }

  .faq-section > .section-container > .faq-header {
    position: sticky;
    top: 32px;
    align-items: flex-start;
    padding: 0;
    text-align: left;
  }

  .faq-badge {
    padding: 9px 18px;
    margin-bottom: 18px;
    font-size: 13px;
    background: rgba(208, 255, 51, 0.08);
  }

  .faq-badge-icon {
    font-size: 14px;
  }

  .faq-headline {
    max-width: 420px;
    font-size: clamp(48px, 4.7vw, 68px);
    line-height: 0.98;
    margin-bottom: 18px;
  }

  .faq-sub-wrap {
    width: 100%;
    max-width: 400px;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    margin: 0;
  }

  .faq-sub {
    font-size: 20px;
    line-height: 1.22;
    text-align: center;
  }

  .faq-leaf {
    font-size: 30px;
  }

  .faq-list {
    gap: 12px;
    margin: 0;
  }

  .faq-item {
    border-radius: 16px;
    background: rgba(7, 43, 30, 0.86);
    border-color: rgba(151, 186, 80, 0.28);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  }

  .faq-item:hover {
    border-color: rgba(208, 255, 51, 0.46);
    background: rgba(9, 52, 35, 0.92);
  }

  .faq-item > .faq-header {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 18px;
    padding: 18px 20px;
  }

  .faq-left {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
  }

  .faq-item .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .faq-item .icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .faq-title {
    font-size: 19px;
    line-height: 1.18;
  }

  .faq-item .toggle {
    width: 38px;
    height: 38px;
  }

  .faq-content {
    padding: 0 78px 0 90px;
    font-size: 16px;
    line-height: 1.45;
  }

  .faq-item.active .faq-content {
    max-height: 160px;
    padding-bottom: 20px;
  }

  .faq-cta-box-outer {
    grid-column: 1 / -1;
    padding: 30px 0 0;
  }

  .faq-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 40px 30px;
    border-radius: 22px;
    background: linear-gradient(
      135deg,
      rgba(7, 48, 33, 0.96),
      rgba(4, 28, 20, 0.96)
    );
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
  }

  .faq-cta-info {
    width: 100%;
  }

  .faq-cta-btn {
    margin: 0;
  }

  .faq-features-row {
    width: 100%;
    margin-top: 10px;
  }

  .faq-cta-top {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .faq-cta-headline {
    margin: 0;
    font-size: 36px;
    line-height: 1.05;
  }

  .faq-cta-btn {
    width: auto;
    min-width: 300px;
    min-height: 58px;
    margin: 0;
    padding: 16px 36px;
    font-size: 20px;
    white-space: nowrap;
    box-shadow: 0 5px 0 rgba(105, 135, 27, 0.65);
  }

  .faq-btn-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .faq-features-row {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 760px;
    margin: 24px auto 0;
    gap: 16px;
  }

  .faq-feature {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .faq-f-icon {
    font-size: 28px;
  }

  .faq-f-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .faq-f-text strong {
    font-size: 15px;
  }

  .faq-f-text p {
    font-size: 13px;
    line-height: 1.2;
  }

  .faq-feature-div {
    height: 46px;
  }

  .faq-footer {
    grid-column: 1 / -1;
    width: 100%;
    margin: 18px 0 0;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(3, 20, 14, 0.7);
    font-size: 14px;
  }

  .final-cta-section {
    padding: 104px 5% 90px;
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(87, 127, 48, 0.2),
        transparent 32%
      ),
      linear-gradient(180deg, #031b13 0%, #041c14 100%);
  }

  .final-cta-section .section-container {
    width: 100%;
    max-width: 1120px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.78fr);
    gap: 34px;
    align-items: center;
    text-align: left;
  }

  .fcta-header {
    grid-column: 1;
    text-align: left;
  }

  .fcta-badge {
    padding: 10px 20px;
    margin-bottom: 22px;
    font-size: 13px;
  }

  .fcta-headline-wrap {
    padding: 0;
    margin-bottom: 18px;
  }

  .fcta-headline {
    font-size: clamp(50px, 4.8vw, 68px);
    line-height: 1.02;
  }

  .fcta-decor-left,
  .fcta-decor-right {
    display: none;
  }

  .fcta-center-leaf {
    margin: 24px 0 0;
    width: 210px;
    font-size: 30px;
  }

  .fcta-center-leaf::before,
  .fcta-center-leaf::after {
    width: 76px;
  }

  .fcta-benefits-box {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    margin: 0;
    border-radius: 24px;
    background: rgba(6, 46, 31, 0.78);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.24);
  }

  .fcta-benefit {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 160px;
    padding: 34px 24px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(96, 137, 65, 0.3);
  }

  .fcta-benefit:last-child {
    border-bottom: 0;
  }

  .fcta-benefit-icon-wrap {
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .fcta-benefit-icon {
    font-size: 32px;
  }

  .fcta-benefit p {
    margin: 0;
    font-size: 22px;
    line-height: 1.16;
  }

  .fcta-benefit-line {
    grid-column: 2;
    width: 46px;
    height: 3px;
    margin-top: -16px;
  }

  .fcta-quote-box {
    grid-column: 1;
    padding: 38px 46px 42px;
    margin: 0;
    border-radius: 24px;
    text-align: left;
  }

  .fcta-quote-left,
  .fcta-quote-right {
    font-size: 72px;
  }

  .fcta-quote-white {
    font-size: 32px;
    white-space: nowrap;
  }

  .fcta-quote-lime {
    font-size: 42px;
    white-space: nowrap;
  }

  .fcta-squiggle-line {
    left: 0;
    width: 190px;
    transform: rotate(-1deg);
  }

  .fcta-main-btn {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 620px);
    min-height: 72px;
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 14px 26px;
    margin: 6px 0 0;
    border-radius: 18px;
    font-size: 28px;
  }

  .fcta-btn-icon-circle {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .fcta-features-bar {
    grid-column: 1 / -1;
    width: min(100%, 760px);
    justify-self: center;
    display: flex;
    gap: 28px;
    justify-content: center;
    margin: 0;
  }

  .fcta-fb-item {
    font-size: 16px;
    gap: 9px;
  }

  .fcta-fb-icon {
    font-size: 20px;
  }

  .fcta-fb-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .fcta-batch-box-wrapper {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    max-width: 520px;
    margin: 0 auto;
  }

  .fcta-batch-box {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 22px;
    border-radius: 18px;
  }

  .fcta-batch-icon {
    width: 58px;
    height: 58px;
    font-size: 34px;
  }

  .fcta-batch-top {
    font-size: 18px;
  }

  .fcta-batch-bottom {
    font-size: 24px;
  }

  .fcta-footer {
    grid-column: 1 / -1;
    font-size: 14px;
    padding-top: 0;
  }
}

/* ================= FAQ + FINAL STEP DESKTOP SIZE REFINEMENT ================= */
@media (min-width: 1025px) {
  .faq-section {
    padding: 84px 5% 68px;
  }

  .faq-section .section-container {
    max-width: 1120px;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 42px;
  }

  .faq-section > .section-container > .faq-header {
    position: static;
    top: auto;
    padding-top: 4px;
  }

  .faq-headline {
    max-width: 360px;
    font-size: clamp(38px, 3.8vw, 54px);
    line-height: 1.04;
    margin-bottom: 16px;
  }

  .faq-sub-wrap {
    max-width: 340px;
  }

  .faq-sub {
    font-size: 16px;
  }

  .faq-leaf {
    font-size: 24px;
  }

  .faq-item > .faq-header {
    padding: 14px 18px;
  }

  .faq-left {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .faq-item .icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .faq-title {
    font-size: 17px;
    line-height: 1.2;
  }

  .faq-item .toggle {
    width: 34px;
    height: 34px;
  }

  .faq-content {
    padding-left: 80px;
    padding-right: 66px;
    font-size: 15px;
  }

  .faq-cta-box-outer {
    padding-top: 38px;
    clear: both;
  }

  .faq-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 40px 30px;
    border-radius: 22px;
  }

  .faq-cta-info {
    width: 100%;
  }

  .faq-cta-btn {
    margin: 0;
  }

  .faq-features-row {
    width: 100%;
    margin-top: 10px;
  }

  .faq-cta-top {
    font-size: 16px;
  }

  .faq-cta-headline {
    font-size: 30px;
    line-height: 1.08;
  }

  .faq-cta-btn {
    width: auto;
    min-width: 300px;
    min-height: 58px;
    font-size: 20px;
    padding: 16px 36px;
    white-space: nowrap;
    margin: 0;
  }

  .faq-features-row {
    max-width: 700px;
    margin-top: 20px;
  }

  .faq-f-text strong {
    font-size: 14px;
  }

  .faq-f-text p {
    font-size: 12px;
  }

  .final-cta-section {
    padding: 88px 5% 80px;
  }

  .final-cta-section .section-container {
    max-width: 1060px;
    grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.7fr);
    gap: 30px;
  }

  .fcta-badge {
    font-size: 12px;
    padding: 9px 18px;
    margin-bottom: 18px;
  }

  .fcta-headline {
    font-size: clamp(38px, 3.9vw, 54px);
    line-height: 1.05;
  }

  .fcta-center-leaf {
    margin-top: 18px;
    font-size: 24px;
  }

  .fcta-benefits-box {
    border-radius: 20px;
  }

  .fcta-benefit {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 155px;
    gap: 16px;
    padding: 32px 22px;
  }

  .fcta-benefit-icon-wrap {
    width: 56px;
    height: 56px;
  }

  .fcta-benefit-icon {
    font-size: 26px;
  }

  .fcta-benefit p {
    font-size: 17px;
    line-height: 1.2;
  }

  .fcta-benefit-line {
    width: 38px;
    margin-top: -12px;
  }

  .fcta-quote-box {
    padding: 32px 40px 36px;
    border-radius: 20px;
  }

  .fcta-quote-left,
  .fcta-quote-right {
    font-size: 58px;
  }

  .fcta-quote-white {
    font-size: 25px;
  }

  .fcta-quote-lime {
    font-size: 32px;
  }

  .fcta-main-btn {
    width: min(100%, 520px);
    min-height: 62px;
    grid-template-columns: 46px minmax(0, 1fr);
    font-size: 22px;
    border-radius: 16px;
  }

  .fcta-btn-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 23px;
  }

  .fcta-features-bar {
    width: min(100%, 680px);
    gap: 22px;
  }

  .fcta-fb-item {
    font-size: 14px;
  }

  .fcta-batch-box-wrapper {
    width: min(100%, 460px);
  }

  .fcta-batch-box {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 16px 20px;
  }

  .fcta-batch-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .fcta-batch-top {
    font-size: 16px;
  }

  .fcta-batch-bottom {
    font-size: 20px;
  }

  .fcta-footer {
    font-size: 13px;
  }
}

/* ================= DESKTOP GLOBAL ALIGNMENT POLISH ================= */
@media (min-width: 1025px) {
  :root {
    --desktop-page-max: 1120px;
    --desktop-page-pad: 32px;
    --desktop-section-y: 64px;
    --desktop-gap: 28px;
  }

  .section-container,
  .hero-container,
  .white-container,
  .p3-container,
  .story-container,
  .training-section .ts-green-top,
  .training-section .ts-white-area,
  .nfe-top > *,
  .nfe-cards-area,
  .nfe-cta-area,
  .faq-section .section-container,
  .final-cta-section .section-container,
  .disclaimer-section .section-container {
    max-width: var(--desktop-page-max);
  }

  .green-section,
  .white-section,
  .page-two,
  .page-three,
  .story-section,
  .final-mobile-replica .fmr-white-section,
  .training-section,
  .nfe-section,
  .faq-section,
  .final-cta-section,
  .disclaimer-section {
    padding-left: var(--desktop-page-pad);
    padding-right: var(--desktop-page-pad);
  }

  .green-section {
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .hero-container {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 34px;
  }

  .white-container {
    max-width: 560px;
  }

  .features-card-single {
    max-width: 660px;
  }

  .page-two,
  .page-three,
  .story-section,
  .training-section,
  .nfe-section,
  .faq-section,
  .final-cta-section,
  .disclaimer-section {
    padding-top: var(--desktop-section-y);
    padding-bottom: var(--desktop-section-y);
  }

  .page-two {
    background: #fdfcf7 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-two .p2-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "header header"
      "cards banner"
      "bottom bottom";
    column-gap: 40px;
    row-gap: 32px;
    align-items: stretch;
    width: 100%;
    max-width: var(--desktop-page-max);
    margin: 0 auto;
  }

  .p2-header-text > h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(36px, 6vw, 56px) !important;
    line-height: 1.02 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    margin-bottom: 8px !important;
    color: var(--dark-green) !important;
  }

  .p2-header-text > h3 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(24px, 3.2vw, 36px) !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    color: #1a4a36 !important;
    margin-top: 0 !important;
  }

  .p2-header-text .green-text {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }

  .p2-header-text .green-text::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #a5cc39;
    border-radius: 4px;
    transform: rotate(-0.5deg);
    opacity: 0.8;
  }

  .p2-header-img {
    max-width: 480px !important;
    margin-right: -2% !important;
  }

  .p2-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
  }

  .p2-header-text h3 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(22px, 3vw, 32px) !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    color: #555 !important;
  }

  .p2-header-img {
    max-width: 420px !important;
    margin-right: -5% !important;
  }

  .page-three {
    gap: 22px;
  }

  .p3-container {
    gap: 22px;
  }

  .p3-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(142px, 0.94fr);
    min-height: 280px;
    align-items: end;
    gap: 24px;
    margin: 0 0 -4px;
    position: relative;
    overflow: visible;
    background: transparent;
    padding: 0;
  }

  .p3-problem-box,
  .p3-root-box,
  .p3-solution-box {
    padding: 26px;
  }

  .story-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .story-container {
    width: 100%;
    padding: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
  }

  .story-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
      "content img"
      "box img";
    align-items: center;
    gap: 20px 60px;
  }

  .story-header-content {
    grid-area: content;
  }

  .story-main-img {
    grid-area: img;
  }

  .it-experience {
    grid-area: box;
    max-width: 500px;
    justify-self: start;
  }

  .story-card,
  .diagnosis-card,
  .doctors-card,
  .lifestyle-card,
  .quote-card {
    padding: 24px;
  }

  .final-mobile-replica .fmr-white-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .final-mobile-replica .section-container,
  .final-mobile-replica .fmr-testimonials {
    max-width: var(--desktop-page-max);
    margin-left: auto;
    margin-right: auto;
  }

  .fmr-real-results {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
      "content img"
      "box img";
    min-height: 280px;
    align-items: center;
    gap: 20px 60px;
    margin: 0 0 38px;
    position: relative;
    overflow: visible;
    background: transparent;
    padding: 0;
  }

  .fmr-rr-text {
    grid-area: content;
  }

  .fmr-rr-img-wrapper {
    grid-area: img;
  }

  .fmr-real-results .it-experience {
    grid-area: box;
    max-width: 100%;
    margin: 0;
  }

  .mobile-only {
    display: none !important;
  }

  .fmr-testimonials {
    gap: 18px;
    margin-bottom: 24px;
  }

  .fmr-testi-card {
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
  }

  .fmr-tc-img-box {
    width: 112px;
  }

  .fmr-tc-img-box img {
    min-height: 158px;
  }

  .fmr-system-banner {
    margin-bottom: 24px;
  }

  .training-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .training-section .ts-green-top,
  .training-section .ts-white-area {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .ts-hero-wrap {
    gap: 28px;
  }

  .ts-white-area {
    gap: 18px;
  }

  .ts-learn-items {
    gap: 14px;
  }

  .ts-format-grid {
    gap: 14px;
  }

  .ts-benefits-box,
  .ts-format-section {
    padding: 24px;
  }

  .nfe-section {
    gap: 28px;
  }

  .nfe-top {
    width: 100%;
    padding: 64px 0 34px;
  }

  .nfe-batch-card,
  .nfe-features-bar {
    max-width: 760px;
  }

  .nfe-batch-card {
    margin-top: 28px;
    padding: 0;
    background: transparent;
    border: none;
  }

  .nfe-info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
  }

  .nfe-info-value {
    font-size: 13px;
  }

  .nfe-cards-area {
    width: 100%;
    margin: 36px auto;
  }

  .nfe-card {
    padding: 30px 22px;
  }

  .nfe-cta-area {
    width: 100%;
    padding: 48px 28px 42px;
  }

  .nfe-footer-bar {
    gap: 32px;
    padding: 24px 0 0;
  }

  .faq-section {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .faq-section .section-container {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-cta-box-outer {
    padding-top: 28px;
  }

  .faq-cta-box {
    padding: 26px 30px;
  }

  .final-cta-section {
    padding-top: 70px;
    padding-bottom: 66px;
  }

  .final-cta-section .section-container {
    max-width: 1040px;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
  }

  .fcta-benefits-box {
    align-self: center;
  }

  .fcta-quote-box {
    max-width: 900px;
  }

  .fcta-quote-white,
  .fcta-quote-lime {
    white-space: nowrap;
  }

  .fcta-main-btn,
  .fcta-features-bar,
  .fcta-batch-box-wrapper {
    margin-top: 0;
  }

  .disclaimer-section {
    padding-top: 58px;
    padding-bottom: 140px;
  }

  .disc-text-area {
    max-width: 900px;
    margin-bottom: 34px;
  }

  .disc-footer-bar {
    max-width: 900px;
    gap: 12px;
  }
}

/* ================= LANDING FIRST VIEWPORT FIT FIX ================= */
@media (min-width: 768px) {
  .hero {
    min-height: 100svh;
    height: auto;
  }

  .green-section {
    flex: 1.12;
    padding-top: clamp(22px, 3.4vh, 44px);
    padding-bottom: clamp(18px, 2.8vh, 34px);
  }

  .hero-container {
    gap: clamp(18px, 3vw, 34px);
  }

  .top-nav {
    margin-bottom: clamp(8px, 1.4vh, 14px);
  }

  .woman-img {
    max-height: clamp(280px, 52vh, 540px);
    margin-bottom: clamp(-34px, -2.8vh, -18px);
  }

  .curve-divider {
    height: clamp(22px, 3vh, 34px);
    min-height: 22px;
  }

  .features-container {
    padding-bottom: 4px;
  }

  .features-card-single {
    max-width: 640px;
    margin-top: clamp(-34px, -3.6vh, -22px);
    padding: clamp(8px, 1.1vh, 12px) 0;
    border-radius: 16px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-bottom: 4px;
  }

  .feature-divider {
    height: 44px;
  }

  .feature-title {
    font-size: 15px;
  }

  .feature-sub {
    font-size: 11px;
  }

  .white-section {
    flex: 0.82;
    padding-top: 6px;
    padding-bottom: clamp(12px, 2vh, 22px);
    justify-content: flex-start;
  }

  .white-container {
    max-width: 480px;
  }

  .social-proof {
    gap: 12px;
    margin-bottom: 4px;
  }

  .proof-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-width: 3px;
  }

  .proof-text h3 {
    font-size: clamp(18px, 2.2vh, 22px);
  }

  .proof-text p {
    font-size: clamp(11px, 1.55vh, 13px);
  }

  .cta-box-wrapper {
    max-width: 460px;
    margin-top: 2px;
    padding-top: 0;
  }

  .cta-tag {
    padding: 5px 18px;
    font-size: clamp(10px, 1.35vh, 12px);
  }

  .cta-box {
    min-height: clamp(62px, 8.5vh, 76px);
    padding: clamp(12px, 1.6vh, 16px) 70px clamp(12px, 1.6vh, 16px) 24px;
    border-radius: 18px;
  }

  .cta-title {
    padding: 0;
    font-size: clamp(20px, 2.7vh, 26px);
    line-height: 1.12;
  }

  .cta-arrow {
    right: 28px;
    width: clamp(42px, 6vh, 54px);
    height: clamp(42px, 6vh, 54px);
    font-size: 22px;
  }

  .benefits-bar {
    width: 100%;
    max-width: 480px;
    margin: 2px auto 0;
    gap: 0;
    align-items: start;
  }

  .benefit-item {
    min-width: 0;
    gap: 4px;
    padding: 0 10px;
    font-size: clamp(10px, 1.45vh, 12px);
    line-height: 1.14;
  }

  .benefit-icon {
    height: 24px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .benefit-icon svg {
    width: 22px !important;
    height: 22px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    min-height: 100svh;
  }

  .hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    align-items: stretch;
  }

  .hero-text {
    text-align: left;
    width: 100%;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: auto;
  }

  .woman-img {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 48vh;
  }

  h1 {
    font-size: clamp(30px, 4.8vh, 42px);
    margin-bottom: 8px;
  }

  .sub-headline {
    font-size: clamp(14px, 2.2vh, 18px);
    margin-bottom: 10px;
  }

  .problem-text {
    font-size: clamp(11px, 1.75vh, 14px);
  }

  .root-cause {
    font-size: clamp(22px, 3.5vh, 32px);
    margin-bottom: 16px;
  }

  .fix-section {
    max-width: none;
  }

  .features-card-single {
    margin-top: -24px;
  }

  .white-section {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (min-width: 768px) and (max-height: 720px) {
  .green-section {
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .woman-img {
    max-height: 42vh;
  }

  .features-card-single {
    margin-top: -22px;
    padding: 7px 0;
  }

  .social-proof {
    display: none;
  }

  .cta-box {
    min-height: 68px;
  }

  .benefits-bar {
    margin-top: 8px;
  }
}

/* ================= DESKTOP SECTION GAP COMPRESSION FINAL ================= */
@media (min-width: 1025px) {
  .hero,
  .page-two,
  .page-three,
  .story-section,
  .final-mobile-replica,
  .training-section,
  .nfe-section,
  .faq-section,
  .final-cta-section {
    min-height: 0 !important;
  }

  .green-section {
    padding-top: 34px !important;
    padding-bottom: 22px !important;
  }

  .woman-img {
    margin-bottom: -62px !important;
    max-height: 62vh !important;
    object-fit: contain;
    width: 120% !important;
    max-width: 1024px !important;
    margin-left: -50px;
    transform: translateY(-5vh);
  }

  .white-section {
    padding-top: 8px !important;
    padding-bottom: 0px !important;
    background: #fdfcf7 !important;
  }

  .page-two,
  .page-three,
  .story-section,
  .training-section,
  .nfe-section,
  .faq-section,
  .final-cta-section {
    padding-top: 12px !important;
    padding-bottom: 0px !important;
  }

  .features-container {
    padding-bottom: 0 !important;
  }

  .features-card-single {
    margin-top: -24px !important;
  }

  .social-proof {
    margin-bottom: 6px !important;
  }

  .benefits-bar {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
  }

  .page-two {
    align-content: start !important;
    gap: 18px 28px !important;
    overflow: visible !important;
  }

  .p2-header-text,
  .p2-header-img {
    margin-top: 0 !important;
  }

  .p2-cards {
    align-self: start !important;
  }

  .p2-banner-middle {
    align-self: start !important;
  }

  .page-three,
  .p3-container,
  .story-container,
  .ts-white-area,
  .ts-learn-items,
  .nfe-section,
  .faq-list,
  .final-cta-section .section-container {
    gap: 18px !important;
  }

  .story-section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .story-header {
    margin-bottom: 18px !important;
  }

  .fmr-real-results {
    margin-top: 0 !important;
    margin-bottom: 28px !important;
  }

  .final-mobile-replica .fmr-white-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .training-section .ts-green-top {
    padding-top: 42px !important;
  }

  .training-section .ts-white-area {
    padding-top: 32px !important;
    padding-bottom: 42px !important;
  }

  .nfe-top {
    padding-top: 42px !important;
    padding-bottom: 24px !important;
  }

  .nfe-cards-area {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }

  .nfe-cta-area {
    padding-top: 38px !important;
    padding-bottom: 34px !important;
  }

  .faq-cta-box-outer {
    padding-top: 22px !important;
  }

  .fcta-main-btn,
  .fcta-features-bar,
  .fcta-batch-box-wrapper {
    margin-bottom: 12px !important;
  }

  .disc-logo-area,
  .disc-divider,
  .disc-text-area {
    margin-bottom: 24px !important;
  }
}

/* ================= FIRST LANDING HEIGHT FINAL ================= */
.hero {
  min-height: auto !important;
}

/* ================= SIMPLE SCROLL REVEAL ANIMATIONS ================= */
.scroll-reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* ================= SMALL SECTION ANIMATION POLISH ================= */
@keyframes heroSoftRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes iconPop {
  0% {
    transform: scale(0.86);
  }

  65% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes glowBreath {
  0%,
  100% {
    opacity: 0.22;
  }

  50% {
    opacity: 0.36;
  }
}

@keyframes arrowNudge {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-50%) translateX(5px);
  }
}

@keyframes inlineArrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@keyframes underlineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.hero-text > * {
  animation: heroSoftRise 0.7s ease both;
}

.hero-text > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-text > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-text > *:nth-child(4) {
  animation-delay: 220ms;
}

.hero-text > *:nth-child(5) {
  animation-delay: 280ms;
}

.hero-text > *:nth-child(6) {
  animation-delay: 340ms;
}

.hero-visual {
  animation: heroSoftRise 0.8s ease 180ms both;
}

.woman-img,
.p2-woman,
.p3-woman {
  /* floating animation removed */
}

.glow-circle,
.p2-blob,
.p3-blob {
  animation: glowBreath 4.8s ease-in-out infinite;
  transform-origin: center;
}

.features-card-single,
.p2-card,
.p3-problem-box,
.p3-root-box,
.p3-solution-box,
.story-card,
.diagnosis-card,
.doctors-card,
.lifestyle-card,
.quote-card,
.fmr-testi-card,
.ts-benefits-box,
.ts-learn-item,
.nfe-card,
.faq-item,
.fcta-benefit,
.disc-f-item {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.features-card-single:hover,
.p3-problem-box:hover,
.p3-root-box:hover,
.p3-solution-box:hover,
.story-card:hover,
.diagnosis-card:hover,
.doctors-card:hover,
.lifestyle-card:hover,
.quote-card:hover,
.fmr-testi-card:hover,
.ts-benefits-box:hover,
.ts-learn-item:hover,
.nfe-card:hover,
.faq-item:hover,
.fcta-benefit:hover,
.disc-f-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(4, 28, 20, 0.1);
}

.cta-box,
.faq-cta-btn,
.fcta-main-btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.cta-box:hover,
.faq-cta-btn:hover,
.fcta-main-btn:hover {
  /* hover animation removed */
}

.underline-green::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.feature-icon,
.p2-icon,
.benefit-icon,
.fcta-benefit-icon-wrap,
.disc-f-icon {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.feature-item:hover .feature-icon,
.p2-card:hover .p2-icon,
.benefit-item:hover .benefit-icon,
.fcta-benefit:hover .fcta-benefit-icon-wrap,
.disc-f-item:hover .disc-f-icon {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .hero-text > *,
  .hero-visual,
  .woman-img,
  .p2-woman,
  .p3-woman,
  .glow-circle,
  .p2-blob,
  .p3-blob,
  .cta-arrow,
  .fmr-cta-btn,
  .ts-cta-btn,
  .nfe-btn-arrow,
  .faq-btn-arrow,
  .fcta-btn-icon-circle,
  .underline-green::after {
    animation: none;
  }

  .features-card-single,
  .p2-card,
  .p3-problem-box,
  .p3-root-box,
  .p3-solution-box,
  .story-card,
  .diagnosis-card,
  .doctors-card,
  .lifestyle-card,
  .quote-card,
  .fmr-testi-card,
  .ts-benefits-box,
  .ts-learn-item,
  .nfe-card,
  .faq-item,
  .fcta-benefit,
  .disc-f-item,
  .cta-box,
  .faq-cta-btn,
  .fcta-main-btn,
  .feature-icon,
  .p2-icon,
  .benefit-icon,
  .fcta-benefit-icon-wrap,
  .disc-f-icon {
    transition: none;
  }

  .features-card-single:hover,
  .p3-problem-box:hover,
  .p3-root-box:hover,
  .p3-solution-box:hover,
  .story-card:hover,
  .diagnosis-card:hover,
  .doctors-card:hover,
  .lifestyle-card:hover,
  .quote-card:hover,
  .fmr-testi-card:hover,
  .ts-benefits-box:hover,
  .ts-learn-item:hover,
  .nfe-card:hover,
  .faq-item:hover,
  .fcta-benefit:hover,
  .disc-f-item:hover,
  .cta-box:hover,
  .faq-cta-btn:hover,
  .fcta-main-btn:hover,
  .feature-item:hover .feature-icon,
  .p2-card:hover .p2-icon,
  .benefit-item:hover .benefit-icon,
  .fcta-benefit:hover .fcta-benefit-icon-wrap,
  .disc-f-item:hover .disc-f-icon {
    transform: none;
  }

  .underline-green::after {
    transform: scaleX(1);
  }
}

/* ================= GLOBAL TAP / FOCUS COLOR FIX ================= */
html,
body,
*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
[role="button"],
.faq-item,
.faq-item > .faq-header,
.faq-item .toggle,
.cta-box,
.fmr-cta-btn,
.ts-cta-btn,
.nfe-cta-btn,
.faq-cta-btn,
.fcta-main-btn {
  -webkit-tap-highlight-color: transparent;
  outline-color: transparent;
}

button,
.faq-item .toggle,
.fmr-cta-btn,
.ts-cta-btn,
.nfe-cta-btn,
.faq-cta-btn,
.fcta-main-btn {
  appearance: none;
  -webkit-appearance: none;
}

button:focus,
a:focus,
[role="button"]:focus,
.faq-item:focus,
.faq-item > .faq-header:focus,
.faq-item .toggle:focus,
.cta-box:focus {
  outline: none;
}

button:focus-visible,
a:focus-visible,
[role="button"]:focus-visible,
.faq-item:focus-visible,
.faq-item > .faq-header:focus-visible,
.faq-item .toggle:focus-visible,
.cta-box:focus-visible {
  outline: 2px solid var(--accent-lime);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(208, 255, 51, 0.18);
}

.faq-item > .faq-header,
.faq-item > .faq-header:active,
.faq-item > .faq-header:focus,
.faq-item > .faq-header:focus-visible {
  background: transparent;
}

button:active,
.cta-box:active,
.fmr-cta-btn:active,
.ts-cta-btn:active,
.nfe-cta-btn:active,
.faq-cta-btn:active,
.fcta-main-btn:active,
.faq-item .toggle:active {
  filter: brightness(1.04);
}

/* ================= PAGE TWO (DESKTOP) UI + ALIGNMENT FIX ================= */
@media (min-width: 1025px) {
  .page-two {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-two .p2-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "header header"
      "cards banner"
      "bottom bottom";
    column-gap: 40px;
    row-gap: 32px;
    align-items: stretch;
    width: 100%;
    max-width: var(--desktop-page-max);
    margin: 0 auto;
  }

  .page-two .p2-container > * {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .page-two .p2-container > .p2-header {
    grid-area: header;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin: 0 0 15px 0;
  }

  .p2-header-cta-wrap {
    margin-top: 32px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .p2-why-text {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: #2d5a27;
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 500;
    font-style: italic;
    opacity: 0.9;
    padding-left: 8px;
    border-left: 2px solid #a5cc39;
  }

  .desktop-only {
    display: block !important;
  }

  .page-two .p2-container > .p2-cards {
    grid-area: cards;
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
  }

  .page-two .p2-container > .p2-cards .p2-card {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .page-two .p2-container > .p2-banner-middle {
    grid-area: banner;
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 44px 48px;
    border-radius: 36px;
    gap: 36px;
    background: linear-gradient(145deg, #f0edd8 0%, #e4eecc 55%, #d8e9ba 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 4px 24px rgba(4, 28, 20, 0.06);
    position: relative;
    overflow: hidden;
  }

  /* Decorative background circle */
  .page-two .p2-container > .p2-banner-middle::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(208, 255, 51, 0.12) 0%,
      transparent 70%
    );
    bottom: -80px;
    left: -60px;
    pointer-events: none;
  }

  .page-two .p2-container > .p2-banner-middle .p2-banner-img {
    width: 280px;
    height: 280px;
    background: #ffffff;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    order: 2;
    padding: 16px;
    box-shadow:
      0 16px 48px rgba(4, 28, 20, 0.1),
      0 2px 8px rgba(4, 28, 20, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.9);
  }

  .page-two .p2-container > .p2-banner-middle .p2-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
  }

  .page-two .p2-container > .p2-banner-middle .p2-banner-text {
    flex: 1;
    order: 1;
    position: relative;
    z-index: 1;
  }

  /* Decorative quote mark */
  .page-two .p2-container > .p2-banner-middle .p2-banner-text::before {
    content: '"';
    font-size: 96px;
    line-height: 1;
    font-family: "Georgia", serif;
    color: rgba(4, 28, 20, 0.08);
    display: block;
    margin-bottom: -32px;
    margin-left: -8px;
    font-weight: 900;
  }

  .page-two .p2-container > .p2-banner-middle .p2-banner-text p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #6b7a5a;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .page-two .p2-container > .p2-banner-middle .p2-banner-text strong {
    font-size: 36px;
    line-height: 1.15;
    color: var(--dark-green);
    display: block;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .page-two .p2-container > .p2-banner-bottom {
    grid-area: bottom;
    padding: 0;
    border-radius: 22px;
    overflow: visible;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .page-two .p2-container > .p2-banner-bottom .p2-bb-icon-wrapper {
    width: 120px;
    max-width: 120px;
    padding: 16px;
  }

  .page-two .p2-container > .p2-banner-bottom .p2-bb-sprout-icon {
    width: 64px;
    height: 64px;
  }

  .page-two .p2-container > .p2-banner-bottom .p2-bb-content-box {
    margin: 8px 8px 8px 0;
    padding: 18px 120px 18px 24px;
    border-radius: 18px;
  }

  .page-two .p2-container > .p2-banner-bottom .p2-bb-content-box p {
    font-size: 13px;
    line-height: 1.35;
  }

  .page-two .p2-container > .p2-banner-bottom .p2-bb-content-box strong {
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: -0.01em;
  }

  .page-two .p2-container > .p2-banner-bottom .p2-bb-leaf-decor {
    right: 4px;
    width: 90px;
    max-height: 88%;
  }

  .page-two .p2-card {
    padding: 22px;
    gap: 16px;
  }

  .page-two .p2-text strong {
    font-size: 17px;
    line-height: 1.25;
  }

  .page-two .p2-text p {
    font-size: 14px;
    line-height: 1.35;
  }
}

/* ================= RESERVE CTA (NEW PREMIUM DESIGN) ================= */
.reserve-cta {
  max-width: 480px;
  margin: 10px auto 2px;
  padding-top: 0;
  width: 100%;
}

.cta-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0d2b11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-blend-mode: overlay;
  padding: 1.2rem 2.4rem 1rem 2.4rem;
  border-radius: 2.2rem;
  color: white;
  text-decoration: none;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid rgba(208, 255, 51, 0.2);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 10px 20px -5px rgba(0, 0, 0, 0.3),
    0 20px 40px -10px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(208, 255, 51, 0.12);
  overflow: visible;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 15px 30px -5px rgba(0, 0, 0, 0.4),
    0 30px 60px -12px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(208, 255, 51, 0.25);
  border-color: rgba(208, 255, 51, 0.6);
}

.cta-urgency {
  font-size: 13px;
  font-weight: 700;
  color: #e2ff6e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  background: #e2ff6e;
  border-radius: 50%;
  box-shadow: 0 0 10px #e2ff6e;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.cta-note {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 12px;
  font-weight: 600;
  text-align: center;
}

.cta-inner-border {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1.5px dashed rgba(163, 191, 45, 0.5);
  border-radius: 1.6rem;
  pointer-events: none;
  z-index: 0;
}

.cta-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c9d42b;
  color: #0d2b11;
  padding: 2px 14px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 10;
}

.cta-content {
  text-align: center;
  flex-grow: 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.cta-main-text {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

.cta-price-text {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: -4px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.cta-price-value {
  color: #c9d42b;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
}

.cta-arrow-circle {
  background-color: #c9d42b;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  flex-shrink: 0;
  z-index: 1;
}

.cta-arrow-circle svg {
  width: 24px;
  height: 24px;
  stroke: #0d2b11;
  stroke-width: 3;
  fill: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .cta-button {
    padding: 0.8rem 1.2rem 0.6rem 1.2rem;
    max-width: 100%;
  }

  .cta-main-text {
    font-size: 1.35rem;
    white-space: nowrap;
  }

  .cta-price-text {
    font-size: 1.1rem;
  }

  .cta-price-value {
    font-size: 1.9rem;
  }

  .cta-arrow-circle {
    width: 44px;
    height: 44px;
  }

  .cta-content {
    margin-top: 8px;
  }

  .disc-logo-area {
    gap: 6px !important;
    margin-bottom: 20px !important;
  }

  .disc-divider {
    margin: 20px 0 !important;
  }

  .disclaimer-section {
    padding-top: 40px !important;
  }

  .cta-inner-border {
    top: 6px;
    bottom: 6px;
    left: 6px;
    right: 6px;
  }

  .cta-badge {
    top: -4px;
  }
}

@media (max-width: 767px) {
  .reserve-cta {
    max-width: 96%;
  }
}

/* ================= STICKY BATCH INFO BAR ================= */
.sticky-batch-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #041c14;
  border-top: 1px solid rgba(208, 255, 51, 0.18);
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.45);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform;
  padding: 0;
}

.sticky-batch-bar.sbb-visible {
  transform: translateY(0);
}

/* Inner wrapper - max-width centred */
.sbb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Items row */
.sbb-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  flex-wrap: wrap;
  row-gap: 6px;
}

/* Single info item */
.sbb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  min-width: 0;
}

/* Icon box */
.sbb-icon {
  width: 28px;
  height: 28px;
  background: rgba(208, 255, 51, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0ff33;
  flex-shrink: 0;
}

.sbb-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* Text stack */
.sbb-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sbb-label {
  font-size: 9px;
  font-weight: 800;
  color: #d0ff33;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.sbb-value {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
}

/* Vertical divider */
.sbb-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* CTA Button */
.sbb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d0ff33;
  color: #041c14;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.sbb-cta:hover {
  filter: brightness(1.08);
}

.sbb-cta:active {
  transform: scale(0.97);
}

.sbb-cta svg {
  width: 14px;
  height: 14px;
  display: block;
}

.sbb-cta-price {
  font-size: 15px;
  font-weight: 900;
}

/* bfr_aftr */
.bfr_aftr {
  width: 225px;
}
.bfr_aftr img {
  width: 100%;
  border-radius: 10px;
}

/* ---- Mobile (≤ 600px): 2-column items wrap, CTA spans full width ---- */
@media (max-width: 600px) {
  .sbb-inner {
    flex-direction: column;
    padding: 10px 14px 12px;
    gap: 10px;
  }

  .sbb-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
  }

  /* Hide vertical dividers on mobile — grid handles spacing */
  .sbb-divider {
    display: none;
  }

  .sbb-item {
    padding: 6px 10px;
    gap: 7px;
  }

  .sbb-icon {
    width: 26px;
    height: 26px;
  }

  .sbb-icon svg {
    width: 13px;
    height: 13px;
  }

  .sbb-label {
    font-size: 8px;
  }

  .sbb-value {
    font-size: 12px;
  }

  .sbb-cta {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* ---- Tablet / mid (601–1024px) ---- */
@media (min-width: 601px) and (max-width: 1024px) {
  .sbb-item {
    padding: 4px 10px;
  }

  .sbb-value {
    font-size: 12px;
  }

  .sbb-cta {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* ---- Desktop (≥ 1025px) ---- */
@media (min-width: 1025px) {
  .sbb-inner {
    padding: 14px 24px;
    gap: 20px;
  }

  .sbb-item {
    padding: 4px 20px;
    gap: 10px;
  }

  .sbb-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .sbb-icon svg {
    width: 17px;
    height: 17px;
  }

  .sbb-label {
    font-size: 10px;
  }

  .sbb-value {
    font-size: 15px;
  }

  .sbb-divider {
    height: 34px;
  }

  .sbb-cta {
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 14px;
  }

  .sbb-cta-price {
    font-size: 17px;
  }
}

/* ================= CTA HOVER ANIMATIONS (Desktop Only) ================= */
@media (min-width: 1025px) {
  /* Sections 1-4 & Final CTA (Hero, P2, P3, Story, Final CTA) */
  .cta-box:hover .cta-arrow {
    animation: arrowNudge 0.8s ease-in-out infinite;
  }

  /* Flex-based Buttons */
  .ts-cta-btn:hover svg,
  .nfe-cta-btn:hover .nfe-btn-arrow,
  .faq-cta-btn:hover .faq-btn-arrow,
  .sbb-cta:hover svg,
  .fmr-cta-btn:hover svg {
    animation: arrowNudgeX 0.8s ease-in-out infinite;
  }
}

.desktop-only {
  display: none !important;
}

@media (min-width: 1025px) {
  .desktop-only {
    display: block !important;
  }
}
.fmr-highlight-red{
    color:#D94B4B;
    font-weight:600;
}

.fmr-highlight-green{
    color:#2F6B4F;
    font-weight:600;
}

.fmr-tc-points{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.fmr-tc-point{
    font-size:15px;
    line-height:1.6;
    color:#3A3A3A;
}


@media (max-width: 560px) {
  .fmr-tc-text br {
    display: none;
  }
  .final-mobile-replica .fmr-tc-text h4 {
    font-size: 22px;
  }
  .final-mobile-replica .fmr-tc-text p {
    font-size: 16px;
  }
  .final-mobile-replica .fmr-tc-author {
    font-size: 12px;
  }
  .fmr-tc-content {
    display: block;
    text-align: center;
  }
  span.fmr-arrow-inner svg {
    width: unset !important;
    height: unset !important;
  }
  .final-mobile-replica .fmr-tc-label{
    font-size: unset;
  }
  .final-mobile-replica .fmr-testimonials{
    gap: 16px;
  }
}
