/* Modern CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #327139;
    --secondary-color: #1e4e3c;
    --accent-color: hsla(43, 100%, 50%, 0.966);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-primary: #1f2937;
    --text-secondary: #1f2937;
    --gradient-primary: linear-gradient(135deg, #327139 0%, #327139 100%);
    --gradient-secondary: linear-gradient(135deg, #419a01 0%, #b01424 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Replace your current smooth scrolling CSS with this */
html {
    scroll-behavior: auto; /* Default to instant scrolling */
    -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
    overscroll-behavior-y: contain; /* Prevent overscroll effects */
}

@media (min-width: 992px) {
    html {
        scroll-behavior: smooth; /* Only enable smooth scrolling on desktop */
    }
}

/* Add this to prevent any transform-based scrolling interference */
body {
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif,Jost;
    line-height: 1.3;
    color: var(--text-primary);
    background: #fff;
    overflow-x: hidden;
}

/* ===== NAVBAR BASE ===== */
.glass-nav {
    background: radial-gradient(circle at 12% 0%, #020617 0%, #1985be 40%, #1985be 100%);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    transition: all 0.3s ease;
    z-index: 1000;
}

.glass-nav.scrolled {
    background: linear-gradient(90deg, #020617 0%, #0f172a 40%, #020617 100%);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.8);
    padding: 0.4rem 0;
}

/* ===== BRAND ===== */
.navbar-brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #e5f9ff !important;
    text-transform: uppercase;
}

.cert-logo {
    height: 30px;
    border-radius: 4px;
}

/* ===== NAV LINKS ===== */
.nav-link {
    color: #e5e7eb !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.55rem 1rem !important;
    margin: 0.1rem;
    border-radius: 999px;
    position: relative;
    transition: all 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    transition: 0.25s;
}

.nav-link:hover,
.nav-link.active {
    color: #bbf7d0 !important;
    background: rgba(34, 197, 94, 0.12);
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
    border-color: rgba(74, 222, 128, 0.6);
}

/* ===== BUTTONS ===== */
.btn-gradient {
    background: linear-gradient(120deg, #0ea5e9, #22c55e);
    border: 1px solid rgba(15, 23, 42, 0.9);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    transition: 0.25s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(34, 197, 94, 0.6);
    background: linear-gradient(120deg, #22c55e, #0ea5e9);
}

.btn-outline-warning {
    border: 1px solid #facc15;
    color: #facc15;
    border-radius: 999px;
    transition: 0.25s;
}

.btn-outline-warning:hover {
    background: #facc15;
    color: #0f172a;
    transform: translateY(-2px);
}

/* ===== HAMBURGER ===== */
.hamburger-icon {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    transition: 0.3s;
}

/* Animation */
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE PREMIUM ===== */
@media (max-width: 991px) {

    .navbar-collapse {
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 1rem;
        margin-top: 0.8rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        display: block;
        width: 100%;
        font-size: 1rem;
        padding: 0.7rem 1rem !important;
        margin: 0.3rem 0;
        border-radius: 10px;
        text-align: center;
    }

    .navbar-collapse .d-flex {
        flex-direction: column;
        margin-top: 1rem;
    }

    .navbar-collapse .btn {
        width: 100%;
        padding: 0.7rem;
    }

    .cert-logo {
        height: 26px;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Hero Section - Mobile First */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 40px;
    background: linear-gradient(to right, #141414, #1f4e76);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ================= HERO BACKGROUND ================= */

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;

    /* Image + dark overlay */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),  /* dark layer */
        url("./assets/vitalisliint-backgrouhjuh2.png");          /* image */

    background-size: 100% 100%, 80% 100%;
    background-position: left center, calc(100% - 0px) center;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .hero-background {
		background: #c74555;
        position: relative;
        background-image:
            linear-gradient(
                to bottom,
                rgba(20, 20, 20, 0.75),
                rgba(20, 20, 20, 0.75)
            ),
            url("./assets/reduburn-int-backgroun.webp");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* ================= OVERLAY ================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}

.custom-audio-player {
    width: 100%;
    max-width: 360px;
    border-radius: 999px;
    background-color: #ffde89;
    padding: 4px; 
}

.custom-audio-player::-webkit-media-controls-panel {
    background-color: #0dae7a; 
    border-radius: 999px;
}
.custom-audio-player::-moz-range-track,
.custom-audio-player::-moz-range-progress {
    background-color: #111827;
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.1) 0%,
        rgba(245, 158, 11, 0.1) 100%
    );
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

/* ================= FLOAT POSITIONS ================= */

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    width: 30px;
    height: 30px;
    top: 100%;
    left: 60%;
    animation-delay: 3s;
}

/* ================= ANIMATION ================= */

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #ffffff;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-badge i {
    color: #0DAE7A;
}

.hero-title {
    font-size: clamp(2.4rem, 6.4vw, 2.7rem);
    font-weight: 900;
    line-height: 1.1;
    font-family: Jost;
    color: linear-gradient(135deg, #0b2a94 40%,#0b2a94 80%);
    animation: slideInUp 1s ease-out 0.4s both;
}

.text-gradient {
    background: linear-gradient(135deg, #0eae79 40%, #c2c6ca 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    font-size: clamp(1.7rem, 5vw, 2.3rem);
    font-weight: 900;
    line-height: 1.3;
    display: inline-block;
}


.hero-subtitle {
    font-size: clamp(1.5rem, 6vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 1000px;
    margin: 1rem auto; /* top & bottom spacing */
    animation: slideInUp 1s ease-out 0.6s both;
    font-family: BlinkMacSystemFont;
}


.hero-stats {
    animation: slideInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    background: #DD4E94;
    box-shadow: var(--shadow-md);
    padding: 1rem 0.5rem;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    color: var(--text-secondary);
    line-height: 1.2;
}

.hero-cta {
    animation: slideInUp 1s ease-out 1s both;
}

.btn-hero {
    --btn-glow-soft: rgba(249, 178, 1, 0.45);
    background: #259858;
    border: none;
    color: #ffde89;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
    animation: btnHeroPulse 2.4s ease-in-out infinite;
}

/* remove the stray "Border-Color" (incorrect capital) */
.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 18px var(--btn-glow-soft),
        0 18px 45px rgba(245, 158, 11, 0.5);
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 45%,
        transparent 70%
    );
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}

.btn-hero:hover::before {
    opacity: 1;
    animation: btnHeroShine 1.2s ease-out;
}

.btn-outline-primary {
    border: 2px solid #f9b201;
    color: #fff;
    background: transparent;
    border-radius: 15px;
    transition: all 0.25s ease;
}

.btn-outline-primary:hover {
    background: #f9b201;
    color: #000;
    transform: translateY(-3px);
}

/* Keyframes remain unchanged */
@keyframes btnHeroPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
        transform: translateY(0) scale(1);
    }
    50% {
        box-shadow:
            0 0 20px var(--btn-glow-soft),
            0 14px 38px rgba(245, 158, 11, 0.5);
        transform: translateY(-1px) scale(1.015);
    }
}

@keyframes btnHeroShine {
    from { transform: translateX(-120%); }
    to   { transform: translateX(120%); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.trust-indicators {
    animation: slideInUp 1s ease-out 1.2s both;
}
.hero-image-wrapper {
    margin-top: 680 !important;
}
.hero-image-wrapper {
    margin-top: 3rem;   
}

.product-wrapper {
    margin-top: 1.5rem;
    
}

.product-showcase {
    margin-bottom: 1rem;  
}

.reviews-text {
    margin: 0.5rem 0 0.75rem;  
    text-align: center;
}

.product-showcase.mt-3 {
    margin-top: 0.75rem !important; 
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        margin-top: 2rem;
    }

    .product-wrapper {
        margin-top: 0.5rem;
    }
}

.product-wrapper {
    margin-top: 0px;
}
.product-showcase + .product-showcase {
    margin-top: 10px;
}




@media (max-width: 768px) {
    .product-wrapper {
        margin-top: 10px;
    }
}
/* Wrapper */
.product-showcase {
    position: relative;
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Image */
.product-showcase img {
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Glow effect */
.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.4), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 0;
    opacity: 0.8;
}

/* Keep image above glow */
.product-showcase img {
    position: relative;
    z-index: 1;
}

/* Hover effect */
.product-showcase:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Clickable cursor */
.product-showcase a {
    display: inline-block;
    cursor: pointer;
}

/* Optional: stronger glow on hover */
.product-showcase:hover .product-glow {
    opacity: 1;
    filter: blur(60px);
}

.product-showcase {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}


.product-showcase img {
    max-width: 600px;
    width: 100%;
    height: auto;
}
.product-showcase {
    margin: 0 !important;
    padding: 0 !important;
}

.product-showcase img {
    display: block;
}


.product-glow {
    position: absolute;
    inset: -6%;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.6;
}

.hero-image-wrapper .row {
    margin-top: 0.5rem;
	
}

/* Product Showcase - Mobile Optimized */
.hero-image-wrapper {
    position: relative;
    z-index: 10;
    animation: slideInUp 1s ease-out 0.8s both;
    margin-top:4rem; /* increase space from top */
}

.reviews-text {
    text-align: center;
    font-size: 2.8rem;
    color: yellow;
    margin: 2rem 0 0 0;
    font-weight: 500;
}

.reviews-text strong {
    color: #00ffae;
    font-weight: 700;
    font-size: 3.1rem;
}

.reviews-text strong {
    text-shadow: 0 0 8px rgba(0, 255, 174, 0.8);
}

.reviews-stars {
    color: #ffc107;
    font-size: 4.1rem;
    letter-spacing: 2px;
}

.product-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
:root {
    --cobalt: #0a1128;
    --neon-blue: #00d2ff;
    --gold: #ffb400;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== MAIN INTERFACE ===== */
.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;

    /* 🔥 MULTI-LAYER FUTURISTIC BACKGROUND */
    background:
        radial-gradient(circle at 20% 10%, rgba(0,210,255,0.12), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,180,0,0.08), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(30,58,138,0.4), transparent 60%),
        linear-gradient(160deg, #020617 0%, #0a1128 50%, #020617 100%);

    background-size: 200% 200%;
    animation: bgMove 15s ease infinite;
}

/* 🔥 GRID OVERLAY */
.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;
}

/* 🔥 GLOW ORB */
.aperture-interface::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(0,210,255,0.15), transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

/* BACKGROUND ANIMATION */
@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== BACKGROUND TEXT ===== */
.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;
}

