* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1D1D1D;
    overflow-x: hidden;
    line-height: 1.6;
}

/* NEW: Flash Offer Top Bar - UPDATED FOR MOBILE */
.flash-offer-bar {
    background: #1A72EA;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: 0 2px 15px rgba(26, 114, 234, 0.5);
    animation: offerPulse 3s infinite;
}

@keyframes offerPulse {
    0% {
        box-shadow: 0 2px 15px rgba(26, 114, 234, 0.5);
    }

    50% {
        box-shadow: 0 2px 25px rgba(26, 114, 234, 0.8), 0 0 30px rgba(26, 114, 234, 0.4);
    }

    100% {
        box-shadow: 0 2px 15px rgba(26, 114, 234, 0.5);
    }
}

.flash-offer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.flash-offer-badge {
    background: white;
    color: #1A72EA;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Header - UPDATED: Remove toggle on mobile, show order button */
.header {
    background: white;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    z-index: 1000;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    max-width: 100%;
    height: auto;
}

.logo img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #1A72EA;
}

/* New phone container */
.phone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Price guarantee text */
.price-guarantee {
    font-size: 0.7rem;
    font-weight: 900;
    color: #1A72EA;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    white-space: nowrap;
    animation: textPulse 2s infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Animated Button Styles */
.order-btn,
.cta-primary,
.deal-btn,
.urgency-btn {
    position: relative;
    overflow: hidden;
    background: #1A72EA;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(26, 114, 234, 0.3);
    z-index: 1;
    white-space: nowrap;
}

.order-btn:hover,
.cta-primary:hover,
.deal-btn:hover,
.urgency-btn:hover {
    background: #1D1D1D;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(29, 29, 29, 0.4);
}

.order-btn::before,
.cta-primary::before,
.deal-btn::before,
.urgency-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.order-btn:hover::before,
.cta-primary:hover::before,
.deal-btn:hover::before,
.urgency-btn:hover::before {
    left: 100%;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Menu - UPDATED: Hide toggle, show order button instead */
.mobile-menu-btn {
    display: none;
}

.mobile-nav {
    display: none;
}

/* ========== RESPONSIVE STYLES ========== */
/* Tablets */
@media (max-width: 968px) {
    .header {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        flex: 1;
    }

    .nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
    
    .price-guarantee {
        font-size: 0.65rem;
        letter-spacing: 0.8px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .header {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        width: auto;
    }

    .logo img {
        max-width: 150px;
    }

    .nav .order-btn {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .mobile-menu-btn {
        display: none;
    }
    
    .phone-container {
        align-items: flex-end;
    }
    
    .price-guarantee {
        font-size: 0.6rem;
        letter-spacing: 0.7px;
        margin-top: 3px;
    }
}

/* Small Mobile Devices */
@media (max-width: 400px) {
    .header {
        padding: 8px 10px;
    }

    .logo img {
        max-width: 150px;
    }

    .nav .order-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .price-guarantee {
        font-size: 0.55rem;
        letter-spacing: 0.6px;
        margin-top: 2px;
    }
}

/* NEW: Deals Container in Warning Section */
.deals-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.deal-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.deal-card.popular {
    border: 2px solid #1A72EA;
    transform: scale(1.05);
}

.deal-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1A72EA;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(26, 114, 234, 0.3);
}

.deal-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.deal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.deal-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.deal-description {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.deal-price {
    margin-bottom: 25px;
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-new {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1A72EA;
    margin-bottom: 10px;
}

.price-saving {
    display: inline-block;
    background: #e6f0ff;
    color: #1A72EA;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.deal-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.deal-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color:#666;
}

.deal-features li i {
    color: #1A72EA;
    font-size: 1rem;
}

.deal-card.popular .deal-btn {
    background: #1D1D1D;
    box-shadow: 0 12px 30px rgba(29, 29, 29, 0.4);

}

.deal-card.popular .deal-btn:hover {
    background: #1A72EA;
    box-shadow: 0 8px 20px rgba(26, 114, 234, 0.3);


}

/* NEW MODERN COUNTDOWN TIMER STYLES */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 80px;
}

.countdown-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A72EA, #4a9bff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 10px 25px rgba(26, 114, 234, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.countdown-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #1A72EA, #4a9bff, #7fb7ff);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: rotate 3s linear infinite;
}

.countdown-circle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.countdown-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1A72EA;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
}

.countdown-item:hover .countdown-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(26, 114, 234, 0.4);
}

/* Special styling for limited offer section */
.limited-offer .countdown-circle {
    background: linear-gradient(135deg, #1A72EA, #4a9bff);
    box-shadow: 0 10px 25px rgba(26, 114, 234, 0.3);
}

.limited-offer .countdown-circle::before {
    background: linear-gradient(135deg, #1A72EA, #4a9bff, #7fb7ff);
}

.limited-offer .countdown-value {
    color: #1A72EA;
}

/* Mobile Menu - UPDATED: Hide toggle, show order button instead */
.mobile-menu-btn {
    display: none;
}

.mobile-nav {
    display: none;
}

/* UPDATED HERO SECTION - FIXED & RESPONSIVE */
.hero {
    background: #fff;
    padding: 30px 50px;
    display: grid;
    grid-template-columns: 50% 45%;
    grid-column-gap: 40px;
    align-items: center;
    position: relative;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    position: relative;
    z-index: 1;
}

.limited-offer-badge {
    background: #1A72EA;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(26, 114, 234, 0.7);
    animation: badgePulse 1.5s ease-in-out infinite alternate;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(26, 114, 234, 0.7);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(26, 114, 234, 0.9);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
}

.hero-heading-part1 {
    color: #000000;
}

.hero-heading-part2 {
    color: #1A72EA;
}

.hero-heading-part3 {
    color: #1D1D1D;
}

.price-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.regular-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.sale-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: #1A72EA;
}

.save-badge {
    background: linear-gradient(135deg, #1A72EA, #1D1D1D);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: badgeBounce 1.5s ease infinite;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.sale-countdown {
    margin: 20px 0;
}

.sale-countdown p {
    color: #1A72EA;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.new-countdown-container {
    background: #1A72EA;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(26, 114, 234, 0.3);
    max-width: 100%;
    width: 100%;
}

.new-countdown-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.new-countdown-timer {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: monospace;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.new-countdown-message {
    font-size: 1rem;
    font-weight: 600;
}

.new-order-button {
    background: #1A72EA;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.new-order-button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(26, 114, 234, 0.7);
}

.hero-image {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 550px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.under-hero-image {
    width: 100%;
    max-width: 550px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.stock-warning {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #1D1D1D;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: stockFlash 2s ease infinite;
    text-align: center;
    width: 100%;
}

@keyframes stockFlash {

    0%,
    100% {
        color: #1A72EA;
        box-shadow: 0 0 10px rgba(26, 114, 234, 0.7);
    }

    50% {
        color: #1D1D1D;
        box-shadow: 0 0 15px rgba(29, 29, 29, 0.7);
    }
}

.guarantee-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #1D1D1D;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: guaranteeFloat 3s ease-in-out infinite;
    text-align: center;
    width: 100%;
}

@keyframes guaranteeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* NEW FINAL WARNING OFFER SECTION - IMPROVED FOR MOBILE */
.final-warning-offer {
    background: #1D1D1D;
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-warning-banner {
    background: #1A72EA;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    animation: warningPulse 2s infinite;
    width: 90%;
    max-width: 800px;
    margin: auto;
    margin-bottom: 100px;
}

@keyframes warningPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(26, 114, 234, 0.7);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(26, 114, 234, 0.9);
    }
}

.warning-text {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }

    100% {
        text-shadow: 0 0 20px rgba(26, 114, 234, 0.9);
    }
}

.warning-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
}

.final-countdown {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: monospace;
    margin: 15px 0;
    color: #ffffff;
    animation: countdownFlicker 1.5s infinite;
}

@keyframes countdownFlicker {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(26, 114, 234, 0.7);
    }

    50% {
        opacity: 0.9;
        text-shadow: 0 0 15px rgba(26, 114, 234, 1);
    }
}

.pricing-box {
    background: white;
    color: #000;
    padding: 30px;
    border-radius: 1.5rem;
    max-width: 100%;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(26, 114, 234, 0.2);
    animation: boxGlow 3s infinite alternate;
}

@keyframes boxGlow {
    0% {
        box-shadow: 0 0 30px rgba(26, 114, 234, 0.2);
    }

    100% {
        box-shadow: 0 0 40px rgba(26, 114, 234, 0.3);
    }
}

.pricing-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1A72EA;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.final-regular-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.final-sale-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1A72EA, #1D1D1D, #1D1D1D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-save-badge {
    background: #1A72EA;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
}

