/* ==========================================================================
   1. GLOBAL RESET, VARIABLES & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --- Brand Colors (Theme A: Organic/Premium) --- */
    --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: #1f2937;
    --text-secondary: #1f2937;
    
    /* --- Gradients --- */
    --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%);
    
    /* --- Shadows --- */
    --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);

    /* --- Brand Colors (Theme B: Cyberpunk/Futuristic) --- */
    --cobalt: #0a1128;
    --neon-blue: #00d2ff;
    --gold: #ffb400;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.1);
}

body {
    overflow-x: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   2. NAVIGATION BAR
   ========================================================================== */
.glass-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #46564c;
    border: 2px solid #ffde89;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    transition: all .35s ease;
}

.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, 4vw, 50px);
    width: auto;
    display: block;
    padding: 2px;
    border-radius: 7px;
    background: linear-gradient(135deg, #46564c 0%, #46564c);
    border: 2px solid rgba(255, 255, 255, .3);
    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: 500;
    font-size: clamp(14px, 2vw, 20px);
    padding: 5px 14px !important;
    border-radius: 10px;
    white-space: nowrap;
    background: linear-gradient(135deg, #46564c 0%, #46564c);
    border: 2px solid rgba(255, 255, 255, .3);
    box-shadow: 0 4px 12px rgba(0, 66, 37, .3);
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    color: #7ee0ff !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(180deg, #d58f00, #2a0000, #000000);
    transform: translateX(-50%);
    transition: width .25s ease;
}

.nav-link:hover::after {
    width: 70%;
}

.order-img {
    height: 40px;
    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);
}

/* ==========================================================================
   3. HERO SECTION & LAYOUT ELEMENTS
   ========================================================================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.hero-section {
    background: linear-gradient(180deg, #3c4d43, #516057, #435349);
    padding: 80px 20px;
    color: #fff;
    margin-top: 80px;
}

.hero-title-global {
    text-align: center;
    font-size: clamp(1.7rem, 3.7vw, 2.7rem);
    font-weight: 650;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 auto 50px;
    max-width: 1100px;
    color: #b4bda3;
}

.text-gradient {
    display: block;
    margin-top: 12px;
    background: linear-gradient(185deg, #fff 0%, #b7ca97 50%, #65a572 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 1px rgba(0,0,0,.15);
}

.hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: start;
}

.hero-content {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 20px;
}

.hero-description {
    font-size: 1.65rem;
    line-height: 1.3;
    color: #ffffff;
}

.hero-subtitle {
    margin: 0;
    padding: 0;
}

.hero-benefits-wrap {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 25px;
}

.mask-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
}

.gif-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: contain;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-benefits li {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #ffffff;
}

.hero-benefits-image img {
    max-width: 170px;
    height: auto;
    border-radius: 20px;
}

.hero-image {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-video {
    width: 90%;
    height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    margin: 0 auto;
}

.ingredients-section {
    margin-top: 10px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
}

.reviews-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #f1f1f1;
}

.reviews-text strong:first-child {
    display: block;
    font-size: 1.3rem;
    color: #00ffa6;
    margin-bottom: 10px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
}

.btn-hero {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.btn-outline {
    border: 2px solid #38bdf8;
    color: #38bdf8;
}

.urgency-text {
    margin-top: 15px;
    color: #ffb4b4;
}

.trust-badges {
    margin-top: 15px;
    font-size: .9rem;
    color: #d8d8d8;
}

.rating-badge {
    margin-top: 15px;
    color: #facc15;
}

/* ==========================================================================
   4. APERTURE INTERFACE (FUTURISTIC THEME)
   ========================================================================== */
.aperture-interface {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(180deg, #44544a, #654200, #44544a);
}

.aperture-interface::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    z-index: 0;
}

.aperture-interface::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: linear-gradient(180deg, #000000, #000000, #96373f);
    filter: blur(80px);
    z-index: 0;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.interface-bg-text {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12vw;
    font-weight: 900;
    background: linear-gradient(90deg, #00d2ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.05;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.interface-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.interface-header {
    text-align: center;
    margin-bottom: 60px;
}

.glitch-title {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.node-cluster {
    display: flex;
    gap: 30px;
    margin-bottom: -40px;
}

.bio-node {
    flex: 1;
    text-align: center;
}

.bio-node .mask-frame {
    width: 100%;
    aspect-ratio: 5/5;
    background: var(--glass);
    border: 1px solid var(--border-glass);
    border-radius: 60px 5px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.4s;
}

.bio-node:hover .mask-frame {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0,210,255,0.2);
}

.mask-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(110%);
}

.node-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-blue);
    font-weight: 700;
}

