/* ===== 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: #2D3142;
  background-color: #FAFBF8;
  overflow-x: hidden;
}

/* ===== CREATIVE ARTISTIC TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D5F3F;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #2D5F3F 0%, #4A8B5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2D5F3F, #8B9D83);
  border-radius: 2px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #2D5F3F;
}

h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #4A8B5F;
}

p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #4A5568;
  line-height: 1.8;
}

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

a:hover {
  color: #4A8B5F;
  transform: translateY(-2px);
}

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

li {
  margin-bottom: 10px;
  color: #4A5568;
  font-size: 17px;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* ===== CREATIVE ARTISTIC HEADER ===== */
header {
  background: linear-gradient(135deg, #E8F3E8 0%, #ffffff 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(45, 95, 63, 0.1);
  border-bottom: 3px solid #2D5F3F;
}

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

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

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

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

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

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

.main-nav a:hover {
  color: #4A8B5F;
  transform: translateY(-2px);
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background: linear-gradient(135deg, #2D5F3F, #4A8B5F);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45, 95, 63, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(45, 95, 63, 0.4);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2D5F3F;
  color: #ffffff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #4A8B5F;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #2D5F3F;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: #ffffff;
  border-left-color: #2D5F3F;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(45, 95, 63, 0.15);
}

/* ===== CREATIVE ARTISTIC HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #E8F3E8 0%, #C8E3C8 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #2D5F3F;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 157, 131, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 95, 63, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 22px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge, .trial-badge, .tagline {
  font-size: 16px;
  color: #2D5F3F;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  display: inline-block;
  margin-top: 16px;
  border: 2px solid #2D5F3F;
}

.badge {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #2D3142;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CREATIVE ARTISTIC BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #2D5F3F 0%, #4A8B5F 100%);
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(45, 95, 63, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(45, 95, 63, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: #2D5F3F;
  border: 3px solid #2D5F3F;
  box-shadow: 0 4px 20px rgba(45, 95, 63, 0.15);
}

.btn-secondary:hover {
  background: #E8F3E8;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 25px rgba(45, 95, 63, 0.25);
}

/* ===== CREATIVE ARTISTIC GRID LAYOUTS ===== */
.value-grid, .services-grid, .pricing-grid, .testimonial-grid,
.principles-grid, .collection-grid, .contact-grid, .values-grid,
.stats-grid, .team-list, .action-grid, .filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

/* ===== CREATIVE ARTISTIC CARDS ===== */
.value-item, .service-card, .pricing-card, .testimonial-card,
.principle-item, .collection-card, .contact-option, .value-item,
.stat-item, .team-member, .action-card, .filter-group,
.principle-detail, .service-item, .faq-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(45, 95, 63, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  border: 2px solid transparent;
}

.value-item::before, .service-card::before, .pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2D5F3F, #8B9D83, #4A8B5F);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-item:hover::before, .service-card:hover::before, .pricing-card:hover::before {
  transform: scaleX(1);
}

.value-item:hover, .service-card:hover, .pricing-card:hover,
.collection-card:hover, .action-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 40px rgba(45, 95, 63, 0.2);
  border-color: #2D5F3F;
}

.testimonial-card {
  background: linear-gradient(135deg, #E8F3E8 0%, #ffffff 100%);
  border-left: 5px solid #2D5F3F;
  font-style: italic;
  color: #2D3142;
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #2D5F3F;
  font-style: normal;
  margin-top: 16px;
  font-size: 16px;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #E8F3E8 0%, #C8E3C8 100%);
  border: 3px solid #2D5F3F;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2D5F3F;
  margin: 20px 0;
}

.features-list, .benefits-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.features-list li, .benefits-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4A5568;
  font-size: 16px;
}

.features-list li::before, .benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5F3F;
  font-weight: 700;
  font-size: 20px;
}

.best-for {
  font-size: 14px;
  color: #8B9D83;
  font-style: italic;
  margin-top: 16px;
}

/* ===== SECTIONS ===== */
.value-proposition, .services-overview, .testimonials, .cta-section,
.filter-section, .recipe-collections, .premium-upgrade, .philosophy,
.core-principles, .pricing-table, .expert-team, .mission, .values,
.story, .impact, .consultation-booking, .location, .faq-quick,
.confirmation, .next-actions, .contact-reminder {
  padding: 60px 20px;
  position: relative;
}

