/* ==========================================
   ALPHA FUEL PRO - MODERN DESIGN SYSTEM
   ========================================== */

/* Typography & Variables */
:root {
    --primary-color: #0b132b;
    --primary-light: #1c2541;
    --accent-gold: #ffb703;
    --accent-orange: #fb8500;
    --text-white: #ffffff;
    --text-gray: #e5e7eb;
    --text-dark: #1f2937;
    --danger-red: #d90429;
    --success-green: #38b000;
    --bg-dark: #0a0e1a;
    --bg-card: #151c30;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-accent: 'Bebas Neue', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.35);
    --border-radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-orange);
}

.text-center { text-align: center; }
.text-red { color: #ff3333 !important; }
.text-green { color: var(--success-green) !important; }
.font-accent { font-family: var(--font-accent); }
.rounded-img { border-radius: var(--border-radius); }
.full-width-img { width: 100%; height: auto; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(251, 133, 0, 0.3);
    transition: var(--transition-smooth);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 133, 0, 0.5);
    color: var(--primary-color);
}

.btn-nav {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-pulse {
    font-size: 1.1rem;
    padding: 15px 40px;
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 133, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(251, 133, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 133, 0, 0);
    }
}

/* 1. TOP NOTICE BANNER */
.notice-banner {
    background-color: var(--danger-red);
    color: var(--text-white);
    padding: 10px 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(217, 4, 41, 0.3);
}

.pulse-icon {
    display: inline-block;
    animation: pulse 1s infinite alternate;
    margin-right: 5px;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

/* 2. NAVIGATION HEADER */
.main-header {
    background-color: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* 3. HERO SECTION */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at 70% 30%, var(--primary-light) 0%, var(--bg-dark) 70%);
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text-side {
    flex: 1.2;
}

.hero-image-side {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-gold {
    color: var(--accent-gold);
    background: linear-gradient(120deg, rgba(255, 183, 3, 0.1) 0%, rgba(251, 133, 0, 0.2) 100%);
    padding: 2px 10px;
    border-radius: 4px;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-gray);
}

.hero-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    margin-bottom: 30px;
}

.hero-bullets {
    list-style: none;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.bullet-check {
    color: var(--success-green);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.3rem;
    line-height: 1;
}

.hero-product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    transition: var(--transition-smooth);
}

.hero-product-img:hover {
    transform: scale(1.03);
}

.certificates {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cert-img {
    height: 65px;
    object-fit: contain;
}

/* 4. STATS SECTION */
.stats-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

.subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #9ca3af;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 35px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 183, 3, 0.3);
    box-shadow: var(--shadow-premium);
}

.stat-icon {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid var(--accent-gold);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* 5. WARNING STRIP */
.warning-strip {
    background-color: #3b0007;
    border-top: 2px solid var(--danger-red);
    border-bottom: 2px solid var(--danger-red);
    padding: 25px 0;
}

.warning-title {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 6. SPLIT SECTION */
.fantasizing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-color) 100%);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-img-side {
    flex: 1;
}

.split-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
}

.split-text-side {
    flex: 1;
}

.split-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-para {
    font-size: 1.15rem;
    color: var(--text-gray);
}

/* 7. SIGNS/QUIZ SECTION */
.signs-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.sign-card {
    background-color: #170d10;
    border-left: 4px solid var(--danger-red);
    padding: 25px 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.sign-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.sign-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
}

.danger-box {
    background-color: #270208;
    border: 1px dashed var(--danger-red);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
}

.danger-text {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.signs-conclusion-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.conclusion-image {
    flex: 1;
}

.conclusion-text {
    flex: 1.5;
}

.intro-large {
    font-size: 1.25rem;
    color: var(--text-white);
    line-height: 1.7;
}

/* 8. HOW TO FIX SECTION */
.fixing-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.fixing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.fix-card {
    background-color: var(--primary-light);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--accent-gold);
}

.fix-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    border-radius: 50%;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.fix-card h3 {
    margin-top: 15px;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
}

.fixing-urgency {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-weight: 700;
    margin-top: 40px;
}

/* 9. INNOVATIVE TECH SECTION */
.innovative-tech-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.tech-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.tech-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.tech-img:hover {
    transform: scale(1.05);
}

.max-width-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* 10. TESTIMONIALS (FB COMMENTS) */
.reviews-section {
    padding: 80px 0;
    background-color: #0f1422;
}

.fb-comments {
    max-width: 750px;
    margin: 40px auto 20px;
    text-align: left;
    background-color: #121829;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.fb-comment {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.fb-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fb-content {
    flex: 1;
}

.fb-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3px;
}

.fb-body {
    color: #d1d5db;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.fb-actions {
    font-size: 0.8rem;
    color: #6b7280;
}

