/* Modern CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #327139;
    --secondary-color: #1e4e3c;
    --accent-color: hsla(43, 100%, 50%, 0.966);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-primary: #01143c;
    --text-secondary: #01143c;
    --gradient-primary: linear-gradient(135deg, #327139 0%, #327139 100%);
    --gradient-secondary: linear-gradient(135deg, #419a01 0%, #b01424 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Replace your current smooth scrolling CSS with this */
html {
    scroll-behavior: auto; /* Default to instant scrolling */
    -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
    overscroll-behavior-y: contain; /* Prevent overscroll effects */
}

@media (min-width: 992px) {
    html {
        scroll-behavior: smooth; /* Only enable smooth scrolling on desktop */
    }
}

/* Add this to prevent any transform-based scrolling interference */
body {
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif,Jost;
    line-height: 1.3;
    color: #004d2c;
    background: #fff;
    overflow-x: hidden;
}

.glass-nav{
  background:#004d2c;
  border-bottom:1px solid rgba(255,255,255,.08);
  border:2px solid #ffde89;
  border-radius:4px;
  transition:all .35s ease;
}

/* shrink on scroll */
.glass-nav.scrolled{
  background:rgba(15,110,126,.95);
  padding:6px 0;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:nowrap !important;
  gap:0px;
  white-space:nowrap;
}

.navbar-brand{
  flex-shrink:0;
}

.cert-logo {
  height: clamp(28px, 5vw, 55px);
  width: auto;
  display: block;
  padding: 6px;
  border-radius: 12px;
  background: linear-gradient(135deg, #004225 0%, #008855);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 12px rgba(0,66,37,.3);
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  overflow: hidden;
}

.cert-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,66,37,.4);
}


.navbar-brand:hover .cert-logo{
  transform:translateY(-2px) scale(1.05);
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.navbar-nav{
  display:flex;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center;
  gap:clamp(6px,1vw,18px);
  margin:0;
  padding:0;
  overflow:hidden;
}

.nav-link{
  color:#fff!important;
  font-weight:700;
  font-size:clamp(12px,2vw,18px);
  padding:5px 14px!important;
  border-radius:10px;
  white-space:nowrap;
  position:relative;

  border:.5px solid transparent;
  background:linear-gradient(135deg, #004225 0%, #008855),
    linear-gradient(135deg,#ffffff,#ffffff,#3a86ff) border-box;
  transition:all .3s ease;
}

.nav-link:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.3);
  color:#7ee0ff!important;
}

/* underline */
.nav-link::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#00e5ff,#7c4dff,#ff9800);
  transform:translateX(-50%);
  transition:width .25s ease;
}

.nav-link:hover::after{
  width:70%;
}

.order-img{
  height:55px;
  width:auto;
  display:block;
  border-radius:10px;
}

.order-btn:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}

@media (max-width:667px){

  .glass-nav{
    padding:12px 0;
  }

  .navbar-nav{
    gap:0px;
  }

  .nav-link{
    font-size:10px;
    padding:4px 8px!important;
  }

  .cert-logo{
    height:32px;
  }

  .order-img{
    height:30px;
  }
}

/* =========================================
   SMALL PHONES (iPhone SE etc.)
========================================= */

@media (max-width:480px){

  .nav-wrap{
    overflow-x:auto;
    scrollbar-width:none;
  }

  .nav-wrap::-webkit-scrollbar{
    display:none;
  }

  .navbar-nav{
    gap:0px;
  }

  .nav-link{
    font-size:11px;
    padding:3px 6px!important;
  }

  .order-img{
    height:34px;
  }
}

/* ultra tiny */
@media (max-width:360px){

  .nav-link{
    font-size:10px;
    padding:2px 5px!important;
  }

  .order-img{
    height:30px;
  }
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    margin-top: -110px; /* 👈 add this */
    overflow: hidden;
}

/* BACKGROUND */
.hero-background {
	background: #005532;
    position: absolute;
    inset: 0;
    z-index: 1;

    /* Left color | Right image */
    background-image:
        linear-gradient(
            to right,
            rgba(20, 20, 20, 0.7) 100%,
            rgba(183, 202, 151, 01.9) 70%,
            #b7ca97 100%
        ),
        url("./assets/tmp5utf6z2j.jpg");

    /* Full color | Image width */
    background-size: 100% 100%, 80% 100%;

    /* GAP between color and image */
    background-position: left center, calc(100% - 50px) center;

    background-repeat: no-repeat;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255,255,255,0.08);
    font-size: 0.8rem;
}

/* TITLE */
.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.1rem);
    font-weight: 900;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #0eae79, #2d6caa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.6rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.4;
    opacity: 0.85;
}

.hero-description p {
    margin-bottom: 12px;
}
.order-btn-unique {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #011643, #000);
    color: #fff;
    border-radius: 40px;
    border: 2px solid #0dae7a;
    padding: 12px 28px;
    transition: 0.3s ease;
  
    box-shadow: 0 0 10px rgba(13, 174, 122, 0.4);
}

.order-btn-unique::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

/* ✨ KEYFRAMES */
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

.order-btn-unique:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 20px rgba(13, 174, 122, 0.8);
}

/* TRUST */
.trust-item {
    font-size: 0.85rem;
}