.section-intro {
  font-size: 20px;
  color: #4A5568;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.services-overview, .premium-upgrade, .philosophy, .mission {
  background: linear-gradient(135deg, #E8F3E8 0%, #ffffff 100%);
}

.cta-section {
  background: linear-gradient(135deg, #2D5F3F 0%, #4A8B5F 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin: 60px 20px;
  box-shadow: 0 10px 40px rgba(45, 95, 63, 0.3);
}

.cta-section h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section h2::after {
  background: #ffffff;
}

.cta-section p {
  color: #E8F3E8;
  font-size: 20px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.guarantee, .trust-signals, .trust-signal {
  font-size: 15px;
  color: #E8F3E8;
  margin-top: 24px;
  font-style: italic;
}

.rating {
  font-size: 20px;
  font-weight: 700;
  color: #2D5F3F;
  text-align: center;
  margin-top: 32px;
}

/* ===== TEXT-IMAGE SECTIONS ===== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 400px;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(45, 95, 63, 0.1);
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper ul, .content-wrapper ol {
  margin: 20px 0 20px 32px;
}

.content-wrapper li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: #8B9D83;
  font-style: italic;
  margin-top: 8px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-content {
  text-align: center;
  padding: 60px 20px;
}

.thank-you-content h1 {
  font-size: 64px;
  margin-bottom: 24px;
}

.confirmation {
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.confirmation h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.confirmation ul {
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
}

.note {
  font-size: 15px;
  color: #8B9D83;
  font-style: italic;
  margin-top: 24px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #2D5F3F 0%, #1F4A2C 100%);
  color: #E8F3E8;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 5px solid #4A8B5F;
}

.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 h3, .footer-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: #C8E3C8;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a, .footer-legal a {
  color: #C8E3C8;
  font-size: 15px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before, .footer-legal a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
  color: #ffffff;
  padding-left: 20px;
}

.footer-nav a:hover::before, .footer-legal a:hover::before {
  opacity: 1;
  left: 0;
}

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

.footer-bottom p {
  color: #C8E3C8;
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5F3F 0%, #1F4A2C 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #4A8B5F;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  color: #E8F3E8;
  font-size: 15px;
  margin-bottom: 0;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.cookie-btn-accept {
  background: #ffffff;
  color: #2D5F3F;
}

.cookie-btn-accept:hover {
  background: #E8F3E8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cookie-btn-settings {
  background: transparent;
  color: #C8E3C8;
  border: 1px solid #C8E3C8;
}

.cookie-btn-settings:hover {
  background: rgba(200, 227, 200, 0.1);
  color: #ffffff;
  border-color: #ffffff;
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 32px;
  color: #4A5568;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #E8F3E8;
  color: #2D5F3F;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F7F9F7;
  border-radius: 12px;
  border-left: 4px solid #2D5F3F;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
  background-color: #2D5F3F;
}

input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  p { font-size: 16px; }
  
  .hero h1 { font-size: 40px; }
  .hero-subtitle { font-size: 18px; }
  
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  header {
    padding: 15px 0;
  }
  
  .logo img {
    height: 45px;
  }
  
  /* Mobile Sections */
  .hero {
    padding: 60px 20px;
  }
  
  .section, .value-proposition, .services-overview,
  .testimonials, .cta-section, .premium-upgrade {
    padding: 40px 16px;
  }
  
  .cta-section {
    margin: 40px 16px;
    padding: 60px 24px;
  }
  
  .cta-section h2 {
    font-size: 32px;
  }
  
  /* Mobile Cards - Single Column */
  .value-item, .service-card, .pricing-card, .testimonial-card,
  .principle-item, .collection-card, .contact-option, .stat-item,
  .team-member, .action-card, .filter-group, .principle-detail,
  .service-item, .faq-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
  }
  
  /* Mobile Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Mobile Text-Image Sections */
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Mobile Cookie Banner */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  /* Mobile Legal Content */
  .content-wrapper {
    padding: 32px 24px;
  }
  
  /* Mobile Contact Grid */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-option {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero h1 { font-size: 34px; }
  
  .hero {
    padding: 50px 16px;
  }
  
  .value-item, .service-card, .pricing-card,
  .testimonial-card, .collection-card {
    padding: 24px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .mobile-menu {
    max-width: 100%;
    padding: 80px 24px 40px;
  }
  
  .thank-you-content h1 {
    font-size: 48px;
  }
}

/* ===== UTILITIES ===== */
.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; }

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
.btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus,
.mobile-menu-close:focus, .cookie-modal-close:focus {
  outline: 3px solid #4A8B5F;
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid #2D5F3F;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle, .mobile-menu, .cookie-consent-banner,
  .cookie-modal, header, footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .hero {
    background: #fff;
    border: none;
  }
}