/* ===================================
   VitalBalance - Monochrome Sophisticated 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, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ===================================
   Typography - Monochrome Sophisticated
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
  line-height: 1.7;
}

.subheadline {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
  font-weight: 400;
}

.section-subtitle {
  font-size: 16px;
  color: #5a5a5a;
  margin-bottom: 32px;
  text-align: center;
}

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

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

/* ===================================
   Header - Monochrome Sophisticated
   =================================== */

header {
  background-color: #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #ffffff;
  opacity: 0.9;
}

/* ===================================
   Mobile Menu - Sophisticated Slide
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1a1a1a;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #000000;
  z-index: 2500;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

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

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

.mobile-menu-close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: #ffffff;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  opacity: 0.8;
}

/* ===================================
   Buttons - Monochrome Sophisticated
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #000000;
  background-color: transparent;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-primary:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

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

/* ===================================
   Hero Section - Dramatic Monochrome
   =================================== */

.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero .subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero .trust-badge {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

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

.trust-badges .badge {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}

/* ===================================
   Sections - Sophisticated Spacing
   =================================== */

section {
  padding: 60px 20px;
  position: relative;
}



section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
  color: #000000;
}

/* ===================================
   Benefits Grid - Flexbox Layout
   =================================== */

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.benefit-card p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* ===================================
   Services Grid - Flexbox Layout
   =================================== */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 360px;
  padding: 40px 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  position: relative;
  z-index: 2;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .price {
  color: #ffffff;
}

.service-card.featured .btn {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.service-card.featured .btn:hover {
  background-color: #f0f0f0;
}

.service-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  color: #ffffff;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card.featured .badge {
  background-color: #ffffff;
  color: #000000;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-card ul {
  text-align: left;
  margin: 20px 0;
}

.service-card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: #4a4a4a;
  border-bottom: 1px solid #e0e0e0;
}

.service-card.featured ul li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   Steps Grid - Flexbox Layout
   =================================== */

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  max-width: 360px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.step img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: brightness(0);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #000000;
  font-weight: 600;
}

.step p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* ===================================
   Testimonials - Readable Contrast
   =================================== */

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-left: 4px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.customer-name {
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  margin-top: 8px;
  font-style: normal;
}

.rating {
  color: #000000;
  font-size: 18px;
  letter-spacing: 2px;
}

/* ===================================
   Recipe Cards - Flexbox Grid
   =================================== */

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

.recipe-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 250px;
  max-width: 300px;
  padding: 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recipe-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.recipe-card h3 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 12px;
}

.recipe-card .time,
.recipe-card .meta {
  font-size: 13px;
  color: #5a5a5a;
  margin-bottom: 8px;
}

.difficulty {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f0f0f0;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ===================================
   Pricing Cards - Flexbox Layout
   =================================== */

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 260px;
  max-width: 320px;
  padding: 40px 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card:hover {
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured ul li {
  color: #ffffff;
}

.pricing-card.featured .btn {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  color: #ffffff;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card.featured .badge-popular {
  background-color: #ffffff;
  color: #000000;
}

.pricing-card h3 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 16px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: #5a5a5a;
}

.pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.8);
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 18px;
  margin-left: 8px;
}

.features {
  text-align: left;
  margin: 20px 0;
}

.features li {
  padding: 10px 0;
  font-size: 14px;
  color: #4a4a4a;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-card.featured .features li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   Filter Section
   =================================== */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.filter-group h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.filter-btn:hover {
  border-color: #000000;
  background-color: #f8f8f8;
}

.filter-btn.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* ===================================
   Principles & Values Grid
   =================================== */

.principles-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.principle-card,
.value-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 240px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.principle-card:hover,
.value-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.principle-card img,
.value-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0);
}

.principle-card h3,
.value-card h3 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 12px;
}

.principle-card p,
.value-card p {
  font-size: 14px;
  color: #5a5a5a;
}

/* ===================================
   Team Grid
   =================================== */

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-member,
.founder-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 400px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  text-align: center;
}

.team-member:hover,
.founder-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.team-member h3,
.founder-card h3 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 8px;
}

.credentials,
.role {
  font-size: 14px;
  color: #5a5a5a;
  margin-bottom: 12px;
  font-weight: 500;
}

.specialties {
  font-size: 13px;
  color: #6a6a6a;
  font-style: italic;
}

/* ===================================
   CTA Sections - Dramatic Contrast
   =================================== */

.cta-banner,
.cta-section,
.free-consultation,
.cta-trial {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
}

.cta-banner h2,
.cta-section h2,
.free-consultation h2,
.cta-trial h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p,
.free-consultation p,
.cta-trial p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  margin: 24px 0;
  text-align: center;
}

.benefits-list li {
  padding: 8px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.fine-print {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Trust Section
   =================================== */

.trust-grid,
.guarantee-grid,
.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.trust-badge,
.guarantee-item,
.credential-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.trust-badge:hover,
.guarantee-item:hover,
.credential-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.trust-badge img,
.guarantee-item img {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  filter: brightness(0);
}

.trust-badge p,
.guarantee-item p,
.credential-card p {
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 500;
}

/* ===================================
   Stats Section
   =================================== */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.stat-card h3 {
  font-size: 48px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #5a5a5a;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-list {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  padding: 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #000000;
}

.faq-item h3 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* ===================================
   Contact Methods
   =================================== */

.methods-grid,
.formats-grid,
.contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.method-card,
.format-card,
.contact-item {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.method-card:hover,
.format-card:hover,
.contact-item:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.method-card img,
.format-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0);
}

.method-card h3,
.format-card h3,
.contact-item h3 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 12px;
}