/* IMAGE */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.product-main-img {
	border-radius: 15px;
    max-width: 520px;
    width: 100%;
    transform: scale(0.92);
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-main-img:hover {
    transform: scale(0.96);
}
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    margin-top: -540px; /* 👈 add this */
}
@media (max-width: 768px) {

    .hero-image-wrapper {
        margin-top: 25px;
        text-align: center;
    }

    .product-main-img {
        max-width: 85%;
        transform: scale(1);
    }
}
/* FLOATING ELEMENTS */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    50% { transform: translateY(-15px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}
body {
    font-family: Arial, sans-serif;
    background: #f2f4f7;
    margin: 0;
}

/* MAIN SECTION */
.vip-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.vip-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 850px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* TITLE */
.vip-title {
    color: #2bb673;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

/* TEXT */
.vip-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* HIGHLIGHT */
.highlight-box {
    background: linear-gradient(135deg, #ff7a18, #ff4d6d);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
}

/* VIP BANNER */
.vip-banner {
    background: linear-gradient(135deg, #2d6caa, #4facfe);
    color: #fff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.vip-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: gold;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* INFO BOX */
.info-box {
    background: #f7f9fc;
    border-left: 4px solid #2d6caa;
    padding: 20px;
    border-radius: 10px;
}

/* FEATURES */
.features-section {
    padding: 60px 20px;
    text-align: center;
}

.features-section h2 {
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-box {
    background: linear-gradient(135deg, #2d6caa, #4facfe);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #28a745, #2bb6a8);
    color: white;
    text-align: center;
    padding: 100px 20px 140px;
    position: relative;
}

/* HERO TEXT */
.hero h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.hero h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtext {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* STATS */
.stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* NAVBAR */
.navbar {
    background: #005532;
    padding: 6px 9px;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    color: white;
    font-weight: bold;
}

/* LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* BUTTON */
.order-btn {
    background: linear-gradient(135deg, #ff9900, #ff5e00);
    color: white;
    padding: 6px 8px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.order-btn:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .nav-links {
        display: none;
    }
}

.why-choose-section {
  padding: 0 0 2.5rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: Jost, sans-serif;
}

.section-header {
  background: #004d2c;
  text-align: center;
  position: relative;
  padding: 1.4rem 0;

  border: 1.5px solid #0a1e4a;
  border-radius: 6px;
}

.section-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
}

/* TITLE */
.why-choose-section .section-title {
  color: #ffde89;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
  padding: 10px 14px;
}

/* PRODUCT IMAGE */
.why-choose-section img {
  border-radius: 24px;
  display: block;
  margin: 2.2rem auto 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* subtle hover (desktop only) */
@media (hover: hover) {
  .why-choose-section img:hover {
    transform: translateY(-4px);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.15),
      0 30px 70px rgba(0, 0, 0, 0.12);
  }
}

/* mobile soft shadow */
@media (max-width: 768px) {
  .why-choose-section img {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.15),
      0 24px 60px rgba(0, 0, 0, 0.1);
  }
}

/* ================================
   BENEFITS LIST
================================ */
.why-choose-section .benefits-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0;
}

.why-choose-section .benefits-list li {
  list-style: none;
  width: 30%;
  font-size: clamp(16px, 2vw, 20px);
  color: #0f172a;
  font-weight: 600;
}

.why-choose-section .benefits-list li::before {
  content: "✔";
  color: #22c55e;
  font-weight: 800;
  margin-right: 8px;
}

/* ================================
   TRUST BOX (modernized)
================================ */
.why-choose-section .trust-box {
  border: 4px solid #22c55e;
  border-radius: 26px;
  padding: 1.2rem 1rem;
  margin: 2rem auto 4rem;
  text-align: center;
  max-width: 900px;
  background: #f8fff9;
}

.why-choose-section .trust-item img {
  max-width: 220px;
  margin: 1.2rem auto 0.5rem;
  display: block;
}

.why-choose-section .trust-item h6 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.why-choose-section .trust-item p {
  font-size: clamp(14px, 2vw, 18px);
  color: #334155;
  margin-bottom: 0;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 991px) {
  .why-choose-section .benefits-list li {
    width: 100%;
    text-align: center;
  }
}

/* What is Alpha Boost Pro Section */
.what-is-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Header */
.section-header-red {
  background: #004d2c;
  text-align: center;
  position: relative;
  padding: 1.4rem 0;

  border: 1.5px solid #0a1e4a;
  border-radius: 6px;
}

.section-header-red::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 70%
    );
}

.section-title-red {
    color: white;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}


.what-is-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: #0dae7a;
    transition: all 0.3s ease;
}

.what-is-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.what-is-image-container {
    position: relative;
    
    overflow: hidden;
    border-radius: 20px;
}

.what-is-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.what-is-image-wrapper:hover .what-is-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.what-is-image-wrapper:hover .image-overlay {
    opacity: 1;
}
/* Content */
.what-is-content {
    padding: 0; /* wider content */
}

.what-is-description {
    font-size: clamp(1.5rem, 2.2vw, 2.25rem);
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-family: Jost;
}

/* Highlights */
.what-is-highlights {
    margin-bottom: 2rem;
    padding: 2rem;
    background:#b7c996;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA */
.what-is-cta {
    text-align: center;
}

.what-is-cta .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.what-is-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* Mobile Adjustments for What is Section */
/* ===========================
   Mobile Optimizations
   =========================== */
@media (max-width: 768px) {

    /* Section spacing */
    .what-is-section {
        padding: 0;
    }

    /* Header */
    .section-header-red {
        padding: 1rem 0;
    }

    .section-title-red {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    /* Stack spacing */
    .what-is-content {
        padding: 0 0.5rem;
        text-align: center;
    }

    /* Description text */
    .what-is-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    /* Image */
    .what-is-image-wrapper {
        margin-top: 1.5rem;
    }

    .what-is-image {
        border-radius: 16px;
    }

    /* Highlights */
    .what-is-highlights {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }

    .highlight-item {
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }

    .highlight-item i {
        font-size: 1.05rem;
    }

    /* CTA */
    .what-is-cta {
        margin-top: 1.5rem;
    }

    .what-is-cta .btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }
}


/* How Does Alpha Boost Pro Work Section */
.how-it-works-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.how-it-works-section .section-title-red {
    color: white;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.how-it-works-intro {
    margin-bottom: 3rem;
    text-align: -webkit-center;
}

.intro-text {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.how-it-works-content {
    max-width: 1000px;
    margin: 0 auto;
}

.work-mechanism {
    margin-bottom: 3rem;
}

.mechanism-item {
    background: white;
    border-radius: 50px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 3px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mechanism-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.mechanism-item:hover::before {
    left: 100%;
}

.mechanism-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.mechanism-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mechanism-header i {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.mechanism-header h4 {
    font-size: clamp(1.7rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: Jost;
}

.mechanism-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 1.25rem);
    text-align: justify;
}

.summary-section {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(180deg, #ffde89 10%, #004d2c 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 20px;
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.summary-header i {
    font-size: 2rem;
    background: white;
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.summary-header h4 {
    font-size: clamp(2.2rem, 4vw, 1.6rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    font-family: Jost;
}

.summary-text {
    font-size: clamp(1.3rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
    position: relative;
    z-index: 2;
}

.summary-cta {
    position: relative;
    z-index: 2;
}

.summary-cta .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.summary-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Adjustments for How It Works Section */
@media (max-width: 991.98px) {
    .how-it-works-intro {
        margin-bottom: 2rem;
    }
    
    .mechanism-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mechanism-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .mechanism-header i {
        margin-bottom: 0.5rem;
    }
    
    .summary-card {
        padding: 2rem;
    }
    
    .summary-header {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .intro-text {
        text-align: left;
        padding: 0 1rem;
    }
    
    .mechanism-item {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .mechanism-header h4 {
        font-size: 1.1rem;
    }
    
    .mechanism-description {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-text {
        text-align: left;
    }
    
    .summary-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .mechanism-item {
        padding: 1rem;
    }
    
    .mechanism-header i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .summary-card {
        padding: 1.2rem;
    }
    
    .summary-header i {
        font-size: 1.5rem;
        padding: 0.6rem;
    }
}

/* Customer Reviews Section */

.reviews-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}



.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.review-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.05), transparent);
    transition: left 0.6s ease;
}

.review-item:hover::before {
    left: 100%;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.review-avatar {
    flex-shrink: 0;
    position: relative;
}

.avatar-image {
    width: 120px;
    height: 140px;
    border-radius: 10%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-item:hover .avatar-image {
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.review-content {
    flex: 1;
    min-width: 0;
}

.reviewer-info {
    margin-bottom: 1rem;
}

.reviewer-name {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.review-text {
    font-size: clamp(1.45rem, 2.5vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: serif;
}

.review-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -1rem;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: serif;
}

/* Reviews Summary */
.reviews-summary {
  background:#004d2c;

  position: relative;
  background-image: url("./assets/s10img.webp");
  background-size: 250px auto;
  background-position: right center;
  background-repeat: no-repeat;

  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid rgba(220, 53, 69, 0.4);
  overflow: hidden;
}


/* 🔥 DARK OVERLAY */
.reviews-summary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* ← adjust darkness here */
  border-radius: 25px;
  pointer-events: none;
}

/* existing soft glow */
.reviews-summary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(220, 53, 69, 0.05) 0%,
    transparent 70%
  );
  border-radius: 25px;
  pointer-events: none;
}
.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(1px);
    color: white;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: #ffffff;
    border-color: white;
}

.stat-card .stat-number {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #facd37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stars-display {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.stars-display i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.reviews-cta {
    position: relative;
    z-index: 2;
}

.reviews-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #facd37;
    margin-bottom: 1rem;
    font-family: 'Poppins', Jost;
}

.reviews-cta p {
    font-size: clamp(1.4rem, 2.5vw, 1.1rem);
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.reviews-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Adjustments for Reviews Section */
@media (max-width: 991.98px) {
    .reviews-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .review-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .reviews-summary {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .review-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .review-avatar {
        align-self: center;
    }
    
    .avatar-image {
        width: 70px;
        height: 70px;
    }
    
    .review-content {
        text-align: center;
    }
    
    .review-text {
        text-align: left;
        border-left: none;
        border-top: 3px solid var(--secondary-color);
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .review-text::before,
    .review-text::after {
        display: none;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .reviews-summary {
        padding: 1.5rem 1rem;
    }
    
    .summary-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
    }
    
    .reviews-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .review-item {
        padding: 1rem;
    }
    
    .avatar-image {
        width: 60px;
        height: 60px;
    }
    
    .review-rating {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .rating-text {
        margin-left: 0;
        margin-top: 0.3rem;
        width: 100%;
        text-align: center;
    }
    
    .reviews-summary {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-card {
        padding: 1rem 0.6rem;
    }
}
/* SECTION BACKGROUND */
.slimsana-section {
    background: #b7ca97;
    padding-bottom: 40px;
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #1c4d2f;
    color: #ffde89;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    padding: 14px;
    margin: 20px auto;
    border-radius: 15px;
    width: 90%;
}

/* GRID */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* LEFT SIDE */
.left {
    text-align: center;
}

.badge {
    font-weight: bold;
    margin-bottom: 20px;
}

.product-img {
    max-width: 220px;
    margin: 20px auto;
    display: block;
}

.left h2 {
    font-size: 28px;
    margin: 10px 0;
}

.subtitle {
    color: #333;
    margin-bottom: 10px;
}

.rating {
    color: #f4b400;
    font-size: 18px;
}

.rating span {
    color: #000;
    font-size: 14px;
    margin-left: 10px;
}
.badge {
  
  color: black;
  padding: 4px 8px;
  border-radius: 4px;
}

/* RIGHT SIDE */
.right {
    display: flex;
    justify-content: center;
}

/* RESULTS BOX - ENLARGED */
.results-box {
    background: #b7ca97;
    padding: 40px;               
    border-radius: 20px;         
    max-width: 650px;            
    width: 90%;                  
    margin: 20px auto;           
    box-shadow: 0 15px 40px rgba(0, 0, 0, 02.15); 
}

/* TEXT STYLES - SCALED UP */
.results-title {
    font-size: 24px; /* Increased from default */
    font-weight: bold;
    margin-bottom: 12px;
}

.results-box ul {
    font-size: 20px; /* Standard list text size */
    padding-left: 25px;
    margin-bottom: 12px;
}

.results-box li {
    margin-bottom: 8px;
}

.note {
    font-size: 17px; /* Increased from 13px */
    color: #666;
    margin-bottom: 18px;
}

.results-box h4 {
    font-size: 22px; /* Distinct heading size */
    margin-top: 18px;
    margin-bottom: 12px;
}

.testimonial {
    font-size: 20px; /* More readable for quotes */
    font-style: italic;
    color: #333;
    line-height: 1.6; /* Increased line-height for better legibility at larger sizes */
}

.author {
    font-size: 19px;
    margin-top: 12px;
    font-weight: bold;
}

.verified {
    font-size: 18px;
    margin-top: 12px;
    color: #2e7d32;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .results-box {
        margin-top: 20px;
    }
}
/* SECTION */
.bottles-section {
    background: #f3f5f4;
    padding: 40px 0;
}

/* HEADER */
.bottles-title {
    font-size: 28px;
    font-weight: 700;
}

.highlight-green {
    color: #1c8c4c;
}

.sub-text {
    color: #555;
}

/* GRID */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.pricing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
    text-align: center;
    transition: 0.3s;
}

/* HEADER */
.card-header {
    padding: 12px;
    font-weight: bold;
    color: #fff;
}

.card-header.green {
    background: #1c5c33;
}

/* FEATURED */
.featured {
    border: 3px solid #f39c12;
    background: #f8f3ea;
}

.card-header.highlight {
    background: #1c5c33;
    color: #fff;
}

/* BODY */
.card-body {
    padding: 20px;
}

.product-img {
    max-width: 200px;
    margin: 15px auto;
}

/* PRICE */
.price {
    font-size: 30px;
    font-weight: bold;
}

.price.big {
    font-size: 34px;
    color: #000;
}

.price span {
    font-size: 14px;
    color: #777;
}

/* SAVE */
.save {
    color: #666;
    font-size: 14px;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 15px 0;
}

.features li {
    margin-bottom: 6px;
    font-size: 18px;
}

.btn-cart {
    background: #d4b66a;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cart:hover {
    background: #c5a85d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bottles-title {
        font-size: 22px;
    }
}
:root {
    --sana-gold: #d4a017;
    --sana-emerald: #2a7d5f;
    --sana-cream: #f5f0e6;
    --sana-coral: #ff6b4d;
    --sana-slate: #2d3748;
    --sana-mint: #a8e6cf;
    --sana-amber: #f4a261;
    --sana-taupe: #8b7e74;
    --sana-blush: #f4c7c3;
    --sana-indigo: #4a5568;
    --bg-sana: #faf9f7;
    --card-radius: 18px;
    --shadow-sana: 0 16px 48px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    background: var(--bg-neutral);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
    line-height: 1.6;
}

/* Layout shell */
.drwood-dashboard {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* Header / Intro */
.dashboard-header {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    gap: 24px;
    margin-bottom: 32px;
}

.dashboard-title {
    font-size: 2rem;
    color: var(--drwood-green);
    margin: 0 0 10px 0;
}

.dashboard-subtitle {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.dashboard-meta {
    background: #ffffff;
    border-radius: var(--card-radius);
    padding: 18px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #ececf5;
    font-size: 0.9rem;
}

.dashboard-meta-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    color: #555;
}

.dashboard-meta-row span:last-child {
    font-weight: 600;
}

/* Symptom finder as triage panel */
.triage-panel {
    background: #ffffff;
    border-radius: var(--card-radius);
    padding: 22px 22px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #ececf5;
    margin-bottom: 32px;
}

.triage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.triage-title {
    font-weight: 650;
    font-size: 1rem;
    color: #333;
}

.triage-tag {
    background: #eef4ff;
    color: var(--soft-blue);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.symptom-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid #edf0f7;
    background: var(--drwood-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.25s ease;
}

.symptom-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.symptom-card:hover {
    border-color: var(--drwood-accent);
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.symptom-card:hover::after {
    opacity: 1;
}

.symptom-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.symptom-copy-title {
    font-size: 0.92rem;
    font-weight: 650;
    margin-bottom: 2px;
}

.symptom-copy-pair {
    font-size: 0.86rem;
    color: var(--drwood-green);
    font-weight: 600;
}

.symptom-copy-note {
    font-size: 0.78rem;
    color: #777;
    font-style: italic;
}

/* Fallback recommendation */
.fallback-callout {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff5e6;
    font-size: 0.9rem;
    border: 1px solid #ffe2b8;
}

.fallback-callout strong {
    color: #b25a00;
}

/* Protocol comparison matrix */
.protocol-section {
    margin: 40px 0 28px;
}

.protocol-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.protocol-title {
    font-size: 1.1rem;
    font-weight: 650;
    color: #333;
}

.protocol-sub {
    font-size: 0.85rem;
    color: #777;
}

.protocol-table-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #ececf5;
}

.protocol-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.86rem;
}

.protocol-table thead th {
    background: var(--drwood-green);
    color: #ffffff;
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
}

.protocol-table thead th:first-child {
    text-align: left;
    padding-left: 18px;
}

.protocol-table tbody td {
    padding: 10px 10px;
    border-bottom: 1px solid #f0f1f7;
    text-align: center;
}

.protocol-table tbody tr:nth-child(even) td {
    background: #fbfcff;
}

.protocol-table tbody td:first-child {
    text-align: left;
    padding-left: 18px;
    font-weight: 550;
    color: #444;
}

/* Strength dots */
.dot-scale {
    display: inline-flex;
    gap: 3px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d3d7e6;
}

.dot.active-1 { background: #8bb77f; }
.dot.active-2 { background: #5f9c68; }
.dot.active-3 { background: #2f6f43; }

/* Protocol selector buttons */
.protocol-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.protocol-btn {
    flex: 1 1 150px;
    border-radius: 999px;
    border: 1px solid #d7dcef;
    padding: 9px 14px;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    background: #ffffff;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.protocol-btn span.badge {
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 650;
    background: #eef4ff;
    color: var(--soft-blue);
}

.protocol-btn--primary {
    background: var(--drwood-green);
    color: #ffffff;
    border-color: var(--drwood-green);
}

/* Package cards: shared shell */
.package-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr) minmax(0, 1.3fr);
    gap: 20px;
    margin-bottom: 32px;
}

.package-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px 18px 20px;
    border: 1px solid #e5ebf5;
    box-shadow: 0 12px 36px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.package-tagline {
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: -2px;
}

.package-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--drwood-green);
    margin: 0;
}

.package-badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.badge-hot {
    background: #ffe9e6;
    color: var(--soft-red);
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 0.7rem;
    font-weight: 650;
}

.badge-savings {
    background: #fff3d6;
    color: #b0761e;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 0.7rem;
    font-weight: 650;
}

/* Bottle chips */
.bottle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.bottle-chip {
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid #dde4f2;
    font-size: 0.7rem;
    font-weight: 600;
    background: #f9fbff;
    color: #445;
}

/* Ideal / perfect lists */
.package-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.package-section-title {
    font-size: 0.82rem;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #555;
    margin-bottom: 4px;
}

.package-list {
    margin: 0;
    padding-left: 18px;
    font-size: 0.82rem;
    color: #444;
}

.package-list li + li {
    margin-top: 3px;
}

/* Social proof mini */
.mini-proof {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px dashed #e3e7f2;
    font-size: 0.8rem;
    color: #555;
}

.mini-proof-quote {
    font-style: italic;
    margin-bottom: 4px;
}

/* Price block (compact) */
.mini-price {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f0f1f7;
    font-size: 0.8rem;
}

.mini-price-main {
    font-weight: 700;
    color: var(--drwood-green);
}

.mini-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.78rem;
}

/* Deep-dive section (Stoffwechsel als Beispiel) */
.detail-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 22px 26px;
    border: 1px solid #e4ebf6;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    margin-bottom: 28px;
}

.detail-header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.detail-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--drwood-green);
    margin: 0;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    gap: 20px;
}

/* Deep-dive blocks */
.detail-block {
    margin-bottom: 14px;
}

.detail-block-label {
    font-size: 0.8rem;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #666;
    margin-bottom: 4px;
}

.detail-block p {
    margin: 0;
    font-size: 0.86rem;
}

/* Testimonial card */
.testimonial-card {
    background: #f7fafc;
    border-radius: 16px;
    padding: 12px 14px;
    border: 1px solid #e0e6f5;
    font-size: 0.84rem;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 6px;
}

.testimonial-meta {
    font-size: 0.78rem;
    color: #555;
}

/* Expert logic */
.expert-note {
    margin-top: 10px;
    border-left: 3px solid var(--drwood-accent);
    padding-left: 10px;
    font-size: 0.82rem;
}

.expert-note strong {
    color: var(--drwood-green);
}

/* Price / CTA full width */
.pricing-panel {
    margin-top: 14px;
    padding: 14px 14px 12px;
    border-radius: 16px;
    background: #fffaf1;
    border: 1px dashed #f0d6a8;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 14px;
    align-items: center;
}

.price-stack {
    font-size: 0.86rem;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8rem;
}

.price-new {
    font-size: 1.4rem;
    font-weight: 750;
    color: var(--drwood-green);
    margin: 2px 0;
}

.price-savings {
    font-size: 0.85rem;
    color: var(--alert-orange);
    font-weight: 650;
}

.price-note {
    font-size: 0.78rem;
    color: #666;
}

.checkout-col {
    text-align: right;
}

.checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: none;
    padding: 11px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--drwood-green);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    text-decoration: none;
}

.checkout-btn small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 32px rgba(0,0,0,0.22);
}

.payment-row {
    margin-top: 5px;
    font-size: 0.72rem;
    color: #777;
}

/* Investment / guarantee / process sections compacted */
.info-section {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px 18px 18px;
    border: 1px solid #e4ebf6;
    box-shadow: 0 12px 34px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    font-size: 0.86rem;
}

.info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--drwood-green);
    margin: 0 0 8px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 18px;
}

.info-list {
    margin: 0;
    padding-left: 16px;
    font-size: 0.84rem;
}

.info-list li + li {
    margin-top: 3px;
}

.info-highlight {
    margin-top: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #444;
}

/* Guarantee block */
.guarantee-block {
    background: #f6fbf7;
    border-radius: 18px;
    padding: 14px 14px 12px;
    border: 1px solid #d9eadc;
    font-size: 0.84rem;
    margin-top: 8px;
}

.guarantee-sign {
    margin-top: 6px;
    font-weight: 600;
    color: var(--drwood-green);
}

/* Timeline */
.timeline {
    margin-top: 6px;
    font-size: 0.84rem;
}

.timeline-steps {
    margin: 6px 0 0;
    padding-left: 16px;
    font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 960px) {
    .dashboard-header {
        grid-template-columns: minmax(0, 1fr);
    }
    .package-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .drwood-dashboard {
        padding: 16px;
        margin: 20px auto;
    }
    .package-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .detail-layout,
    .pricing-panel,
    .info-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .checkout-col {
        text-align: left;
    }
}
/* Package card images - Clean & Responsive */
.package-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .package-image img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .package-image img {
    height: 140px;
  }
}

/* Bonuses Section */
.bonuses-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.bonuses-header {
    background: linear-gradient(135deg, #DF7F07 0%, #327139 100%);
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
}

.bonuses-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonuses-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', Jost;
}

.text-yellow {
    color: #fbbf24;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #fbbf24;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    border-color: #DF7F07;
}

.bonus-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    text-align: center;
    margin: 10px 0px;
}

.bonus-book {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-item:hover .bonus-book {
    transform: scale(1.05);
}

.digital-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bonus-content {
    padding: 2rem;
    text-align: center;
}

.bonus-number {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-name {
    color: #DF7F07;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-value {
    color: #fbbf24;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.bonus-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    text-align: justify;
}

/* ===============================
   INGREDIENTS SECTION – BASE
================================ */

.ingredients-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #ecfeff 0, #ffffff 45%);
}

/* Decorative background shapes for unique style */
.ingredients-section::before,
.ingredients-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 60%);
    z-index: -1;
}