.bridge-hub {
    background: rgba(5, 10, 30, 0.9);
    border: 1px solid var(--neon-blue);
    border-radius: 100px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    margin: 40px 0;
    box-shadow: 0 0 50px rgba(0,210,255,0.15);
}

.hub-branding {
    font-size: 1.8rem;
    font-weight: 900;
    position: relative;
}

.hub-branding span {
    color: var(--neon-blue);
}

.reticle {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    opacity: 0.5;
}

.hub-navigation {
    display: flex;
    gap: 40px;
}

.nav-item {
    cursor: pointer;
}

.nav-code {
    font-size: 0.6rem;
    color: var(--gold);
    font-family: monospace;
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 700;
}

.hub-cta {
    background: var(--gold);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.hub-cta:hover {
    box-shadow: 0 0 20px var(--gold);
    transform: scale(1.05);
}

.logic-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.logic-cell {
    border-left: 1px solid var(--border-glass);
    padding-left: 20px;
}

.cell-index {
    font-size: 0.65rem;
    color: var(--neon-blue);
    font-weight: 800;
    margin-bottom: 10px;
}

.logic-cell p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Tablet Devices & Medium Displays --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-title-global {
        font-size: clamp(2.4rem, 7vw, 4rem);
        margin-bottom: 35px;
    }
}

/* --- Consolidated Medium Breakpoint (968px) --- */
@media (max-width: 968px) {
    .aperture-interface {
        padding: 32px 0 40px;
        align-items: flex-start;
    }

    .interface-bg-text {
        font-size: 18vw;
        top: 3%;
    }

    .interface-container {
        width: 92%;
    }

    .interface-header {
        margin-bottom: 32px;
    }

    .glitch-title {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .node-cluster {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .bio-node .mask-frame {
        width: 70%;
        height: 220px;
        border-radius: 20px;
        margin-left: 55px;
        margin-bottom: 15px;
        transition: 0.4s;
    }

    .bridge-hub {
        flex-direction: column;
        gap: 10px;
        border-radius: 20px;
        text-align: center;
        padding: 16px 18px;
    }

    .hub-branding {
        font-size: 1.4rem;
    }

    .hub-navigation {
        display: none;
    }

    .hub-cta {
        width: 100%;
        justify-content: center;
    }

    .logic-flow {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .logic-cell {
        border-left: none;
        border-top: 1px solid var(--border-glass);
        padding-top: 12px;
        padding-left: 0;
    }

    .logic-cell p {
        font-size: 1.2rem;
    }
}

/* --- Mobile Devices --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 15px;
    }

    .hero-title-global {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-benefits-wrap {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* --- Small Handsets (667px) --- */
@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: 27px;
    }

    .order-img {
        height: 30px;
    }
}

/* --- Small Phones (e.g., iPhone SE) --- */
@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: 8px;
        padding: 3px 6px !important;
    }

    .order-img {
        height: 34px;
    }
}

/* --- Ultra Tiny Screens --- */
@media (max-width: 360px) {
    .nav-link {
        font-size: 6px;
        padding: 2px 5px !important;
    }

    .order-img {
        height: 30px;
    }
}
/* ==========================================================================
   1. GLOBAL RESET & BASE STYLES
   ========================================================================== */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #04120b 0%, #020308 55%, #000000 100%);
    color: #f5f7fb;
}


/* ==========================================================================
   2. WHY CHOOSE SECTION
   ========================================================================== */
.why-choose-section {
    padding: 0 0 2.5rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: "Jost", sans-serif;
}

/* Section Header Container */
.section-header {
    background: radial-gradient(circle at 12% 0%, #58665d 0%, #58665d 40%, #020617 100%);
    text-align: center;
    position: relative;
    padding: 1.7rem 0;
    border: 1px solid rgba(148, 163, 184, 0.55);
    border-radius: 30px 10px 24px 14px; 
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.7),
        0 18px 40px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    max-width: 980px;
    margin: 1.5rem auto 0.5rem auto;
}

