/* Show default navbar on FitFuel page, make it static and black */
body.fitfuel-page .site-header,
body.page-template-page-fitfuel .site-header {
    display: block !important;
    position: static !important;
    background-color: #000000 !important;
    border-bottom: none !important;
    padding: 10px 0 !important;
}

body.fitfuel-page .site-main,
body.page-template-page-fitfuel .site-main {
    margin-top: 0;
}

/* Ensure text is white in the black header */
body.fitfuel-page .site-header .site-logo-text,
body.fitfuel-page .site-header .primary-menu>li>a,
body.page-template-page-fitfuel .site-header .site-logo-text,
body.page-template-page-fitfuel .site-header .primary-menu>li>a {
    color: #ffffff !important;
}

body.fitfuel-page .site-header .site-logo-img,
body.page-template-page-fitfuel .site-header .site-logo-img {
    filter: brightness(0) invert(1) !important;
}

/* Restaurant/Landing Page Sticky Navbar - Transparent and Overlaid */
body.restaurant-page .site-header,
body.home .site-header,
body.landing-page .site-header,
body.page-template-template-landing .site-header,
body.page-template-page-restaurant-menus .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: transparent !important;
    backdrop-filter: none !important;
    /* Ensure no blur effect */
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

/* Scrolled state - Black background */
body.restaurant-page .site-header.scrolled,
body.home .site-header.scrolled,
body.landing-page .site-header.scrolled,
body.page-template-template-landing .site-header.scrolled,
body.page-template-page-restaurant-menus .site-header.scrolled,
body.fitfuel-page .site-header.scrolled,
body.page-template-page-fitfuel .site-header.scrolled,
body.about-page .site-header.scrolled {
    background-color: #000000 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    padding: 16px 0;
}

/* Header Text & Links - White initially (Desktop Only) */
@media (min-width: 992px) {

    body.restaurant-page .site-logo-text,
    body.restaurant-page .primary-menu>li>a,
    body.home .site-logo-text,
    body.home .primary-menu>li>a,
    body.landing-page .site-logo-text,
    body.landing-page .primary-menu>li>a,
    body.page-template-template-landing .site-logo-text,
    body.page-template-template-landing .primary-menu>li>a,
    body.page-template-page-restaurant-menus .site-logo-text,
    body.page-template-page-restaurant-menus .primary-menu>li>a,
    body.fitfuel-page .site-logo-text,
    body.fitfuel-page .primary-menu>li>a,
    body.page-template-page-fitfuel .site-logo-text,
    body.page-template-page-fitfuel .primary-menu>li>a,
    body.about-page .site-logo-text,
    body.about-page .primary-menu>li>a {
        color: #ffffff !important;
    }
}

/* Header Text & Links - Black on scroll → now WHITE on black bg */
body.restaurant-page .site-header.scrolled .site-logo-text,
body.restaurant-page .site-header.scrolled .primary-menu>li>a,
body.home .site-header.scrolled .site-logo-text,
body.home .site-header.scrolled .primary-menu>li>a,
body.landing-page .site-header.scrolled .site-logo-text,
body.landing-page .site-header.scrolled .primary-menu>li>a,
body.page-template-template-landing .site-header.scrolled .site-logo-text,
body.page-template-template-landing .site-header.scrolled .primary-menu>li>a,
body.page-template-page-restaurant-menus .site-header.scrolled .site-logo-text,
body.page-template-page-restaurant-menus .site-header.scrolled .primary-menu>li>a,
body.fitfuel-page .site-header.scrolled .site-logo-text,
body.fitfuel-page .site-header.scrolled .primary-menu>li>a,
body.page-template-page-fitfuel .site-header.scrolled .site-logo-text,
body.page-template-page-fitfuel .site-header.scrolled .primary-menu>li>a,
body.about-page .site-header.scrolled .site-logo-text,
body.about-page .site-header.scrolled .primary-menu>li>a {
    color: #ffffff !important;
}

body.restaurant-page .primary-menu a:hover,
body.home .primary-menu a:hover,
body.landing-page .primary-menu a:hover,
body.page-template-template-landing .primary-menu a:hover,
body.page-template-page-restaurant-menus .primary-menu a:hover {
    color: #ffffff !important;
    opacity: 0.8;
}

