/* Meta Melt V2 - Modern USA Browser Optimized CSS */

/* ===== CSS RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F8BBD0;
    --secondary: #FF4081;
    --accent: #FFD740;
    
    /* Neutrals */
    --dark: #1A1A1A;
    --gray-900: #2D2D2D;
    --gray-700: #4A4A4A;
    --gray-500: #6B6B6B;
    --gray-300: #D1D1D1;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    
    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E91E63 0%, #FF4081 100%);
    --gradient-soft: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 100%);
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Image Optimization for Mobile */
.hero-image img,
.how-works-visual img,
.ingredients-visual img,
.transformation-images img,
.pricing-header img,
.final-cta-image img,
.success-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-family: 'Playfair Display', serif;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Playfair Display', serif;
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
}

p {
    margin-bottom: 16px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.5);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-pricing:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-floating {
    padding: 14px 28px;
    font-size: 15px;
    box-shadow: var(--shadow-xl);
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.btn-header {
    font-size: 15px;
    padding: 12px 24px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: var(--gradient-soft);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    padding: 12px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-900);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
}

.badge-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.badge-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-soft);
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-emoji {
    font-size: 24px;
    line-height: 1;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.2;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(233, 30, 99, 0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: fadeFloat 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 0;
}

.card-2 {
    bottom: 15%;
    right: 0;
}

@keyframes fadeFloat {
    0%, 100% { transform: translateY(0px); opacity: 1; }
    50% { transform: translateY(-10px); opacity: 0.9; }
}

.card-icon {
    font-size: 32px;
}

.floating-card strong {
    display: block;
    font-size: 20px;
    color: var(--primary);
}

.floating-card p {
    font-size: 12px;
    color: var(--gray-700);
    margin: 0;
}

/* ===== FEATURED SECTION ===== */
.featured {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
}

.featured-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    margin: 0;
}

