:root {
    
    /* Brand Colors */
    --bg-hero: #BFD6C6; /* Sage/Mint Green */
    --bg-body: #FDFBF7; /* Off-white / Cream */
    --bg-card: #F2F6E8; /* Very light yellow-green */
    --bg-pill: #ffffff;
    
    --text-dark: #2A3B2A; /* Dark Jungle Green */
    --text-muted: #6B7C6B;
    
    --primary: #4A6741; /* Olive Green */
    --primary-hover: #3A5233;
    --accent: #E67E22; /* Carrot Orange for CTAs */
    --white: #ffffff;
    
    /* Spacing System */
    --section-spacing: 96px;
    --section-spacing-sm: 64px;
    --card-padding: 32px;
    
    /* Layout & Borders */
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(42, 59, 42, 0.04);
    --shadow-md: 0 12px 32px rgba(42, 59, 42, 0.08);
    --shadow-lg: 0 20px 48px rgba(42, 59, 42, 0.12);
    --shadow-float: 20px 20px 60px rgba(42, 59, 42, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* --- Resets & Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    /* New nice BG */
    background-image: 
        radial-gradient(at 0% 0%, rgba(191, 214, 198, 0.3) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(235, 243, 224, 0.4) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility to ensure text-center works if bootstrap grid excludes it */
.text-center {
    text-align: center !important;
}

/* Accessibility Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-200 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-300 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; }

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.75rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, transform 0.2s ease;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px; /* Fixed height for consistency */
    padding: 0 36px;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 103, 65, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 103, 65, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    height: 40px;
    padding: 0 20px;
    font-size: 0.9rem;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    height: 42px;
    padding: 0 24px;
    font-size: 0.9rem;
}

.badge-pill {
    background-color: rgba(255,255,255,0.8);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 24px;
    color: var(--primary);
    border: 1px solid rgba(74, 103, 65, 0.15);
    backdrop-filter: blur(8px);
}

/* --- Navbar --- */
.navbar {
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: padding 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    letter-spacing: -0.03em;
}

.logo-leaf {
    color: var(--primary);
    font-size: 0.9rem;
    position: absolute;
    top: 0;
    right: -12px;
    transform: rotate(45deg);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    opacity: 0.75;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:not(.active)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-extra {
    margin-left: 12px;
    font-size: 0.85rem !important;
    background: rgba(74, 103, 65, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--primary) !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    font-size: 1.25rem;
    color: var(--text-dark);
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--accent);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--white);
}

/* --- Hero Section --- */
.hero {
    background-color: var(--bg-hero);
    min-height: 90vh;
    padding-top: 80px;
    padding-bottom: 120px; /* Increased bottom padding for overlap */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 40%);
}

.hero p.hero-sub {
    margin-bottom: 40px;
    max-width: 520px;
    font-size: 1.15rem;
    color: #2c3e2c;
    font-weight: 500;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.4);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-item i { font-size: 1.1rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(0,0,0,0.1); }

/* Hero Visuals */
.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plate-container {
    position: relative;
    width: 600px;
    height: 600px;
    animation: float 6s ease-in-out infinite;
}

.main-plate {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-float);
    z-index: 5;
    position: relative;
}

.leaf-float {
    position: absolute;
    width: 80px;
    opacity: 0.8;
}

.leaf-1 { top: -40px; left: -40px; transform: rotate(-15deg); }

.floating-item {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    font-size: 1.8rem;
    color: #d32f2f;
    z-index: 6;
    animation: float 5s ease-in-out infinite reverse;
}

.floating-item.tomato { top: 60px; left: 40px; }
.floating-item.leaf { 
    bottom: 80px; 
    right: 20px; 
    color: var(--primary); 
    width: 50px; 
    height: 50px; 
    font-size: 1.2rem;
}

.floating-card {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    z-index: 7;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    min-width: 150px;
    border: 1px solid rgba(0,0,0,0.05);
}