/* Hover on scroll */
body.restaurant-page .site-header.scrolled .primary-menu a:hover,
body.home .site-header.scrolled .primary-menu a:hover,
body.landing-page .site-header.scrolled .primary-menu a:hover,
body.page-template-template-landing .site-header.scrolled .primary-menu a:hover,
body.page-template-page-restaurant-menus .site-header.scrolled .primary-menu a:hover,
body.fitfuel-page .site-header.scrolled .primary-menu a:hover,
body.page-template-page-fitfuel .site-header.scrolled .primary-menu a:hover,
body.about-page .site-header.scrolled .primary-menu a:hover {
    color: #ffffff !important;
    opacity: 0.7;
}

/* Mobile Menu Toggle - White initially */
body.restaurant-page .menu-toggle-bar,
body.home .menu-toggle-bar,
body.landing-page .menu-toggle-bar,
body.page-template-template-landing .menu-toggle-bar,
body.page-template-page-restaurant-menus .menu-toggle-bar,
body.fitfuel-page .menu-toggle-bar,
body.page-template-page-fitfuel .menu-toggle-bar,
body.about-page .menu-toggle-bar {
    background-color: #ffffff !important;
}

/* Mobile Menu Toggle - White on scroll */
body.restaurant-page .site-header.scrolled .menu-toggle-bar,
body.home .site-header.scrolled .menu-toggle-bar,
body.landing-page .site-header.scrolled .menu-toggle-bar,
body.page-template-template-landing .site-header.scrolled .menu-toggle-bar,
body.page-template-page-restaurant-menus .site-header.scrolled .menu-toggle-bar,
body.fitfuel-page .site-header.scrolled .menu-toggle-bar,
body.page-template-page-fitfuel .site-header.scrolled .menu-toggle-bar,
body.about-page .site-header.scrolled .menu-toggle-bar {
    background-color: #ffffff !important;
}

/* Logo Image - White initially */
body.restaurant-page .site-logo-img,
body.home .site-logo-img,
body.landing-page .site-logo-img,
body.page-template-template-landing .site-logo-img,
body.page-template-page-restaurant-menus .site-logo-img,
body.fitfuel-page .site-logo-img,
body.page-template-page-fitfuel .site-logo-img,
body.about-page .site-logo-img {
    filter: brightness(0) invert(1);
}

/* Logo Image - White on scroll */
body.restaurant-page .site-header.scrolled .site-logo-img,
body.home .site-header.scrolled .site-logo-img,
body.landing-page .site-header.scrolled .site-logo-img,
body.page-template-template-landing .site-header.scrolled .site-logo-img,
body.page-template-page-restaurant-menus .site-header.scrolled .site-logo-img,
body.fitfuel-page .site-header.scrolled .site-logo-img,
body.page-template-page-fitfuel .site-header.scrolled .site-logo-img,
body.about-page .site-header.scrolled .site-logo-img {
    filter: brightness(0) invert(1) !important;
}

/* Adjust main content margin for fixed header */
body.restaurant-page .site-main,
body.home .site-main,
body.landing-page .site-main,
body.page-template-template-landing .site-main,
body.page-template-page-restaurant-menus .site-main {
    margin-top: 0;
}

/* --- Smaller Header Overrides for FitFuel & Restaurant Pages --- */

/* Reduce padding on Restaurant page (Fitfuel is handled above) */
body.restaurant-page .site-header,
body.page-template-page-restaurant .site-header,
body.page-template-template-restaurant .site-header,
body.page-template-page-restaurant-menus .site-header {
    padding: 12px 0 !important;
}

body.restaurant-page .site-header.scrolled,
body.page-template-page-restaurant .site-header.scrolled,
body.page-template-template-restaurant .site-header.scrolled,
body.page-template-page-restaurant-menus .site-header.scrolled {
    padding: 8px 0 !important;
}

/* Reduce gap in header inner */
body.fitfuel-page .header-inner,
body.page-template-page-fitfuel .header-inner,
body.restaurant-page .header-inner,
body.page-template-page-restaurant .header-inner,
body.page-template-template-restaurant .header-inner,
body.page-template-page-restaurant-menus .header-inner {
    gap: var(--space-md) !important;
}

