/* ================================
   LuminShade Volt - Nature Organic Design
   CSS Reset & Base Styles
   ================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2C3E2F;
  background-color: #F9FBF8;
  overflow-x: hidden;
}

/* ================================
   Typography - Nature Organic Style
   ================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E2F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #4A5D4E;
  font-size: 16px;
}

a {
  color: #2D7A4F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #236B42;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #4A5D4E;
}

strong {
  color: #2C3E2F;
  font-weight: 600;
}

/* ================================
   Container & Layout
   ================================ */

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

/* ================================
   Header - Nature Organic Style
   ================================ */

header {
  background: linear-gradient(135deg, #E9F5F0 0%, #F9FBF8 100%);
  border-bottom: 2px solid rgba(45, 122, 79, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(45, 122, 79, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2D7A4F;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2D7A4F, #F4A261);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ================================
   Mobile Menu Toggle Button
   ================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #2D7A4F;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #236B42;
  transform: scale(1.1);
}

/* ================================
   Mobile Menu Overlay
   ================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #E9F5F0 0%, #F9FBF8 100%);
  z-index: 1000;
  padding: 80px 30px 40px;
  box-shadow: -4px 0 20px rgba(45, 122, 79, 0.2);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2D7A4F;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(45, 122, 79, 0.1);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2D7A4F;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: block;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(45, 122, 79, 0.1);
  border-color: #2D7A4F;
  transform: translateX(5px);
}

/* ================================
   Buttons - Organic Nature Style
   ================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2D7A4F 0%, #236B42 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #236B42 0%, #1D5A37 100%);
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #2D7A4F;
  border: 2px solid #2D7A4F;
}

.btn-secondary:hover {
  background: #2D7A4F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ================================
   Hero Section - Nature Inspired
   ================================ */

.hero,
.page-hero,
.error-hero,
.legal-hero,
.thank-you-hero {
  background: linear-gradient(135deg, #E9F5F0 0%, #F9FBF8 50%, #FFF5EB 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 122, 79, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.subheadline {
  font-size: 20px;
  color: #4A5D4E;
  margin-bottom: 24px;
  line-height: 1.6;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 14px;
  color: #2D7A4F;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(45, 122, 79, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(45, 122, 79, 0.2);
}

/* ================================
   Breadcrumb Navigation
   ================================ */

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #4A5D4E;
}

.breadcrumb a {
  color: #2D7A4F;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #F4A261;
}

/* ================================
   Sections - Organic Spacing
   ================================ */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4A5D4E;
}

/* ================================
   Card Grids - Flexbox Layout
   ================================ */

.value-grid,
.services-grid,
.category-grid,
.recipe-grid,
.principle-grid,
.subscription-grid,
.premium-grid,
.steps-grid,
.testimonial-grid,
.link-grid,
.contact-grid,
.tips-grid,
.myth-fact-grid,
.values-grid,
.achievements-grid,
.action-grid,
.article-grid,
.explore-grid,
.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* ================================
   Cards - Nature Organic Style
   ================================ */

.value-card,
.service-card,
.category-card,
.recipe-card,
.principle-card,
.subscription-card,
.premium-card,
.tip-card,
.myth-fact-card,
.link-card,
.contact-card,
.article-card,
.explore-card,
.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  border: 2px solid rgba(45, 122, 79, 0.1);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.category-card:hover,
.recipe-card:hover,
.principle-card:hover,
.link-card:hover,
.contact-card:hover,
.article-card:hover,
.explore-card:hover,
.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.15);
  border-color: #2D7A4F;
}

.value-card h3,
.service-card h3,
.category-card h3,
.recipe-card h3,
.principle-card h3,
.link-card h3,
.contact-card h3,
.article-card h3,
.explore-card h3,
.action-card h3 {
  color: #2D7A4F;
  margin-bottom: 12px;
}

.subscription-card,
.premium-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 320px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 24px;
  border: 2px solid rgba(45, 122, 79, 0.15);
  box-shadow: 0 6px 16px rgba(45, 122, 79, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.subscription-card.featured {
  border-color: #2D7A4F;
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(45, 122, 79, 0.2);
}

.subscription-card:hover,
.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(45, 122, 79, 0.2);
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(244, 162, 97, 0.4);
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #2D7A4F;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.subscription-card ul,
.premium-card ul,
.benefits-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.subscription-card ul li,
.premium-card ul li,
.benefits-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #4A5D4E;
  margin-bottom: 8px;
}

.subscription-card ul li::before,
.premium-card ul li::before,
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D7A4F;
  font-weight: 700;
  font-size: 18px;
}

/* ================================
   Steps Section
   ================================ */

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2D7A4F 0%, #236B42 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

/* ================================
   Testimonials - Enhanced Readability
   ================================ */