/* ===== CONTAINER ===== */
.interface-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.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 ===== */
.node-cluster {
    display: flex;
    gap: 30px;
    margin-bottom: -40px;
}

.bio-node {
    flex: 1;
    text-align: center;
}

.mask-frame {
    width: 100%;
    aspect-ratio: 4/3;
    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 ===== */
.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;
}

/* NAV */
.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;
}

/* CTA */
.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 ===== */
.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;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {

    .aperture-interface {
        padding: 40px 0;
    }

    .interface-bg-text {
        font-size: 20vw;
    }

    .glitch-title {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }

    .node-cluster {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .mask-frame {
        height: 220px;
        border-radius: 20px;
    }

    .bridge-hub {
        flex-direction: column;
        gap: 15px;
        border-radius: 20px;
        text-align: center;
    }

    .hub-navigation {
        display: none;
    }

    .hub-cta {
        width: 100%;
        justify-content: center;
    }

    .logic-flow {
        grid-template-columns: 1fr;
    }

    .logic-cell {
        border-left: none;
        border-top: 1px solid var(--border-glass);
        padding-top: 15px;
        padding-left: 0;
    }
}
/* WHY CHOOSE SECTION BASE */
.why-choose-section {
  padding: 0 0 2.5rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: Jost, sans-serif;
}

.section-header {
  background: radial-gradient(circle at 12% 0%, #1985be 0%, #1985be 40%, #020617 100%);
  text-align: center;
  position: relative;
  padding: 1.4rem 0;

  border: 1.5px solid #ffde89;
  border-radius: 6px;
}

.section-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
}

.why-choose-section .section-title {
  color: #ffde89;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
  padding: 10px 14px;
}

@media (max-width:771px){
    .why-choose-section .section-title{
        font-size:1.8rem;

    }
};
.product-image {
  display: block;
  margin: 0 auto;
}

.doctor-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.doctor-intro {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.doctor-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .doctor-content {
    text-align: left;
    padding: 0 10px;
  }
}
.why-choose-section {
    padding-top: 0;
    padding-bottom: 2rem;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* PRODUCT IMAGE */
.why-choose-section img {
	 max-width: 650px;
    border-radius: 24px;
    display: block;
    margin: 0 auto 1.5rem;
    transition: all 0.45s ease;
	margin-top: 2.5rem;
}

/* Hover lift + glow */
.why-choose-section img:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(0, 153, 255, 0.35);
}

/* Mobile soft shadow */
@media (max-width: 768px) {
    .why-choose-section img {
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.15),
            0 20px 50px rgba(0, 0, 0, 0.1);
    }
}