/* Reduce logo size */
body.fitfuel-page .site-logo-img,
body.page-template-page-fitfuel .site-logo-img,
body.restaurant-page .site-logo-img,
body.page-template-page-restaurant .site-logo-img,
body.page-template-template-restaurant .site-logo-img,
body.page-template-page-restaurant-menus .site-logo-img,
body.fitfuel-page .custom-logo,
body.page-template-page-fitfuel .custom-logo,
body.restaurant-page .custom-logo,
body.page-template-page-restaurant .custom-logo,
body.page-template-template-restaurant .custom-logo,
body.page-template-page-restaurant-menus .custom-logo {
    max-height: 50px !important;
}

/* Reduce logo font size */
body.fitfuel-page .site-logo-text,
body.page-template-page-fitfuel .site-logo-text,
body.restaurant-page .site-logo-text,
body.page-template-page-restaurant .site-logo-text,
body.page-template-template-restaurant .site-logo-text,
body.page-template-page-restaurant-menus .site-logo-text {
    font-size: var(--font-size-xl) !important;
}

/* Reduce gap in primary menu */
body.fitfuel-page .primary-menu,
body.page-template-page-fitfuel .primary-menu,
body.restaurant-page .primary-menu,
body.page-template-page-restaurant .primary-menu,
body.page-template-template-restaurant .primary-menu,
body.page-template-page-restaurant-menus .primary-menu {
    gap: var(--space-md) !important;
}

/* Reduce padding and font-size of menu items */
body.fitfuel-page .primary-menu>li>a,
body.page-template-page-fitfuel .primary-menu>li>a,
body.restaurant-page .primary-menu>li>a,
body.page-template-page-restaurant .primary-menu>li>a,
body.page-template-template-restaurant .primary-menu>li>a,
body.page-template-page-restaurant-menus .primary-menu>li>a {
    padding: 4px var(--space-sm) !important;
    font-size: 14px !important;
}

/* Ensure hero content is pushed down properly since header is fixed */
body.restaurant-page .hero-section,
body.home .hero-section,
body.landing-page .hero-section,
body.page-template-template-landing .hero-section {
    padding-top: 150px;
    /* Push content down but allow background to cover */
}

/* Sticky Wrapper for Header and Banner */
.fitfuel-sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2001;
    width: 100%;
}

/* FitFuel Custom Navbar */
.fitfuel-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fitfuel-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* FitFuel Logo */
.fitfuel-logo {
    flex-shrink: 0;
}

.fitfuel-logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.fitfuel-logo-main {
    font-size: 1.75rem;
    font-weight: 700;
    font-style: italic;
    color: #2d3748;
    display: block;
    letter-spacing: -0.5px;
}

.fitfuel-logo-sub {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a5568;
    display: block;
    margin-top: 2px;
}

/* FitFuel Navigation */
.fitfuel-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.fitfuel-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    align-items: center;
}

.fitfuel-nav-item {
    margin: 0;
}

.fitfuel-nav-link {
    display: block;
    padding: 8px 0;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.fitfuel-nav-link:hover {
    color: #000000;
}

.fitfuel-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.fitfuel-nav-link:hover::after {
    width: 100%;
}

/* Sub-menu Dropdown */
.fitfuel-nav-item.menu-item-has-children {
    position: relative;
}

.fitfuel-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 100;
}

.fitfuel-nav-item.menu-item-has-children:hover .fitfuel-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fitfuel-sub-menu li {
    margin: 0;
}

.fitfuel-sub-menu a {
    display: block;
    padding: 8px 20px;
    color: #2d3748;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.fitfuel-sub-menu a:hover {
    background-color: #f7fafc;
    color: #000000;
}

/* Mobile Menu Toggle */
.fitfuel-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.fitfuel-menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2d3748;
    transition: all 0.3s ease;
}

