/* ============================================================
   FoxiFood – Promotional Website Stylesheet
   Brand: Primary #5a57a5 (purple), Accent #f37722 (orange)
   Font: Outfit (Google Fonts)
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body { font-family: 'Outfit', system-ui, -apple-system, sans-serif; font-size: 1rem; line-height: 1.6; color: #3c3c3c; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: #f37722; text-decoration: none; transition: color 0.2s; }
a:hover { color: #8d4514; }
ul { list-style: none; }
h1, h2, h3, h4 { color: #3c3c3c; line-height: 1.3; }
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.skip-link { position: absolute; top: -40px; left: 0; background: #f37722; color: #fff; padding: 8px 16px; z-index: 100; transition: top 0.2s; border-radius: 0 0 8px 0; }
.skip-link:focus { top: 0; }

/* ---- HEADER / NAV ---- */
.header { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__logo img { height: 56px; width: auto; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle-bar { display: block; width: 24px; height: 2px; background: #3c3c3c; margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 0.25rem; }
.nav__link { color: #555; font-weight: 500; font-size: 0.95rem; padding: 0.5rem 0.75rem; border-radius: 8px; transition: all 0.2s; display: flex; align-items: center; gap: 4px; }
.nav__link:hover { color: #3c3c3c; background: #f5f5f5; }
.nav__chevron { transition: transform 0.2s; }
.nav__item--dropdown { position: relative; }
.nav__dropdown { position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #eee; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); padding: 0.5rem; min-width: 260px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s; }
.nav__item--dropdown:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__item--dropdown:hover .nav__chevron { transform: rotate(180deg); }
.nav__dropdown li a { display: block; padding: 0.625rem 0.875rem; color: #555; font-size: 0.9rem; border-radius: 8px; transition: all 0.15s; }
.nav__dropdown li a:hover { background: #f5f5f5; color: #f37722; }
.nav__actions { display: flex; gap: 0.5rem; align-items: center; }
.nav__lang { display: flex; gap: 0.25rem; margin-left: 0.5rem; }
.nav__lang-link { opacity: 0.5; transition: opacity 0.2s; padding: 4px; border-radius: 4px; }
.nav__lang-link:hover, .nav__lang-link--active { opacity: 1; }
.nav__lang-link img { width: 20px; height: 15px; border-radius: 2px; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.625rem 1.5rem; border-radius: 8px; font-weight: 500; font-size: 0.95rem; border: 2px solid transparent; cursor: pointer; transition: all 0.2s; text-decoration: none; font-family: inherit; }
.btn--primary { background: #f37722; color: #fff; border-color: #f37722; }
.btn--primary:hover { background: rgba(243,119,34,0.9); border-color: rgba(243,119,34,0.9); color: #fff; }
.btn--outline { background: transparent; color: #5a57a5; border-color: #5a57a5; }
.btn--outline:hover { background: #5a57a5; color: #fff; border-color: #5a57a5; }
.btn--ghost { background: transparent; color: #555; border-color: #e5e5e5; }
.btn--ghost:hover { border-color: #5a57a5; color: #5a57a5; }
.btn--lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.375rem 0.75rem; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ---- HERO ---- */
.hero { background: url("../img/backgrounds/bg-main.b6274990b42b.jpg") center/cover no-repeat; border-radius: 0; margin: 0; padding: 0; min-height: 420px; display: flex; align-items: center; position: relative; overflow: hidden; }
@media (min-width: 768px) {
    .hero { border-radius: 24px; margin: 2.5rem auto; max-width: 1280px; min-height: 380px; }
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(90,87,165,0.7), rgba(243,119,34,0.45)); border-radius: inherit; }
.hero__layout { position: relative; z-index: 1; display: flex; align-items: center; gap: 2rem; padding: 3rem 1.5rem; }
.hero__content { flex: 1; text-align: left; }
.hero__visual { flex: 0 0 auto; display: none; }
.hero__visual img { max-height: 420px; width: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); }
@media (min-width: 768px) {
    .hero__layout { padding: 3rem 2rem; }
    .hero__visual { display: block; }
}
@media (min-width: 1024px) {
    .hero__layout { padding: 3rem 3rem; }
    .hero__visual img { max-height: 480px; }
}
.hero__title { font-size: 2rem; color: #fff; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .hero__title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3rem; } }
.hero__subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; line-height: 1.7; font-weight: 300; }
.hero__actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero__actions .btn--primary { background: #f37722; border-color: #f37722; }
.hero__actions .btn--ghost { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.hero__actions .btn--ghost:hover { background: rgba(255,255,255,0.25); border-color: #fff; color: #fff; }
.hero__stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero__stat { text-align: center; }
.hero__stat-value { display: block; font-size: 2rem; font-weight: 800; color: #fff; }
.hero__stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 300; }

/* ---- SECTIONS ---- */
.section__title { text-align: center; margin-bottom: 0.75rem; color: #3c3c3c; }
.section__subtitle { text-align: center; color: #555; font-size: 1.1rem; max-width: 600px; margin: 0 auto 3rem; font-weight: 300; }

/* ---- FEATURES ---- */
.features { padding: 5rem 0; background: #fff; }
.features__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card { display: block; padding: 2rem; border: 1px solid #e5e5e5; border-radius: 12px; transition: all 0.25s; color: #3c3c3c; }
.feature-card:hover { border-color: #f37722; box-shadow: 0 8px 30px rgba(243,119,34,0.08); transform: translateY(-2px); color: #3c3c3c; }
.feature-card__icon { color: #f37722; margin-bottom: 1rem; }
.feature-card__title { margin-bottom: 0.5rem; font-weight: 600; }
.feature-card__text { font-size: 0.9rem; color: #666; line-height: 1.6; font-weight: 300; }

/* ---- PRICING SECTION ---- */
.pricing-section { padding: 5rem 0; background: #f5f5f5; }
.pricing__card { max-width: 480px; margin: 0 auto 3rem; background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); overflow: hidden; border: 2px solid #f37722; }
.pricing__header { background: linear-gradient(135deg, #f37722, #8d4514); color: #fff; padding: 2rem; text-align: center; }
.pricing__plan { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.pricing__price { margin-top: 0.5rem; }
.pricing__amount { font-size: 3.5rem; font-weight: 800; }
.pricing__period { font-size: 1.1rem; opacity: 0.9; font-weight: 300; }
.pricing__features { padding: 2rem; }
.pricing__features li { padding: 0.5rem 0; padding-left: 1.75rem; position: relative; font-size: 0.95rem; }
.pricing__features li::before { content: '✓'; position: absolute; left: 0; color: #16a853; font-weight: 700; }
.pricing__features + .btn { margin: 0 2rem 2rem; width: calc(100% - 4rem); }
.pricing__comparison { max-width: 700px; margin: 0 auto; }
.pricing__comparison-title { text-align: center; margin-bottom: 1.5rem; font-size: 1.5rem; }
.pricing__table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.pricing__table th, .pricing__table td { padding: 1rem; text-align: center; border-bottom: 1px solid #eee; }
.pricing__table th { background: #5a57a5; color: #fff; font-weight: 600; }
.pricing__table th:first-child { text-align: left; }
.pricing__table td:first-child { text-align: left; font-weight: 500; }
.pricing__table tbody tr:hover { background: #f5f5f5; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 5rem 0; background: #fff; }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { padding: 2rem; border: 1px solid #e5e5e5; border-radius: 12px; }
.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-card__star { color: #ddd; }
.testimonial-card__star--filled { color: #f37722; }
.testimonial-card__text { font-size: 0.95rem; color: #555; margin-bottom: 1.25rem; font-style: italic; line-height: 1.7; font-weight: 300; }
.testimonial-card__author strong { display: block; color: #3c3c3c; }
.testimonial-card__author span { font-size: 0.85rem; color: #888; }

/* ---- FAQ ---- */
.faq { padding: 5rem 0; background: #f5f5f5; }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid #e5e5e5; }
.faq__question { padding: 1.25rem 0; font-weight: 600; font-size: 1.05rem; cursor: pointer; list-style: none; color: #3c3c3c; display: flex; justify-content: space-between; align-items: center; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; font-size: 1.5rem; color: #f37722; font-weight: 300; transition: transform 0.2s; }
details[open] .faq__question::after { content: '−'; }
.faq__answer { padding: 0 0 1.25rem; color: #555; line-height: 1.7; font-size: 0.95rem; font-weight: 300; }

/* ---- FOOD SHOWCASE ---- */
.food-showcase { padding: 5rem 0; background: #f5f5f5; }
.food-showcase__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.food-showcase__item { border-radius: 12px; overflow: hidden; }
.food-showcase__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.food-showcase__item:hover img { transform: scale(1.03); }
.food-showcase__item--wide { grid-column: span 2; }
.food-showcase__item--wide img { max-height: 320px; }
@media (min-width: 768px) {
    .food-showcase__grid { grid-template-columns: repeat(4, 1fr); }
    .food-showcase__item--wide { grid-column: span 2; grid-row: span 2; }
    .food-showcase__item--wide img { max-height: none; }
}

/* ---- CTA SECTION ---- */
.cta-section { padding: 5rem 0; background: linear-gradient(135deg, #f37722, #8d4514); color: #fff; overflow: hidden; }
.cta-section__layout { display: flex; align-items: center; gap: 3rem; }
.cta-section__text-col { flex: 1; text-align: center; }
.cta-section__visual { flex: 0 0 auto; display: none; }
.cta-section__visual img { max-height: 280px; width: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2)); }
@media (min-width: 768px) {
    .cta-section__visual { display: block; }
    .cta-section__text-col { text-align: left; }
}
.cta-section__title { color: #fff; margin-bottom: 0.75rem; }
.cta-section__text { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; font-weight: 300; }
.cta-section .btn--primary { background: #5a57a5; color: #fff; border-color: #5a57a5; }
.cta-section .btn--primary:hover { background: #463794; border-color: #463794; }

/* ---- PAGE CONTENT ---- */
.page-content { padding: 3rem 0 5rem; }
.page-content__header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.page-content__title { margin-bottom: 1rem; }
.page-content__intro { font-size: 1.15rem; color: #555; line-height: 1.7; font-weight: 300; }

/* ---- BENEFITS ---- */
.benefits { margin-bottom: 3rem; }
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.benefit-card { padding: 1.5rem; border: 1px solid #e5e5e5; border-radius: 12px; transition: all 0.2s; }
.benefit-card:hover { border-color: #f37722; box-shadow: 0 4px 16px rgba(243,119,34,0.06); }
.benefit-card__title { color: #5a57a5; margin-bottom: 0.5rem; font-weight: 600; }
.benefit-card__text { font-size: 0.9rem; color: #555; line-height: 1.6; font-weight: 300; }

/* ---- PAGE CTA ---- */
.page-cta { text-align: center; padding: 3rem 0; margin-top: 3rem; border-top: 1px solid #e5e5e5; }
.page-cta h2 { margin-bottom: 0.5rem; }
.page-cta p { color: #555; margin-bottom: 1.5rem; font-weight: 300; }

/* ---- PAGE FAQ ---- */
.page-faq { margin-top: 3rem; }
.page-faq h2 { margin-bottom: 1.5rem; }

/* ---- RELATED PAGES ---- */
.related-pages { margin-top: 3rem; }
.related-pages h2 { margin-bottom: 1rem; }
.related-pages__grid { display: flex; gap: 1rem; flex-wrap: wrap; }
.related-pages__link { padding: 0.75rem 1.5rem; border: 1px solid #e5e5e5; border-radius: 8px; color: #555; font-weight: 500; transition: all 0.2s; }
.related-pages__link:hover { border-color: #f37722; color: #f37722; }

/* ---- BREADCRUMBS ---- */
.breadcrumbs { padding: 1rem 0; background: #f5f5f5; border-bottom: 1px solid #e5e5e5; }
.breadcrumbs__list { display: flex; gap: 0.5rem; font-size: 0.85rem; flex-wrap: wrap; }
.breadcrumbs__item + .breadcrumbs__item::before { content: '/'; margin-right: 0.5rem; color: #999; }
.breadcrumbs__item a { color: #666; }
.breadcrumbs__item a:hover { color: #f37722; }
.breadcrumbs__item--active { color: #3c3c3c; font-weight: 500; }

/* ---- CATEGORY LIST ---- */
.category-list { padding: 3rem 0 5rem; }
.category-list__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.category-card { display: block; padding: 2rem; border: 1px solid #e5e5e5; border-radius: 12px; color: #3c3c3c; transition: all 0.25s; }
.category-card:hover { border-color: #f37722; box-shadow: 0 8px 30px rgba(243,119,34,0.08); transform: translateY(-2px); color: #3c3c3c; }
.category-card__title { margin-bottom: 0.5rem; }
.category-card__text { font-size: 0.9rem; color: #666; margin-bottom: 1rem; line-height: 1.6; font-weight: 300; }
.category-card__link { color: #f37722; font-weight: 600; font-size: 0.9rem; }

/* ---- CONTACT ---- */
.contact-hero { text-align: center; margin-bottom: 3rem; }
.contact-hero__title { font-size: 2.5rem; color: #1a1a2e; margin-bottom: 1rem; }
.contact-hero__intro { font-size: 1.15rem; color: #555; max-width: 600px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.contact-card { padding: 2.5rem 2rem; border: 1px solid #e5e5e5; border-radius: 16px; text-align: center; transition: all 0.3s; background: #fff; }
.contact-card:hover { border-color: #5a57a5; box-shadow: 0 8px 30px rgba(90,87,165,0.1); transform: translateY(-4px); }
.contact-card__icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.contact-card--email .contact-card__icon { background: rgba(90,87,165,0.1); color: #5a57a5; }
.contact-card--web .contact-card__icon { background: rgba(243,119,34,0.1); color: #f37722; }
.contact-card--demo .contact-card__icon { background: rgba(52,168,83,0.1); color: #34a853; }
.contact-card__title { font-size: 1.2rem; margin-bottom: 0.75rem; color: #1a1a2e; font-weight: 600; }
.contact-card__desc { color: #666; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; font-weight: 300; }
.contact-card__link { color: #5a57a5; font-weight: 600; font-size: 0.95rem; text-decoration: none; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.contact-card__link:hover { border-bottom-color: #5a57a5; }
.contact-card--web .contact-card__link { color: #f37722; }
.contact-card--web .contact-card__link:hover { border-bottom-color: #f37722; }
.contact-card--demo .contact-card__link { color: #34a853; }
.contact-card--demo .contact-card__link:hover { border-bottom-color: #34a853; }

.contact-reasons { margin-bottom: 4rem; }
.contact-reasons__title { text-align: center; font-size: 1.75rem; color: #1a1a2e; margin-bottom: 2.5rem; }
.contact-reasons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.contact-reason { text-align: center; padding: 1.5rem; }
.contact-reason__number { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #5a57a5, #7b78c9); color: #fff; font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.contact-reason__heading { font-size: 1.1rem; color: #1a1a2e; margin-bottom: 0.75rem; font-weight: 600; }
.contact-reason__text { color: #666; font-size: 0.9rem; line-height: 1.6; font-weight: 300; }

.contact-cta { background: linear-gradient(135deg, #5a57a5 0%, #3d3b7a 100%); border-radius: 20px; padding: 3rem; margin-bottom: 2rem; }
.contact-cta__inner { display: flex; align-items: center; gap: 2rem; }
.contact-cta__mascot { width: 128px; height: 128px; flex-shrink: 0; }
.contact-cta__text { flex: 1; }
.contact-cta__text h2 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-cta__text p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.6; font-weight: 300; }
.contact-cta .btn--primary { background: #f37722; border-color: #f37722; flex-shrink: 0; }

/* ---- ABOUT HERO ---- */
.about-hero { display: flex; align-items: center; gap: 3rem; margin-bottom: 3rem; }
.about-hero__text { flex: 1; }
.about-hero__text .page-content__title { text-align: left; }
.about-hero__text .page-content__intro { text-align: left; }
.about-hero__visual { flex: 0 0 auto; display: none; }
.about-hero__visual img { max-width: 260px; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
@media (min-width: 768px) { .about-hero__visual { display: block; } }

/* ---- ABOUT ---- */
.about-company { margin-bottom: 3rem; }
.about-company__info { padding: 2rem; background: #f5f5f5; border-radius: 12px; }
.about-company__info p { margin-bottom: 0.25rem; color: #555; }

/* ---- ROI ---- */
.roi-section { margin: 3rem 0; }
.roi-section h2 { text-align: center; margin-bottom: 2rem; }
.roi-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.roi-card { padding: 2rem; border: 1px solid #e5e5e5; border-radius: 12px; transition: all 0.2s; }
.roi-card:hover { border-color: #5a57a5; }
.roi-card h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.roi-card ul { list-style: none; }
.roi-card li { padding: 0.375rem 0; color: #555; font-size: 0.95rem; }
.roi-card li strong { color: #16a853; }

/* ---- COMPARISON ---- */
.comparison-section { margin-bottom: 3rem; }
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.comparison-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 600px; }
.comparison-table th, .comparison-table td { padding: 1rem; text-align: center; border-bottom: 1px solid #eee; font-size: 0.95rem; }
.comparison-table th { background: #5a57a5; color: #fff; font-weight: 600; }
.comparison-table th:first-child { text-align: left; background: #5a57a5; }
.comparison-table__feature { text-align: left !important; font-weight: 500; color: #3c3c3c; }
.comparison-table__highlight { background: rgba(243,119,34,0.06); }
.comparison-table thead .comparison-table__highlight { background: #f37722; }
.comparison-table tbody tr:hover { background: #f9f9f9; }
.comparison-yes { color: #16a853; font-weight: 700; font-size: 1.1rem; }
.comparison-no { color: #dc3545; font-weight: 700; font-size: 1.1rem; }

.savings-section { margin: 3rem 0; text-align: center; }
.savings-section h2 { margin-bottom: 0.5rem; }
.savings-section__subtitle { color: #555; font-weight: 300; margin-bottom: 2rem; }
.savings-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.savings-card { padding: 2rem; border-radius: 12px; border: 1px solid #e5e5e5; text-align: center; }
.savings-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.savings-card__amount { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.savings-card ul { text-align: left; }
.savings-card li { padding: 0.375rem 0; color: #555; font-size: 0.9rem; }
.savings-card--foxifood { border-color: #16a853; background: rgba(22,168,83,0.04); }
.savings-card--foxifood .savings-card__amount { color: #16a853; }
.savings-card--competitor { border-color: #dc3545; background: rgba(220,53,69,0.04); }
.savings-card--competitor .savings-card__amount { color: #dc3545; }
.savings-section__result { font-size: 1.15rem; color: #3c3c3c; margin-top: 1rem; }
.savings-section__result strong { color: #16a853; }

/* ---- LEGAL ---- */
.legal-page { padding: 3rem 0 5rem; }
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page__updated { color: #888; font-size: 0.9rem; margin-bottom: 2rem; }
.legal-page section { margin-bottom: 2rem; }
.legal-page section h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.legal-page section p { color: #555; line-height: 1.7; font-weight: 300; }

/* ---- PAGE CONTENT HEADER ICON ---- */
.page-content__header-icon { max-width: 160px; margin: 0 auto 1.5rem; }

/* ---- ERROR PAGE ---- */
.error-page { display: flex; align-items: center; justify-content: center; min-height: 80vh; text-align: center; }
.error-page__mascot { max-width: 180px; margin: 0 auto 1.5rem; }
.error-page h1 { font-size: 6rem; color: #f37722; margin-bottom: 0.5rem; font-weight: 800; }
.error-page p { font-size: 1.2rem; color: #555; margin-bottom: 2rem; font-weight: 300; }

/* ---- FOOTER ---- */
.footer { background: #5a57a5; color: #fff; padding: 3.5rem 0 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer__brand img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 300; }
.footer__heading { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; font-weight: 600; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: opacity 0.2s; }
.footer__links a:hover { color: #fff; opacity: 1; }
.footer__keywords { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.15); margin-bottom: 1.5rem; }
.footer__tag { font-size: 0.75rem; color: rgba(255,255,255,0.6); padding: 0.25rem 0.75rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.85rem; }
.footer__bottom p { color: rgba(255,255,255,0.7); }
.footer__lang { display: flex; gap: 1rem; }
.footer__lang a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer__lang a:hover { color: #fff; }

/* ---- FOCUS / ACCESSIBILITY ---- */
a:focus-visible, .btn:focus-visible, .nav__link:focus-visible, summary:focus-visible { outline: 2px solid #f37722; outline-offset: 2px; }
.nav__item--dropdown:focus-within .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.feature-card:focus-within { border-color: #f37722; box-shadow: 0 8px 30px rgba(243,119,34,0.08); transform: translateY(-2px); }
.category-card:focus-within { border-color: #f37722; box-shadow: 0 8px 30px rgba(243,119,34,0.08); transform: translateY(-2px); }

/* ---- COOKIE BANNER ---- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #463794; color: #fff; padding: 1rem; z-index: 100; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.cookie-banner__content { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-banner__content p { font-size: 0.85rem; color: rgba(255,255,255,0.9); flex: 1; font-weight: 300; }
.cookie-banner__actions { display: flex; gap: 0.5rem; }
.cookie-banner__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav { height: 64px; }
    .nav__logo img { height: 44px; }
    .nav__toggle { display: block; }
    .nav__menu { position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: #fff; flex-direction: column; padding: 1.5rem; transform: translateX(100%); transition: transform 0.3s; z-index: 40; overflow-y: auto; gap: 1rem; box-shadow: -4px 0 20px rgba(0,0,0,0.1); }
    .nav__menu.is-open { transform: translateX(0); }
    .nav__list { flex-direction: column; width: 100%; gap: 0; }
    .nav__link { padding: 0.75rem 0; font-size: 1rem; color: #555; }
    .nav__link:hover { color: #f37722; background: none; }
    .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1rem; min-width: 0; }
    .nav__actions { width: 100%; flex-direction: column; gap: 0.75rem; }
    .nav__actions .btn { width: 100%; justify-content: center; }
    .nav__lang { justify-content: center; margin: 0.5rem 0 0; }

    .hero__layout { text-align: center; }
    .hero__actions { justify-content: center; }
    .hero__stats { gap: 1.5rem; justify-content: center; }

    .food-showcase__grid { grid-template-columns: 1fr; }
    .food-showcase__item--wide { grid-column: span 1; }

    .cta-section__layout { flex-direction: column; text-align: center; }

    .about-hero { flex-direction: column; text-align: center; }
    .about-hero__text .page-content__title, .about-hero__text .page-content__intro { text-align: center; }

    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer__keywords { justify-content: center; }

    .pricing__table { font-size: 0.85rem; }
    .pricing__table th, .pricing__table td { padding: 0.75rem 0.5rem; }

    .savings-cards { grid-template-columns: 1fr; }
    .savings-card__amount { font-size: 1.5rem; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table th, .comparison-table td { padding: 0.5rem 0.375rem; }

    .contact-hero__title { font-size: 1.75rem; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-reasons__grid { grid-template-columns: 1fr; gap: 1rem; }
    .contact-cta { padding: 2rem 1.5rem; }
    .contact-cta__inner { flex-direction: column; text-align: center; }
    .contact-cta__mascot { width: 80px; height: 80px; }
}

/* ---- TABLET ---- */
@media (min-width: 768px) and (max-width: 1023px) {
    .savings-cards { grid-template-columns: repeat(2, 1fr); }
    .comparison-table { font-size: 0.85rem; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---- PRINT ---- */
@media print {
    .header, .footer, .cookie-banner, .skip-link, .nav__toggle { display: none; }
    body { color: #000; background: #fff; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
    .hero { min-height: auto; padding: 2rem 0; }
    .hero::before { display: none; }
    .hero__title, .hero__subtitle { color: #000; }
}