/* CHECK LIST */
.why-choose-section .benefits-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 10 auto 2rem;
    padding: 0;
}

.why-choose-section .benefits-list li {
    list-style: none;
    width: 33.33%;
    padding: 0.5rem 0;
    font-size: 30px;
    color: #000;
	font-family: Jost;
}

.why-choose-section .benefits-list li::before {
    content: "✔";
    color: #4bba15;
    font-weight: 700;
    margin-right: 6px;
}

/* TRUST BADGE BOX */
.why-choose-section .trust-box {
    border: 8px solid #4bba15;
    border-radius: 40px;
    padding: 0.75rem 1rem;
    margin-top: 1.5rem;
    text-align: center;
	margin-bottom: 4.5rem;
}

.why-choose-section .trust-item img {
    max-width: 250px;
    margin-bottom: 0.5rem;
	margin-top: 1.5rem;
}

.why-choose-section .trust-item h6 {
	color: #4bba15;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0.25rem;
	
}

.why-choose-section .trust-item p {
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
	font-family: Jost;
}

.why-choose-section .mbr-section-title {
    color: #ffffff;
    background-color: #b3263a;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.why-choose-section .mbr-text {
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .why-choose-section .benefits-list li {
        width: 100%;
        text-align: center;
    }

    .why-choose-section .product-image {
        max-width: 260px;
        margin: 0 auto;
    }
}