.ingredients-section::before {
    top: -60px;
    left: -40px;
}

.ingredients-section::after {
    bottom: -80px;
    right: -20px;
}
/* ===== SECTION ===== */
.formula-section {
  background: #f5f7fa;
  padding: 80px 20px;
  font-family: 'Inter', Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===== TITLE ===== */
.formula-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 60px;
}

.formula-title span {
  color: #1e4e79;
}

/* ===== GRID ===== */
.formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===== CARD ===== */
.formula-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.formula-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===== IMAGE ===== */
.formula-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* ===== TEXT ===== */
.formula-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e4e79;
  margin-bottom: 10px;
  line-height: 1.3;
}

.formula-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .formula-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formula-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .formula-grid {
    grid-template-columns: 1fr;
  }

  .formula-section {
    padding: 60px 16px;
  }
}
/* Header */
.ingredients-title {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 800;
    margin: 0 0 1.5rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.04em;
    text-align: center;
    color: #0f172a;
    position: relative;
}

.ingredients-title::after {
    content: "";
    display: block;
    width: 140px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #0ea5e9, #22c55e);
    border-radius: 999px;
}

/* Intro text */
.ingredients-intro {
    margin-bottom: 3rem;
}

.intro-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

/* Ingredient list (if you use the simpler list version somewhere else) */
.ingredients-list {
    max-width: 800px;
    margin: 0 auto;
}

