/* 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: #002d37;
    background: #fff;
    overflow-x: hidden;
}

/* =========================
   NAVBAR BASE
========================= */

.glass-nav {
  background:
    linear-gradient(135deg, rgba(7, 39, 28, 0.96), rgba(3, 23, 16, 0.94)),
    radial-gradient(circle at top left, rgba(65, 154, 1, 0.10), transparent 45%);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(65, 154, 1, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

  padding: 0.85rem 0;
}

/* Prevent iPhone horizontal scroll */
body {
  overflow-x: hidden;
}

:root {
    --vp-emerald: #22c55e;
    --vp-emerald-deep: #15803d;
    --vp-gold: #f59e0b;
    --vp-gold-light: #fbbf24;
    --vp-glass-bg: rgba(2, 43, 54, 0.88);
    --vp-glass-border: rgba(255, 255, 255, 0.12);
    --vp-text: #f8fafc;
    --vp-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Navigation Container --- */
.vp-navbar {
    padding: 1.rem 0;
    background: var(--vp-glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--vp-glass-border);
    transition: var(--vp-transition);
}

/* Scrolled state (Add via JS: window.scrollY > 50) */
.vp-navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(1, 30, 38, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vp-brand {
    padding: 0;
    transition: transform 0.3s ease;
}

.vp-brand:hover {
    transform: scale(1.03);
}

.vp-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #fff, var(--vp-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vp-icon-glow {
    color: var(--vp-gold);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
}

/* --- Nav Links --- */
.vp-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--vp-transition);
}

.vp-link:hover, .vp-link.active {
    color: #fff !important;
}

.vp-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--vp-emerald);
    transition: var(--vp-transition);
    transform: translateX(-50%);
}

.vp-link:hover::after {
    width: 60%;
}

/* --- CTA Buttons --- */
.vp-nav-actions {
    display: flex;
    gap: 12px;
}

.vp-btn-primary {
    background: linear-gradient(135deg, var(--vp-emerald), var(--vp-emerald-deep));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    transition: var(--vp-transition);
}

.vp-btn-outline {
    background: transparent;
    color: var(--vp-gold-light);
    border: 2px solid var(--vp-gold);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    transition: var(--vp-transition);
}

.vp-btn-primary:hover, .vp-btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

/* --- Mobile Menu --- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--vp-glass-bg);
        margin-top: 1rem;
        border-radius: 15px;
        padding: 1.5rem;
        border: 1px solid var(--vp-glass-border);
    }

    .vp-nav-actions {
        flex-direction: column;
        margin-top: 1.5rem;
    }
    
    .vp-btn-primary, .vp-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* --- Toggler Animation --- */
