.hero-section {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5e8 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    padding-right: 40px;
}

.offer-banner {
    background: linear-gradient(45deg, #6abd62, #4caf50);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(106, 189, 98, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: none;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.rating-badge, .delivery-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 14px;
    font-weight: 600;
}

.stars {
    color: #ffb400;
    font-size: 16px;
}

.rating-text {
    color: #333;
}

.delivery-badge i {
    color: #6abd62;
    font-size: 16px;
}

.hero-cta {
    margin-bottom: 30px;
}

.hero-cta .btn {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(106, 189, 98, 0.3);
    transition: all 0.3s ease;
    min-width: 280px;
}

.hero-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(106, 189, 98, 0.4);
}

.certifications {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.cert-badges {
    display: flex;
    gap: 10px;
}

.cert-badge {
    background: #f1f5ef;
    color: #6abd62;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #6abd62;
}

.hero-visual {
    position: relative;
    text-align: center;
    height: 600px;
}

.meal-showcase {
    position: relative;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-meal-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    /* filter: blur(3px); */
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    border-radius: 15px;
    padding: 8px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    animation: float 6s ease-in-out infinite;
    display: none;
}

.floating-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.calorie-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #6abd62;
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

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

/* Number Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.achievement-number {
    animation: countUp 0.8s ease-out;
}

/* New Section 2: Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.achievement-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 189, 98, 0.15);
    border-color: #6abd62;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6abd62, #4caf50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(106, 189, 98, 0.3);
}

.achievement-content {
    text-align: center;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-label {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.4;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .achievements-section {
        padding: 60px 0;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    .achievement-item {
        padding: 25px 15px;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-label {
        font-size: 0.9rem;
    }
    
    .section-header-modern {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .section-description-modern {
        font-size: 0.9rem;
    }
    .hero-section {
        padding: 160px 0 40px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-section .row {
        flex-direction: column;
    }
    
    .hero-content-col {
        order: 1;
    }
    
    .hero-visual-col {
        order: 2;
    }
    
    .main-meal-image {
        filter: none;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-visual {
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .trust-indicators {
        justify-content: center;
        margin-bottom: 25px;
        gap: 15px;
    }
    
    .hero-visual {
        height: 230px;
    }
    
    .floating-card {
        display: none;
    }
    
    .offer-banner {
        padding: 15px 20px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .certifications {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .achievements-section {
        padding: 40px 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .achievement-item {
        padding: 20px 15px;
    }
    
    .achievement-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .achievement-number {
        font-size: 1.8rem;
    }
    
        .achievement-label {
        font-size: 0.85rem;
    }

/* Modern Section Header */
.section-header-modern {
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.section-description-modern {
    font-size: 0.95rem;
    color: #8a8a8a;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    text-align: center;
}

/* Meal Plan Image Tagline Overlay */
.meal-plan-image-container {
    position: relative !important;
    overflow: hidden !important;
}

.meal-plan-tagline {
    position: absolute !important;
    bottom: 15px !important;
    left: 15px !important;
    background: #ff6b35 !important;
    color: white !important;
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    border-radius: 6px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    max-width: 70% !important;
    z-index: 10 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    /* Make it look baked into the image */
    backdrop-filter: blur(0px) !important;
    border: none !important;
    /* Add a subtle inner shadow to make it look embedded */
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.3), 0 2px 8px rgba(0,0,0,0.2) !important;
}

/* Mobile responsive for taglines */
@media (max-width: 991px) {
    .meal-plan-tagline {
        font-size: 0.65rem;
        padding: 3px 6px;
        bottom: 6px;
        left: 6px;
    }
}

@media (max-width: 576px) {
    .meal-plan-tagline {
        font-size: 0.6rem;
        padding: 2px 5px;
        bottom: 5px;
        left: 5px;
    }
    
    .section-header-modern {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .section-description-modern {
        font-size: 0.85rem;
    }
}
    .hero-section {
        padding: 190px 0 30px;
    }
    
    .hero-section .row {
        flex-direction: column;
        display: flex;
    }
    
    .hero-content-col {
        order: 1;
        width: 100%;
    }
    
    .hero-visual-col {
        order: 2;
        width: 100%;
    }
    
    .main-meal-image {
        display: none;
    }
    
    .floating-card {
        display: block !important;
        position: absolute !important;
        animation: float 6s ease-in-out infinite !important;
    }
    
    .floating-elements {
        position: relative;
        height: 200px;
        display: block;
        padding: 20px 0;
    }
    
    .card-1 {
        position: absolute !important;
        top: 20% !important;
        left: 10% !important;
        animation-delay: 0s !important;
    }
    
    .card-2 {
        position: absolute !important;
        top: 40% !important;
        right: 10% !important;
        animation-delay: 2s !important;
    }
    
    .card-3 {
        position: absolute !important;
        bottom: 20% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        animation-delay: 4s !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .rating-badge, .delivery-badge {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero-cta .btn {
        min-width: 200px;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .offer-banner {
        padding: 12px 12px;
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .certifications {
        margin-top: 15px;
        gap: 10px;
    }
    
    .cert-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* Section 4: Popular Meals - Modern & Elegant */
.popular-meals-section {
    padding: 45px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.popular-meals-section .section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.popular-meals-section .section-description-modern {
    padding: 0 100px;
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0 auto;
    line-height: 1.6;
}

.popular-meals-carousel {
    margin-top: 0;
    overflow: hidden;
}

.popular-meals-slider {
    padding: 20px 0;
    overflow: hidden;
}

.meal-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 8px;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    max-width: 240px;
    width: 240px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.meal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 24px;
}

.meal-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(106, 189, 98, 0.15);
    border-color: #6abd62;
}

.meal-card:hover::before {
    opacity: 1;
}

.meal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.meal-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.meal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.meal-card:hover .meal-image img {
    transform: scale(1.08);
}

.meal-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #6abd62, #4caf50);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 16px rgba(106, 189, 98, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
}

.meal-info {
    padding: 20px 25px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #fafbfc);
    position: relative;
}

.meal-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 189, 98, 0.1), transparent);
}

.meal-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 8px 0;
    line-height: 1.4;
    letter-spacing: -0.02em;
    position: relative;
}