.section-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,.08) 50%,
        transparent 80
    );
    transform: translateX(-100%);
    animation: shine-sweep 8s linear infinite;
}

/* Section Title Typography */
.section-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 0;
}

.section-title span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(90deg, #22c55e, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards Framework */
.certification-card {
    position: relative;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 1.8rem;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.certification-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        transparent 60%
    );
    pointer-events: none;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

/* Card Visual Media Components */
.cert-image-wrapper {
    width: 250px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 10%;
    padding: 5px;
    background: linear-gradient(135deg, #22c55e, #facc15);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.cert-image {
    width: 100%;
    height: 100%;
    border-radius: 10%;
    object-fit: cover;
    background: #fff;
}

.cert-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.cert-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #22c55e, #facc15);
    border-radius: 50px;
}

.cert-description {
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 10px;
    font-weight: 400;
    letter-spacing: 0.2px;
}


/* ==========================================================================
   3. WHAT IS ALPHA BOOST PRO SECTION
   ========================================================================== */
.what-is-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Red Variant Section Header Container */
.section-header-red {
    background: radial-gradient(circle at 12% 0%, #58665d 0%, #58665d 40%, #020617 100%);
    text-align: center;
    position: relative;
    padding: 1.7rem 0;
    border: 1px solid rgba(148, 163, 184, 0.55);
    border-radius: 30px 10px 24px 14px; 
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.7),
        0 18px 40px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    max-width: 980px;
    margin: 1.5rem auto 0.5rem auto;
}

.section-header-red::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(52, 211, 153, 0.2) 0%, transparent 65%);
    opacity: 0.8;
    mix-blend-mode: screen;
}

.section-header-red::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -35%;
    width: 60%;
    height: 160%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 60%);
    transform: skewX(-18deg);
    opacity: 0.75;
}

/* Alternate Title Graphic Typography */
.section-title-red {
    color: #fef9c3;
    font-size: clamp(2.1rem, 5vw, 2.7rem);
    font-weight: 800;
    margin: 0;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(190, 242, 100, 0.55);
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.045em;
}
/* Header */
.section-title-red {
    color: #ffde89;
    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;
}

.section-title-red {
    color: #ffde89;
    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;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #04120b 0%, #020308 55%, #000000 100%);
  color: #f5f7fb;
}

.section-header-red {
  background: radial-gradient(circle at 12% 0%, #1985be 0%, #1985be 40%, #020617 100%);
  text-align: center;
  position: relative;
  padding: 1.7rem 0;

  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 30px 10px 24px 14px; 
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.7),
    0 18px 40px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  max-width: 980px;
  margin: 1.5rem auto 0.5rem auto;
}

.section-header-red::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      ellipse at 20% 0%,
      rgba(255, 255, 255, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 100%,
      rgba(52, 211, 153, 0.2) 0%,
      transparent 65%
    );
  opacity: 0.8;
  mix-blend-mode: screen;
}

.section-header-red::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -35%;
  width: 60%;
  height: 160%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
  transform: skewX(-18deg);
  opacity: 0.75;
}

.section-title-red {
  color: #fef9c3;
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 0;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(190, 242, 100, 0.55);
  position: relative;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.045em;
}

.privacy-policy-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.privacy-card {
  background: radial-gradient(circle at top left, #020617 0%, #020617 50%, #020617 100%);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
  padding: 1.75rem 1.8rem;
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(16, 185, 129, 0.12),
    transparent 60%
  );
  opacity: 0.9;
  pointer-events: none;
}

.privacy-header {
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.privacy-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e5f9f1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.privacy-content {
  position: relative;
  z-index: 1;
  color: #e2e8f0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.privacy-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(15, 118, 110, 0.16), transparent 60%);
  border: 1px solid rgba(30, 64, 175, 0.38);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.85);
}

.privacy-item + .privacy-item {
  margin-top: 0.9rem;
}

.privacy-item-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.privacy-item p {
  margin: 0;
  color: #cbd5f5;
  font-size: 0.95rem;
}