.ingredient-item {
    display: flex;
    gap: 1.2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.ingredient-item:last-child {
    border-bottom: none;
}

.ingredient-item:hover {
    background: rgba(14,165,233,0.04);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    margin: 0 -1.5rem;
}

/* Ingredient number */
.ingredients-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.ingredient-item:hover .ingredients-number {
    background: #0ea5e9;
    transform: scale(1.08);
}

.ingredient-content {
    flex: 1;
}

.ingredient-name {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.ingredient-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    text-align: justify;
    margin: 0;
}

/* Ingredient images */
.ingredient-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    background: #fef9c3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ===============================
   SCIENTIFIC EVIDENCE SECTION
================================ */

.scientific-evidence-section {
    padding: 0;
    background: #f8fafc;
}

/* Header inside evidence block (used above as section-header already) */
.evidence-header {
    background: var(--secondary-color);
    color: #ffffff;
    text-align: center;
    padding: 2.5rem 0;
}

.evidence-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Intro card */
.evidence-intro {
    margin-bottom: 3rem;
}

.intro-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(56,189,248,0.12), transparent 55%);
    z-index: -1;
}

.intro-heading {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #0ea5e9;
    padding-bottom: 1rem;
}

.intro-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1rem, 2.5vw, 1.05rem);
    text-align: justify;
}