.fb-time {
    color: #9ca3af;
}

.fb-login-notice {
    margin-top: 25px;
    font-size: 0.95rem;
}

/* 11. INGREDIENTS SECTION */
.ingredients-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.ing-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.ing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 183, 3, 0.2);
}

.ing-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.ing-card:hover .ing-img {
    transform: scale(1.03);
}

.ing-card h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.ingredients-footer-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 40px auto;
    font-weight: 500;
}

/* 12. COMPARISON SECTION */
.comparison-section {
    padding: 80px 0;
    background-color: #0c101d;
}

.comparison-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.comp-col {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    flex: 1;
    max-width: 480px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    min-height: 520px;
}

.comp-alphafuel {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 183, 3, 0.1);
}

.comp-product-img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
}

.comp-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.comp-list {
    list-style: none;
    text-align: left;
}

.comp-list li {
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.comp-check {
    color: var(--success-green);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1;
}

.comp-cross {
    color: var(--danger-red);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1;
}

.comp-vs-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 10;
}

/* 13. USER STORIES SECTION */
.guaranteed-results-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.user-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.user-review-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.user-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.08);
}

.reviewer-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-light);
}

.user-review-card h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.user-review-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-style: italic;
}

/* 14. BONUSES SECTION */
.bonuses-section {
    padding: 80px 0;
    background-color: #0d1222;
}

.highlight-underline {
    position: relative;
    z-index: 1;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 183, 3, 0.3);
    z-index: -1;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.bonus-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    text-align: left;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-gold);
}

.bonus-info {
    flex: 1.3;
}

.bonus-image-wrapper {
    flex: 0.7;
    display: flex;
    justify-content: center;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.bonus-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.bonus-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
}

/* 15. SIZE INCREASE PROCESS */
.size-increase-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-para {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    min-height: 60px;
}

.process-img {
    width: 100%;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 25px;
}

.process-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

/* 16. FREE SHIPPING STRIP */
.shipping-section {
    background-color: #0b1f13;
    border-top: 2px solid var(--success-green);
    border-bottom: 2px solid var(--success-green);
    padding: 30px 0;
}

.shipping-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.shipping-seal-img {
    height: 75px;
    object-fit: contain;
}

.shipping-text h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--text-white);
}

.shipping-sub {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 500;
}

/* 17. PRICING OFFERS */
.offers-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, var(--primary-light) 0%, var(--bg-dark) 80%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.price-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px 30px 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.price-card:hover {
    transform: translateY(-8px);
}