.privacy-cta-card {
  margin-top: 2rem;
  padding: 1.7rem 1.5rem;
  border-radius: 24px;
  background: radial-gradient(circle at 80% 0%, #16a34a 0%, #14532d 35%, #020617 100%);
  border: 1px solid rgba(74, 222, 128, 0.6);
  box-shadow: 0 16px 40px rgba(21, 128, 61, 0.75);
  color: #ecfdf5;
  position: relative;
  overflow: hidden;
}

.privacy-cta-card::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 15% 0%,
    rgba(255, 255, 255, 0.25),
    transparent 55%
  );
  mix-blend-mode: screen;
}

.cta-title {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.cta-description {
  position: relative;
  z-index: 1;
  font-size: 0.96rem;
  margin-bottom: 0.9rem;
}

.support-email {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #bbf7d0;
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(187, 247, 208, 0.6);
  background: rgba(15, 23, 42, 0.65);
  box-shadow: 0 0 0 1px rgba(21, 128, 61, 0.6),
              0 10px 25px rgba(15, 23, 42, 0.9);
  transition: all 0.22s ease-out;
}

.support-email:hover {
  color: #022c22;
  background: #bbf7d0;
  transform: translateY(-1px);
}

.privacy-section-title i,
.privacy-item-title i,
.cta-title i {
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.7));
}

@media (max-width: 576px) {
  .section-header-red {
    margin-inline: 0.75rem;
    border-radius: 22px 8px 20px 10px;
  }
  .privacy-card,
  .privacy-cta-card {
    padding: 1.35rem 1.2rem;
  }
}

.what-is-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
/* Graphics Wrapper Components */
.what-is-image-wrapper {
    transition: transform 0.3s ease, box-shadow 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 Markup UI */
.what-is-content {
    padding: 0;
}

.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', sans-serif;
}

.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;
}

/* Actions and Buttons UI */
.what-is-cta {
    text-align: center;
    margin-top: 30px;
}

.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);
}

.btn-gradient {
    background: #1f2937;
    color: #fff;
    border: none;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: glowPulse 2s infinite;
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.03);
    color: #fff;
}

.btn-gradient:active {
    transform: scale(0.96);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-25deg);
    animation: btn-shine 3s infinite;
}


/* ==========================================================================
   4. ANIMATIONS REFERENCE KEYS
   ========================================================================== */
@keyframes shine-sweep {
    to {
        transform: translateX(100%);
    }
}

@keyframes btn-shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 65, 108, 0.4),
                    0 0 10px rgba(255, 65, 108, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 65, 108, 0.8),
                    0 0 40px rgba(255, 65, 108, 0.6);
    }
}


/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES (COLLATED)
   ========================================================================== */
@media (max-width: 768px) {
    /* Why Choose Framework Cleanups */
    .section-header {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .certification-card {
        padding: 1.3rem;
    }

    .cert-image-wrapper {
        width: 170px;
        height: 170px;
    }

    .cert-title {
        font-size: 1.15rem;
    }

    /* What Is Framework Cleanups */
    .what-is-section {
        padding: 0;
    }

    .section-header-red {
        padding: 1rem 0;
    }

    .section-title-red {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .what-is-content {
        padding: 0 0.5rem;
        text-align: center;
    }

    .what-is-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .what-is-image-wrapper {
        margin-top: 1.5rem;
    }

    .what-is-image {
        border-radius: 16px;
    }

    .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;
    }

    .what-is-cta {
        margin-top: 1.5rem;
    }

    .what-is-cta .btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }
}

/* ==========================================================================
   1. 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;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: 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 Cards Framework */
.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', sans-serif;
}

.mechanism-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 1.25rem);
    text-align: justify;
}

/* How It Works Section Summary Card */
.summary-section {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, #b7ca97 50%, #0dae7a 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', sans-serif;
}

.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);
}


/* ==========================================================================
   2. 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;
}

/* Reviews Card Markup */
.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: 180px;
    height: 210px;
    border-radius: 20px;
}

.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 Typography Quotes Block */
.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-benefits-image img {
    max-width: 230px; 
    height: auto;
    margin-top: -27.4rem;
    margin-left: 50.4rem;
}

/* Graphical Glass Reviews Statistics Board */
.reviews-summary {
    position: relative;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;
    background: #45564c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.4),
        inset 0 0 25px rgba(255,255,255,0.05);
}