.testimonials {
  background: linear-gradient(135deg, #E9F5F0 0%, #F9FBF8 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  border: 2px solid rgba(45, 122, 79, 0.1);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.08);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card p {
  color: #2C3E2F;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #2D7A4F;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 0;
}

.rating {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  color: #F4A261;
  font-weight: 600;
}

/* ================================
   CTA Banners
   ================================ */

.cta-banner,
.recipe-library-cta,
.workshop-cta,
.trial-offer,
.newsletter-signup,
.contact-cta {
  background: linear-gradient(135deg, #2D7A4F 0%, #236B42 100%);
  color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.recipe-library-cta::before,
.workshop-cta::before,
.trial-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.recipe-library-cta h2,
.workshop-cta h2,
.trial-offer h2,
.newsletter-signup h2,
.contact-cta h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p,
.recipe-library-cta p,
.workshop-cta p,
.trial-offer p,
.newsletter-signup p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 24px;
}

.guarantee,
.trial-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* ================================
   404 Error Page
   ================================ */

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #2D7A4F;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.3;
}

.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   Thank You Page
   ================================ */

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2D7A4F 0%, #236B42 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.3);
}

.response-time {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: rgba(45, 122, 79, 0.05);
  border-radius: 12px;
  color: #2D7A4F;
  font-weight: 600;
}

/* ================================
   Legal Pages
   ================================ */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(45, 122, 79, 0.1);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.05);
}

.text-section h2 {
  color: #2D7A4F;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(45, 122, 79, 0.2);
}

.text-section h3 {
  color: #2D7A4F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.myth {
  color: #E76F51;
  font-weight: 600;
  margin-bottom: 8px;
}

.fact {
  color: #2D7A4F;
  font-weight: 600;
}

/* ================================
   Contact & Forms
   ================================ */

.form-placeholder,
.newsletter-form {
  background: rgba(45, 122, 79, 0.05);
  padding: 40px;
  border-radius: 16px;
  border: 2px dashed rgba(45, 122, 79, 0.3);
  text-align: center;
  margin-top: 32px;
}

.privacy-notice {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

.meta {
  font-size: 14px;
  color: #4A5D4E;
  margin-top: 12px;
}

.recipe-meta {
  font-size: 14px;
  color: #2D7A4F;
  font-weight: 600;
  margin-top: 12px;
}

/* ================================
   Footer - Nature Organic
   ================================ */

footer {
  background: linear-gradient(135deg, #2C3E2F 0%, #1D2B20 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #FFFFFF;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ================================
   Cookie Consent Banner
   ================================ */

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2C3E2F 0%, #1D2B20 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(45, 122, 79, 0.3);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all-cookies {
  background: linear-gradient(135deg, #2D7A4F 0%, #236B42 100%);
  color: #FFFFFF;
}

#accept-all-cookies:hover {
  background: linear-gradient(135deg, #236B42 0%, #1D5A37 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.4);
}

#reject-all-cookies {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#reject-all-cookies:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

#cookie-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  border: none;
  padding: 12px 16px;
}

#cookie-settings:hover {
  color: #FFFFFF;
}

/* ================================
   Cookie Settings Modal
   ================================ */

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 47, 0.95);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(45, 122, 79, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #2D7A4F;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(45, 122, 79, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(45, 122, 79, 0.1);
}

.cookie-category h3 {
  color: #2D7A4F;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #4A5D4E;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-weight: 600;
  color: #2C3E2F;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

#save-cookie-settings,
#close-cookie-modal {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-settings {
  background: linear-gradient(135deg, #2D7A4F 0%, #236B42 100%);
  color: #FFFFFF;
}

#save-cookie-settings:hover {
  background: linear-gradient(135deg, #236B42 0%, #1D5A37 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.4);
}

#close-cookie-modal {
  background: transparent;
  color: #2D7A4F;
  border: 2px solid #2D7A4F;
}

#close-cookie-modal:hover {
  background: rgba(45, 122, 79, 0.1);
}

/* ================================
   Responsive Design - Mobile First
   ================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  /* Show mobile menu button, hide desktop nav */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Hero sections */
  .hero,
  .page-hero,
  .error-hero,
  .legal-hero,
  .thank-you-hero {
    padding: 60px 20px;
  }
  
  /* Error code */
  .error-code {
    font-size: 80px;
  }
  
  /* Cards - full width on mobile */
  .value-card,
  .service-card,
  .category-card,
  .recipe-card,
  .principle-card,
  .subscription-card,
  .premium-card,
  .tip-card,
  .myth-fact-card,
  .link-card,
  .contact-card,
  .article-card,
  .explore-card,
  .action-card,
  .step,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* CTA sections */
  .cta-banner,
  .recipe-library-cta,
  .workshop-cta,
  .trial-offer {
    padding: 40px 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 calc(50% - 6px);
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* Text sections */
  .text-section {
    padding: 24px;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators span {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card,
  .category-card,
  .tip-card,
  .myth-fact-card,
  .link-card,
  .article-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-card,
  .recipe-card,
  .principle-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ================================
   Animations & Transitions
   ================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.value-card,
.service-card {
  animation: fadeIn 0.6s ease-out;
}

/* ================================
   Utility Classes
   ================================ */

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

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ================================
   Print Styles
   ================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  a {
    text-decoration: underline;
  }
}