.vp-toggler {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--vp-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vp-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.vp-toggler[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.vp-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vp-toggler[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


:root {
  --brand-red: #dc711f;
  --cta-gold: #ffb21c;
  --text-light: #e5e7eb;
  --brand-blue: #003946;
  --accent-mint: #2ecc71;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.06);
}

/* --- RESET & BASE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #003946, #001a20);
  color: var(--text-light);
  line-height: 1.5; /* Fixed from 0.8 to be readable */
}

.page-wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* --- HERO SECTION --- */
.hero-text {
  text-align: center;
  padding: 40px 0;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #cbd5e1;
}

/* --- MAIN OFFER CARD --- */
.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-top: 10px;
}

.left-column, .right-column {
  flex: 1;
  padding: 40px;
}

/* --- LEFT COLUMN: VISUALS & TRUST --- */
.product-photo-box img {
  border-radius: 22px;
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.trust-badges {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.badge-img {
  height: 190px;
}

.testimonial-box {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 15px;
}

.testimonial {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.customer-photo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stars-row { color: var(--cta-gold); margin-bottom: 4px; }

/* --- RIGHT COLUMN: COPY & CONVERSION --- */
.text-block h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 10px; }
.text-block h4 { font-size: 1.3rem; color: #cbd5e1; margin-bottom: 20px; }
.text-block p { margin-bottom: 15px; color: #d1d5db; }
.brand-red { color: var(--brand-red); font-weight: bold; }

/* Pricing Box */
.price-cta-box {
  background: rgba(220, 113, 31, 0.1);
  border: 1px solid rgba(220, 113, 31, 0.3);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  margin: 25px 0;
}

.sale-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-red);
  display: block;
}

.regular-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1.2rem;
}

/* --- DYNAMIC SLIDER & BUTTON --- */
.bottom-image-box.slider {
  position: relative;
  width: 100%;
  height: 280px;
  background: rgba(0,0,0,0.2);
  border-radius: 15px;
  margin-top: 20px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: auto;
  transition: opacity 0.5s ease-in-out;
}

.dynamic-offer {
  text-align: center;
  margin-top: 20px;
}

.buy-btn {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 15px auto;
  background: linear-gradient(180deg, var(--cta-gold), #e6a210);
  color: #000;
  text-decoration: none;
  padding: 18px;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(255, 178, 28, 0.3);
  transition: transform 0.2s;
}

.buy-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.payment-strip img {
  max-width: 280px;
  margin: 10px auto;
  display: block;
  opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (min-width: 768px) {
  .offer-card { flex-direction: row; }
  .left-column { border-right: 1px solid rgba(255, 255, 255, 0.1); }
}

@media (max-width: 480px) {
  .text-block h3 { font-size: 1.5rem; }
  .sale-price { font-size: 2rem; }
}
/* =========================
   GUARANTEE / TRUST SECTION
========================= */
.why-choose-section {
  padding: 0 0 60px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
  font-family: Jost, sans-serif;
}

.trust-guarantee-area {
  background: linear-gradient(180deg, #ecfdf5, #ffffff);
  padding: 3.5rem 1rem;
  text-align: center;
}

.trust-guarantee-area .container {
  max-width: 960px;
  margin: 0 auto;
}

/* HEADER */
.guarantee-header {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.main-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #065f46;
  margin-bottom: 0.6rem;
  font-family: "Poppins", sans-serif;
}

.sub-title {
  font-size: 1.05rem;
  color: #4b5563;
}

/* CARD */
.guarantee-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(22, 163, 74, 0.12);
  border: 1px solid #d1fae5;
}

.seal-column {
  flex-shrink: 0;
}

.guarantee-seal {
  width: 140px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.text-column {
  text-align: left;
}

.text-column p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
}

.text-column strong {
  color: #16a34a;
}

/* BADGE STRIP */
.badges-wrapper {
  margin-top: 1.8rem;
}

.badge-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-grid img {
  max-width: 560px;
  width: 100%;
  opacity: 0.9;
}

/* FOOTER */
.brand-footer-text {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
}


/* What is Alpha Boost Pro Section */
.what-is-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Header */
.section-header-red {
  background: #002d37;
  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%, #002d37 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;
    }
}

/* --- TESTIMONIALS STYLING --- */
.testimonials-section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
}

.header-divider {
  width: 80px;
  height: 4px;
  background: var(--brand-red);
  margin: 15px auto 40px;
  border-radius: 2px;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-card {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 25px;
}

.reviewer-sidebar {
  flex: 0 0 180px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 20px;
}

.reviewer-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-red);
  margin-bottom: 12px;
}

.reviewer-meta .name {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.reviewer-meta .location {
  font-size: 0.8rem;
  color: #9ca3af;
}

.review-body {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-status {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-mint);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Summary Grid */
.reviews-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.stat-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border-top: 3px solid var(--brand-red);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  color: #fff;
}

.stat-desc {
  color: #9ca3af;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.disclaimer {
  margin-top: 15px;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    flex-direction: column;
    text-align: center;
  }
  .reviewer-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 20px;
    flex: 0;
  }
  .review-body {
    padding-left: 0;
    padding-top: 20px;
  }
  .reviews-summary-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-container {
  background-color: #ffffff;
  padding: 32px 12px 40px;
  font-family: 'Arial', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  text-align: center;
}

/* SHIPPING BANNER */
.shipping-banner {
  max-width: 900px;
  margin: 0 auto 24px;
}

.banner-content {
  background-color: #183b46;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(1.4rem, 4.2vw, 2.2rem);
  padding: 14px 12px;
  margin-bottom: 8px;
  text-align: center;
}

.truck-icon {
  height: 64px;
  margin-right: 18px;
  flex-shrink: 0;
}

.banner-subtext {
  background: #cadde9;
  color: #000000;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: clamp(0.9rem, 3.1vw, 1.2rem);
}

/* GRID LAYOUT */
.pricing-grid {
  display: flex;
  flex-direction: column; /* mobile first */
  gap: 18px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* PRICE CARD */
.price-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 18px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 2px solid #000000;
}

.card-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  margin: 0;
  color: #333333;
}

.card-subtitle {
  color: #666666;
  font-size: 0.9rem;
  margin: 8px 0 18px;
}

.product-img-box img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* PRICE BLOCK */
.price-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 14px 0;
}

.currency {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  color: #1b3c47;
  margin-right: 4px;
}