.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: 0 0 10px rgba(255, 255, 255, 0.2);
    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;
}

/* Call to Action Footer elements */
.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', sans-serif;
}

.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);
}


/* ==========================================================================
   3. RESPONSIVE MEDIA QUERIES (COLLATED)
   ========================================================================== */

/* --- Tablet / Large Displays (991.98px breakpoint) --- */
@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;
    }

    .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;
    }
}

/* --- Mobile Smartphones Breakpoint (767.98px) --- */
@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;
    }

    .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;
    }
}

/* --- Small/Compact Screen Interfaces (575.98px) --- */
@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;
    }

    .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;
    }
}

.ingredients-section2 {
  padding: 60px 0;
  background: #bd284a;           /* adjust or remove as needed */
  color: #f9fafb;
}

.ingredients-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.ingredients-heading {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ingredients-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* Optional: tighter spacing on mobile */
@media (max-width: 768px) {
  .ingredients-section {
    padding: 40px 0;
  }

  .ingredients-header {
    margin-bottom: 28px;
    padding: 0 1rem;
  }
}
.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: #fac66c;
    position: relative;
}

.ingredients-title::after {
    content: "";
    display: block;
    width: 140px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #bd284a, #22c55e);
    border-radius: 999px;
}

.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;
}

.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;
}

.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-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 {
    padding: 0;
    background: #f8fafc;
}

.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;
}

.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: #000000;
    line-height: 1.7;
    font-size: clamp(1rem, 2.5vw, 1.05rem);
    text-align: justify;
}

.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-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 {
    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.4;
    font-size: clamp(1.18rem, 3vw, 1.18rem);
    text-align: justify;
}

.evidence-conclusion {
    margin-top: 1rem;
}

.conclusion-card {
    background: linear-gradient(135deg, #000000, #08311e);
    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;
}

@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;
    }
}

/* Scientifically Formulated Section */
.formulation-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.formulation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.formulation-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.formulation-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 1.5rem;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
    background: var(--success-color);
}

.step-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    text-align: justify;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger-color);
    font-size: 1.5rem;
    margin-top: 3rem;
    flex-shrink: 0;
}