.meal-description {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.01em;
    font-weight: 400;
    opacity: 0.9;
}

/* Popular Meals Responsive - Elegant */
@media (max-width: 991px) {
    .popular-meals-section {
        padding: 60px 0;
    }
    
    .popular-meals-section .section-title-modern {
        font-size: 2rem;
    }
    
    .popular-meals-section .section-description-modern {
        font-size: 1rem;
    }
    
    .meal-card {
        margin: 6px;
        max-width: 200px;
        width: 200px;
    }
    
    .meal-image {
        height: 180px;
    }
    
    .meal-info {
        padding: 18px 20px;
    }
    
    .meal-name {
        font-size: 0.95rem;
        margin: 0 0 6px 0;
    }
    
    .meal-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .popular-meals-section {
        padding: 50px 0;
    }
    
    .popular-meals-section .section-title-modern {
        font-size: 1.8rem;
    }
    
    .popular-meals-section .section-description-modern {
        font-size: 0.95rem;
    }
    
    .meal-card {
        margin: 4px;
        max-width: 160px;
        width: 160px;
    }
    
    .meal-image {
        height: 160px;
    }
    
    .meal-info {
        padding: 15px 18px;
    }
    
    .meal-name {
        font-size: 0.9rem;
        margin: 0 0 5px 0;
    }
    
    .meal-description {
        font-size: 0.75rem;
    }
    
    .meal-type-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        top: 12px;
        right: 12px;
    }
}