/* Evidence grid */
.evidence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.evidence-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 14px 30px rgba(15,23,42,0.06);
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.evidence-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,165,233,0.08), transparent 55%);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.evidence-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(15,23,42,0.14);
    border-color: #0ea5e9;
}

.evidence-item:hover::after {
    opacity: 1;
}

/* Evidence header */
.evidence-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
}

.evidence-number {
    width: 40px;
    height: 40px;
    background: #0ea5e9;
    color: #ffffff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.evidence-ingredient-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: #0f172a;
}

/* Evidence content */
.evidence-content {
    display: grid;
    gap: 1.25rem;
}

.evidence-block,
.mechanism-block {
    padding: 1.4rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f9fafb;
}

.evidence-label,
.mechanism-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: 0.02em;
}

.evidence-label::before { content: "🔬"; }
.mechanism-label::before { content: "⚙️"; }

.evidence-text,
.mechanism-text {
    color: #020617;
    line-height: 1.8;
    font-size: clamp(0.98rem, 2.5vw, 1.08rem);
    text-align: justify;
}

/* Conclusion */
.evidence-conclusion {
    margin-top: 2rem;
}

.conclusion-card {
    background: linear-gradient(135deg, #0f766e, #0ea5e9);
    padding: 2.5rem;
    border-radius: 18px;
    border: 2px solid rgba(255,255,255,0.35);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(15,23,42,0.5);
}

.conclusion-title {
    color: #ffffff;
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.conclusion-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: #ffffff;
    margin: 10px auto 0;
    border-radius: 999px;
}

.conclusion-text {
    color: #e5f9ff;
    line-height: 1.7;
    font-size: clamp(1.02rem, 2.5vw, 1.15rem);
    text-align: justify;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .ingredient-item {
        flex-direction: column;
        text-align: center;
    }

    .ingredients-number {
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .evidence-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .intro-description,
    .intro-text,
    .ingredient-description,
    .evidence-text,
    .mechanism-text,
    .conclusion-text {
        text-align: left;
    }

    .ingredient-item:hover {
        margin: 0;
        padding: 1.5rem 0;
    }

    .intro-card,
    .conclusion-card {
        padding: 1.9rem;
    }
}

@media (max-width: 575px) {
    .ingredients-number,
    .evidence-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .evidence-item {
        padding: 1.5rem 1.35rem;
    }
}
.evidence-item-image .evidence-item-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
}



.evidence-bottle-image {
    width: 100%;
    max-width: 560px; /* adjust up/down for bigger/smaller look */
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 35px rgba(15,23,42,0.18));
}

/* ==============================
   SCIENTIFICALLY FORMULATED
   – REFINED PREMIUM STYLE
================================ */

.formulation-section {
    padding: 4.5rem 0 4rem;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.10), transparent 55%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.08), transparent 60%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

