* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--brand-dark);
    background-color: var(--mint);
    direction: rtl;
    text-align: right;
}

/* Site-wide background */
.site-bg {
    position: relative;
    background-color: var(--mint);
}

.site-bg::before {
    content: none; /* remove old field-soft global background */
}

/* No parallax on mobile to avoid jank */
@media (max-width: 1023px) {
    .site-bg::before {
        background-attachment: scroll;
    }
}

@media (min-width: 1024px) {
    .site-bg::before {
        background-attachment: fixed;
    }
}

/* Colors - Green Theme */
:root {
    --sky-1: #bfe3f5;
    --sky-2: #8ad0ee;
    --hill-1: #b7d7a8;
    --hill-2: #9ed27b;
    --brand-dark: #1f2d1d;
    --brand-muted: #5a6d5a;
    --mint: #E4F5EC;
    
    /* Legacy colors for compatibility */
    --charcoal: #1f2d1d;
    --ivory: #FAFAFA;
    --primary-green: #4a7c59;
    --light-green: #E4F5EC;
    --accent-green: #6b9c6b;
    --gray: #5a6d5a;
    --dark-green: #1f2d1d;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(120, 126, 136, 0.2);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.leaf {
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50% 0;
    transform: rotate(-45deg);
}

.leaf:first-child {
    background: var(--accent-green);
    transform: rotate(-45deg) scale(0.9);
}

.freesh-pill {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-cta {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--accent-green);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Remove old patterns */
[class*="grid"], .pattern, .hero-bg {
    background-image: none !important;
}

/* Hero text styling */
.hero h1, .hero h2, .hero h3 {
    color: var(--brand-dark);
    text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.hero p, .hero .hero-note {
    color: var(--brand-muted);
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.fresh-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.apple-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--dark-green);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-icon::before {
    content: '';
    position: absolute;
    top: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.15rem;
    height: 0.4rem;
    background: var(--dark-green);
    border-radius: 50%;
}

.egg-icon {
    width: 2rem;
    height: 2.5rem;
    background: var(--dark-green);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.egg-icon::before {
    content: '';
    position: absolute;
    left: -0.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.2rem;
    height: 0.4rem;
    background: var(--dark-green);
    border-radius: 50%;
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-green);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--ivory);
    transform: scale(1.05);
}

.hero-note {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Sections */
.section {
    backdrop-filter: saturate(1) blur(0px);
    background: rgba(255,255,255,.60);
    border-radius: 20px;
    padding: clamp(24px, 5vw, 56px);
    margin: clamp(12px, 2.5vw, 28px) auto;
    max-width: 1120px;
}

.section.alt {
    background: rgba(255,255,255,.78);
}

.section.transparent {
    background: transparent;
}

.section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--charcoal);
    direction: rtl;
}

.section p {
    font-size: 1.125rem;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    direction: rtl;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(120, 126, 136, 0.1);
    transition: box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    text-align: center;
}

.feature-card p {
    color: var(--gray);
    text-align: center;
    margin: 0;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.step p {
    color: var(--gray);
    text-align: center;
    margin: 0;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(120, 126, 136, 0.1);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: var(--primary-green);
}

.popular-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.pricing-card .subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.price-period {
    color: var(--gray);
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.pricing-features li::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.75rem;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(120, 126, 136, 0.2);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    background: var(--accent-green);
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer p {
    color: rgba(250, 250, 250, 0.8);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section {
    animation: fadeInUp 0.8s ease-out;
}

/* Revert to previous hero styles */
.hero-consumer { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: clamp(48px, 7vw, 80px) 0; border-radius: 0; overflow: hidden; }
.hero-consumer::before{ content:""; position:absolute; inset:0; background: url('assets/chickens.png') center/cover no-repeat; filter: saturate(1.05); }
.hero-consumer::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(15,23,42,0.45), rgba(15,23,42,0.70)); }
.hero-consumer .content{ position:relative; z-index:1; text-align:center !important; color:#fff; max-width: 920px; margin-left:auto; margin-right:auto; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.hero-consumer h1{ font-size: clamp(2rem, 6vw, 4rem); font-weight:800; margin:0 0 12px; color:#fff; text-shadow: 0 8px 30px var(--shadow), 0 2px 8px rgba(0,0,0,.6); text-align:center !important; }
.hero-consumer p{ font-size: clamp(1rem, 2.6vw, 1.25rem); margin:0 0 24px; color: rgba(255,255,255,.92); text-shadow: 0 1px 4px rgba(0,0,0,.6); text-align:center !important; }
.btn-pink{ background:#E85D75; color:#fff; padding:.85rem 1.4rem; border-radius:12px; text-decoration:none; display:inline-block; font-weight:600; }
.btn-pink:hover{ background:#d54e66; }
/* Shop cards */
.shop-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:16px; }
.shop-card{ background:#fff; border:1px solid rgba(0,0,0,0.06); border-radius:16px; overflow:hidden; box-shadow:0 4px 10px rgba(0,0,0,0.05); }
.shop-card img{ width:100%; height:200px; object-fit:cover; display:block; }
.shop-card .body{ padding:16px; }
.shop-card h3{ margin:0 0 6px; font-size:1.25rem; }
.shop-card p{ margin:0 0 12px; color:#556; }