/* Section 7: How It Works - Ultra Modern Compact */
.how-it-works-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.how-it-works-section .section-header-modern {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.how-it-works-section .section-title-modern {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.how-it-works-section .section-description-modern {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6abd62, transparent);
    z-index: 1;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(106, 189, 98, 0.1), rgba(106, 189, 98, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 189, 98, 0.3);
    border-color: rgba(106, 189, 98, 0.3);
}

.step-item:hover::before {
    opacity: 1;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6abd62 0%, #4caf50 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    box-shadow: 0 12px 30px rgba(106, 189, 98, 0.4);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 16px 40px rgba(106, 189, 98, 0.5);
}

.step-icon svg,
.step-icon i {
    width: 32px;
    height: 32px;
    color: white;
    font-size: 32px;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.step-content p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* How It Works Responsive */
@media (max-width: 991px) {
    .how-it-works-section {
        padding: 50px 0;
    }
    
    .how-it-works-section .section-title-modern {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .step-item {
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .how-it-works-section .section-title-modern {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .step-item {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 30px 0;
    }
    
    .how-it-works-section .section-title-modern {
        font-size: 1.8rem;
    }
    
    .step-item {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

/* Section 8: Download the Lifter Life App */
.app-download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.app-content {
    padding-right: 40px;
}

.app-download-section .section-header-modern {
    margin-bottom: 50px;
}

.app-download-section .section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.app-download-section .section-description-modern {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
}

.app-buttons {
    display: flex;
    justify-content: flex-start;
}

.app-store-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.app-store-image {
    height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.app-mockup {
    text-align: center;
    position: relative;
}

.app-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.app-mockup:hover img {
    transform: scale(1.02);
}

/* App Download Section Responsive */
@media (max-width: 991px) {
    .app-download-section {
        padding: 60px 0;
    }
    
    .app-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .app-download-section .section-title-modern {
        font-size: 2.2rem;
    }
    
    .feature-item {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 16px;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .app-download-section {
        padding: 50px 0;
    }
    
    .app-download-section .section-title-modern {
        font-size: 2rem;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-store-image {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .app-download-section {
        padding: 40px 0;
    }
    
    .app-download-section .section-title-modern {
        font-size: 1.8rem;
    }
    
    .app-store-image {
        height: 45px;
    }
}

/* Section 12: Lifter Life Blog */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="food-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236abd62" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23food-pattern)"/></svg>');
    opacity: 0.3;
}

.blog-section .section-header-modern {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.blog-section .section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blog-section .section-subtitle {
    font-size: 1.2rem;
    color: #6abd62;
    font-weight: 600;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(106, 189, 98, 0.15);
    border-color: rgba(106, 189, 98, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.read-time {
    color: #6abd62;
    font-weight: 600;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #6abd62;
}

.blog-cta {
    position: relative;
    z-index: 2;
}

.view-all-posts-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff;
    color: #6abd62;
    text-decoration: none;
    border: 2px solid #6abd62;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(106, 189, 98, 0.1);
}

.view-all-posts-btn:hover {
    background: #6abd62;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 189, 98, 0.25);
    text-decoration: none;
}

/* Blog Section Responsive */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-section .section-title-modern {
        font-size: 2.2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-section .section-title-modern {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .blog-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-section .section-title-modern {
        font-size: 1.8rem;
    }
    
    .blog-content {
        padding: 20px 15px;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .view-all-posts-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Section 5: Trusted By - Redesigned */
.trusted-by-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.trusted-by-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.trusted-by-section .section-header-modern {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.trusted-by-section .section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.trusted-by-section .section-description-modern {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.partner-item {
    text-align: center;
    transition: all 0.3s ease;
}

.partner-logo {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(106, 189, 98, 0.05), rgba(106, 189, 98, 0.02));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-item:hover .partner-logo {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(106, 189, 98, 0.15);
    border-color: rgba(106, 189, 98, 0.2);
}

.partner-item:hover .partner-logo::before {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 1;
}

.partner-item:hover .partner-logo img {
    transform: scale(1.05);
}

/* Mobile Carousel Styles */
.partners-carousel {
    display: none;
    margin: 0 -15px;
}

.partners-carousel .partner-item {
    padding: 0 15px;
}

.partners-carousel .partner-logo {
    margin: 0 auto;
    max-width: 200px;
}

/* Trusted By Section Responsive */
@media (max-width: 991px) {
    .trusted-by-section {
        padding: 60px 0;
    }
    
    .trusted-by-section .section-title-modern {
        font-size: 2.2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .trusted-by-section {
        padding: 50px 0;
    }
    
    .trusted-by-section .section-title-modern {
        font-size: 2rem;
    }
    
    /* Hide desktop grid, show mobile carousel */
    .partners-grid {
        display: none;
    }
    
    .partners-carousel {
        display: block;
    }
    
    .partner-logo {
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .trusted-by-section {
        padding: 40px 0;
    }
    
    .trusted-by-section .section-title-modern {
        font-size: 1.8rem;
    }
    
    .partner-logo {
        padding: 20px 15px;
    }
}

/* Popular Meals Section Responsive */
@media (max-width: 768px) {
    .popular-meals-section .section-description-modern {
        padding: 0;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .popular-meals-section .section-description-modern {
        padding: 0;
        font-size: 0.9rem;
    }
}

/* Blog Carousel Styles */
.blog-carousel {
    display: none;
    
}

.blog-carousel .blog-card {
    padding: 0 20px;
    margin: 0;
    width: 100%;
}

/* Blog Section Responsive */
@media (max-width: 768px) {
    /* Hide desktop grid, show mobile carousel */
    .blog-grid {
        display: none;
    }
    
    .blog-carousel {
        display: block;
    }
    
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-section .section-title-modern {
        font-size: 2rem;
    }
    
    .blog-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 30px 0;
    }
    
    .blog-section .section-title-modern {
        font-size: 1.8rem;
    }
    
    .blog-card {
        max-width: 100%;
        width: 100%;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-meta {
        font-size: 0.75rem;
    }
}

/* Macro Elements Styling */
.fs-12 {
    display: block;
    width: 100%;
    text-align: center;
    margin: 5px 0;
    font-size: 13px !important;
    line-height: 1.4;
}

/* Blog Carousel Mobile Image Styles */
@media (max-width: 768px) {
    .blog-carousel .blog-image {
        height: 180px;
    }
    
    .blog-carousel .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .blog-cta {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .blog-carousel .blog-image {
        height: 160px;
    }
    
    .blog-carousel .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .blog-cta {
        margin-top: 25px;
    }
}