/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

:root {
    --primary-color: #2d6a5c;
    --primary-dark: #245548;
    --secondary-color: #3d7a6c;
    --accent-color: #4d8a7c;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f7f8f9;
    --bg-lighter: #ffffff;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient-1: linear-gradient(135deg, #2d6a5c 0%, #3d7a6c 100%);
    --gradient-2: linear-gradient(135deg, #3d7a6c 0%, #4d8a7c 100%);
    --gradient-3: linear-gradient(135deg, #2d6a5c 0%, #245548 100%);
    --gradient-hero: linear-gradient(135deg, #f0f4f3 0%, #e8efed 100%);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.nav-logo {
    height: 65px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-brand h1 {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.btn-nav-primary):hover {
    color: var(--primary-color);
}

.nav-links a:not(.btn-nav-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav-primary):hover::after {
    width: 100%;
}

.btn-nav-primary {
    background-color: var(--primary-color);
    color: #ffffff !important;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(45, 106, 92, 0.2);
    text-decoration: none;
}

.btn-nav-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-nav-primary::after {
    display: none;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    padding: 0.6rem 1rem;
}

.btn-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 2rem 0 3rem;
    background: var(--white);
    position: relative;
    overflow: visible;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 max(20px, calc((100vw - 1200px) / 2));
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.hero-right {
    position: relative;
    padding: 5rem 5rem 5rem 0;
    background: linear-gradient(135deg, rgba(190, 222, 215, 0.3) 0%, rgba(210, 232, 227, 0.3) 100%);
    border-radius: 24px;
    margin-right: -2rem;
    display: flex;
    align-items: center;
    min-height: 700px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 450px;
    margin: 0;
    padding: 16px;
    overflow: hidden;
    border-radius: 50%;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(190, 222, 215, 0.5) 0%, rgba(210, 232, 227, 0.5) 100%);
    z-index: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.95);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
  
}

.hero-image:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.floating-badge .badge-emoji {
    font-size: 2rem;
}

.floating-badge .badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.floating-badge .badge-text small {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.floating-badge .badge-text strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.badge-calories {
    top: 18%;
    right: 5%;
}

.badge-ingredients {
    bottom: 25%;
    left: -10%;
}

.trust-badge {
    text-align: left;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.trust-badge .emoji {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
    text-align: left;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: left;
    max-width: 100%;
    margin: 0;
    line-height: 1.7;
}

.btn-hero-cta {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.trust-users {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.user-avatars {
    display: flex;
    align-items: center;
    margin-left: -0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid var(--white);
    margin-left: -0.5rem;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-users p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
}

.trust-users strong {
    font-weight: 700;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem auto;
    flex-wrap: wrap;
    max-width: 900px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.badge-emoji {
    font-size: 2.5rem;
}

.badge-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.badge-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.press-section {
    margin-top: 3rem;
    text-align: center;
}

.press-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.press-logos {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.press-logos span {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.press-logos span:hover {
    opacity: 1;
}

.recipe-badge {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.recipe-icon {
    font-size: 2rem;
}

.recipe-badge strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Meal Plan Generator */
.meal-plan-generator {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.meal-plan-generator h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.generator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form-control {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calories-input,
.meals-input {
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    width: 100px;
    text-align: center;
    font-weight: 600;
}

.calories-input:focus,
.meals-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.link-text {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: normal;
}

.link-text:hover {
    text-decoration: underline;
}

.macros-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.macro-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.macro-item label {
    font-weight: 600;
    color: var(--text-dark);
}

.macro-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.macro-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.macro-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

.account-prompt {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.account-prompt a {
    color: var(--secondary-color);
    text-decoration: none;
}

.account-prompt a:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.meal-plan-result {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 2px dashed var(--border-color);
}

.meal-plan-result.hidden {
    display: none;
}

.meal-plan-result h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.meal-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.meal-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.meal-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* As Seen On Section */
.as-seen-on {
    padding: 3rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.as-seen-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    opacity: 0.7;
}

.logo-text.vogue {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.logo-text.healthline {
    font-weight: 400;
}

.logo-text.mens-health {
    font-style: italic;
    font-weight: 400;
}

.logo-text.insider {
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--white);
}

/* More Than Just Section */
.more-than-just {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.more-than-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.more-than-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.more-than-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
}

.highlight-green {
    color: var(--primary-color);
    font-weight: 700;
}

.more-than-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-list-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.more-than-right {
    display: flex;
    justify-content: center;
}

.daily-summary-card-large {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
}

.summary-header-large {
    margin-bottom: 2rem;
}

.summary-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.summary-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.summary-status {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.summary-grade-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.macro-bars-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.macro-bar-item-large {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.macro-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.macro-values {
    font-size: 0.95rem;
    color: var(--text-light);
}

.macro-values strong {
    color: var(--text-dark);
    font-weight: 700;
}

.progress-bar-large {
    width: 100%;
    height: 14px;
    background-color: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-large {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-out;
}

.progress-fill-large.protein {
    background: linear-gradient(90deg, #9ca3af 0%, #6b7280 100%);
}

.progress-fill-large.carbs {
    background: linear-gradient(90deg, #ffb380 0%, #ff8c42 100%);
}

.progress-fill-large.fats {
    background: linear-gradient(90deg, #ffa05c 0%, #ff6b35 100%);
}

.summary-tip-large {
    background: #fef3c7;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.summary-tip-large p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.summary-tip-large strong {
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.step-card {
    text-align: left;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 3rem;
    height: 2px;
    background: #d0d0d0;
    z-index: 0;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 68px;
    height: 68px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.features-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.features-images {
    position: relative;
}

.feature-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

.feature-img-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 100%;
    max-height: 480px;
}

.feature-img-2 {
    grid-column: 2;
    grid-row: 1 / 2;
}

.recipes-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 10;
}

.recipes-badge h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.recipes-badge p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

.features-content {
    padding-left: 2rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-checkmark {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(45, 106, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Progress Tracking Showcase */
.progress-showcase {
    margin-top: 5rem;
    text-align: center;
}

.progress-showcase h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.showcase-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.daily-summary-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid var(--border-color);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.summary-header h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    flex-shrink: 0;
}

.summary-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.summary-grade {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: auto;
}

.macro-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.macro-bar-item label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.macro-bar-item label span {
    color: var(--text-light);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-out;
}

.progress-fill.protein {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.progress-fill.carbs {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.progress-fill.fats {
    background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
}

.summary-tip {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.tip-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.summary-tip p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Diet Plans Section */
.diet-plans {
    padding: 5rem 0;
    background-color: #1a1a1a;
    color: var(--white);
}

.diet-plans .section-title {
    color: var(--white);
}

.diet-plans .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.diet-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.diet-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
}

.diet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.diet-card-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-repeat: no-repeat;
    will-change: background-image;
    contain: paint;
}

.diet-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.diet-card-overlay h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--white);
    font-weight: 600;
}

.diet-card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.diet-link {
    display: block;
    color: #7ed9c0;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.btn-explore-diets {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-explore-diets:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Ratings Section */
.ratings {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.rating-badge {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.rating-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 0.5rem 0;
}

.rating-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.press-mentions {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.press-mentions p {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
    flex-grow: 1;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Community Love Section */
.community-love {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.love-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.love-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.stars-rating {
    font-size: 1.5rem;
    color: #FFD700;
    letter-spacing: 0.2rem;
}

.love-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.love-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.love-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.author-achievement {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Why Taastee Section */
.why-taastee {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.comparison-table {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1.2fr 1.2fr;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
    align-items: stretch;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--white);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.comparison-header .comparison-feature {
    background: var(--white);
}

.comparison-header .comparison-col {
    background: var(--white);
    font-size: 1.1rem;
}

.comparison-header .highlight-col {
    background: #ffe4d6;
}

.comparison-feature {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
    padding: 1.8rem 2rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.comparison-col {
    text-align: center;
    font-size: 1.4rem;
    padding: 1.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.highlight-col {
    background: #fff0e6;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, #2d6a5c 0%, #245548 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.1rem;
}

.cta-heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: var(--white);
}

.cta-heading-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #a8e6d3;
    font-weight: 400;
}

.final-cta .cta-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2.5rem;
    max-width: 700px;
}

.btn-cta-white {
    background-color: var(--white);
    color: #1a4d3e;
    border: none;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.btn-cta-white:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-benefit {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.cta-benefits span {
    display: flex;
    align-items: center;
}

.cta-legal-text {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.5;
}

.cta-legal-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s;
}

.cta-legal-link:hover {
    color: #ffffff;
}

/* How Taastee Helps Section */
.how-helps {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.helps-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.helps-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.helps-feature-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.helps-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.helps-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.helps-feature-item strong {
    color: var(--text-dark);
    font-size: 1rem;
}

/* Professionals Section */
.professionals {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.professionals h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.professionals h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.professionals p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.professionals .btn-link {
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
}

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

/* Footer */
.footer {
    background-color: #f9fafb;
    color: var(--text-dark);
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    max-width: 350px;
}

.footer-column h4 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column ul li {
    margin: 0;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-column a:hover {
    color: var(--text-dark);
}

/* Plan Page Styles */
.plan-hero {
    padding: 4rem 0 3rem;
    background: var(--white);
}

.plan-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a4d3e;
    margin-bottom: 1rem;
}

.plan-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 900px;
    line-height: 1.7;
}

.plan-days {
    padding: 4rem 0;
    background: var(--white);
}

.day-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.day-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.day-intro h3 {
    font-size: 2rem;
    color: #1a4d3e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.macros-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.macro-badge {
    background: #d5f2e8;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a4d3e;
    text-align: center;
    font-weight: 600;
}

.macro-badge strong {
    font-weight: 700;
    margin-right: 0.3rem;
}

.day-intro p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tips-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
    color: #4a5568;
}

.tips-list li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.meals-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meal-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #d5f2e8;
    border-radius: 12px;
}

.meal-icon {
    font-size: 2.5rem;
    min-width: 3rem;
    background: #eef9f5;
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
}

.meal-content h4 {
    font-size: 1.1rem;
    color: #1a4d3e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.meal-desc {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.meal-benefits {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.meal-benefits strong {
    color: #1a4d3e;
    font-weight: 700;
}

.day-calories {
    text-align: right;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.disclaimer-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.disclaimer-section h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.disclaimer-section p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Design */

/* Tablet and Small Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-grid {
        gap: 3rem;
    }

    .features-two-column {
        gap: 3rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .diet-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Privacy & Terms Pages */
    .privacy-container,
    .terms-container {
        padding: 3rem 1.5rem;
    }

    .privacy-content,
    .terms-content {
        padding: 2rem;
    }

    .privacy-title,
    .terms-title {
        font-size: 2.5rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.6rem;
    }

    /* Plan Pages */
    .plan-hero {
        padding: 3rem 1.5rem;
    }

    .plan-title {
        font-size: 2.5rem;
    }

    .plan-days {
        padding: 0 1.5rem;
    }

    .meal-card {
        padding: 1.5rem;
    }
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablets */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar .container {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .nav-links a:not(.btn-nav-primary) {
        font-size: 1rem;
    }

    .btn-nav-primary {
        margin-top: 1rem;
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
        text-align: center;
        border: none;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .as-seen-label {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .logos-grid {
        gap: 1.5rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    /* Hero adjustments for tablet */
    .hero-image-container {
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-right {
        margin: 0 auto;
    }

    .floating-badge {
        padding: 0.8rem 1.2rem;
    }

    .floating-badge .badge-emoji {
        font-size: 1.5rem;
    }

    .floating-badge .badge-text small {
        font-size: 0.65rem;
    }

    .floating-badge .badge-text strong {
        font-size: 0.85rem;
    }

    .badge-calories {
        top: 8%;
        right: 2%;
    }

    .badge-ingredients {
        bottom: 12%;
        left: 2%;
    }

    .hero-badges {
        flex-direction: column;
        gap: 1rem;
        max-width: 400px;
    }

    .badge-item {
        width: 100%;
        justify-content: flex-start;
    }

    .press-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .meal-plan-generator {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

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

    .steps-grid,
    .features-grid,
    .testimonials-grid,
    .love-cards-grid,
    .helps-features {
        grid-template-columns: 1fr;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .diet-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .diet-card-image {
        height: 280px;
    }

    .diet-card-overlay h3 {
        font-size: 1.4rem;
    }

    .more-than-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .more-than-title {
        font-size: 2.2rem;
    }

    .feature-icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.5rem;
    }

    .daily-summary-card-large {
        padding: 2rem;
    }

    .summary-grade-large {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 0.9rem;
    }

    .comparison-feature {
        font-size: 0.95rem;
        padding: 1.5rem 1rem;
    }

    .comparison-col {
        font-size: 1.1rem;
        padding: 1.5rem 0.8rem;
    }

    .comparison-header .comparison-col {
        font-size: 0.95rem;
    }

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

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }

    .final-cta {
        padding: 4rem 0;
    }

    .cta-card {
        border-radius: 30px;
        padding: 3rem 2rem;
    }

    .cta-heading {
        font-size: 2.2rem;
    }

    .final-cta .cta-description {
        font-size: 1.05rem;
    }

    .btn-cta-white {
        padding: 1rem 2.5rem;
        font-size: 1.05rem;
    }

    .cta-benefits {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .daily-summary-card {
        padding: 2rem;
    }

    .summary-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-grade {
        margin-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-tagline {
        max-width: 100%;
    }

    /* Privacy & Terms Pages - Tablet */
    .privacy-container,
    .terms-container {
        padding: 2.5rem 1rem;
    }

    .privacy-content,
    .terms-content {
        padding: 1.5rem;
    }

    .privacy-title,
    .terms-title {
        font-size: 2rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.4rem;
    }

    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.1rem;
    }

    .privacy-section p,
    .terms-section p,
    .privacy-section li,
    .terms-section li {
        font-size: 0.95rem;
    }

    .privacy-table,
    .important-box {
        padding: 1rem;
    }

    /* Plan Pages - Tablet */
    .plan-hero {
        padding: 2.5rem 1rem;
    }

    .plan-title {
        font-size: 2rem;
    }

    .plan-subtitle {
        font-size: 1rem;
    }

    .plan-days {
        padding: 0 1rem;
    }

    .day-card {
        padding: 1.5rem;
    }

    .meal-card {
        padding: 1.2rem;
    }

    .meal-icon-container {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .meal-icon {
        font-size: 1.5rem;
    }

    .plan-cta-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand {
        gap: 0.6rem;
    }

    .nav-logo {
        height: 50px;
    }

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

    .nav-links {
        width: 100%;
        max-width: 100%;
    }

    .nav-links a:not(.btn-nav-primary) {
        font-size: 1rem;
    }

    .btn-nav-primary {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .trust-badge .emoji {
        font-size: 1rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .trust-badge {
        margin: 0 auto;
    }

    .btn-hero-cta {
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }

    .trust-users {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .trust-users p {
        font-size: 0.85rem;
    }

    /* Hero Image Container - Mobile */
    .hero-image-container {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-right {
        position: relative;
        padding: 1rem 1rem 1rem 1rem;
        background: linear-gradient(135deg, rgba(190, 222, 215, 0.3) 0%, rgba(210, 232, 227, 0.3) 100%);
        border-radius: 24px;
        margin-right: -2rem;
        display: flex;
        align-items: center;
        min-height: 600px;
        margin: 0 auto;
    }

    .floating-badge {
        padding: 0.6rem 1rem;
    }

    .floating-badge .badge-emoji {
        font-size: 1.2rem;
    }

    .floating-badge .badge-text small {
        font-size: 0.6rem;
    }

    .floating-badge .badge-text strong {
        font-size: 0.75rem;
    }

    /* Better badge positioning on mobile */
    .badge-calories {
        top: 18%;
        right: 0;
    }

    .badge-ingredients {
        bottom: 20%;
        left: 0;
    }

    .badge-item {
        padding: 1.2rem 1.5rem;
    }

    .badge-emoji {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
        border-radius: 14px;
    }
    
    .step-card {
        padding: 2rem;
    }

    .step-card h3 {
        font-size: 1.3rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .diet-cards-grid {
        grid-template-columns: 1fr;
    }

    .diet-card-image {
        height: 300px;
    }

    .diet-card-overlay {
        padding: 1.5rem 1.2rem 1.2rem;
    }

    .diet-card-overlay h3 {
        font-size: 1.5rem;
    }

    .btn-explore-diets {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .meal-plan-generator {
        padding: 1rem;
    }

    .form-group label {
        flex-direction: column;
        align-items: flex-start;
    }

    .calories-input,
    .meals-input {
        width: 100%;
    }

    .testimonial-card,
    .feature-card {
        padding: 1.5rem;
    }

    .features-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-content {
        padding-left: 0;
    }

    .features-title {
        font-size: 2rem;
    }

    .feature-img-1 {
        height: 250px;
        max-height: 250px;
    }

    .recipes-badge h3 {
        font-size: 2rem;
    }

    .recipes-badge p {
        font-size: 0.7rem;
    }

    .final-cta {
        padding: 3rem 0;
    }

    .cta-card {
        border-radius: 24px;
        padding: 2.5rem 1.5rem;
    }

    .cta-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .final-cta .cta-description {
        font-size: 0.95rem;
    }

    .btn-cta-white {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 0.8rem;
        font-size: 0.8rem;
    }

    .progress-showcase h3 {
        font-size: 1.5rem;
    }

    .showcase-subtitle {
        font-size: 1rem;
    }

    .daily-summary-card {
        padding: 1.5rem;
    }

    .summary-header h4 {
        font-size: 1.3rem;
    }

    .summary-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    .summary-grade {
        font-size: 1.5rem;
    }

    .recipe-badge {
        flex-direction: column;
        padding: 1rem;
    }

    .recipe-icon {
        font-size: 1.5rem;
    }

    .recipe-badge strong {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .comparison-feature {
        text-align: center;
        font-weight: 700;
        padding: 1.2rem 1rem 0.5rem;
        background: var(--bg-light);
        font-size: 0.95rem;
    }

    .comparison-col {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
    }

    .comparison-header .comparison-feature {
        background: var(--white);
        padding: 1.2rem 1rem;
    }

    .comparison-header .comparison-col {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .highlight-col {
        border-radius: 0;
    }

    .comparison-row:last-child .comparison-col:last-child {
        border-radius: 0 0 8px 8px;
    }

    .love-card {
        padding: 2rem;
    }

    .helps-content p {
        font-size: 1rem;
    }

    .helps-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .more-than-title {
        font-size: 1.8rem;
    }

    .more-than-subtitle {
        font-size: 1rem;
    }

    .feature-list {
        gap: 1.5rem;
    }

    .feature-list-item {
        gap: 1rem;
    }

    .feature-icon-circle {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .daily-summary-card-large {
        padding: 1.5rem;
    }

    .summary-status {
        font-size: 1.2rem;
    }

    .summary-grade-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .macro-name {
        font-size: 0.9rem;
    }

    .macro-values {
        font-size: 0.85rem;
    }

    .progress-bar-large {
        height: 12px;
    }

    .summary-tip-large {
        padding: 0.9rem 1rem;
    }

    .summary-tip-large p {
        font-size: 0.85rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        gap: 2.5rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.95rem;
    }

    /* Plan Page Responsive */
    .plan-title {
        font-size: 2rem;
    }

    .plan-subtitle {
        font-size: 1rem;
    }

    .day-card {
        padding: 1.5rem;
    }

    .day-header h2 {
        font-size: 1.5rem;
    }

    .meal-card {
        flex-direction: column;
        gap: 1rem;
    }

    .macros-display {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Privacy & Terms Pages - Mobile */
    .privacy-container,
    .terms-container {
        padding: 2rem 1rem;
    }

    .privacy-header,
    .terms-header {
        margin-bottom: 2rem;
    }

    .privacy-title,
    .terms-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .privacy-date,
    .terms-date {
        font-size: 0.9rem;
    }

    .privacy-content,
    .terms-content {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .privacy-section,
    .terms-section {
        margin-bottom: 2rem;
    }

    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }

    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.05rem;
        margin-top: 1.2rem;
    }

    .privacy-section p,
    .terms-section p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .privacy-section ul,
    .privacy-section ol,
    .terms-section ul,
    .terms-section ol {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .privacy-table,
    .important-box,
    .disclaimer-box {
        padding: 1rem;
        margin: 1rem 0;
    }

    .privacy-overview,
    .terms-overview {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    /* Plan Pages - Mobile */
    .plan-hero {
        padding: 2rem 1rem;
    }

    .plan-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .plan-subtitle {
        font-size: 0.95rem;
    }

    .plan-days {
        padding: 0;
    }

    .day-card {
        padding: 1.25rem;
        margin: 0 1rem 1.5rem;
    }

    .day-header h2 {
        font-size: 1.4rem;
    }

    .day-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.9rem;
    }

    .day-intro {
        font-size: 0.9rem;
    }

    .macros-display {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .macro-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .tips-list {
        padding-left: 1.2rem;
    }

    .tips-list li {
        font-size: 0.85rem;
    }

    .meal-card {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .meal-icon-container {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .meal-icon {
        font-size: 1.3rem;
    }

    .meal-content h3 {
        font-size: 1.1rem;
    }

    .meal-desc {
        font-size: 0.85rem;
    }

    .meal-benefits {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .plan-disclaimer {
        font-size: 0.75rem;
        padding: 1rem;
        margin: 1.5rem 1rem;
    }

    .plan-cta-section {
        padding: 2.5rem 1rem;
    }

    .plan-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Improve touch targets for mobile */
    .btn-nav-primary,
    .btn-hero-cta,
    .btn-cta-white,
    .btn-explore-diets,
    .plan-cta-button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Better readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

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