.fitfuel-menu-toggle[aria-expanded="true"] .fitfuel-menu-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.fitfuel-menu-toggle[aria-expanded="true"] .fitfuel-menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.fitfuel-menu-toggle[aria-expanded="true"] .fitfuel-menu-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design for FitFuel Navbar */
@media (max-width: 768px) {
    .fitfuel-header {
        padding: 0;
    }

    .fitfuel-header-inner {
        padding: 0;
    }

    .fitfuel-logo-main {
        font-size: 1.5rem;
    }

    .fitfuel-logo-sub {
        font-size: 0.75rem;
    }

    .fitfuel-menu-toggle {
        display: flex;
    }

    .fitfuel-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .fitfuel-navigation.active .fitfuel-nav-menu {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .fitfuel-nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .fitfuel-nav-item:last-child {
        border-bottom: none;
    }

    .fitfuel-nav-link {
        padding: 16px 0;
        display: block;
        width: 100%;
    }

    .fitfuel-nav-link::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .fitfuel-header-inner {
        padding: 0;
    }

    .fitfuel-logo-main {
        font-size: 1.25rem;
    }

    .fitfuel-logo-sub {
        font-size: 0.7rem;
    }
}

/* FitFuel Hero Section Styles */
.fitfuel-hero-new {
    background: #faf9f6;
    padding: 60px 0 60px;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

/* Three-Column Layout */
.hero-layout-three-column {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* Left and Right Images */
.hero-image-left,
.hero-image-right {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-food-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Centered Content */
.hero-content-center {
    text-align: center;
    padding: 0 20px;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-cta-button {
    background: #fecc07;
    color: #000000;
    border: 2px solid #000000;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background: #f5c000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0;
    width: fit-content;
}

.hero-buttons .hero-download-button {
    align-self: stretch;
    text-align: center;
}

/* Secondary "Download the app." — plain text trigger */
.hero-download-button {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.hero-download-button:hover {
    opacity: 0.75;
    color: #ffffff;
    text-decoration: underline;
}

/* Desktop dropdown wrapper */
.hero-download-wrapper {
    position: relative;
    display: inline-block;
}

/* Dropdown panel */
.hero-download-dropdown {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.hero-download-wrapper:hover .hero-download-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Store links inside dropdown */
.hero-store-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #1a202c;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease;
}

.hero-store-link:hover {
    background: #f3f4f6;
    color: #1a202c;
}

.hero-store-link svg {
    flex-shrink: 0;
}

/* Mobile: hide wrapper, show direct link */
.hero-download-mobile {
    display: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.hero-download-mobile:hover {
    opacity: 0.75;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-download-wrapper {
        display: none;
    }

    .hero-download-mobile {
        display: inline-block;
    }
}

/* Features List */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkmark-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout-three-column {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-image-left,
    .hero-image-right {
        order: 2;
    }

    .hero-content-center {
        order: 1;
        padding: 0;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-features {
        gap: 32px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .fitfuel-hero-new {
        padding: 60px 0 40px;
    }

    .hero-layout-three-column {
        gap: 32px;
        margin-bottom: 40px;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        gap: 24px;
        padding-top: 32px;
        flex-direction: column;
        align-items: flex-start;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-feature-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fitfuel-hero-new {
        padding: 50px 0 30px;
    }

    .hero-main-title {
        font-size: 1.75rem;
    }

    .hero-cta-button {
        width: 100%;
        max-width: 280px;
    }

    .hero-features {
        gap: 20px;
        padding-top: 24px;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

/* How It Works Section */
.how-it-works {
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #fecc07;
    color: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.step-description {
    color: #718096;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.step-details {
    text-align: left;
    margin-top: 16px;
}

.step-details p {
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.step-details p:last-child {
    margin-bottom: 0;
}

.step-details strong {
    color: #2d3748;
    font-weight: 600;
}

/* Meal Plans Section */
.meal-plans {
    background: #ffffff;
}

.meal-plans .section-subtitle {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin: 16px 0 24px 0 !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.plans-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card-image {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.plan-card-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.plan-card-image.featured {
    transform: none;
}

.plan-card-image.featured:hover {
    transform: translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #10b981;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.plan-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.plan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.plan-content {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 16px 0;
}

.plan-description {
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
    flex-grow: 1;
}

.plan-cta-button {
    background: #10b981;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    margin-top: auto;
    align-self: stretch;
    text-decoration: none;
    text-align: center;
    display: block;
}

.plan-cta-button:hover {
    background: #059669;
    transform: translateY(-1px);
    color: #ffffff;
}

/* Calorie Calculator Section */
.calorie-calculator-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.calculator-text {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 16px;
    font-weight: 500;
}

.calculator-prompt {
    font-size: 1.125rem;
    color: #2d3748;
    margin: 0;
}

.calorie-calculator-button {
    background: #10b981;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    display: inline;
}

.calorie-calculator-button:hover {
    background: #059669;
}

/* FAQs Section */
.faqs-section {
    background: #ffffff;
    padding: 80px 0;
}

.faqs-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 16px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    background: #fecc07;
    color: #2d3748;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 12px 20px;
    margin: 0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq-category-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.faq-category-toggle svg {
    width: 100%;
    height: 100%;
}

.faq-category-title[aria-expanded="true"] .faq-category-toggle {
    transform: rotate(180deg);
}

.faq-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-category-title[aria-expanded="true"]+.faq-category-content {
    margin-top: 24px;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Accordion button styles */
button.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.4;
    transition: color 0.2s ease;
    margin-bottom: 0;
}

button.faq-question:hover {
    color: #1a202c;
}

.faq-question-text {
    flex: 1;
    padding-right: 16px;
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #4a5568;
}

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

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

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

.faq-answer {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 16px;
}

.faq-answer p {
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #4a5568;
}

.faq-answer strong {
    color: #2d3748;
    font-weight: 600;
}

/* Customer Feedback Section */
.customer-feedback-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2d3748;
    margin: 0 0 24px 0;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: #fecc07;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-direction: column;
}

.author-name {
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
    font-style: italic;
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #fecc07;
    font-size: 1rem;
}

.rating-half {
    color: #fecc07;
    font-size: 1rem;
}

/* VitaTrade Brands Section */
.vitatrade-brands-section {
    background: #ffffff;
    padding: 80px 0;
}

.brands-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 20px;
}

.brands-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 120px;
    box-sizing: border-box;
    overflow: hidden;
}

.brand-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.brand-img:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Responsive Design for Brands */
@media (max-width: 1024px) {
    .brands-logos {
        gap: 40px;
    }

    .brands-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .brands-logos {
        gap: 30px;
    }

    .brands-title {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }

    .brand-logo {
        height: 60px;
    }

    .brand-img {
        max-height: 45px;
        max-width: 120px;
    }

    /* Customer Feedback Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .testimonial-item {
        padding: 24px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vitatrade-brands-section {
        padding: 60px 0;
    }

    .brands-logos {
        gap: 20px;
    }

    .brands-title {
        font-size: 1.125rem;
    }

    .brand-img {
        max-height: 35px;
        max-width: 100px;
    }

    /* FAQs Responsive */
    .faqs-section {
        padding: 60px 0;
    }

    .faq-category {
        margin-bottom: 40px;
    }

    .faq-category-title {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .faq-item {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.875rem;
    }

    /* Customer Feedback Mobile */
    .customer-feedback-section {
        padding: 60px 0;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .testimonial-quote::before {
        font-size: 2.5rem;
        top: -15px;
        left: -8px;
    }

    .author-name {
        font-size: 0.8rem;
    }
}

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: stretch;
}

.benefits-layout>.benefits-content {
    flex: 1.6 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.benefits-layout>.benefits-image {
    flex: 1 1 0;
    min-width: 0;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.about-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 24px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.benefits-list {
    margin-top: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #fecc07;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #2d3748;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.benefit-text p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.benefits-image {
    position: relative;
}

.benefit-img {
    margin-top: 30px;
    height: 430px !important;
    object-fit: cover;
    border-radius: 64px !important;
    display: block;
}

@media (max-width: 768px) {
    .benefit-img {
        height: 300px;
    }
}

/* Additional Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        gap: 32px;
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid-two {
        gap: 32px;
    }

    .benefits-layout {
        gap: 60px;
    }
}

@media (max-width: 768px) {

    .steps-grid,
    .plans-grid-two {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .plan-card-image.featured {
        transform: none;
    }

    .plan-card-image.featured:hover {
        transform: translateY(-8px);
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-image {
        order: -1;
    }

    .benefit-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .plan-card {
        padding: 24px 20px;
    }

    .benefit-item {
        gap: 16px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Promotional and Contact Section */
.promotional-contact-section {
    background: #ffffff;
    padding: 80px 0;
}

.promotional-banner {
    text-align: center;
    margin-bottom: 80px;
    padding: 12px 32px;
    background: #ffde5c;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(255, 222, 92, 0.4);
    max-width: 100%;
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.promo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.promo-link {
    color: #166534;
    /* Dark green - bold style */
    font-weight: 800;
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.promo-link:hover {
    color: #14532d;
    text-decoration: underline;
}

.contact-section {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.contact-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 32px 0;
    line-height: 1.3;
}

.contact-button {
    background: #2d3748;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}

.contact-button:hover {
    background: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.4);
}

/* App Download Badges Section */
.app-download-section {
    background: #1a1a2e;
    padding: 48px 24px;
    text-align: center;
    margin-top: 48px;
    border-radius: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.app-download-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.app-store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge-link {
    display: inline-flex;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.store-badge-img {
    height: 44px;
    width: auto;
    display: block;
}

/* Google Play badge has extra padding built in — compensate */
.google-play-badge {
    height: 65px;
    margin-top: -10px;
    margin-bottom: -10px;
}


.social-links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 120px;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.05);
}

.social-icon svg {
    width: 40px;
    height: 40px;
}

.facebook-icon {
    background: #1877f2;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.line-icon {
    background: #00c300;
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-platform {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.2;
}

.social-handle {
    font-size: 0.875rem;
    font-weight: 400;
    color: #718096;
    line-height: 1.2;
}

/* Responsive Design for Promotional Section */
@media (max-width: 768px) {
    .promotional-contact-section {
        padding: 60px 0;
    }

    .promotional-banner {
        margin-bottom: 60px;
        padding: 20px;
    }

    .promo-content {
        flex-direction: column;
        gap: 12px;
    }

    .promo-text,
    .promo-link {
        font-size: 1rem;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }

    .contact-section {
        margin-bottom: 50px;
    }

    .social-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .promotional-banner {
        padding: 16px;
    }

    .promo-text,
    .promo-link {
        font-size: 0.875rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-button {
        width: 100%;
        max-width: 300px;
    }

    .social-links {
        gap: 30px;
        flex-direction: row;
        justify-content: space-around;
    }

    .social-item {
        max-width: 100px;
        gap: 12px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
    }

    .social-icon svg {
        width: 30px;
        height: 30px;
    }

    .social-platform {
        font-size: 1rem;
    }

    .social-handle {
        font-size: 0.75rem;
    }
}

/* FitFuel Custom Navbar */
.fitfuel-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fitfuel-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Sticky Promotional Banner */
.promotional-banner-sticky {
    background-color: #ffde5c;
    /* Lighter yellow */
    width: 100%;
    padding: 6px 16px;
    /* Decrease padding to make it thinner */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.promotional-banner-sticky .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Adjust sticky header when banner is serving as top bar */
.fitfuel-header {}


@media (max-width: 600px) {
    .promo-content {
        flex-direction: column;
        gap: 4px;
    }

}

/* Full-width Background Hero */
.fitfuel-hero-bg {
    position: relative;
    width: 100%;
    min-height: 75vh;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
}

/* Left-to-right dark gradient overlay so text is readable */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Text content sits above the overlay */
.hero-bg-content {
    position: relative;
    z-index: 2;
    padding: 80px 8%;
    max-width: 620px;
}

.hero-bg-content .hero-main-title {
    color: #ffffff;
}

.hero-bg-content .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991px) {
    .fitfuel-hero-bg {
        background-position: center center;
        min-height: 70vh;
    }

    .hero-bg-overlay {
        background: rgba(0, 0, 0, 0.65);
    }

    .hero-bg-content {
        padding: 60px 24px;
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .promo-content {
        flex-direction: column;
        gap: 4px;
    }

    .promotional-banner-sticky+.fitfuel-header {
        top: 90px;
    }

    .fitfuel-hero-bg {
        min-height: 80vh;
    }

    .hero-bg-content {
        padding: 48px 20px;
    }
}

.vitatrade-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo-item img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}