/* =================================================================
   SkyDance Path - Tech Futuristic Design System
   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', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1629 100%);
  background-attachment: fixed;
  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 - Futuristic Tech Style
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #00FFFF 0%, #00FF88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  background: linear-gradient(135deg, #00FFFF 0%, #00FF88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 24px;
  color: #00FFFF;
}

h4 {
  font-size: 18px;
  color: #00FF88;
}

p {
  margin-bottom: 16px;
  color: #B8C5D6;
}

/* =================================================================
   Container & Layout System (FLEXBOX ONLY)
   ================================================================= */

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

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

/* =================================================================
   Header & Navigation - Futuristic Style
   ================================================================= */

header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

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

.main-nav a {
  color: #B8C5D6;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00FFFF, #00FF88);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #00FFFF;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

/* =================================================================
   Mobile Menu - Futuristic Sliding Menu
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00FFFF, #00FF88);
  border: none;
  color: #0a0e27;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 255, 255, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 255, 255, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 2px solid rgba(0, 255, 255, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #00FFFF;
  color: #00FFFF;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #00FFFF;
  color: #0a0e27;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #B8C5D6;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(0, 255, 255, 0.15);
  border-left-color: #00FFFF;
  color: #00FFFF;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
}

/* =================================================================
   Hero Section - Futuristic Tech Style
   ================================================================= */

.hero {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

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

.hero h1 {
  margin-bottom: 24px;
  font-size: 56px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 1s ease;
}

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

/* =================================================================
   Buttons - Neon Tech Style
   ================================================================= */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #00FFFF, #00FF88);
  color: #0a0e27;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #00FFFF;
  border: 2px solid #00FFFF;
  position: relative;
  z-index: 1;
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

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

.cta-center {
  text-align: center;
  margin: 40px 0;
}

/* =================================================================
   Card Components - Futuristic Glass Effect
   ================================================================= */

.card-container,
.benefits-grid,
.services-grid,
.recipe-grid,
.collections-grid,
.principles-grid,
.pricing-grid,
.team-grid,
.stats-grid,
.testimonials-grid,
.contact-grid,
.suggestions-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.card,
.benefit-card,
.service-card,
.recipe-card,
.collection-card,
.principle-card,
.pricing-card,
.team-member,
.stat-card,
.testimonial-card,
.contact-card,
.suggestion-card,
.step-card {
  flex: 1 1 300px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.card::before,
.benefit-card::before,
.service-card::before,
.recipe-card::before,
.collection-card::before,
.principle-card::before,
.pricing-card::before,
.team-member::before,
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF, #00FF88);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover,
.benefit-card:hover,
.service-card:hover,
.recipe-card:hover,
.collection-card:hover,
.principle-card:hover,
.pricing-card:hover,
.team-member:hover,
.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
  background: rgba(26, 31, 58, 0.8);
}

.card:hover::before,
.benefit-card:hover::before,
.service-card:hover::before,
.recipe-card:hover::before,
.collection-card:hover::before,
.principle-card:hover::before,
.pricing-card:hover::before,
.team-member:hover::before,
.stat-card:hover::before {
  transform: scaleX(1);
}

/* =================================================================
   Testimonials - Readable Design
   ================================================================= */

.testimonials {
  padding: 60px 20px;
  background: rgba(0, 255, 255, 0.03);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1f3a;
  border: 2px solid rgba(0, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
}

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

.testimonial-card .author {
  color: #00FFFF;
  font-weight: 700;
  font-style: normal;
  margin-top: 16px;
  text-align: right;
}

.trust-badge,
.trust-indicators,
.trust-badges {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 12px;
  color: #00FF88;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

/* =================================================================
   Pricing Cards - Featured Style
   ================================================================= */

.pricing-card.featured {
  border: 2px solid #00FFFF;
  box-shadow: 0 8px 40px rgba(0, 255, 255, 0.4);
  position: relative;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00FFFF, #00FF88);
  color: #0a0e27;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #00FFFF;
  margin: 20px 0;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

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

.pricing-card ul {
  margin: 24px 0;
}

.pricing-card li {
  padding: 12px 0;
  color: #B8C5D6;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00FF88;
  font-weight: 700;
}

/* =================================================================
   Text-Image Sections with Proper Alignment
   ================================================================= */

.text-image-section,
.content-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-section {
  flex: 1 1 300px;
  padding: 24px;
}

.mission .text-section,
.story .text-section {
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 24px;
}

/* =================================================================
   Feature Items
   ================================================================= */

.feature-item,
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px;
  background: rgba(26, 31, 58, 0.6);
  border-radius: 12px;
  border-left: 4px solid #00FFFF;
  margin-bottom: 20px;
}

/* =================================================================
   Forms - Futuristic Style
   ================================================================= */

.form-wrapper {
  max-width: 700px;
  margin: 40px auto;
  background: rgba(26, 31, 58, 0.8);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.form-description label {
  display: block;
  color: #00FFFF;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.form-field-placeholder {
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 16px;
  min-height: 50px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-field-placeholder.large {
  min-height: 150px;
}

.form-field-placeholder:hover {
  border-color: rgba(0, 255, 255, 0.6);
  background: rgba(0, 255, 255, 0.1);
}

.form-consent {
  margin: 24px 0;
}

.form-consent label {
  color: #B8C5D6;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.button-placeholder {
  background: linear-gradient(135deg, #00FFFF, #00FF88);
  color: #0a0e27;
  padding: 16px 40px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.6);
}

.form-note {
  font-size: 12px;
  color: #B8C5D6;
  margin-top: 16px;
  text-align: center;
}

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

.thank-you {
  padding: 100px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #00FFFF, #00FF88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #0a0e27;
  font-weight: 700;
  box-shadow: 0 8px 40px rgba(0, 255, 255, 0.5);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.success-message {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 32px;
}

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

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

.legal-content h1 {
  margin-bottom: 32px;
  text-align: center;
}

.legal-date {
  text-align: center;
  color: #B8C5D6;
  font-style: italic;
  margin-bottom: 40px;
}

.legal-content .text-section {
  background: rgba(26, 31, 58, 0.6);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 24px;
}

.legal-content .text-section h2 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 24px;
}

/* =================================================================
   Footer - Futuristic Style
   ================================================================= */

footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(0, 255, 255, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.footer-brand p {
  color: #B8C5D6;
  line-height: 1.8;
}

footer h4 {
  color: #00FFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

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

.footer-links a,
.footer-contact p {
  color: #B8C5D6;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #00FFFF;
  transform: translateX(5px);
}

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

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #B8C5D6;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #00FFFF;
}

.footer-bottom p {
  color: #B8C5D6;
  font-size: 12px;
}

/* =================================================================
   Cookie Consent Banner - Futuristic Style
   ================================================================= */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(15px);
  border-top: 2px solid rgba(0, 255, 255, 0.5);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 255, 255, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.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;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1 1 400px;
  color: #B8C5D6;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00FFFF, #00FF88);
  color: #0a0e27;
  border: none;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
}

.cookie-btn-reject {
  background: transparent;
  color: #B8C5D6;
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00FFFF;
  color: #00FFFF;
}

.cookie-btn-settings {
  background: transparent;
  color: #00FFFF;
  border: 2px solid #00FFFF;
}

.cookie-btn-settings:hover {
  background: rgba(0, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 60px rgba(0, 255, 255, 0.4);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  text-align: center;
}

.cookie-category {
  background: rgba(26, 31, 58, 0.6);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 24px;
  appearance: none;
  background: rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #00FFFF, #00FF88);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 1px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

@media (max-width: 768px) {
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Layout */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Cards - Stack on mobile */
  .card-container,
  .benefits-grid,
  .services-grid,
  .recipe-grid,
  .collections-grid,
  .principles-grid,
  .pricing-grid,
  .team-grid,
  .stats-grid,
  .testimonials-grid,
  .contact-grid,
  .suggestions-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .card,
  .benefit-card,
  .service-card,
  .recipe-card,
  .collection-card,
  .principle-card,
  .pricing-card,
  .team-member,
  .stat-card,
  .testimonial-card,
  .contact-card,
  .suggestion-card,
  .step-card {
    flex: 1 1 100%;
    padding: 24px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Text-Image Sections */
  .text-image-section,
  .content-grid {
    flex-direction: column;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links nav {
    align-items: center;
  }
  
  /* Cookie Banner */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .card,
  .benefit-card,
  .service-card,
  .recipe-card,
  .collection-card,
  .principle-card,
  .team-member,
  .stat-card,
  .contact-card,
  .suggestion-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* =================================================================
   Animations
   ================================================================= */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth scrolling for all elements */
* {
  scroll-behavior: smooth;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal {
    display: none !important;
  }
}