/* What is Alpha Boost Pro Section */
.what-is-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* 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);
}

.what-is-image-container {
    position: relative;
    
    overflow: hidden;
    border-radius: 20px;
}

.what-is-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.what-is-image-wrapper:hover .what-is-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.what-is-image-wrapper:hover .image-overlay {
    opacity: 1;
}
/* Content */
.what-is-content {
    padding: 0; /* wider content */
}

.what-is-description {
    font-size: clamp(1.5rem, 2.2vw, 2.25rem);
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-family: Jost;
}

/* Highlights */
.what-is-highlights {
    margin-bottom: 2rem;
    padding: 2rem;
    background:#b7c996;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA */
.what-is-cta {
    text-align: center;
}

.what-is-cta .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.what-is-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


@media (max-width: 768px) {

    /* Section spacing */
    .what-is-section {
        padding: 0;
    }

    /* Header */
    .section-header-red {
        padding: 1rem 0;
    }

    .section-title-red {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    /* Stack spacing */
    .what-is-content {
        padding: 0 0.5rem;
        text-align: center;
    }

    /* Description text */
    .what-is-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    /* Image */
    .what-is-image-wrapper {
        margin-top: 1.5rem;
    }

    .what-is-image {
        border-radius: 16px;
    }

    /* Highlights */
    .what-is-highlights {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }

    .highlight-item {
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }

    .highlight-item i {
        font-size: 1.05rem;
    }

    /* CTA */
    .what-is-cta {
        margin-top: 1.5rem;
    }

    .what-is-cta .btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }
}

.modern-section {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.modern-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.product-image {
    max-width: 320px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #ff4d4d;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.trust-item {
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.cta-wrapper .btn {
    border-radius: 50px;
}

@media (max-width: 768px) {
    .product-image {
        max-width: 240px;
    }
}
/* How Does Alpha Boost Pro Work Section */
.how-it-works-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.how-it-works-section .section-title-red {
    color: white;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.how-it-works-intro {
    margin-bottom: 3rem;
    text-align: -webkit-center;
}

.intro-text {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.how-it-works-content {
    max-width: 1000px;
    margin: 0 auto;
}

.work-mechanism {
    margin-bottom: 3rem;
}

.mechanism-item {
    background: white;
    border-radius: 50px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 3px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mechanism-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.mechanism-item:hover::before {
    left: 100%;
}

.mechanism-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.mechanism-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mechanism-header i {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.mechanism-header h4 {
    font-size: clamp(1.7rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: Jost;
}

.mechanism-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 1.25rem);
    text-align: justify;
}

.summary-section {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(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;
}

.summary-text {
    font-size: clamp(1.3rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
    position: relative;
    z-index: 2;
}

.summary-cta {
    position: relative;
    z-index: 2;
}

.summary-cta .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.summary-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Adjustments for How It Works Section */
@media (max-width: 991.98px) {
    .how-it-works-intro {
        margin-bottom: 2rem;
    }
    
    .mechanism-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mechanism-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .mechanism-header i {
        margin-bottom: 0.5rem;
    }
    
    .summary-card {
        padding: 2rem;
    }
    
    .summary-header {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .intro-text {
        text-align: left;
        padding: 0 1rem;
    }
    
    .mechanism-item {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .mechanism-header h4 {
        font-size: 1.1rem;
    }
    
    .mechanism-description {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-text {
        text-align: left;
    }
    
    .summary-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .mechanism-item {
        padding: 1rem;
    }
    
    .mechanism-header i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .summary-card {
        padding: 1.2rem;
    }
    
    .summary-header i {
        font-size: 1.5rem;
        padding: 0.6rem;
    }
}

/* Customer Reviews Section */

.reviews-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}



.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.review-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.05), transparent);
    transition: left 0.6s ease;
}

.review-item:hover::before {
    left: 100%;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.review-avatar {
    flex-shrink: 0;
    position: relative;
}

.avatar-image {
    width: 120px;
    height: 140px;
    
}

.review-item:hover .avatar-image {
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.review-content {
    flex: 1;
    min-width: 0;
}

.reviewer-info {
    margin-bottom: 1rem;
}

.reviewer-name {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.review-text {
    font-size: clamp(1.45rem, 2.5vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: serif;
}

.review-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -1rem;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: serif;
}

/* Reviews Summary */
.reviews-summary {
    position: relative;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;

    /* 🔥 Layered Background */
    background:
        linear-gradient(135deg, rgba(37,152,88,0.85), rgba(15,23,42,0.85)),
        url("./assets/herpafendne-e.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Glass effect */
    backdrop-filter: blur(12px);

    /* Border + glow */
    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: #ffffff;
    border-color: white;
}

.stat-card .stat-number {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #facd37;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stars-display {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.stars-display i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.reviews-cta {
    position: relative;
    z-index: 2;
}

.reviews-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #facd37;
    margin-bottom: 1rem;
    font-family: 'Poppins', Jost;
}

.reviews-cta p {
    font-size: clamp(1.4rem, 2.5vw, 1.1rem);
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta .btn {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.reviews-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Adjustments for Reviews Section */
@media (max-width: 991.98px) {
    .reviews-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .review-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .reviews-summary {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .review-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .review-avatar {
        align-self: center;
    }
    
    .avatar-image {
        width: 70px;
        height: 70px;
    }
    
    .review-content {
        text-align: center;
    }
    
    .review-text {
        text-align: left;
        border-left: none;
        border-top: 3px solid var(--secondary-color);
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .review-text::before,
    .review-text::after {
        display: none;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .reviews-summary {
        padding: 1.5rem 1rem;
    }
    
    .summary-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
    }
    
    .reviews-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .review-item {
        padding: 1rem;
    }
    
    .avatar-image {
        width: 60px;
        height: 60px;
    }
    
    .review-rating {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .rating-text {
        margin-left: 0;
        margin-top: 0.3rem;
        width: 100%;
        text-align: center;
    }
    
    .reviews-summary {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-card {
        padding: 1rem 0.6rem;
    }
}

:root {
    --brand-primary: #2677c8;
    --brand-primary-soft: #e7f2ff;
    --accent-soft: #fdf5c2;
    --text-main: #222222;
    --text-muted: #666666;
    --border-strong: #0b2747;
    --btn-gradient: linear-gradient(135deg, #ffe047 0%, #f7c600 40%, #ff9f1c 100%);
}

.pricing-section {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at top, #accc94 0%, #ffffff 60%);
    padding: 60px 0 70px;
}

/* constrain only pricing container, avoid overriding global .container */
.pricing-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Banner */
.pricing-header {
    background: linear-gradient(135deg, #cacaca 0%, #1459a0 60%, #0b3f76 100%);
    color: #ffffff;
    text-align: center;
    padding: 28px 18px 46px;
    position: relative;
    margin: 0 auto 60px;
    border: 2px solid var(--border-strong);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(10, 50, 115, 0.22);
}

.pricing-header h2 {
    font-size: 2.1rem;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}

.pricing-header p {
    margin: 0;
    font-size: 0.98rem;
    opacity: 0.92;
}

.header-arrow {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
    border-top: 22px solid #1459a0;
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
}

.price-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #dde4f0;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 8px 24px rgba(10, 24, 55, 0.06);
    position: relative;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(8, 32, 85, 0.16);
    border-color: var(--brand-primary);
}

/* Featured / Middle Card */
.price-card.featured {
    border: 2px solid var(--brand-primary);
    background: radial-gradient(circle at top, var(--accent-soft) 0%, #ffffff 55%);
    transform: scale(1.04);
    z-index: 2;
}

.card-top-banner {
    background: linear-gradient(135deg, #0b3f76, #2677c8);
    color: #ffffff;
    padding: 10px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-content {
    padding: 20px 18px 22px;
}

/* Labels / copy */
.most-popular {
    color: #444444;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.star {
    color: #f7c600;
    margin: 0 1px;
}

.bottle-count {
    font-size: 1.5rem;
    margin: 4px 0 0;
    color: var(--text-main);
}

.day-supply {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Product image */
.product-image {
    margin: 18px 0 16px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(9, 34, 70, 0.25));
    display: inline-block;
}

    @media (max-width: 576px) {
    .product-image {
        margin: 14px 0 12px 46px; /* top right bottom left */
    }

    .product-image img {
        max-width: 85%;
    }
}

/* Pricing Display */
.price-box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: var(--brand-primary);
    margin: 6px 0 14px;
}

.currency {
    font-size: 1.7rem;
    font-weight: 800;
    align-self: flex-start;
    margin: 0 4px 10px 0;
}

.amount {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1;
}

.per-unit {
    font-size: 0.78rem;
    text-align: left;
    margin-left: 6px;
    line-height: 1.2;
    color: var(--text-main);
}

/* Savings & Guarantee Tags */
.savings-tag,
.guarantee-tag {
    background: #0f5c3d;
    border: 1px solid #021719;
    padding: 7px 8px;
    border-radius: 999px;
    margin-bottom: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.savings-tag.highlight {
    background: #fff7cc;
    color: #0f5c3d;
    border-color: #e0c85e;
}

/* Buy Button */
.buy-button {
    display: block;
    background: var(--btn-gradient);
    color: #000000;
    text-decoration: none;
    padding: 14px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.08rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 0 #d18b00, 0 16px 30px rgba(156, 93, 0, 0.45);
    margin: 18px 0 14px;
    position: relative;
    overflow: hidden;
}

.buy-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.65), transparent);
    transform: skewX(-25deg);
    opacity: 0;
    transition: all 0.5s ease;
}

.buy-button:hover {
    background-position: right center;
    transform: translateY(1px);
    box-shadow: 0 3px 0 #b87800, 0 10px 24px rgba(156, 93, 0, 0.55);
}

.buy-button:hover::after {
    left: 120%;
    opacity: 1;
}

.total-price {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 800;
}

.old-price {
    text-decoration: line-through;
    color: #000000;
    margin-right: 5px;
    opacity: 0.7;
}

/* Misc text */
.payment-icons {
    max-width: 190px;
    margin: 12px auto 10px;
    display: block;
}

.shipping-info {
    font-size: 0.98rem;
    color: var(--text-muted);
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
    color: var(--brand-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-header h2 {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .price-card {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .pricing-header {
        padding: 22px 12px 40px;
        margin-bottom: 45px;
    }

    .pricing-header h2 {
        font-size: 1.6rem;
    }

    .price-box {
        margin-bottom: 10px;
    }

    .amount {
        font-size: 2.6rem;
    }
}

/* VISIFLORA MICRO-HUD STICKY BAR */
.sticky-buy-bar {
    position: fixed;
    bottom: 15px; /* Tighter to the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 88%; /* Slightly narrower for a sleeker look */
    max-width: 340px; /* Reduced max-width */
    
    /* Ultra-Thin Frosted Glass */
    background: rgba(6, 12, 32, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* Electric Cyan Glow */
    border: 1px solid rgba(0, 210, 255, 0.4);
    border-radius: 50px; 
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px 6px 20px; /* Significantly reduced vertical padding */
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    
    animation: microSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sticky-buy-bar span {
    color: #ffffff;
    font-size: 0.75rem; /* Smaller font for a "Data-Stream" look */
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Status Indicator Dot */
.sticky-buy-bar span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00d2ff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px #00d2ff;
    animation: statusBlink 2s ease-in-out infinite;
}

.sticky-buy-btn {
    background: #ffb400; /* Solid Gold for high-contrast impact */
    color: #050a18;
    text-decoration: none;
    padding: 8px 18px; /* Compact button padding */
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
}

.sticky-buy-btn:active {
    transform: scale(0.92) translateY(1px);
}

/* COMPACT ANIMATIONS */
@keyframes microSlideUp {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; filter: brightness(1.2); }
    50% { opacity: 0.4; filter: brightness(0.8); }
}

/* Responsive Lock */
@media (min-width: 993px) {
    .sticky-buy-bar { display: none; }
}
/* VisiFlora Bonus Section Styling */
.bonuses-section {
    background-color: #ffffff; /* Deep Navy Blue */
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.bonuses-header {
    text-align: center;
    color: #000;
    margin-bottom: 50px;
    border: 2px solid #239f47; /* green border */
    padding: 20px;
    border-radius: 12px; /* rounded corners */
}

.bonuses-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.bonuses-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 10px 0;
}

.bonuses-intro {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

.text-green {
    color: #4ade80; /* Vibrant Green */
}

/* Grid Logic */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card */
.bonus-card {
    background: #1f4e76;
    border-radius: 40px; /* Highly rounded as per image */
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.card-image-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.bonus-img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

/* Green Price Badge */
.price-badge {
    position: absolute;
    top: -40px;
    right: 0;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(74, 222, 128, 0.4);
}

.bonus-label {
    color: #239f47;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.bonus-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.digital-tag {
    color: #9ca3af;
    font-size: 0.85rem;
    font-style: italic;
    display: block;
    margin-top: auto;
}

@media (max-width: 768px) {
    .bonuses-subtitle { font-size: 1.6rem; }
    .bonuses-grid { grid-template-columns: 1fr; padding: 0 15px; }
}

/* ============================
   Evidence & Ingredients Block
   ============================ */
.ingredients-section3 {
  background: radial-gradient(circle at top left, #ecfdf5 0%, #ffffff 55%, #e0f2fe 100%);
  padding: 70px 20px;
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #020617;
  position: relative;
  overflow: hidden;
}

.ingredients-section3::before,
.ingredients-section3::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
}

.ingredients-section3::before {
  background: #a5f3fc;
  top: -60px;
  left: -80px;
}

.ingredients-section3::after {
  background: #bbf7d0;
  bottom: -80px;
  right: -60px;
}

.ingredients-title {
  text-align: center;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 32px;
  color: #022c22;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ingredients-title span {
  display: block;
  font-size: 0.8em;
  font-weight: 500;
  color: #059669;
  text-transform: none;
  letter-spacing: 0;
}

/* Local container (avoid clash with Bootstrap .container) */
.ingredients-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* Glass cards */
.intro-card,
.conclusion-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 24px 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  position: relative;
}

.intro-card::before,
.conclusion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(59, 130, 246, 0.12);
  pointer-events: none;
}

.intro-heading,
.conclusion-title {
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  margin-bottom: 8px;
  color: #059669;
  font-weight: 700;
}

.intro-text,
.conclusion-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #0f172a;
}

/* Evidence grid */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 32px;
}

.evidence-item {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.evidence-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.evidence-item:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  border-color: rgba(34, 197, 94, 0.7);
}

.evidence-item:hover::before {
  opacity: 1;
}

.ingredient-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.ingredient-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: #0f172a;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1rem;
}

.ingredient-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.evidence-label,
.mechanism-label {
  font-size: 0.95rem;
  color: #16a34a;
  margin: 10px 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.evidence-text,
.mechanism-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #020617;
}

.evidence-conclusion {
  margin-top: 36px;
}

/* ============================
   Scientifically Formulated
   ============================ */
.formulation-section {
  padding: 4.5rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.formulation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.formulation-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #020617;
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  position: relative;
  letter-spacing: 0.02em;
}

.formulation-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
  border-radius: 999px;
}

/* Process steps */
.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  min-width: 230px;
  max-width: 280px;
  text-align: center;
  padding: 1.4rem 1.2rem 1.6rem;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  border-color: rgba(34, 197, 94, 0.8);
}

.step-circle {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at 30% 20%, #facc15, #f97316);
  color: #020617;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.2rem;
  font-family: 'Poppins', system-ui, sans-serif;
  box-shadow: 0 12px 28px rgba(248, 113, 113, 0.35);
  transition: transform 0.3s ease, background 0.3s ease;
}

.step-item:hover .step-circle {
  transform: scale(1.08);
  background: radial-gradient(circle at 30% 20%, #22c55e, #0ea5e9);
}

.step-title {
  font-size: clamp(1.05rem, 2.7vw, 1.2rem);
  font-weight: 700;
  color: #020617;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', system-ui, sans-serif;
}

.step-description {
  color: #475569;
  line-height: 1.7;
  font-size: 0.96rem;
  text-align: justify;
  margin: 0;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 1.6rem;
  margin-top: 2.8rem;
  flex-shrink: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .intro-card,
  .conclusion-card {
    padding: 18px 16px;
  }

  .evidence-grid {
    gap: 22px;
  }

  .step-item {
    max-width: 100%;
  }
}

.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: 800px;
    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 {
    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; }



@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #259858;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
#scrollToTop:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

/* Tablet */
@media (max-width: 768px) {
    #scrollToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    #scrollToTop {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}