/* subtle grid pattern */
.formulation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px),
                      linear-gradient(180deg, rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

/* HEADER */

.formulation-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.formulation-kicker {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(14,165,233,0.08);
    color: #0f766e;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.formulation-title {
    font-size: clamp(2rem, 5vw, 2.7rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.formulation-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
    line-height: 1.8;
}

/* remove old underline */
.formulation-title::after {
    content: none;
}

/* PROCESS STEPS – TIMELINE STYLE */

.process-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.step-item {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-align: left;
    padding: 1.75rem 1.6rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(56,189,248,0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(15,23,42,0.16);
    border-color: rgba(56,189,248,0.7);
}

.step-item:hover::after {
    opacity: 1;
}

.step-circle {
    width: 46px;
    height: 46px;
    background: conic-gradient(from 200deg, #0ea5e9, #22c55e, #0ea5e9);
    color: #ffffff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(14,165,233,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .step-circle {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 16px 35px rgba(34,197,94,0.55);
}

.step-title {
    font-size: clamp(1.05rem, 3vw, 1.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
    font-family: 'Poppins', sans-serif;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.9rem, 2.4vw, 1rem);
    margin: 0;
    text-align: justify;
}

/* arrows become subtle connectors */

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
    color: #0ea5e9;
    font-size: 1.7rem;
    position: relative;
}

.step-arrow i {
    filter: drop-shadow(0 4px 10px rgba(14,165,233,0.4));
}

/* =========================
   GUARANTEE SECTION – NEW LOOK
========================= */

.guarantee-section {
  margin-top: 1rem;
  border-radius: 26px;
  padding: 2.6rem 2.6rem 2.8rem;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.40), transparent 55%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.35), transparent 60%),
    linear-gradient(135deg, #020617 0%, #022c22 50%, #020617 100%);
  box-shadow: 0 26px 60px rgba(15,23,42,0.65);
  position: relative;
  overflow: hidden;
}

/* soft glossy overlay */
.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(248,250,252,0.12), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.guarantee-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* BADGE */

.guarantee-badge-container {
  position: relative;
  width: 210px;
  height: 210px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-badge-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

/* TEXT CONTENT */

.guarantee-details {
  color: #e5f9ff;
}

.guarantee-main-title {
  font-size: clamp(1.6rem, 3.8vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.6rem;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  position: relative;
}

.guarantee-main-title::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
  border-radius: 999px;
  margin-top: 0.65rem;
}

.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.guarantee-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.point-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #a5f3fc;
  font-family: 'Poppins', sans-serif;
  margin-top: 0.15rem;
}

.point-content {
  line-height: 1.7;
  font-size: clamp(0.92rem, 2.4vw, 1.02rem);
}

.point-content strong {
  color: #bef264;
  font-weight: 700;
}

/* guarantee image (if used elsewhere) */

.guarantee-image {
  width: 1100px;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  .process-steps {
    gap: 1.5rem;
  }

  .guarantee-content {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 2rem;
  }

  .guarantee-badge-container {
    justify-self: center;
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 767.98px) {
  .formulation-section {
    padding: 3.5rem 0 3rem;
  }

  .guarantee-section {
    padding: 2.1rem 1.6rem 2.3rem;
    border-radius: 22px;
  }

  .guarantee-main-title {
    text-align: center;
  }

  .guarantee-main-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-point {
    flex-direction: row;
    text-align: left;
  }

  .guarantee-image {
    margin: 24px auto;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .step-item {
    max-width: 100%;
  }

  .guarantee-section {
    padding: 1.8rem 1.2rem;
  }

  .guarantee-badge-container {
    width: 130px;
    height: 130px;
  }
}

/* ===============================
   BENEFITS SECTION – CITRUSBURN
================================ */

.benefits-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, #ecfeff 0, transparent 55%),
        radial-gradient(circle at bottom right, #fef9c3 0, #ffffff 55%);
}

/* subtle floating shapes */
.benefits-section::before,
.benefits-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 60%);
    z-index: -1;
}

.benefits-section::before {
    top: -80px;
    left: -40px;
}

.benefits-section::after {
    bottom: -90px;
    right: -30px;
}

.benefits-header {
    background: linear-gradient(120deg, #0f766e 0%, #0ea5e9 50%, #22c55e 100%);
    color: #ffffff;
    text-align: center;
    padding: 2.75rem 0 2.25rem;
    position: relative;
    overflow: hidden;
}

.benefits-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.16), transparent 65%);
    pointer-events: none;
}

.benefits-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* optional kicker above title */
.benefits-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

/* Intro */
.benefits-intro {
    text-align: center;
    max-width: 900px;
    margin: 2.5rem auto 3rem;
}

.intro-text {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* List container */
.benefits-list {
    max-width: 1040px;
    margin: 0 auto 3.25rem;
}

/* Benefit row */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.28s ease;
    position: relative;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 1.1rem;
    bottom: 1.1rem;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, transparent, #0ea5e9, transparent);
    opacity: 0;
    transition: 0.28s ease;
}

.benefit-item:hover {
    background: rgba(14,165,233,0.04);
    border-radius: 18px;
    padding: 1.6rem 1.6rem;
    margin: 0 -1.6rem;
    box-shadow: 0 16px 36px rgba(15,23,42,0.12);
}

.benefit-item:hover::before {
    opacity: 1;
}

/* Icon */
.benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15,23,42,0.35);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-2px) scale(1.07) rotate(-3deg);
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

/* Text content */
.benefit-content {
    flex: 1;
    min-width: 0;
}

.benefit-title {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    text-align: justify;
    margin: 0;
}

/* CTA card */
.benefits-cta {
    text-align: center;
    margin-top: 2.25rem;
}

.cta-card {
    background: radial-gradient(circle at top left, #0f766e 0, #0f172a 55%, #020617 100%);
    border-radius: 24px;
    padding: 3rem 2.4rem;
    max-width: 640px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 28px 60px rgba(15,23,42,0.75);
    border: 1px solid rgba(148,163,184,0.4);
    position: relative;
    overflow: hidden;
}

.cta-card::before,
.cta-card::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56,189,248,0.4), transparent 70%);
    pointer-events: none;
}

.cta-card::before {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -60px;
}

.cta-card::after {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -40px;
}