.bonus-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A72EA;
    animation: bonusPulse 2s infinite;
}

@keyframes bonusPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.claim-button-section {
    margin: 30px 0;
}

.claim-btn {
    background: linear-gradient(135deg, #1A72EA, #4a9bff);
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 900;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(26, 114, 234, 0.5);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.claim-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(26, 114, 234, 0.7);
}

.claim-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #1A72EA, #1D1D1D, #1D1D1D);
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.claim-btn:hover::after {
    opacity: 1;
    animation: borderGlow 1.5s infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.guarantee-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
}

.stock-warning-footer {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 20px;
    background: #1A72EA;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: stockFlicker 2s infinite;
}

@keyframes stockFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Benefits Banner */
.benefits-banner {
    background: white;
    padding: 60px 50px;
    text-align: center;
}

.benefits-banner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1A72EA;
}

.benefit-item h3 {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Images Grid - IMPROVED for mobile */
.images-grid-container {
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.grid-image {
    width: 100%;
    height: 347px;
    background: #ddd;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.grid-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.grid-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.grid-image:hover .image-overlay {
    transform: translateY(0);
}

/* Revolution Section - Updated with two-column layout */
.revolution {
    background: #1D1D1D;
    color: white;
    padding: 80px 50px;
}

.revolution-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.revolution-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.revolution-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.revolution-image {
    text-align: center;
}

.revolution-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Combo Deal Section */
.combo-deals {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
    padding: 100px 50px;
    text-align: center;
}

.combo-deals h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.combo-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* New Workout Features Section */
.workout-features {
    background: white;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.workout-features::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.15) 0%, rgba(135, 206, 235, 0) 70%);
    top: -300px;
    left: -300px;
    z-index: 0;
}