.pkg-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pkg-bottles {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.pkg-supply {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 25px;
}

.pkg-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.pkg-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.pkg-price {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
}

.price-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.price-unit {
    font-size: 1.1rem;
    font-weight: 600;
    color: #9ca3af;
    margin-left: 5px;
}

.btn-buy {
    width: 100%;
    font-size: 1.2rem;
    padding: 14px 20px;
    margin-bottom: 25px;
}

.pkg-pricing-details {
    width: 100%;
    margin-top: auto;
}

.pkg-pricing-details hr {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.pkg-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Featured Best Value Card Styles */
.featured-card {
    border: 2px solid var(--accent-gold);
    background-color: #17213d;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 183, 3, 0.25);
    z-index: 10;
}

.featured-card:hover {
    transform: translateY(-8px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 6px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(251, 133, 0, 0.4);
    text-transform: uppercase;
}

.btn-featured {
    background: linear-gradient(135deg, #e0a904 0%, #d46f00 100%);
}

.pkg-shipping-badge {
    height: 35px;
    margin-bottom: 15px;
}

.pkg-shipping-badge img {
    height: 100%;
}

.pkg-savings {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.pkg-savings-normal {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.pkg-guarantee {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pkg-bonuses-include {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 20px;
}

.original-price {
    font-size: 0.95rem;
    color: #ef4444;
    margin-bottom: 5px;
}

.discount-text {
    color: var(--success-green) !important;
}

/* 18. TRUST BANNER */
.trust-banner {
    background-color: var(--primary-color);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.trust-seal-img {
    height: 70px;
    object-fit: contain;
}

.trust-stars-img {
    height: 30px;
    margin: 5px 0;
}

.trust-text h2 {
    font-size: 1.6rem;
    line-height: 1.2;
}

.trust-text p {
    font-size: 1rem;
}

/* 19. GUARANTEE SECTION */
.guarantee-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.guarantee-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
}

.guarantee-badge-side {
    flex: 0.6;
    display: flex;
    justify-content: center;
}

.guarantee-badge-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.guarantee-text-side {
    flex: 1.4;
}

.guarantee-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.guarantee-text-side p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #d1d5db;
}

/* 20. FOOTER */
.main-footer {
    background-color: #05070d;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1000px;
}

.footer-links {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 40px;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 40px 0 30px;
}

.copyright {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #9ca3af;
    text-align: center;
}

/* Mobile Pricing Stack */
.mobile-pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.mob-price-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
    box-shadow: var(--shadow-premium);
}

.mob-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 10px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.mob-badge-normal {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mob-card-content {
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mob-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.mob-pkg-img {
    max-height: 180px;
    margin: 20px 0;
    object-fit: contain;
}

.mob-pricing-box {
    margin-bottom: 20px;
}

.mob-shipping-img {
    height: 30px;
    margin-bottom: 15px;
}

.mob-details {
    margin-bottom: 25px;
}

.mob-save {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.mob-save-normal {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.mob-guarantee {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.mob-bonuses {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--success-green);
}

.mob-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 20px 0;
    width: 100%;
}

.featured-mob {
    border: 2px solid var(--accent-gold);
}


/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Device visibility helpers */
.desktop-only { display: block; }
.mobile-only { display: none; }
.desktop-only-section { display: block; }
.mobile-only-section { display: none; }

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .featured-card {
        transform: scale(1.02);
    }
    
    .featured-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

@media (max-width: 768px) {
    /* Layout Helpers */
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    .desktop-only-section { display: none !important; }
    .mobile-only-section { display: block !important; }
    
    /* Navigation */
    .nav-links { display: none; }
    
    /* Hero */
    .hero-container {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-bullets li {
        justify-content: center;
        font-size: 1rem;
    }
    
    /* Split sections */
    .split-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    /* Signs */
    .signs-grid {
        grid-template-columns: 1fr;
    }
    
    .signs-conclusion-split {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-para {
        min-height: auto;
    }
    
    /* Fixing */
    .fixing-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Ingredients */
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Comparison */
    .comparison-grid {
        flex-direction: column;
    }
    
    .comp-col {
        min-height: auto;
    }
    
    /* User reviews */
    .user-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Bonuses */
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .bonus-card::before {
        width: 100%;
        height: 4px;
    }
    
    /* Guarantee */
    .guarantee-container {
        flex-direction: column;
        text-align: center;
    }
    
    /* Shipping strip */
    .shipping-container {
        flex-direction: column;
        text-align: center;
    }
    
    /* Trust strip */
    .trust-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .fb-comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tech-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notice-banner {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
}

/* ==========================================
   DYNAMIC PURCHASE NOTIFICATION POPUP
   ========================================== */
#dscript-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-light);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    max-width: 360px;
    align-items: center;
    box-shadow: var(--shadow-premium);
    z-index: 9999;
    font-family: var(--font-heading);
    gap: 15px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

#dscript-notification.slide-in {
    opacity: 1;
    transform: translateY(0);
}

#dscript-notification.slide-out {
    opacity: 0;
    transform: translateY(-20px);
}

.notification-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.notification-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.notification-buyer {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}

.notification-product {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 4px;
}

.notification-time {
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verification-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.verification-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--success-green);
}

.verification-text {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Sticky Header Scroll state */
.header-scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
    background-color: rgba(11, 19, 43, 0.98);
}

/* ==========================================
   PHONE REQUEST MODAL OVERLAY STYLES
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-card);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-premium);
    width: 90%;
    max-width: 460px;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--danger-red);
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.phone-call-icon {
    font-size: 3rem;
    animation: phoneShake 2s infinite ease-in-out;
    display: inline-block;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    50% { transform: rotate(0); }
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 0;
}

.modal-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.input-group {
    margin-bottom: 20px;
    width: 100%;
}

.input-group input[type="tel"] {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 50px;
    font-size: 1.05rem;
    text-align: center;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.input-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.2);
}

.btn-modal-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 5px;
    animation: btnPulse 2s infinite;
}

/* Floating Vertical Phone Request Button styling */
.floating-phone-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: rotate(-90deg) translate(50%, 0);
    transform-origin: right bottom;
    z-index: 999;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 -4px 15px rgba(251, 133, 0, 0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    animation: floatingPulse 2.5s infinite;
}

.floating-phone-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    box-shadow: 0 -4px 20px rgba(251, 133, 0, 0.6);
}

@keyframes floatingPulse {
    0% {
        box-shadow: 0 -4px 15px rgba(251, 133, 0, 0.4);
        transform: rotate(-90deg) translate(50%, 0) scale(1);
    }
    50% {
        box-shadow: 0 -4px 25px rgba(251, 133, 0, 0.8), 0 0 10px rgba(255, 183, 3, 0.5);
        transform: rotate(-90deg) translate(50%, 0) scale(1.05);
    }
    100% {
        box-shadow: 0 -4px 15px rgba(251, 133, 0, 0.4);
        transform: rotate(-90deg) translate(50%, 0) scale(1);
    }
}