.guarantee-section {
  background:radial-gradient(ellipse at center,rgba(46, 122, 87, 0.35) 0%,rgba(46, 122, 87, 0.15) 35%,transparent 70%),linear-gradient(180deg,#2F3A34 0%,#2E7A57 55%,#25312C 100%);
  border-radius: 25px;
  padding: 3rem 3rem 3rem 8rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

/* Subtle light overlay */
.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* =========================
   CONTENT LAYOUT
========================= */

.guarantee-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =========================
   BADGE
========================= */

.guarantee-badge-container {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.guarantee-badge-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.guarantee-badge-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-radius: 50%;
  border: 4px solid var(--accent-color);
}

.badge-content {
  text-align: center;
  color: #fff;
}

.badge-days {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.badge-text,
.badge-bottom {
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-main {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

/* =========================
   VISIFLORA BLUE GUARANTEE 
========================= */

.visiflora-guarantee-box {
    background-color: #239f47; /* Deep Navy Blue from image */
    border-radius: 40px;       /* Match rounded corners in image */
    padding: 40px 60px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 50px;
}

.guarantee-badge-img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.guarantee-heading {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.guarantee-subtext {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
    margin: 0;
}

/* Formulations Fixes */
.formulation-title {
    color: #239f47; /* Sync with blue theme */
    margin-bottom: 50px;
}

.step-circle {
    background: #239f47 !important; /* Blue step numbers */
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .visiflora-guarantee-box {
        padding: 30px;
        border-radius: 25px;
        text-align: center;
    }
    .guarantee-heading {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .step-arrow {
        display: none; /* Hide arrows on mobile for vertical stack */
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  padding: 70px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.benefits-container {
  max-width: 1100px;
  margin: auto;
}

.benefits-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 20px;
}

.benefits-intro {
  text-align: center;
  font-size: 1.6rem;
  color: #171449;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.4;
  
  border: 2px solid #171449; 
  border-radius: 12px;       
  padding: 30px;            
  background-color: #f9f9ff; 
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: #b5c997;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  border-left: 4px solid #259858;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefit-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #000;
}

.benefit-card p {
  font-size: 01.15rem;
  color: #000;
  line-height: 1.6;
}

.benefits-extra {
  margin-top: 50px;
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.disclaimer {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #999;
}

/* Responsive */
@media (max-width: 600px) {
  .benefits-title {
    font-size: 2rem;
  }

  .benefits-intro {
    font-size: 1rem;
  }
}


/* FAQ Section */
.faq-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.faq-header {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
}

.faq-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);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(220, 53, 69, 0.02);
}

.faq-question h4 {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--primary-color);
    transform: rotate(45deg);
}

.faq-answer {
    border-top: 1px solid #f1f5f9;
}

.faq-answer-content {
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.faq-answer-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
    text-align: left;
}

.faq-answer-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-cta {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-cta::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%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Bootstrap Collapse Animation Enhancement */
.faq-answer.collapsing {
    transition: height 0.3s ease;
}

.faq-answer.show {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer-content {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .faq-header {
        padding: 2rem 0;
    }
    
    .faq-item {
        margin: 0 1rem 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-answer-content {
        padding: 1rem 1.2rem;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1rem;
        margin: 2rem 1rem 0;
    }
    
    .cta-buttons .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
        min-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .faq-question {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .faq-answer-content {
        padding: 0.8rem 1rem;
    }
    
    .faq-answer-content p,
    .faq-answer-content li {
        text-align: left;
    }
    
    .faq-cta {
        padding: 1.2rem 0.8rem;
    }
}

/* Custom Scrollbar for FAQ Content */
.faq-answer-content::-webkit-scrollbar {
    width: 6px;
}

.faq-answer-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.faq-answer-content::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 3px;
}

.faq-answer-content::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

/* 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: 400px;
    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, #ffffff 0%, #259858 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: 01.1rem;
    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: 600;
    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;
    }
}

.final-footer {
  background-color: #e8f0fe;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
  text-align: center;
}

/* Button Grid Styling */
.footer-nav-box {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 30px;
  border: 1px solid #7c8db0;
  border-radius: 15px;
}

.button-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.btn1 {
  background-color: #261252; /* Matches the orange in your image */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 5px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.btn:hover {
  background-color: #ffa726;
}

/* Legal Text Styling */
.legal-text-section {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.legal-text-section p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  color: #3e4a61;
}

/* Branding Section */
.branding-section {
  max-width: 1000px;
  margin: 0 auto;
}

.buygoods-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  margin-bottom: 30px;
}

.buygoods-logo {
  opacity: 0.6;
  width: 140px;
}

.buygoods-row p {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.4;
}

.copyright-row {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #cbd5e1;
  margin-bottom: 20px;
}

.payment-icons img {
  max-width: 300px;
  opacity: 0.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .button-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .buygoods-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* 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 {
    
    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;
}

@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: AUTO;
        height: 280px;
    }
    
    .urgency-banner {
        padding: 1rem 0;
    }
}
/* Base Button Styling (Outer Pill Container) */
.custom-3d-btn {
    display: inline-flex;
    align-items: center;
    background-color: #212932; /* Deep slate base color */
    padding: 12px 28px 12px 16px;
    border-radius: 60px;
    text-decoration: none !important;
    border: 1px solid #1a2027;
    
    /* Soft Red Outer Glow from image_7616bc.png and watermarked_img_15247024822513334587.png */
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.35), 
                0 4px 10px rgba(0, 0, 0, 0.4);
                
    transition: all 0.3s ease;
}

/* 1. Raised Area (Platform for the Discount Image Badge) */
.badge-raised-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b3541, #191f26);
    margin-right: 18px;
    flex-shrink: 0;
    
    /* Layered drop shadows and highlights to make it look pop out */
    box-shadow: 
        -3px -3px 7px rgba(255, 255, 255, 0.02),  /* Top-left light highlight */
        3px 5px 10px rgba(0, 0, 0, 0.6),          /* Drop shadow down-right */
        inset 1px 1px 1px rgba(255, 255, 255, 0.1); /* Subtle inner edge rim */
}

/* Image sizing inside the container */
.discount-badge-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.4)); /* Depth for the badge itself */
}

/* 2. Recessed Area (Carved-in Trench for the Text) */
.text-recessed-container {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 40px;
    background-color: #1c222a; /* Slightly darker to emphasize depth */
    white-space: nowrap;
    
    /* Inset shadows simulate the carved/recessed texture */
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.7),      /* Deep shadow inside top/left */
        inset -2px -2px 5px rgba(255, 255, 255, 0.05), /* Subtle light lip on bottom/right */
        1px 1px 0px rgba(255, 255, 255, 0.05);     /* Tiny outer light edge */
        
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}

/* Interactive States */
.custom-3d-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.5), 
                0 6px 15px rgba(0, 0, 0, 0.5);
}