.cta-title {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-card .btn {
    position: relative;
    z-index: 2;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(56,189,248,0.55);
    transition: all 0.3s ease;
}

.cta-card .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 45px rgba(56,189,248,0.75);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991.98px) {
    .benefits-intro {
        margin-bottom: 2rem;
        padding: 0 1.2rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benefit-icon {
        align-self: center;
    }

    .benefit-item:hover {
        padding: 1.6rem 1.2rem;
        margin: 0 -1.2rem;
    }

    .cta-card {
        padding: 2.2rem 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .benefits-header {
        padding: 2.1rem 0;
    }

    .benefits-intro {
        padding: 0 1rem;
    }

    .benefit-item {
        padding: 1.3rem 0;
    }

    .benefit-item:hover {
        padding: 1.3rem 0.9rem;
        margin: 0 -0.9rem;
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .benefit-description {
        text-align: left;
    }

    .cta-card {
        padding: 1.8rem 1.2rem;
        margin: 0 1rem;
    }

    .cta-card .btn {
        font-size: 0.92rem;
        padding: 0.8rem 1.6rem !important;
    }
}

@media (max-width: 575.98px) {
    .benefit-item {
        padding: 1.1rem 0;
    }

    .benefit-item:hover {
        padding: 1.1rem 0.6rem;
        margin: 0 -0.6rem;
    }

    .benefit-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .cta-card {
        padding: 1.4rem 0.9rem;
    }
}


//* Nebula Glow FAQ - FRESH GREEN Color Scheme */
.faq-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    /* Lush cosmic green background */
    background: linear-gradient(135deg, #0a1d0a 0%, #1a2b1a 30%, #1e3a1e 60%, #166534 100%);
    background-attachment: fixed;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(134, 239, 172, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: nebulaShift 15s ease-in-out infinite alternate;
}

@keyframes nebulaShift {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.faq-header {
    /* Vibrant green gradient header */
    background: linear-gradient(135deg, #166534 0%, #22c55e 50%, #4ade80 100%);
    color: #f0fdf4;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    border-bottom: 1px solid rgba(34, 197, 94, 0.4);
}

.faq-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

.faq-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    margin: 0;
    font-family: 'Orbitron', monospace;
    /* Fresh green gradient text */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    position: relative;
    z-index: 2;
}

.faq-item {
    /* Green-tinted glassmorphism */
    background: rgba(5, 46, 5, 0.65);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 
        0 25px 50px rgba(10, 29, 10, 0.7),
        inset 0 1px 0 rgba(240, 253, 244, 0.3),
        0 0 30px rgba(34, 197, 94, 0.25);
    border: 1px solid rgba(240, 253, 244, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.faq-question {
    background: rgba(34, 197, 94, 0.15);
    padding: 2rem 2.5rem;
}

.faq-question h4 {
    /* Vibrant green gradient text */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #86efac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #f0fdf4;
}

.faq-icon {
    /* Emerald green gradient icon */
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5);
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.6);
}

.faq-answer-content {
    /* Clean green text tones - Professional sizing */
    color: rgba(240, 253, 244, 0.95);
    line-height: 1.7;
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    padding: 2rem 2.5rem 2.5rem;
}

.faq-answer-content p {
    margin-bottom: 1.4rem;
    text-align: justify;
    font-size: inherit;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 1.6rem 0;
    padding-left: 2rem;
}

.faq-answer-content li {
    margin-bottom: 0.9rem;
    text-align: left;
    position: relative;
    font-size: inherit;
    padding: 0.3rem 0 0.3rem 0.5rem;
}

.faq-answer-content li::before {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 600;
    position: absolute;
    left: -1.8rem;
    top: 0.2rem;
    text-shadow: 0 1px 4px rgba(34, 197, 94, 0.4);
    width: 1.4rem;
    text-align: center;
}

.faq-answer-content strong {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1em;
    display: inline-block;
}

.faq-cta {
    background: rgba(5, 46, 5, 0.75);
    backdrop-filter: blur(35px);
    border: 2px solid rgba(240, 253, 244, 0.35);
    box-shadow: 
        0 50px 100px rgba(10, 29, 10, 0.85),
        inset 0 1px 0 rgba(240, 253, 244, 0.25);
}

.faq-cta::before {
    background: conic-gradient(from 0deg, transparent, rgba(34, 197, 94, 0.2), rgba(74, 222, 128, 0.15), transparent 50%);
}

.cta-content h3 {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 30%, #bbf7d0 70%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.5);
}

.cta-buttons .btn-secondary {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.5);
}

.cta-buttons .btn:hover {
    box-shadow: 0 30px 60px rgba(34, 197, 94, 0.7);
}

.faq-answer-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.faq-answer-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

/* Responsive scaling preserved */
@media (max-width: 991.98px) {
    .faq-answer-content {
        font-size: clamp(1.05rem, 3.2vw, 1.2rem);
        padding: 1.8rem 2rem 2rem;
    }
    .faq-answer-content li::before { left: -1.7rem; font-size: 1.15rem; }
}

@media (max-width: 767.98px) {
    .faq-answer-content {
        font-size: clamp(1rem, 3.5vw, 1.15rem);
        padding: 1.6rem 1.8rem 2rem;
    }
    .faq-answer-content ul { padding-left: 1.8rem; }
    .faq-answer-content li::before { left: -1.6rem; }
}

@media (max-width: 575.98px) {
    .faq-answer-content {
        font-size: clamp(0.98rem, 4vw, 1.1rem);
        padding: 1.4rem 1.4rem 1.8rem;
    }
    .faq-answer-content li { margin-bottom: 1rem; }
    .faq-answer-content li::before { left: -1.5rem; font-size: 1.1rem; }
}



/* Security & Final CTA Section */
.security-cta-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.security-info {
    margin-bottom: 3rem;
}

.security-card {
    background: #b7c996;
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.security-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.security-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    text-align: justify;
    margin-bottom: 1.5rem;
}

.info-section {
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.contact-info {
    background: rgba(37, 99, 235, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.support-email {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.support-email:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Final CTA Banner */
.final-cta-banner {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.final-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Final Product Section */
.final-product-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.product-display {
    position: relative;
}

.product-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.main-product-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.02);
}

.savings-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
    border: 3px solid white;
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-amount {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.guarantee-overlay {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.guarantee-badge {
    background: linear-gradient(135deg, #419a01 0%, #b60305 100%);
    color: #1f2937;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 3px solid white;
    text-align: center;
    min-width: 120px;
}

.guarantee-text {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

.guarantee-subtext {
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1;
}

.guarantee-bottom {
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1;
}

.pricing-display {
    margin-bottom: 2rem;
    text-align: center;
}

.regular-price {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.price-label {
    font-size: 1rem;
    font-weight: 500;
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 0.5rem;
}

.special-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.special-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.special-amount {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--success-color);
    font-family: 'Poppins', sans-serif;
}

.final-cta-button {
    margin-top: 1.5rem;
}

.btn-final-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg,#b60305 0%, #0dae7a 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    border: 3px solid black;
    position: relative;
    overflow: hidden;
}

.btn-final-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-#0dae7a(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-final-order:hover::before {
    left: 100%;
}

.btn-final-order:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    color: #ffffff;
    border-color: #f59e0b;
}

.btn-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.btn-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .security-card {
        padding: 2rem;
    }
    
    .final-cta-banner {
        padding: 1.5rem;
    }
    
    .main-product-image {
        max-width: 300px;
    }
    
    .savings-badge {
        width: 70px;
        height: 70px;
        top: -5px;
        right: -5px;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .badge-amount {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .security-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .security-content p {
        text-align: left;
    }
    
    .final-cta-banner {
        padding: 1.2rem;
        margin: 0 1rem 2rem;
    }
    
    .main-product-image {
        max-width: 250px;
    }
    
    .savings-badge {
        width: 60px;
        height: 60px;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
    
    .badge-amount {
        font-size: 0.7rem;
    }
    
    .guarantee-badge {
        padding: 0.6rem 1rem;
        min-width: 100px;
    }
    
    .guarantee-text,
    .guarantee-subtext,
    .guarantee-bottom {
        font-size: 0.55rem;
    }
    
    .special-price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-final-order {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .security-card {
        padding: 1.2rem;
    }
    
    .contact-info {
        padding: 0.8rem 1rem;
    }
    
    .main-product-image {
        max-width: 200px;
    }
    
    .savings-badge {
        width: 50px;
        height: 50px;
    }
    
    .badge-text,
    .badge-amount {
        font-size: 0.6rem;
    }
    
    .btn-final-order {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
}

/* Footer Section - Exact Match */
.footer-section {
    background: #ffffff;
    margin-top: 0;
    padding: 0;
    border-top: 1px solid red;
}

/* Full Width Disclaimers */
.footer-disclaimers-full {
    width: 100%;
    padding: 3.5rem 0;
    background: #ffffff;
}

.footer-disclaimers-full .container-fluid {
    max-width: none;
    padding: 0 2rem;
}

.disclaimer-content {
    max-width: none;
    padding: 0;
    background: transparent;
    border: none;
}

.disclaimer-content p {
    color: #666;
    font-size: 1.0rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    text-align: justify;
    font-weight: 400;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

/* Centered Footer Bottom */
.footer-bottom-centered {
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Social Media Rounded Container */
.social-media-rounded {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid #ccc;
    border-radius: 25px;
    background: #ffffff;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: 50%;
}

.social-link:hover {
    transform: translateY(-2px);
    color: white;
}

.social-link:nth-child(1):hover { background: #3b5998; }
.social-link:nth-child(2):hover { background: #1da1f2; }
.social-link:nth-child(3):hover { background: #e60023; }
.social-link:nth-child(4):hover { background: #0077b5; }
.social-link:nth-child(5):hover { background: #aa2200; }
.social-link:nth-child(6):hover { background: #001935; }

/* Footer Legal Links */
.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.link-separator {
    color: #bbb;
    margin: 0 0.2rem;
}

/* Footer Copyright */
.footer-copyright p {
    color: #888;
    font-size: 1.0rem;
    margin: 0;
    font-weight: 400;
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
    .footer-disclaimers-full .container-fluid {
        padding: 0 1rem;
    }
    
    .disclaimer-content p {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
        text-align: left;
    }
    
    .footer-bottom-centered {
        padding: 0.8rem 0;
    }
    
    .footer-bottom-container {
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .social-media-rounded {
        padding: 0.6rem 1rem;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .legal-link {
        font-size: 0.75rem;
    }
    
    .footer-copyright p {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .footer-disclaimers-full .container-fluid {
        padding: 0 0.5rem;
    }
    
    .disclaimer-content p {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }
    
    .social-media-rounded {
        padding: 0.5rem 0.8rem;
        gap: 0.6rem;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .link-separator {
        display: none;
    }
    
    .legal-link {
        font-size: 0.7rem;
    }
    
    .footer-copyright p {
        font-size: 0.65rem;
    }
}

/* Accessibility */
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.legal-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 1px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .social-link {
        transition: none;
    }
    .social-link:hover {
        transform: none;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .footer-section {
        border-top: 2px solid #000;
    }
    .disclaimer-content p {
        color: #000;
    }
    .social-link {
        color: #000;
        border: 1px solid #000;
    }
    .legal-link {
        color: #000;
    }
    .footer-copyright p {
        color: #000;
    }
}

/* Product Section */
.product-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 5px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.product-image-wrapper {
    position: relative;
}

.product-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-image-placeholder {
    background: #ffffff;
    border: 3px dashed rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    width: 100%;
    max-width: 350px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.product-image-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.image-upload-area {
    text-align: center;
    color: var(--text-secondary);
}

.image-upload-area i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.image-upload-area h5 {
    color: var(--text-primary);
}

.upload-instructions {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

.upload-instructions code {
    background: #e2e8f0;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    word-break: break-all;
}

.product-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.feature-point {
    position: absolute;
    cursor: pointer;
}

.point-1 { top: 20%; right: -10px; }
.point-2 { top: 50%; left: -10px; }
.point-3 { bottom: 20%; right: 10px; }

.point-indicator {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
    position: relative;
}

.point-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.feature-tooltip {
    position: absolute;
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text-primary);
}

.point-1 .feature-tooltip {
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
}

.point-2 .feature-tooltip {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 10px;
}

.point-3 .feature-tooltip {
    top: 100%;
    right: 0;
    margin-top: 10px;
}

.feature-point:hover .feature-tooltip {
    opacity: 1;
    visibility: visible;
}

.benefits-grid {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item i.text-warning {
    color: var(--secondary-color) !important;
}

.benefit-item i.text-danger {
    color: var(--danger-color) !important;
}

.benefit-item i.text-success {
    color: var(--success-color) !important;
}

.benefit-item i.text-info {
    color: var(--primary-color) !important;
}

.benefit-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.current-price {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 800;
    color: var(--success-color);
}

.discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.btn-cta {
    background: var(--gradient-accent);
    border: none;
    color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
}

.guarantee-text {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.guarantee-text i {
    color: var(--success-color);
}

/* Urgency Banner */
.urgency-banner {
    background: rgba(37, 99, 235, 0.0);
    backdrop-filter: blur(0px);
    color: black;
    padding: 1.5rem 0;
    position: sticky;
    bottom: 0;
    z-index: 100;
    box-shadow: var(--shadow-xl);
}

.urgency-banner .btn-warning {
    background: #177382;
    border: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.urgency-banner .btn-warning:hover {
    background: #f9b201;
    transform: scale(1.05);
    color: white;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animate in effect */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }

/* Mobile Specific Adjustments */
@media (max-width: 991.98px) {
    .navbar-cta {
        display: block;
    }
    
    .navbar-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .product-showcase {
        min-height: 350px;
    }
    
    .product-placeholder {
        width: 280px;
        height: 350px;
    }
    
    .floating-badge {
        position: relative;
        margin: 0.5rem;
        position: static;
        display: inline-flex;
    }
    
    .certification-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 90px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.5rem;
    }
    
    .btn-hero,
    .btn-cta {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .product-placeholder {
        width: 260px;
        height: 320px;
        padding: 1rem;
    }
    
    .price-display {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cert-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .urgency-banner {
        padding: 1rem 0;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .floating-elements {
        opacity: 0.5;
    }
    
    .floating-element {
        width: 30px !important;
        height: 30px !important;
    }
    
    .product-placeholder {
        width: 240px;
        height: 300px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .certification-card {
        padding: 1.2rem 0.8rem;
    }
    
    .cert-title {
        font-size: 0.9rem;
    }
    
    .cert-description {
        font-size: 1.0rem;
    }
}

/* Desktop Improvements */
@media (min-width: 992px) {
    .navbar-cta {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        display: flex;
        align-items: center;
    }
    
    .navbar-cta .btn {
        width: auto;
        margin-bottom: 0;
    }
    
    .hero-section {
        text-align: left;
    }
    
    .hero-subtitle {
        text-align: left;
        margin: 0;
    }
    
    .trust-indicators .row {
        justify-content: start;
    }
    
    .product-glow {
        width: 300px;
        height: 300px;
    }
    
    .product-placeholder {
        width: 350px;
        height: 450px;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.navbar-toggler:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: none !important;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-section {
        background: #fff;
        color: #000;
    }
    
    .btn-hero,
    .btn-cta {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn.loading {
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: #1e7e34;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  #scrollToTop:hover {
    transform: translateY(-3px);
  }

  /* Mobile */
  @media (max-width: 768px) {
    #scrollToTop {
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
  }