.workout-features::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.1) 0%, rgba(135, 206, 235, 0) 70%);
    bottom: -250px;
    right: -250px;
    z-index: 0;
}

.workout-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1A72EA;
    margin-bottom: 15px;
}

.workout-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.workout-subheading {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.workout-content {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Updated feature grid with 3 columns for 6 items */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

/* Updated feature item with larger dimensions */
.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Updated feature icon with larger dimensions */
.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A72EA;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #e1f5fe;
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Absolutely positioned images with circles */
.workout-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.image-left {
    left: 0;
}

.image-right {
    right: 0;
}

.workout-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.workout-image .img-1 {
    left: -110px;
    top: -100px;
    width: 212px !important;
    transform: rotate(25deg);
}

.workout-image .img-2 {
    right: -132px;
    top: 30px;
    width: 247px !important;
    transform: rotate(18deg);
}

/* Circle for left image */
.image-left::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.25) 0%, rgba(135, 206, 235, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
}

/* Circle for right image */
.image-right::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, rgba(135, 206, 235, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
}

/* Features Section */
.features-section {
    padding: 100px 50px;
    background: white;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

.feature-row:nth-child(even) {
    direction: rtl;
}

.feature-row:nth-child(even)>* {
    direction: ltr;
}

.feature-content {
    padding: 20px;
}

.feature-number {
    font-size: 1rem;
    color: #1A72EA;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.feature-image {
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Next Gen Section - UPDATED for better mobile display */
.next-gen {
    background: linear-gradient(135deg, #1D1D1D 0%, #2a2a2a 100%);
    color: white;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.next-gen::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 114, 234, 0.1) 0%, rgba(26, 114, 234, 0) 70%);
    top: -250px;
    left: -250px;
    z-index: 0;
}

.next-gen::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 114, 234, 0.1) 0%, rgba(26, 114, 234, 0) 70%);
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.next-gen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.next-gen h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(26, 114, 234, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(26, 114, 234, 0.5);
    }
}