.custom-3d-btn:active {
    transform: translateY(1px);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.3), 
                0 2px 5px rgba(0, 0, 0, 0.4);
}
/* ==========================================
   MOBILE & RESPONSIVE STYLES (768px and down)
   ========================================== */
@media (max-width: 768px) {
    /* 1. Base Button Container Adjustments */
    .custom-3d-btn {
        padding: 8px 16px 8px 10px; /* Snugger padding for small viewports */
        border-radius: 50px;
        width: 100%; /* Spans full width on mobile for better thumb reach */
        max-width: 450px; /* Keeps it from stretching too wide on small tablets */
        justify-content: flex-start; /* Aligns elements nicely within the full-width block */
    }

    /* 2. Scaled-Down Raised Badge Area */
    .badge-raised-container {
        width: 54px;   /* Reduced from 76px */
        height: 54px;  /* Reduced from 76px */
        margin-right: 12px;
        /* Slightly lighter shadow intensities to match the smaller footprint */
        box-shadow: 
            -2px -2px 5px rgba(255, 255, 255, 0.08),
            2px 4px 7px rgba(0, 0, 0, 0.6),
            inset 1px 1px 1px rgba(255, 255, 255, 0.1);
    }

    /* Scale down the 50-discount-badge.png image contextually */
    .discount-badge-img {
        width: 44px;   /* Reduced from 64px */
        height: 44px;  /* Reduced from 64px */
    }

    /* 3. Responsive Recessed Text Area */
    .text-recessed-container {
        font-size: 16px; /* Reduced from 24px to prevent horizontal overflow */
        padding: 10px 18px; /* Slightly tighter internal padding */
        border-radius: 30px;
        white-space: normal; /* Allows text to wrap into 2 lines safely if screen is extremely narrow */
        text-align: center;
        flex-grow: 1; /* Pushes text container to fill available width balanced next to badge */
    }

    /* 4. Secondary Review Button Adjustments */
    .btn-review-outline {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%; /* Stacks perfectly matching the full width design on mobile */
        max-width: 450px;
        text-align: center;
    }
}

/* Extra tweak for exceptionally small screens (iPhone SE, etc.) */
@media (max-width: 360px) {
    .text-recessed-container {
        font-size: 14px; /* Tiny step down to completely guarantee no clipping */
        padding: 8px 12px;
    }
    .badge-raised-container {
        width: 46px;
        height: 46px;
    }
    .discount-badge-img {
        width: 36px;
        height: 36px;
    }
}
@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;
}

/* ==========================================================================
   1. ANIMATIONS & GRAPHICS TIMELINES
   ========================================================================== */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Infinite sliding cycle loop (Runs on an 8s track window) */
@keyframes infiniteSideSlide {
    0%, 100% {
        transform: translateY(-50%) translateX(calc(100% - 90px)); /* Retracted badge-only state */
    }
    10%, 40% {
        transform: translateY(-50%) translateX(0%); /* Slides completely out and holds */
    }
    50%, 90% {
        transform: translateY(-50%) translateX(calc(100% - 90px)); /* Retracts back to edge and holds */
    }
}

/* Red outer structural bloom pulse */
@keyframes autoGlowPulse {
    0% { box-shadow: 0 0 15px rgba(230, 57, 70, 0.3), 0 4px 10px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 0 28px rgba(230, 57, 70, 0.65), 0 4px 12px rgba(230, 57, 70, 0.2); }
    100% { box-shadow: 0 0 15px rgba(230, 57, 70, 0.3), 0 4px 10px rgba(0, 0, 0, 0.4); }
}

/* ==========================================================================
   2. SCROLL TO TOP UI COMPONENT
   ========================================================================== */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background-color: #ff6e0d;
    color: #000;
    font-size: 32px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTop:hover {
    transform: translateY(-3px);
}