.contact-info,
.address {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  margin: 12px 0;
}

/* ===================================
   Collections & Specialties
   =================================== */

.collections-grid,
.specialties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.collection-card,
.specialty-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  max-width: 400px;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.collection-card:hover,
.specialty-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.specialty-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  filter: brightness(0);
}

.collection-card h3,
.specialty-card h3 {
  font-size: 20px;
  color: #000000;
}

.collection-card p,
.specialty-card p {
  font-size: 14px;
  color: #5a5a5a;
}

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

.thank-you {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: brightness(0);
}

.thank-you h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.confirmation {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.email-confirmation {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 32px;
}

/* ===================================
   Legal Content
   =================================== */

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

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.legal-section h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.legal-section ul {
  margin-left: 20px;
  list-style: disc;
}

.legal-section ul li {
  margin-bottom: 8px;
  color: #2a2a2a;
  line-height: 1.7;
}

.last-updated,
.intro {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 32px;
}

/* ===================================
   Footer - Monochrome Sophisticated
   =================================== */

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 20px;
  z-index: 3000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

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

.cookie-btn-accept:hover {
  background-color: #f0f0f0;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-settings-modal.active {
  display: flex;
}

.cookie-settings-content {
  background-color: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-settings-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000000;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-settings-content h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.cookie-settings-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===================================
   Timeline
   =================================== */

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.timeline-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  border-color: #000000;
}

.timeline-item h3 {
  font-size: 28px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
  color: #4a4a4a;
}

/* ===================================
   Tabs
   =================================== */

.tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 32px;
  border-bottom: 2px solid #e0e0e0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 16px 32px;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #5a5a5a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  color: #000000;
}

.tab-btn.active {
  color: #000000;
  border-bottom-color: #000000;
}

.tab-content {
  padding: 32px 0;
}

.content-section h3 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 16px;
}

.content-section p {
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===================================
   Myths Cards
   =================================== */

.myths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.myth-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.myth-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
}

.myth-card h3 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 12px;
}

.myth-card p {
  font-size: 14px;
  color: #2a2a2a;
  line-height: 1.7;
}

/* ===================================
   Course Card
   =================================== */

.course-card {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
}

.course-card h3 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 16px;
}

.course-card p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.course-card ul {
  text-align: left;
  margin: 24px auto;
  max-width: 400px;
}

.course-card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: #2a2a2a;
}

/* ===================================
   Hours Table
   =================================== */

.hours-table {
  max-width: 500px;
  margin: 32px auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.hours-row .day {
  font-weight: 600;
  color: #000000;
}

.hours-row .time {
  color: #4a4a4a;
}

.hours-table .note {
  margin-top: 16px;
  font-size: 13px;
  color: #6a6a6a;
  text-align: center;
}

/* ===================================
   Content Grid - Text/Image Sections
   =================================== */

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

.content-block {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
}

.content-block h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 16px;
}

.content-block p {
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 36px; }
  .hero .subheadline { font-size: 16px; }
  
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop nav */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 15px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
  }
  
  section h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  /* Grids - Stack on mobile */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .recipes-grid,
  .pricing-grid,
  .team-grid,
  .trust-grid,
  .stats-grid,
  .methods-grid,
  .formats-grid,
  .collections-grid,
  .specialties-grid,
  .principles-grid,
  .values-grid,
  .timeline,
  .myths-grid,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Cards - Full width on mobile */
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .recipe-card,
  .pricing-card,
  .team-member,
  .trust-badge,
  .stat-card,
  .method-card,
  .format-card,
  .collection-card,
  .specialty-card,
  .principle-card,
  .value-card,
  .timeline-item,
  .myth-card,
  .content-block,
  .founder-card,
  .guarantee-item,
  .credential-card,
  .contact-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 12px 24px;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Filters */
  .filters {
    flex-direction: column;
  }
  
  .filter-group {
    width: 100%;
  }
  
  /* Tabs */
  .tabs {
    flex-direction: column;
    border-bottom: none;
  }
  
  .tab-btn {
    width: 100%;
    border-bottom: 2px solid #e0e0e0;
    text-align: left;
  }
  
  .tab-btn.active {
    border-left: 4px solid #000000;
  }
  
  /* Hours table */
  .hours-table {
    width: 100%;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .recipe-card,
  .pricing-card,
  .trust-badge,
  .stat-card,
  .principle-card,
  .value-card,
  .timeline-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .service-card,
  .testimonial-card,
  .team-member,
  .method-card,
  .format-card,
  .collection-card,
  .specialty-card,
  .myth-card,
  .founder-card,
  .guarantee-item,
  .contact-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .step {
    flex: 1 1 calc(50% - 16px);
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-settings-modal,
  header,
  footer,
  .cta-buttons {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

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

.hidden {
  display: none;
}

.visible {
  display: block;
}