/* ===== DIFFERENT SECTION ===== */
.different {
    background: var(--gray-100);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.diff-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.diff-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.diff-card h3 {
    margin-bottom: 16px;
    color: var(--dark);
}

.diff-card p {
    color: var(--gray-700);
    line-height: 1.8;
    margin: 0;
}

/* ===== RESULTS SECTION ===== */
.results {
    background: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.result-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.result-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.result-content {
    padding: 32px;
}

.rating {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 16px;
}

.result-text {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.result-author {
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.transformation-images {
    text-align: center;
    margin-bottom: 60px;
}

.transform-img {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Mobile Optimization for Transformation Images */
@media (max-width: 968px) {
    .transform-img {
        max-width: 100%;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 640px) {
    .transformation-images {
        margin-bottom: 40px;
    }
    
    .transform-img {
        border-radius: var(--radius-sm);
    }
}

.cta-box {
    text-align: center;
    padding: 40px;
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
}

.cta-box p {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

/* ===== HOW IT WORKS ===== */
.how-works {
    background: var(--gradient-soft);
}

.how-works-visual {
    text-align: center;
    margin-bottom: 60px;
}

.how-works-visual img {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Mobile Optimization for How It Works */
@media (max-width: 968px) {
    .how-works-visual img {
        max-width: 100%;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 640px) {
    .how-works-visual {
        margin-bottom: 40px;
    }
    
    .how-works-visual img {
        border-radius: var(--radius-sm);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.step-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    margin-bottom: 12px;
}

.step-item p {
    color: var(--gray-700);
    margin: 0;
}

.science-note {
    background: var(--white);
    padding: 24px 32px;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.science-note strong {
    color: var(--primary);
}

/* ===== INGREDIENTS ===== */
.ingredients {
    background: var(--white);
}

.ingredients-visual {
    text-align: center;
    margin-bottom: 60px;
}

.ingredients-visual img {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Mobile Optimization for Ingredients */
@media (max-width: 968px) {
    .ingredients-visual img {
        max-width: 100%;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 640px) {
    .ingredients-visual {
        margin-bottom: 40px;
    }
    
    .ingredients-visual img {
        border-radius: var(--radius-sm);
    }
}

.ingredients-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ingredient-card {
    background: var(--gray-100);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.ingredient-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.ingredient-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ingredient-icon {
    font-size: 32px;
}

.ingredient-card h3 {
    margin: 0;
    color: var(--primary);
}

.ingredient-card p {
    color: var(--gray-700);
    line-height: 1.8;
    margin: 0;
}

/* ===== BENEFITS ===== */
.benefits {
    background: var(--gradient-soft);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured .pricing-header,
.pricing-card.featured .pricing-body {
    background: transparent;
    color: var(--white);
}

.pricing-card.featured .price-tag,
.pricing-card.featured .pricing-features li,
.pricing-card.featured .savings {
    color: var(--white);
}

.pricing-card.best-value {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary);
}

.badge-best {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

.pricing-header {
    padding: 40px 32px 24px;
    text-align: center;
    background: var(--white);
}

.pricing-header img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 24px;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.supply {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

.pricing-body {
    padding: 32px;
    background: var(--white);
}

.price-tag {
    text-align: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    vertical-align: super;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.period {
    font-size: 18px;
    color: var(--gray-700);
}

.savings {
    text-align: center;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

.pricing-footer {
    text-align: center;
}

.success-img {
    max-width: 300px;
    margin: 0 auto 32px;
}

.guarantee-note {
    background: var(--gradient-soft);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    font-size: 16px;
}

.guarantee-note strong {
    color: var(--primary);
}

/* ===== GUARANTEE ===== */
.guarantee {
    background: var(--gradient-soft);
}

.guarantee-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.guarantee-badge {
    text-align: center;
}

.badge-circle {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.4);
}

.badge-text {
    color: var(--white);
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.guarantee-text h2 {
    margin-bottom: 24px;
}

.guarantee-text p {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.8;
}

.guarantee-highlight {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 24px;
}

/* ===== FAQ ===== */
.faq {
    background: var(--white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(233, 30, 99, 0.05);
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--gray-700);
    line-height: 1.8;
}

.faq-answer p:last-child {
    padding-bottom: 32px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-content > p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.final-cta-image {
    margin-bottom: 40px;
}

.final-cta-image img {
    max-width: 400px;
    margin: 0 auto;
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.final-cta .btn-primary:hover {
    transform: scale(1.05);
}

.final-trust {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.final-trust p {
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 60px 0 24px;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-disclaimer h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-badge {
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

.footer-note {
    margin-top: 12px;
    opacity: 0.7;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    animation: bounce 2s ease-in-out infinite;
}

.btn-floating {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Hero Section - Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
        max-width: 100%;
    }
    
    .product-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .floating-card {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .card-icon {
        font-size: 24px;
    }
    
    .floating-card strong {
        font-size: 16px;
    }
    
    .floating-card p {
        font-size: 11px;
    }
    
    /* Trust Badges - Mobile Stack */
    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .badge-item {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
        gap: 14px;
    }
    
    .badge-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .badge-emoji {
        font-size: 22px;
    }
    
    .badge-title {
        font-size: 14px;
    }
    
    .badge-subtitle {
        font-size: 11px;
    }
    
    /* Stats - Mobile */
    .stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Grids - Mobile Single Column */
    .difference-grid,
    .steps-grid,
    .ingredients-list {
        grid-template-columns: 1fr;
    }
    
    /* Results Grid - Mobile */
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card img {
        height: 220px;
        object-fit: cover;
    }
    
    /* Transformation Image - Mobile */
    .transform-img {
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-md);
    }
    
    /* How It Works Visual - Mobile */
    .how-works-visual img {
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-md);
    }
    
    /* Ingredients Visual - Mobile */
    .ingredients-visual img {
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-md);
    }
    
    /* Benefits Grid - Mobile 2 Columns */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-icon {
        font-size: 36px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 13px;
    }
    
    /* Pricing Grid - Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        transform: none !important;
    }
    
    .pricing-card.best-value {
        transform: none !important;
        border: 3px solid var(--primary);
    }
    
    .pricing-header img {
        max-width: 180px;
        margin: 0 auto;
    }
    
    .badge-best {
        font-size: 11px;
        padding: 6px 35px;
    }
    
    /* Success Image - Mobile */
    .success-img {
        max-width: 200px;
    }
    
    /* Guarantee - Mobile */
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .badge-circle {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .badge-text {
        font-size: 32px;
    }
    
    /* Final CTA Image - Mobile */
    .final-cta-image img {
        max-width: 280px;
    }
    
    /* Footer - Mobile */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Header - Mobile */
    .btn-header {
        display: none;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Buttons - Mobile */
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    /* Hero CTA - Mobile */
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Section Padding - Mobile */
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Typography - Mobile */
    h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Floating CTA - Mobile */
    .floating-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    
    .btn-floating {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
    }
}

@media (max-width: 640px) {
    /* Extra Small Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-benefits li {
        font-size: 15px;
    }
    
    .product-image {
        max-width: 250px;
    }
    
    .floating-card {
        display: none; /* Hide on very small screens */
    }
    
    .result-card img {
        height: 180px;
    }
    
    .pricing-header img {
        max-width: 150px;
    }
    
    .final-cta-image img {
        max-width: 220px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
}

/* ===== BROWSER-SPECIFIC OPTIMIZATIONS ===== */

/* Safari */
@supports (-webkit-appearance: none) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

/* Firefox */
@-moz-document url-prefix() {
    body {
        scrollbar-width: thin;
        scrollbar-color: var(--primary) var(--gray-300);
    }
}

/* Chrome & Edge */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}