.main-price {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: #1b3c47;
  font-weight: 900;
  line-height: 1;
}

.per-unit {
  text-align: left;
  font-size: 0.95rem;
  color: #555555;
  font-weight: bold;
  margin-left: 8px;
}

.total-price {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 16px;
}

/* CTA BUTTON */
.cta-button {
  display: block;
  background: linear-gradient(to bottom, #f7d455 0%, #f1b932 100%);
  color: #000000;
  text-decoration: none;
  font-weight: 800;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 4px 0 #d19a1a;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  margin-bottom: 14px;
  font-size: 1rem;
}

.cta-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #d19a1a;
}

/* PAYMENT ICONS */
.payment-icons img {
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.shipping-status {
  font-size: 0.8rem;
  font-weight: 800;
  color: #333333;
  border-top: 1px solid #eeeeee;
  padding-top: 10px;
}

.shipping-status.free {
  color: #000000;
}

/* =========================
   RESPONSIVE – iPHONE
========================= */
@media (max-width: 480px) {
  .pricing-container {
    padding: 28px 10px 32px;
  }

  .banner-content {
    flex-direction: column;
    font-size: 1.2rem;
    padding: 12px 10px;
  }

  .truck-icon {
    margin-right: 0;
    margin-bottom: 6px;
    height: 54px;
  }

  .price-card {
    padding: 20px 14px;
  }

  .price-box {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .per-unit {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 4px;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 12px;
  }
}

/* Desktop layout: cards side by side */
@media (min-width: 992px) {
  .pricing-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
/* 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;
}

/* SECTION BASE */
.ingredients-section {
  background: #f8fafc;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.ingredients-header {
  text-align: center;
  margin-bottom: 60px;
}

.ingredients-title {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
}

.ingredients-subtitle {
  font-size: 16px;
  color: #4b5563;
  margin-top: 15px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* CARD (FIXED STYLE LIKE IMAGE) */
.ingredient-card {
  text-align: center;
  padding: 10px;
}

/* IMAGE (ROUND LIKE SCREENSHOT) */
.gallery-thumb {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
}

/* TEXT */
.ingredient-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.ingredient-info ul {
  list-style: none;
  padding: 0;
}

.ingredient-info ul li {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

/* CHECK ICON */
.ingredient-info ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* RIGHT SIDE */
.gallery-main {
  text-align: center;
  padding: 20px;
}

/* PRODUCT IMAGE FIX */
.gallery-main-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* TRUST TEXT */
.ingredient-trust p {
  font-size: 14px;
  color: #059669;
  margin: 6px 0;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gallery-main {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .ingredients-title {
    font-size: 26px;
  }

  .gallery-thumb {
    width: 100px;
    height: 100px;
  }
}

/* =========================
   FORMULATION SECTION
========================= */
.formulation-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
}

.formulation-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 40px;
}

/* STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.step-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: #22c55e;
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.15);
}

.step-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 8px;
}

.step-description {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .evidence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ingredients-header {
    margin: 20px 12px 30px;
    padding: 18px;
  }

  .intro-card {
    padding: 18px;
  }

  .evidence-item {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .ingredients-title {
    font-size: 1.5rem;
  }

  .ingredients-title span {
    font-size: 0.9rem;
  }

  .ingredients-subtitle {
    font-size: 0.9rem;
  }
}
/* =========================
   FORMULATION SECTION
========================= */
.formulation-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
}

/* HEADER */
.formulation-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 40px;
}

/* =========================
   STEPS
========================= */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.step-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: #22c55e;
  box-shadow: 0 15px 35px rgba(34,197,94,0.15);
}

.step-circle {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 8px;
}

.step-description {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: #22c55e;
}

/* =========================
   GUARANTEE SECTION
========================= */
.guarantee-section {
  margin-top: 40px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #064e3b, #022c22);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* FLEX */
.guarantee-content {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

/* BADGE */
.guarantee-badge-container {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.guarantee-badge-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TEXT */
.guarantee-details {
  flex: 1;
}

.guarantee-main-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #facc15;
}

/* POINTS */
.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee-point {
  display: flex;
  gap: 10px;
}

/* NUMBER */
.point-number {
  font-weight: 800;
  color: #22c55e;
  min-width: 24px;
}

/* TEXT */
.point-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
}

.point-content strong {
  color: #facc15;
}

/* LINK */
.point-content a {
  color: #22c55e;
  text-decoration: underline;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-badge-container {
    width: 130px;
    height: 130px;
  }

  .guarantee-main-title {
    font-size: 1.5rem;
  }

  .point-content {
    font-size: 0.9rem;
  }
}

/* =========================
APPLE-STYLE BENEFITS SECTION (VIGOR PEAK)
========================= */
.benefits-section {
  background: #f5f5f7;
  padding: 60px 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

/* HEADER */
.benefits-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: #111111;
  letter-spacing: -0.02em;
}

/* INTRO */
.benefits-intro-text {
  max-width: 700px;
  margin: 18px auto 42px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5f5f62;
  padding: 0 12px;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

/* CARD */
.benefit-row {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

/* HOVER / TAP FEEL */
.benefit-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

/* ICON */
.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e5f6ee, #d7f0e5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* TEXT */
.benefit-heading {
  font-size: 1.02rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 0.95rem;
  color: #636366;
  line-height: 1.55;
}

/* CTA */
.benefits-cta-wrap {
  margin-top: 52px;
}

.benefits-cta-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 22px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

/* CTA TEXT */
.benefits-cta-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.benefits-cta-text {
  font-size: 1rem;
  color: #6b6b70;
  margin-bottom: 22px;
}

/* BUTTON (iOS feel) */
.benefits-cta-card .btn {
  background: #0071e3;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 18px rgba(0,113,227,0.35);
}

.benefits-cta-card .btn:hover {
  background: #005bb5;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,113,227,0.45);
}

/* TRUST TEXT */
.benefits-cta-trust {
  margin-top: 16px;
  font-size: 0.86rem;
  color: #86868b;
}

/* =========================
iPHONE OPTIMIZATION
========================= */
@media (max-width: 480px) {

  .benefits-section {
    padding: 42px 0;
  }

  .benefits-heading {
    font-size: 1.55rem;
    padding: 0 16px;
  }

  .benefits-intro-text {
    font-size: 0.96rem;
    margin-bottom: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 10px;
  }

  .benefit-row {
    padding: 16px 15px;
    border-radius: 20px;
  }

  .benefit-heading {
    font-size: 1rem;
  }

  .benefit-text {
    font-size: 0.92rem;
  }

  .benefits-cta-card {
    margin: 0 12px;
    padding: 28px 18px;
  }

  .benefits-cta-title {
    font-size: 1.35rem;
  }

  .benefits-cta-text {
    font-size: 0.95rem;
  }

  .benefits-cta-card .btn {
    width: 100%;
    max-width: 340px;
  }
}

/* Slightly wider phones (e.g., iPhone Plus/Max) */
@media (min-width: 481px) and (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
/* =========================
FAQ SECTION – VIGOR PEAK (iPhone Friendly)
========================= */
#faq {
  background: #020817;
  padding: 60px 16px;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

/* HEADER */
.section-title-red {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  margin: 0;
}

/* FAQ CONTAINER */
.faq-container {
  max-width: 900px;
  margin: 36px auto 0;
}

/* FAQ ITEM */
.faq-item {
  margin-bottom: 16px;
}

/* QUESTION */
.faq-question {
  background: #0f172a;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
}

.faq-question h4 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #e5e7eb;
  margin: 0;
}

/* ICON */
.faq-icon {
  color: #9ca3af;
  font-size: 1.1rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* ROTATE ICON WHEN OPEN (Bootstrap sets .show on answer) */
.faq-answer.show + .faq-question .faq-icon {
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  margin-top: 8px;
  border-radius: 0 0 18px 18px;
}

.faq-answer-content {
  padding: 0 4px 6px 4px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: #cbd5f5;
  line-height: 1.65;
  margin: 0;
}

/* Smooth collapse feel (does not break Bootstrap) */
.faq-answer.collapse:not(.show) {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
}

/* When open */
.faq-answer.collapse.show {
  height: auto;
}

/* =========================
IPHONE OPTIMIZATION
========================= */
@media (max-width: 480px) {

  #faq {
    padding: 48px 12px;
  }

  .faq-container {
    margin-top: 28px;
  }

  .faq-question {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .faq-question h4 {
    font-size: 0.98rem;
  }

  .faq-answer p {
    font-size: 0.94rem;
  }
}

/* Slightly larger phones (Plus/Max) */
@media (min-width: 481px) and (max-width: 768px) {
  #faq {
    padding: 52px 18px;
  }

  .faq-container {
    max-width: 620px;
  }
}
/* =========================
   SECURITY / FINAL CTA – VIGOR PEAK (iPhone Friendly)
========================= */
.security-cta-section {
  background: #ffffff;
  padding: 3rem 0 2.5rem;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

.security-info {
  max-width: 900px;
  margin: 0 auto 2.2rem;
  padding: 0 1rem;
}

.security-card {
  background: #020617;
  border-radius: 20px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
}

.security-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.security-content p {
  font-size: 0.97rem;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.info-section {
  margin-top: 0.9rem;
}

.info-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.25rem;
}

.contact-info {
  margin-top: 0.4rem;
}

.support-email {
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
}

.support-email:hover {
  text-decoration: underline;
}

/* =========================
   FINAL BANNER & PRODUCT
========================= */
.final-cta-banner {
  text-align: center;
  margin: 2.2rem 0 1.6rem;
}

.cta-banner-title {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.03em;
}

.final-product-section {
  display: flex;
  justify-content: center;
}

.product-display {
  max-width: 880px;
  width: 100%;
  text-align: center;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.main-product-image {
  width: 100%;
  max-width: 420px; /* controls size on large screens */
  height: auto;
}

/* savings badge */
.savings-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #22c55e;
  color: #0b1120;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.7);
}

.badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.badge-amount {
  font-size: 1.1rem;
  font-weight: 800;
}

/* guarantee badge overlay */
.guarantee-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

/* GUARANTEE BADGE */
.guarantee-badge {
  background: #facc15;
  color: #111827;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(250, 204, 21, 0.65);
}

.guarantee-text {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 0.7;
  margin: 0;
}

.guarantee-subtext {
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: 0.28rem;
  line-height: 0.7;
}

.guarantee-bottom {
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.22rem;
  line-height: 0.7;
  opacity: 0.95;
}

/* pricing */
.pricing-display {
  margin: 1.6rem 0 1.2rem;
}

.regular-price,
.special-price1 {
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.price-label,
.special-label {
  font-weight: 600;
  color: #000;
}

.price-amount {
  text-decoration: line-through;
  color: #64748b;
  margin-left: 0.35rem;
}

.special-amount {
  margin-top: 0.25rem;
  font-weight: 800;
  color: #22c55e;
  margin-left: 0.35rem;
}

/* final CTA button */
.final-cta-button {
  margin-top: 0.8rem;
}

.btn-final-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  background: #22c55e;
  color: #020617;
  font-weight: 750;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.8);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn-final-order:hover {
  background: #16a34a;
  transform: translateY(1px);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.8);
}

/* =========================
   FOOTER
========================= */
.footer-section {
  background: #020617;
  padding: 1.4rem 0;
  text-align: center;
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}

.legal-link {
  color: #9ca3af;
  font-size: 0.85rem;
  text-decoration: none;
}

.legal-link:hover {
  color: #e5e7eb;
}

.link-separator {
  color: #4b5563;
}

/* disclaimers */
.footer-disclaimers-full {
  background: #020617;
  color: #9ca3af;
  padding: 2rem 0;
}

.footer-disclaimers-full .disclaimer-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-disclaimers-full p {
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* bottom bar */
.footer-bottom-centered {
  background: #020617;
  border-top: 1px solid #111827;
  padding: 1.2rem 0 1.5rem;
}

.footer-bottom-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  align-items: center;
}

.social-media-rounded {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #111827;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.social-link:hover {
  background: #22c55e;
  color: #020617;
}

.footercopyright p {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* =========================
   URGENCY BANNER
========================= */
.urgency-banner {
  color: #020617;
  padding: 0.1rem 0;
  position: sticky;
  bottom: 0;
  z-index: 20;
}

/* =========================
   SCROLL TO TOP BUTTON
========================= */
#scrollToTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #020617;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.8);
  z-index: 50;
}

#scrollToTop:hover {
  background: #16a34a;
}

/* =========================
   RESPONSIVE – iPHONE
========================= */
@media (max-width: 480px) {
  .security-cta-section {
    padding: 2.4rem 0 2.1rem;
  }

  .security-card {
    padding: 1.6rem 1.3rem;
    border-radius: 18px;
  }

  .security-title {
    font-size: 1.35rem;
  }

  .security-content p {
    font-size: 0.92rem;
  }

  .cta-banner-title {
    font-size: 1.6rem;
  }

  .product-display {
    padding: 0 0.5rem;
  }

  .main-product-image {
    border-radius: 16px;
  }

  .footer-legal-links {
    gap: 0.25rem;
  }

  .legal-link {
    font-size: 0.8rem;
  }

  #scrollToTop {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
  }
}

/* Slightly larger phones / small tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .security-card {
    padding: 1.8rem 1.5rem;
  }

  .footer-bottom-container {
    flex-direction: column;
  }
}