/* ==========================================================================
   4. DETAILED 3D FLOATING BUTTON COMPONENT (SLATE SPEC)
   ========================================================================== */
.sliding-sidebar-cta-right {
    position: fixed;
    top: 85%;
    right: 0;
    z-index: 9999;
    display: flex;
    width: auto;
    padding: 10px;
    animation: infiniteSideSlide 8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    transition: transform 0.3s ease-out;
}

/* Pauses timeline movement track completely when mouse explicitly hovers the item */
.sliding-sidebar-cta-right:hover {
    animation-play-state: paused;
    transform: translateY(-50%) translateX(0);
}

.custom-3d-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #b3b3b2, #b3b3b2);
    padding: 12px 24px 12px 16px;
    border-radius: 60px;
    text-decoration: none !important;
    border: 1px solid #1a2027;
    animation: autoGlowPulse 3s ease-in-out infinite;
}

/* Container block wrapper spacing rule adjustment */
.cta-buttons-wrapper {
    margin-top: 30px; /* Applies your intended top layout clearance to the entire button module */
    display: inline-block;
}

/* Corrected alignment structure for the inner components */
.badge-raised-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #acabad, #acabad);
    margin-right: 18px;
    margin-top: 0; /* Reset back to zero to prevent the badge from shifting down out of the button axis */
    flex-shrink: 0;
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.7),
        inset -2px -2px 5px rgba(255, 255, 255, 0.05),
        1px 1px 0px rgba(255, 255, 255, 0.05);
}

.discount-badge-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.4));
}

.text-recessed-container {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 40px;
    background-color: #ef9a0b;
    white-space: nowrap;
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.7),
        inset -2px -2px 5px rgba(255, 255, 255, 0.05),
        1px 1px 0px rgba(255, 255, 255, 0.05);
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}

.custom-3d-btn:hover {
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.75), 0 6px 15px rgba(0, 0, 0, 0.5);
}

.custom-3d-btn:active {
    transform: scale(0.98);
}

/* ==========================================================================
   5. UNIFIED MOBILE RESPONSIVE ENGINE BREAKPOINTS
   ========================================================================== */
@media (max-width: 768px) {
    #scrollToTop {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Primary 3D Floating layout locks safely to bottom screen dock */
    .sliding-sidebar-cta-right {
        top: auto;
        bottom: 20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(0);
        animation: none;
        width: 100%;
        max-width: 420px;
        padding: 0 15px;
    }
    
    .sliding-sidebar-cta-right:hover {
        transform: translateX(-50%) translateY(-2px);
    }
    
    .custom-3d-btn {
        width: 100%;
        padding: 8px 16px 8px 10px;
    }

    .badge-raised-container {
        width: 54px;
        height: 54px;
        margin-right: 12px;
    }

    .discount-badge-img {
        width: 44px;
        height: 44px;
    }

    .text-recessed-container {
        font-size: 16px;
        padding: 10px 18px;
        white-space: nowrap;
    }

    /* Maintained horizontal pull-out transition engine on mobile, clear of action overlay strip */
    .side-cta-panel {
        top: auto;
        bottom: 110px; 
        transform: translateX(280px); /* Pure horizontal hide alignment */
    }

    .side-cta-panel:hover {
        transform: translateX(0); /* Pure horizontal sliding activation profile */
    }
}

@media (max-width: 667px) {
    /* Safe viewport width reduction matching compact mobile frame factors */
    .side-cta-panel {
        top: auto;
        bottom: 110px;
        width: 240px;
        transform: translateX(240px);
    }
    
    .side-cta-panel:hover {
        transform: translateX(0);
    }
    
    .side-cta-content {
        padding: 16px;
    }

    .side-cta-content h3 {
        font-size: 15px;
    }

    .side-cta-content p {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .side-order-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 360px) {
    /* Extreme handheld bounds (iPhone SE) aspect scaling safety controls */
    .side-cta-panel {
        width: 190px;
        transform: translateX(190px);
    }
    .side-cta-panel:hover {
        transform: translateX(0);
    }
    .side-cta-tab {
        left: -38px;
        padding: 6px 12px;
        font-size: 10px;
    }
}
