/* Modern Ecommerce Landing Page - Avere Nebulizer */
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --nebulizer-blue: #2DD4BF; /* Turquoise/Cyan color from nebulizer box */
    --nebulizer-dark: #14B8A6;
    --shadow: 0 10px 40px rgba(45, 212, 191, 0.1);
    --shadow-lg: 0 20px 60px rgba(45, 212, 191, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.floating-text {
    font-size: 15px;
}

/* Announcement Bar - Nebulizer Box Color */
.announcement-bar {
    background: linear-gradient(135deg, var(--nebulizer-blue), var(--nebulizer-dark));
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 999;
}

.announcement-slider {
    animation: slide 15s linear infinite;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 998;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    color: white;
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--nebulizer-blue), var(--nebulizer-dark));
    border-radius: 12px;
    z-index: -1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 800;
    display: block;
    letter-spacing: 1px;
    color: var(--dark);
}

.logo-subtitle {
    font-size: 11px;
    color: var(--gray);
    display: block;
    margin-top: -4px;
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-link:hover {
    color: var(--nebulizer-blue);
}

.nav-cta {
    background: linear-gradient(135deg, var(--nebulizer-blue), var(--nebulizer-dark));
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.3);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #a7f3d0 100%);
    opacity: 0.6;
    z-index: -1;
}

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

/* Product Gallery */
.product-gallery {
    position: sticky;
 
}

.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.badge-discount {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.product-image-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.image-glow {
    position: absolute;
    inset: 20px;
    background: radial-gradient(circle, rgba(45,212,191,0.1), transparent);
    border-radius: 24px;
    filter: blur(40px);
}

.main-product-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

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

.thumbnail {
    width: 100%;
    border: 3px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--nebulizer-blue);
    transform: scale(1.05);
}

.trust-bar {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 16px;
    border-radius: 16px;
    margin-top: 20px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    gap: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.trust-icon {
    font-size: 18px;
}

/* Order Section */
.order-section {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.product-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.product-subtitle {
    color: var(--gray);
    margin-bottom: 16px;
}

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

.stars {
    color: #fbbf24;
    font-size: 20px;
}

.rating-text {
    font-weight: 600;
}

.muted {
    color: var(--gray);
    font-weight: 400;
}

.price-box {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.price-now {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
}

.price-old-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-old {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--gray);
}

.save-badge {
    background: var(--danger);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.urgency-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--danger);
    font-weight: 600;
    font-size: 14px;
}

.benefits-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.form-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--nebulizer-blue), transparent);
    margin: 24px 0;
}

.form-title {
    font-size: 20px;
    margin-bottom: 24px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--nebulizer-blue);
    box-shadow: 0 0 0 4px rgba(45,212,191,0.1);
}

.input-icon {
    position: relative;
}

.input-icon .icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.input-icon input {
    padding-left: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.trust-badge {
    background: #f8fafc;
    padding: 16px 8px;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.tb-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary), #059669);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.btn-icon {
    font-size: 24px;
}

.btn-text {
    font-size: 18px;
}

.btn-subtext {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.success-box {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.success-box h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.success-box p {
    color: var(--gray);
    line-height: 1.8;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: white;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--nebulizer-blue), var(--nebulizer-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* Features */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, white, var(--light));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--nebulizer-blue), var(--nebulizer-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray);
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--nebulizer-blue);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    color: var(--nebulizer-blue);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

/* How to Use Section */
.how-to-use {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 50px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--nebulizer-blue);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--nebulizer-blue), var(--nebulizer-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.3);
}

.step h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: white;
}

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

.review-card {
    background: var(--light);
    padding: 28px;
    border-radius: 20px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--nebulizer-blue), var(--nebulizer-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.review-header h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.reviewer-location {
    font-size: 13px;
    color: var(--gray);
}

.review-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-left: auto;
}

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

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.verified {
    color: var(--secondary);
    font-weight: 600;
}

.review-date {
    color: var(--gray);
}

.reviews-cta {
    text-align: center;
}

.reviews-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray);
}

.cta-secondary {
    display: inline-block;
    background: white;
    color: var(--nebulizer-blue);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--nebulizer-blue);
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--nebulizer-blue);
    color: white;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--nebulizer-blue) 0%, var(--nebulizer-dark) 50%, #0891b2 100%);
    opacity: 0.95;
    z-index: -1;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.cta-features span {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.cta-price {
    background: white;
    color: var(--dark);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-price-label {
    font-weight: 600;
    margin-right: 16px;
}

.cta-price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
}

.cta-price-save {
    background: var(--danger);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--nebulizer-blue);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s;
    margin-bottom: 24px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
}

/* ==========================================
   MOBILE RESPONSIVE (COMPLETE REWRITE)
   ========================================== */

@media (max-width: 968px) {
    /* Header Mobile Fix */
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .logo-title {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .nav {
        gap: 12px;
    }
    
    .nav-link {
        display: none; /* Hide text links on mobile */
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Badges - CENTER ON MOBILE */
    .product-badges {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 30px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .product-image-container {
        padding: 20px;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .trust-bar {
        justify-content: center;
        gap: 15px;
    }
    
    .trust-item {
        font-size: 11px;
    }
    
    /* Order Section Mobile */
    .order-section {
        padding: 24px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .price-now {
        font-size: 32px;
    }
    
    .price-main {
        justify-content: center;
        text-align: center;
    }
    
    .price-old-group {
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* How to Use Mobile */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .video-container iframe,
    .video-container video {
        height: 350px;
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    /* CTA Mobile */
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content > p {
        font-size: 16px;
    }
    
    .cta-price {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cta-price-amount {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    /* Floating Button Mobile */
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .floating-text {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    /* Extra Small Screens */
    .announcement-bar {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Badges CENTER and Stack on Small Mobile */
    .product-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .price-now {
        font-size: 28px;
    }
    
    .price-old {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step {
        padding: 24px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .video-container iframe,
    .video-container video {
        height: 250px;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .trust-badge {
        padding: 12px 6px;
        font-size: 11px;
    }
    
    .tb-icon {
        font-size: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .floating-cta {
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.review-card {
    animation: fadeInUp 0.6s ease-out;
}