.next-gen h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f8f9fa;
}

.next-gen p {
    font-size: 17px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 40px;
}

.next-gen-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.next-gen-img {
    width: 100%;
    height: 370px;
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.next-gen-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.next-gen-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.next-gen-img:hover img {
    transform: scale(1.1);
}

/* EMS Design Section */
.ems-design {
    background: linear-gradient(135deg, #1A72EA 0%, #4a9bff 100%);
    color: white;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.ems-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ems-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.ems-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.ems-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Enhanced Comparison Section */
.comparison-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 114, 234, 0.1) 0%, rgba(26, 114, 234, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.comparison-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1A72EA 0%, #4a9bff 100%);
    color: white;
}

.comparison-table th {
    padding: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    transition: all 0.3s;
}

.comparison-table tr:hover td {
    background: rgba(26, 114, 234, 0.05);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
}

.product-col {
    background: rgba(26, 114, 234, 0.08);
    position: relative;
}

.product-col::after {
    content: 'BEST VALUE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1A72EA;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.check {
    color: #1A72EA;
    font-size: 1.5rem;
    font-weight: bold;
}

.cross {
    color: #ff4757;
    font-size: 1.5rem;
}

.comparison-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s;
}

.comparison-image:hover {
    transform: scale(1.1);
}

/* Guarantee Section */
.guarantee-section {
    background: #1D1D1D;
    color: white;
    padding: 100px 50px;
    text-align: center;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.guarantee-badge {
    width: 200px;
    height: 200px;
    background: #1A72EA;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 10px 40px rgba(26, 114, 234, 0.4);
}

.guarantee-badge .days {
    font-size: 3.5rem;
    line-height: 1;
}

.guarantee-badge .text {
    font-size: 1rem;
    margin-top: 5px;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 50px;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: #ddd;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 50px;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: #1A72EA;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 30px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

/* Footer */
.footer {
    background: #1D1D1D;
    color: white;
    padding: 60px 50px 30px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo i {
    color: #1A72EA;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Social Proof Popup - UPDATED FOR MOBILE */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: -2px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10000;
    transform: translateX(-450px);
    transition: transform 0.5s ease;
    max-width: 450px;
    border-left: 5px solid #1A72EA;
}

.social-proof-popup.show {
    transform: translateX(0);
}

.popup-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    flex-shrink: 0;
    border: 3px solid #1A72EA;
}

.popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-content {
    flex-grow: 1;
}

.popup-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

.popup-text .customer-name {
    color: #1A72EA;
    font-weight: bold;
}

.popup-location {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    align-self: flex-start;
    padding: 0;
    line-height: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* ========== RESPONSIVE STYLES ========== */
/* Large Tablets */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
        width: 100%;
    }

    .workout-heading {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .workout-image {
        position: relative;
        margin: 30px 0;
        top: auto;
        transform: none;
    }

    .image-left::before,
    .image-right::before {
        display: none;
    }

    .workout-image .img-1,
    .workout-image .img-2 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        width: 100% !important;
    }

    .workout-content {
        flex-direction: column;
        min-height: auto;
    }

    .countdown-circle {
        width: 70px;
        height: 70px;
    }

    .countdown-value {
        font-size: 1.6rem;
    }

    .revolution-container {
        gap: 40px;
    }

    .revolution-content h2 {
        font-size: 2.2rem;
    }

    .next-gen-content {
        gap: 40px;
    }

    .next-gen h2 {
        font-size: 2.5rem;
    }

    .next-gen-img {
        height: 300px;
    }

    .warning-text {
        font-size: 2rem;
    }

    .final-countdown {
        font-size: 2rem;
    }

    .final-sale-price {
        font-size: 2.8rem;
    }

    .final-warning-banner {
        width: 90%;
    }

    .deals-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .social-proof-popup {
        max-width: 400px;
        padding: 20px;
    }
    
    .popup-avatar {
        width: 70px;
        height: 70px;
    }
    
    .popup-text {
        font-size: 1rem;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .header {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        flex: 1;
    }

    .nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    /* UPDATED HERO SECTION FOR TABLETS */
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        grid-column-gap: 0;
        min-height: auto;
    }

    .hero-content {
        order: 2;
        text-align: center;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        width: 100%;
        text-align: center;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
        align-items: center;
        text-align: center;
    }

    .hero-image img {
        max-width: 450px;
        margin: 0 auto;
    }

    .under-hero-image {
        width: 100%;
        max-width: 450px;
    }

    section {
        padding: 60px 30px !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row,
    .next-gen-content,
    .ems-content,
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 0;
    }

    .feature-row:nth-child(even) {
        direction: ltr;
    }

    .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-image {
        height: 300px;
    }

    .deals-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .deal-card.popular {
        transform: scale(1);
    }

    .deal-card.popular:hover {
        transform: translateY(-10px);
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
    }

    .comparison-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
        position: relative;
    }

    .comparison-table td:first-child {
        background: #f8f9fa;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .comparison-table td:before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 120px;
    }

    .product-col::after {
        top: 15px;
        right: 15px;
    }

    .social-proof-popup {
        max-width: 350px;
        left: 10px;
        bottom: 10px;
        padding: 20px;
    }
    
    .popup-avatar {
        width: 60px;
        height: 60px;
    }
    
    .popup-text {
        font-size: 0.95rem;
    }

    .countdown-circle {
        width: 60px;
        height: 60px;
    }

    .countdown-value {
        font-size: 1.4rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .revolution-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .revolution-content {
        text-align: center;
    }

    .revolution-content h2 {
        font-size: 2.2rem;
    }

    .revolution-content p {
        font-size: 1.1rem;
    }

    .next-gen-content {
        grid-template-columns: 1fr;
    }

    .next-gen h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .next-gen h3 {
        text-align: center;
    }

    .next-gen-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .next-gen-img {
        height: 250px;
    }

    .warning-text {
        font-size: 1.8rem;
    }

    .warning-subtitle {
        font-size: 1.2rem;
    }

    .final-countdown {
        font-size: 1.8rem;
    }

    .pricing-box h3 {
        font-size: 1.5rem;
    }

    .final-sale-price {
        font-size: 2.5rem;
    }

    .claim-btn {
        font-size: 1.3rem;
        padding: 15px 30px;
    }

    .final-warning-banner {
        width: 95%;
        padding: 15px;
        margin-bottom: 100px!;
    }

    .pricing-box {
        padding: 20px;
    }

    .deals-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    /* UPDATED: Flash Offer Bar for Mobile - Keep text in one line */
    .flash-offer-bar {
        font-size: 0.75rem;
        padding: 8px 5px;
    }
    
    .flash-offer-content {
        gap: 5px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    
    .flash-offer-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
        white-space: nowrap;
    }

    .header {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        width: auto;
    }

    .logo img {
        max-width: 150px;
    }

    .nav .order-btn {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .mobile-menu-btn {
        display: none;
    }

    /* UPDATED HERO SECTION FOR MOBILE */
    .hero {
        padding: 40px 20px;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .hero-content {
        order: 2;
        text-align: center;
        align-items: center;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
        width: 100%;
    }

    .sale-price {
        font-size: 3.5rem;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-image img {
        max-width: 100%;
        width: 100%;
    }

    .under-hero-image {
        width: 100%;
        max-width: 100%;
    }

    .stock-warning,
    .guarantee-text {
        font-size: 0.95rem;
        padding: 8px 12px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-circle {
        width: 50px;
        height: 50px;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .new-countdown-container {
        padding: 15px;
    }

    .new-countdown-title {
        font-size: 1rem;
    }

    .new-countdown-timer {
        font-size: 2rem;
    }

    .new-countdown-message {
        font-size: 0.9rem;
    }

    .new-order-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    section {
        padding: 40px 20px !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: fr;
    }

    .workout-heading {
        font-size: 2rem;
    }

    .workout-subheading {
        font-size: 1rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-content h3 {
        font-size: 1.6rem;
    }

    .images-grid-container {
        width: 90%;
        padding: 40px 0;
    }

    .images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .grid-image {
        height: 250px;
    }

    .combo-deals h2 {
        font-size: 2rem;
    }

    .deal-card {
        padding: 30px 20px;
    }

    .price-new {
        font-size: 1.8rem;
    }

    .next-gen h2,
    .ems-text h2 {
        font-size: 2.2rem;
    }

    .ems-text h3 {
        font-size: 1.6rem;
    }

    .next-gen-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .next-gen-img {
        height: 250px;
        width: 100%;
    }

    .next-gen-img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .guarantee-badge {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .guarantee-badge .days {
        font-size: 2.5rem;
    }

    .guarantee-text h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    /* UPDATED: Social Proof Popup for Mobile - Larger and better aligned */
    .social-proof-popup {
        max-width: 320px;
        flex-direction: row;
        text-align: left;
        padding: 15px;
        bottom: 10px;
        left: 10px;
    }

    .popup-avatar {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .popup-avatar img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .popup-content {
        flex-grow: 1;
    }

    .popup-text {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .popup-location {
        font-size: 0.8rem;
    }

    .popup-close {
        font-size: 1.2rem;
        padding: 0;
        margin: 0;
        align-self: flex-start;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .revolution {
        padding: 60px 20px;
    }

    .revolution-content h2 {
        font-size: 2rem;
    }

    .revolution-content p {
        font-size: 1rem;
    }

    /* UPDATED FINAL WARNING SECTION FOR MOBILE */
    .final-warning-offer {
        padding: 40px 15px;
    }

    .warning-text {
        font-size: 1.5rem;
    }

    .warning-subtitle {
        font-size: 1rem;
    }

    .final-countdown {
        font-size: 1.5rem;
    }

    .pricing-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .pricing-box h3 {
        font-size: 1.3rem;
    }

    .price-container {
        flex-direction: column;
        gap: 10px;
    }

    .final-sale-price {
        font-size: 2rem;
    }

    .claim-btn {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .guarantee-bar {
        flex-direction: column;
        gap: 10px;
    }

    .stock-warning-footer {
        font-size: 1rem;
    }

    .final-warning-banner {
        width: 100%;
        padding: 10px;
        margin-bottom: 30px;
    }

    .deals-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 20px 10px;
    }

    .deal-card {
        padding: 20px 15px;
    }

    .deal-image {
        height: 100px;
    }

    .price-new {
        font-size: 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 400px) {
    .header {
        padding: 8px 10px;
    }

    .logo img {
        max-width: 150px;
    }

    .nav .order-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .sale-price {
        font-size: 3rem;
    }

    .limited-offer h2,
    .combo-deals h2,
    .testimonials-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .workout-heading {
        font-size: 1.7rem;
    }

    .countdown-circle {
        width: 45px;
        height: 45px;
    }

    .countdown-value {
        font-size: 1rem;
    }

    .order-button,
    .new-order-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .urgency-btn,
    .deal-btn,
    .cta-primary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .revolution-content h2 {
        font-size: 1.8rem;
    }

    .next-gen h2 {
        font-size: 1.8rem;
    }

    .next-gen h3 {
        font-size: 1.4rem;
    }

    .next-gen-img {
        height: 200px;
    }

    .warning-text {
        font-size: 1.3rem;
    }

    .final-countdown {
        font-size: 1.3rem;
    }

    .final-sale-price {
        font-size: 1.8rem;
    }

    .claim-btn {
        font-size: 1rem;
        padding: 12px 18px;
    }

    /* UPDATED: Flash Offer Bar for Small Mobile */
    .flash-offer-bar {
        font-size: 0.65rem;
        padding: 6px 3px;
    }
    
    .flash-offer-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    /* UPDATED: Social Proof Popup for Small Mobile */
    .social-proof-popup {
        max-width: 280px;
        padding: 12px;
    }
    
    .popup-avatar {
        width: 50px;
        height: 50px;
    }
    
    .popup-text {
        font-size: 0.85rem;
    }
    
    .popup-location {
        font-size: 0.75rem;
    }
}

.urgency-section {
    background: linear-gradient(135deg, #fef3c7, #fef7cd);
    padding: 2rem 0;
    text-align: center;
}

.scarcity-bar {
    max-width: 600px;
    background: white;
    border-radius: 25px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scarcity-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A72EA;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stock-bar {
    width: 100%;
    height: 10px;
    background: #e6f0ff;
    border-radius: 5px;
    overflow: hidden;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #1A72EA, #4a9bff);
    width: 27%;
    animation: shrink 30s linear infinite;
}

@keyframes shrink {
    from {
        width: 27%;
    }

    to {
        width: 8%;
    }
}

/* Mobile Menu Order Button Styles - UPDATED: Hidden on mobile since we show order button in header */
.mobile-nav .order-btn {
    display: none;
}

/* Remove pulse animation specifically for mobile menu button */
.mobile-nav .order-btn.pulse-btn {
    animation: none !important;
}

/* Tablet and Mobile Responsive Styles */
@media (max-width: 968px) {
    .mobile-nav .order-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .mobile-nav .order-btn {
        display: none;
    }
}

@media (max-width: 400px) {
    .mobile-nav .order-btn {
        display: none;
    }
}

/* Ensure the button doesn't have pulse animation on mobile */
@media (max-width: 968px) {
    .mobile-nav .order-btn {
        animation: none !important;
    }

    /* Also remove hover effects on touch devices if needed */
    @media (hover: none) {
        .mobile-nav .order-btn:hover {
            transform: none;
            background: #1A72EA;
        }
    }
}
/* Active Users Counter Styles */
.active-users-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: white;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.active-users-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.active-users-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  /* box-shadow: 0 0 10px rgba(239, 68, 68, 0.6); */
}

/* @keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  }
} */

.active-users-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.active-users-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.active-users-count {
  font-size: 1.3rem;
  font-weight: 900;
  color: #1A72EA;
  line-height: 1;
}

/* Hover Effect */
.active-users-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .active-users-container {
    bottom: 80px;
    right: 15px;
    padding: 10px 16px;
  }

  .active-users-count {
    font-size: 1.1rem;
  }

  .active-users-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .active-users-container {
    bottom: 20px;
    right: 15px;
    padding: 8px 14px;
  }

  .active-users-dot {
    width: 8px;
    height: 8px;
  }

  .active-users-count {
    font-size: 1rem;
  }

  .active-users-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 400px) {
  .active-users-container {
    bottom: 15px;
    right: 10px;
    padding: 6px 12px;
    z-index: 11111;
  }

  .active-users-dot {
    width: 7px;
    height: 7px;
  }

  .active-users-count {
    font-size: 0.9rem;
  }
}