.fc-title { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; letter-spacing: 0.5px; }
.fc-val { font-weight: 700; color: var(--primary); font-size: 1.25rem; margin-bottom: 8px; line-height: 1; }
.progress-bar { width: 100%; height: 6px; background: #eee; border-radius: 3px; overflow: hidden; }
.progress-fill { width: 70%; height: 100%; background: var(--accent); border-radius: 3px; }

/* --- Global Section Spacing --- */
section {
    padding: var(--section-spacing) 0;
}

/* --- Features Pill Bar (Restored) --- */
.features-bar-section {
    position: relative;
    margin-top: -60px; /* Pull up to overlap hero */
    z-index: 10;
    padding-top: 0;
    padding-bottom: 40px;
}

.features-pill {
    background-color: var(--white);
    border-radius: 100px;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.feature-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: 0.3s;
}

.feature-item:hover .icon-box { background-color: var(--primary); color: white; transform: rotate(10deg); }

.feature-item .text h5 { margin-bottom: 2px; font-size: 1rem; }
.feature-item .text span { font-size: 0.85rem; color: var(--text-muted); }

.feature-divider { width: 1px; height: 50px; background-color: #eee; }

/* --- How It Works --- */
.how-it-works-section { background-color: transparent; }

.process-line {
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(to right, #ddd 0, #ddd 12px, transparent 12px, transparent 24px);
    z-index: 1;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    padding: 24px 16px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.step-card:hover { transform: translateY(-5px); }

/* Make step number visible */
.step-number {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    font-family: var(--font-mono);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    line-height: 28px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-icon {
    width: 88px;
    height: 88px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-card);
}

.step-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
.step-card p { font-size: 1rem; line-height: 1.6; color: var(--text-muted); }

/* --- About Section --- */
.about-section { background-color: white; }

.about-list {
    list-style: none;
    margin-bottom: 32px;
}

.about-list li {
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    color: var(--text-dark);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-card);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: white;
    padding: 24px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: float 5s ease-in-out infinite;
    border: 1px solid rgba(0,0,0,0.05);
}

.experience-badge .years { display: block; font-size: 2.25rem; font-weight: 700; color: var(--accent); line-height: 1; }
.experience-badge .text { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-top: 4px; }

.bg-blob {
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: #E0EBD4;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    top: -20px;
    left: 20px;
    animation: blob 8s ease-in-out infinite;
}

/* --- Menu & Card Standardization --- */
.menu-section { background-color: #fafafa; }

/* Generic Card Base */
.menu-card, .chef-card, .pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.menu-card {
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(74, 103, 65, 0.2);
}

.menu-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-img img { transform: scale(1.08); }

.badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-tag.best-seller { background-color: #FFB400; }
.badge-tag.high-protein { background-color: #FF5722; }
.badge-tag.low-carb { background-color: #4CAF50; }

.menu-content {
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.menu-meta i { color: var(--accent); margin-right: 6px; }

.menu-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.menu-card p { font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; line-height: 1.5; }

.nutrition-preview {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    border: 1px solid #eee;
}

.nutrition-preview strong { color: var(--text-dark); }

/* --- Nutrition Section --- */
.nutrition-section { background-color: var(--bg-card); }

.nutrition-list li { margin-bottom: 20px; font-size: 1.05rem; }

.nutrition-card-visual {
    background: white;
    border: 3px solid var(--text-dark);
    padding: 32px;
    font-family: var(--font-mono);
    max-width: 350px;
    margin: 32px;
    box-shadow: 12px 12px 0 rgba(42, 59, 42, 0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.nutrition-card-visual:hover { transform: rotate(0deg) scale(1.02); }

.nutri-header { font-size: 2.25rem; font-weight: 900; line-height: 1; margin-bottom: 8px; border-bottom: 1px solid black; }
.nutri-divider { height: 1px; background: #ddd; margin: 8px 0; }
.nutri-divider.bold { height: 8px; background: black; margin: 12px 0; }

.nutri-row { display: flex; justify-content: space-between; font-size: 0.95rem; padding: 4px 0; }
.nutri-row.bold { font-weight: 700; font-size: 1.05rem; }
.nutri-row.indent { padding-left: 20px; }
.nutri-row.highlight { background: #f0f0f0; padding: 6px; margin: 6px 0; border-radius: 4px; }

/* --- Pricing Section --- */
.pricing-section { background-color: white; }

.pricing-card {
    padding: 48px 32px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    background: #FDFBF7;
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pop-tag {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(74, 103, 65, 0.3);
}

.plan-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.plan-meals { color: var(--primary); font-weight: 600; margin-bottom: 24px; font-size: 1.1rem; }
.plan-price { font-size: 3rem; font-weight: 700; color: var(--text-dark); line-height: 1; margin-bottom: 8px; }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; }

.plan-features { list-style: none; padding: 0; margin: 0 0 32px 0; text-align: left; }
.plan-features li { margin-bottom: 16px; display: flex; gap: 12px; font-size: 1rem; color: var(--text-dark); }
.plan-features li i { color: var(--primary); margin-top: 5px; flex-shrink: 0; }
.plan-features hr { border: 0; border-top: 1px solid #eee; margin: 24px 0; }

/* --- Chefs Section --- */
.chefs-section { background: #fafafa; }

.chef-card {
    border: none;
    background: transparent;
    overflow: visible;
}

.chef-img-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-md);
}

.chef-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chef-card:hover .chef-img-container img { transform: scale(1.05); }

.chef-info { text-align: center; }
.chef-info h4 { margin-bottom: 4px; font-size: 1.35rem; }
.chef-info .role { display: block; color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 0.5px; }
.chef-info .bio { font-size: 0.95rem; color: var(--text-muted); padding: 0 16px; }

/* --- App Section --- */
.app-section {
    padding: 0;
    background-color: var(--primary);
    color: white;
    overflow: hidden;
    margin-top: 80px;
}

.app-wrapper {
    padding: 80px 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.app-content h2 { font-size: 3rem; margin-bottom: 24px; }
.app-content h2, .app-content p { color: white; }
.app-content .section-subtitle { color: rgba(255,255,255,0.8); }

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.app-features-list li {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.app-features-list i { background: rgba(255,255,255,0.2); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

.app-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-store:hover { background: #222; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-store i { font-size: 1.75rem; }
.store-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-text span { font-size: 0.7rem; opacity: 0.8; }
.store-text strong { font-size: 1rem; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

.app-phone-img {
    max-width: 85%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    transform: rotate(-6deg) translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.app-section:hover .app-phone-img { transform: rotate(0) translateY(0) scale(1.02); }

/* --- FAQ Section --- */
.faq-section { background: transparent; }

.faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    background: white;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

details summary {
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
}

details summary::-webkit-details-marker { display: none; }

details summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--primary);
}

details[open] summary { background: rgba(74, 103, 65, 0.03); color: var(--primary); }
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-content {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    line-height: 1.7;
    animation: fadeInUp 0.3s ease;
}

/* --- Footer --- */
.bottom-cta-section { 
    position: relative; 
    padding: 0; /* Remove default section padding to fix spacing issues */
}

.wave-separator {
    display: block;
    width: 100%;
    height: auto;
    background: #4a6741;
    margin-bottom: -1px;
}

.cta-content { background-color: #F0F5E6; padding-bottom: 0; }
.cta-inner { padding-bottom: 80px; max-width: 760px; }
.cta-inner h2 { margin-bottom: 24px; }

.subscription-bar {
    background-color: white;
    display: flex;
    padding: 10px;
    border-radius: 60px;
    margin-top: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.subscription-bar:focus-within { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

.sub-input {
    border: none;
    flex-grow: 1;
    padding: 0 24px;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
    color: var(--text-dark);
}

.main-footer {
    padding: 64px 0 32px;
    background-color: white;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
}

.main-footer h6 {
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.main-footer ul li { margin-bottom: 14px; }
.main-footer ul li a { color: var(--text-muted); font-size: 0.95rem; }
.main-footer ul li a:hover { color: var(--primary); padding-left: 6px; }

.contact-info li { display: flex; gap: 12px; align-items: flex-start; }
.contact-info i { color: var(--primary); margin-top: 4px; }

.social-icons { display: flex; gap: 16px; margin-top: 24px; }

.social-icons a {
    width: 44px;
    height: 44px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(74, 103, 65, 0.3);
}

.copyright { border-top: 1px solid rgba(0,0,0,0.05); }

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    :root {
        --section-spacing: 64px;
    }
    
    .navbar-container { padding: 0 16px; }
    .nav-links { display: none; }
    
    .hero {
        padding-top: 40px;
        min-height: auto;
        text-align: center;
        flex-direction: column;
        background-image: none;
    }

    .hero h1 { font-size: 2.75rem; }
    .hero p.hero-sub { margin: 0 auto 32px; font-size: 1.05rem; }
    
    .hero-actions { justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
    
    .hero-trust-strip {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        background: rgba(255,255,255,0.8);
    }
    .trust-divider { display: none; }

    .plate-container { width: 100%; max-width: 350px; height: 350px; margin: 0 auto; }
    .leaf-float { display: none; }
    .floating-card { bottom: 0; left: 50%; transform: translateX(-50%); width: 200px; }

    /* Features Pill Mobile */
    .features-pill {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 32px;
        border-radius: 24px;
    }
    
    .feature-item { width: 100%; justify-content: flex-start; }
    .feature-divider { width: 100%; height: 1px; }

    .about-img { width: 100%; height: auto; margin-top: 48px; }
    .experience-badge { padding: 16px; top: 20px; right: 20px; }
    .experience-badge .years { font-size: 1.5rem; }

    .step-card { margin-bottom: 32px; }
    .process-line { display: none; }

    .pricing-card.featured { transform: scale(1); margin: 20px 0; }
    
    .app-phone-img { margin-top: 48px; transform: rotate(0) translateY(0); max-width: 90%; }
    .app-content { text-align: center; }
    .app-buttons { justify-content: center; }
    
    .subscription-bar { flex-direction: column; padding: 24px; border-radius: 24px; gap: 16px; }
    .sub-input { border-bottom: 1px solid #eee; padding-bottom: 16px; text-align: center; }
    .btn-primary { width: 100%; }
}

@media (max-width: 576px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    
    .hero-trust-strip { gap: 16px; }
    
    .pricing-card { padding: 32px 20px; }
    .plan-price { font-size: 2.5rem; }
    
    .app-buttons { flex-direction: column; }
    .btn-store { width: 100%; justify-content: center; }
}

/* --- Calculator Page Styles --- */
.hero-small {
    padding: 120px 0 60px;
    background-color: var(--bg-hero);
    text-align: center;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2) 0%, transparent 40%);
}

.calculator-section {
    padding-top: 0;
    margin-top: -40px;
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

.calculator-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s ease;
    background-color: #fafafa;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(74, 103, 65, 0.1);
}

/* Radio Group Cards */
.radio-group {
    display: flex;
    gap: 16px;
}

.radio-card {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    transition: 0.3s ease;
    background: #fafafa;
}

.radio-card input:checked + .card-content {
    border-color: var(--primary);
    background-color: var(--bg-card);
    color: var(--primary);
}

.radio-card:hover .card-content {
    border-color: var(--primary);
}

/* Result Card */
.result-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(74, 103, 65, 0.1);
}

.result-card.hidden { display: none; }

.result-card.placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    text-align: center;
    align-items: center;
    color: var(--text-muted);
}

.result-card.placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #ddd;
}

.result-header { text-align: center; margin-bottom: 32px; }
.result-header span { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; font-weight: 700; color: var(--text-muted); }
.result-header h2 { font-size: 3.5rem; color: var(--primary); margin: 0; font-family: var(--font-mono); }

.macros-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.macro-item {
    text-align: center;
    flex: 1;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.macro-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.macro-val { display: block; font-weight: 700; font-size: 1.2rem; color: var(--text-dark); font-family: var(--font-mono); }
.macro-bar { height: 4px; background: #eee; border-radius: 2px; margin-top: 8px; width: 100%; overflow: hidden; }
.macro-bar .fill { height: 100%; border-radius: 2px; }

.recommendation-box {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.recommendation-box h5 { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.recommendation-box p { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }

@media (max-width: 992px) {
    .calculator-container { padding: 24px; }
    .hero-small { padding-top: 100px; }
}

/* --- Start Eating Page Styles --- */
.start-eating-section {
    padding: 60px 0;
    min-height: 100vh;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    margin-right: 12px;
    font-family: var(--font-mono);
}

/* Plan Radio Cards */
.plan-selection-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-radio {
    cursor: pointer;
    position: relative;
    width: 100%;
}

.plan-radio input {
    position: absolute;
    opacity: 0;
}

.plan-card-content {
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 24px;
    background: white;
    transition: all 0.3s ease;
}

.plan-radio input:checked + .plan-card-content {
    border-color: var(--primary);
    background-color: rgba(74, 103, 65, 0.03);
    box-shadow: 0 0 0 1px var(--primary);
}

.plan-card-content.featured {
    border-color: var(--accent);
}

.pop-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.price small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}

.micro-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    display: flex;
    gap: 16px;
    color: var(--text-dark);
}

.micro-list i { color: var(--primary); margin-right: 6px; }

/* Preference Grid */
.preference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.pref-checkbox {
    cursor: pointer;
    position: relative;
}

.pref-checkbox input {
    position: absolute;
    opacity: 0;
}

.pref-checkbox span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: white;
    transition: 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    justify-content: center;
}

.pref-checkbox input:checked + span {
    background-color: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* Order Summary */
.order-summary-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-top: 16px;
}

.secure-badge {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
}

.secure-badge i { color: var(--primary); margin-right: 6px; }

@media (max-width: 992px) {
    .order-summary-card { position: static; margin-top: 40px; }
}