/* ===================================
   CRYSTAL SPEED - PROFESSIONAL CORPORATE CSS
   Modern Recipe Platform Design
   =================================== */

/* === CSS RESET & BASE === */
* {
  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', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F8D;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #E67E50;
}

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

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

/* === MOBILE MENU TOGGLE === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #2C5F8D;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
  transition: all 0.3s ease;
}

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

/* === MOBILE MENU OVERLAY === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #2C5F8D;
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

.mobile-nav a {
  color: white;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

/* === HEADER === */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #F4F1E8;
}

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

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

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

.main-nav a {
  color: #2c3e50;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E67E50;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #2C5F8D;
}

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

.header-cta {
  display: flex;
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: #E67E50;
  color: white;
  box-shadow: 0 4px 12px rgba(230, 126, 80, 0.25);
}

.btn-primary:hover {
  background: #d66a3e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 126, 80, 0.35);
  color: white;
}

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

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

button:disabled,
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1f4566 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.hero-cta .btn-secondary {
  border-color: white;
  color: white;
}

.hero-cta .btn-secondary:hover {
  background: white;
  color: #2C5F8D;
}

.trust-indicator {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 24px;
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1f4566 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 0;
}

.page-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

/* === VALUE PROPOSITION === */
.value-proposition {
  background: #F4F1E8;
  padding: 60px 20px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

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

/* === SERVICES GRID === */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: #2C5F8D;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.15);
}

.service-card.featured {
  border-color: #E67E50;
  background: linear-gradient(135deg, #fff 0%, #fef8f5 100%);
}

.service-card.premium {
  border-color: #2C5F8D;
  background: linear-gradient(135deg, #fff 0%, #f0f5f9 100%);
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #E67E50;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card.premium .badge {
  background: #2C5F8D;
}

.service-card h3 {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F8D;
  margin: 16px 0 24px;
}

/* === CARDS === */
.recipe-grid,
.blog-grid,
.collections-grid,
.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.recipe-card,
.blog-card,
.collection-card,
.plan-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.recipe-card:hover,
.blog-card:hover,
.collection-card:hover,
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.recipe-image-placeholder,
.blog-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #E67E50 0%, #d66a3e 100%);
  position: relative;
}

.recipe-card h3,
.blog-card h3,
.collection-card h3,
.plan-card h3 {
  padding: 20px 20px 12px;
  font-size: 20px;
}

.recipe-meta,
.post-meta {
  padding: 0 20px;
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.recipe-card p,
.blog-card p {
  padding: 0 20px 20px;
  color: #666;
  font-size: 15px;
}

.recipe-card .btn-secondary,
.blog-card .read-more,
.collection-card .btn-secondary,
.plan-card .btn-secondary {
  margin: 0 20px 20px;
  align-self: flex-start;
  margin-top: auto;
}

.read-more {
  color: #E67E50;
  font-weight: 600;
  padding-left: 20px;
  padding-bottom: 20px;
  display: inline-block;
}

.category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #2C5F8D;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

/* === PRICING CARDS === */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.pricing-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 32px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: #E67E50;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(230, 126, 80, 0.2);
}

.pricing-card.premium {
  border-color: #2C5F8D;
  background: linear-gradient(135deg, #fff 0%, #f0f5f9 100%);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-card .price {
  margin: 20px 0;
}

.pricing-card .amount {
  font-size: 40px;
  font-weight: 700;
  color: #2C5F8D;
}

.pricing-card .period {
  font-size: 16px;
  color: #666;
}

.pricing-card .description {
  color: #666;
  margin-bottom: 24px;
  font-size: 15px;
}

.pricing-card .features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-card .features li {
  padding: 12px 0;
  color: #555;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  margin-top: auto;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #F4F1E8;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.testimonial-author strong {
  color: #2C5F8D;
  font-size: 16px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.rating {
  color: #E67E50;
  font-size: 14px;
}

.trust-badge {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F8D;
}

/* === STATS === */
.stats {
  background: #2C5F8D;
  color: white;
  padding: 60px 20px;
  margin-bottom: 0;
}

.stats h2 {
  color: white;
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-card {
  text-align: center;
  padding: 32px;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E67E50;
  margin-bottom: 8px;
  display: block;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: white;
  padding: 60px 20px;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E67E50 0%, #d66a3e 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #666;
  font-size: 15px;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, #E67E50 0%, #d66a3e 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-content .btn-primary {
  background: white;
  color: #E67E50;
}

.cta-content .btn-primary:hover {
  background: #f8f8f8;
  color: #d66a3e;
}

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

/* === FORMS === */
.form-wrapper,
.contact-form,
.newsletter-form,
.request-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea,
.search-input,
.email-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2C5F8D;
  box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
}

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

.form-note {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

.privacy-note {
  font-size: 13px;
  color: #666;
  margin-top: 16px;
}

/* === FILTERS & SEARCH === */
.filter-bar {
  background: white;
  padding: 24px 20px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.filter-select,
.sort-select {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:hover,
.sort-select:hover {
  border-color: #2C5F8D;
}

.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

/* === FAQ === */
.faq-grid,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  margin-bottom: 20px;
}

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

.faq-item p {
  color: #666;
  font-size: 15px;
}

/* === TRUST SECTION === */
.trust-section {
  background: #F4F1E8;
  padding: 60px 20px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.trust-item {
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  margin-bottom: 20px;
}

.trust-icon {
  font-size: 48px;
  color: #E67E50;
  margin-bottom: 16px;
  display: block;
}

.trust-item h3 {
  font-size: 16px;
  color: #2c3e50;
}

/* === NEWSLETTER === */
.newsletter-signup {
  background: white;
  padding: 60px 20px;
}

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

.newsletter-content h2 {
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.newsletter-form .email-input {
  flex: 1;
  min-width: 250px;
}

/* === FOOTER === */
footer {
  background: #2c3e50;
  color: white;
  padding: 60px 20px 20px;
}

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

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

.footer-column h3,
.footer-column h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

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

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
  color: #E67E50;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #E67E50;
  transform: translateY(-3px);
}

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

.contact-info {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-text p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background: #E67E50;
  color: white;
  border: none;
}

.cookie-accept:hover {
  background: #d66a3e;
}

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

.cookie-reject:hover {
  border-color: #2C5F8D;
  color: #2C5F8D;
}

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

.cookie-settings-btn:hover {
  background: #2C5F8D;
  color: white;
}

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

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

.cookie-modal-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-category {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #666;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #E67E50;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

/* === ERROR PAGE === */
.error-hero {
  padding: 80px 20px;
  text-align: center;
  background: #F4F1E8;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #E67E50;
  line-height: 1;
  margin-bottom: 24px;
}

.error-content h1 {
  margin-bottom: 16px;
}

.search-section {
  padding: 40px 20px;
}

.search-box {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.search-box .search-input {
  flex: 1;
  min-width: 250px;
}

.quick-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.quick-link-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  flex: 1 1 calc(33.333% - 14px);
  min-width: 200px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.quick-link-card:hover {
  border-color: #2C5F8D;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quick-link-card h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-bottom: 8px;
}

.quick-link-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

/* === CONFIRMATION PAGE === */
.confirmation-hero {
  padding: 80px 20px;
  text-align: center;
  background: #F4F1E8;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.confirmation-message {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.confirmation-subtext {
  font-size: 16px;
  color: #666;
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.cta-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  flex: 1 1 calc(50% - 10px);
  min-width: 250px;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.cta-card:hover {
  border-color: #2C5F8D;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-card h3 {
  color: #2C5F8D;
  margin-bottom: 8px;
}

.cta-card p {
  color: #666;
  margin-bottom: 0;
}

.social-links-large {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #2c3e50;
}

.social-link:hover {
  border-color: #2C5F8D;
  color: #2C5F8D;
  transform: translateY(-2px);
}

.social-link .icon {
  font-size: 24px;
}

/* === LEGAL PAGES === */
.legal-header {
  background: #F4F1E8;
  padding: 60px 20px;
  text-align: center;
}

.last-updated {
  color: #666;
  font-size: 14px;
}

.legal-content {
  padding: 60px 20px;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

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

.legal-text h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

.legal-text ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-text ul li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.8;
}

.cookie-settings {
  background: #F4F1E8;
  padding: 32px;
  border-radius: 8px;
  margin-top: 32px;
}

.cookie-settings .checkbox-label {
  margin-bottom: 16px;
}

.cookie-settings .btn-primary {
  margin-top: 24px;
}

/* === PLANNER DEMO === */
.planner-demo {
  padding: 60px 20px;
  background: #F4F1E8;
}

.planner-preview {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.week-grid {
  display: flex;
  gap: 16px;
  margin: 40px 0;
  overflow-x: auto;
  padding-bottom: 16px;
}

.day-column {
  flex: 1;
  min-width: 200px;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.day-column h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-size: 18px;
}

.meal-slot {
  background: #F4F1E8;
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 12px;
  min-height: 60px;
  border: 2px dashed #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.demo-info {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
}

/* === FEATURES === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* === STORY & TIMELINE === */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission {
  background: #F4F1E8;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E67E50;
  margin-top: 32px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #E67E50;
  margin-bottom: 12px;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.approach-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 200px;
  text-align: center;
  margin-bottom: 20px;
}

.timeline-item .year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #E67E50;
  margin-bottom: 12px;
}

.timeline-item p {
  color: #666;
  font-size: 15px;
}

/* === BLOG SPECIFIC === */
.blog-search {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto 0;
  flex-wrap: wrap;
}

.blog-search .search-input {
  flex: 1;
  min-width: 250px;
}

.featured-post {
  background: linear-gradient(135deg, #2C5F8D 0%, #1f4566 100%);
  color: white;
  padding: 60px 20px;
  margin-bottom: 0;
}

.featured-label {
  display: inline-block;
  background: #E67E50;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.featured-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
}

.featured-content .post-meta {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.blog-categories {
  padding: 60px 20px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-card {
  background: white;
  padding: 16px 24px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  font-weight: 600;
  color: #2C5F8D;
  transition: all 0.3s ease;
  text-decoration: none;
}

.category-card:hover {
  border-color: #2C5F8D;
  background: #2C5F8D;
  color: white;
  transform: translateY(-2px);
}

.popular-posts {
  background: #F4F1E8;
  padding: 60px 20px;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.popular-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.popular-item h4 {
  margin: 0;
  font-size: 16px;
  color: #2C5F8D;
}

.popular-item span {
  color: #666;
  font-size: 13px;
  white-space: nowrap;
}

/* === CONTACT PAGE === */
.contact-options {
  padding: 40px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  color: #666;
  font-size: 15px;
}

.office-details {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.office-text {
  background: #F4F1E8;
  padding: 32px;
  border-radius: 8px;
  max-width: 500px;
}

.office-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.response-time,
.feature-highlight {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 16px;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.timeline-info {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #666;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Mobile menu visible */
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* Adjust flex items to full width */
  .benefit-card,
  .service-card,
  .recipe-card,
  .blog-card,
  .pricing-card,
  .testimonial-card,
  .stat-card,
  .step,
  .feature-card,
  .value-card,
  .timeline-item,
  .faq-item,
  .trust-item,
  .contact-card,
  .quick-link-card,
  .cta-card,
  .collection-card,
  .plan-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Stack hero buttons */
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  /* Stack filters */
  .filters {
    flex-direction: column;
  }

  .filter-select,
  .search-input {
    width: 100%;
  }

  /* Newsletter form stack */
  .newsletter-form,
  .search-box,
  .blog-search {
    flex-direction: column;
  }

  .newsletter-form .email-input,
  .search-box .search-input,
  .blog-search .search-input {
    width: 100%;
  }

  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Stats grid */
  .stats-grid {
    gap: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Error code */
  .error-code {
    font-size: 80px;
  }

  /* Week grid scroll */
  .week-grid {
    justify-content: flex-start;
  }

  /* Pricing featured card */
  .pricing-card.featured {
    transform: scale(1);
  }

  /* Section padding */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  .hero,
  .page-hero,
  .featured-post,
  .cta-banner,
  .stats {
    padding: 48px 16px;
  }

  /* Contact info text size */
  .contact-info {
    font-size: 13px;
  }

  /* Modal padding */
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  h1 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .mobile-menu {
    width: 280px;
  }

  .stat-number {
    font-size: 32px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

/* Focus states for accessibility */
*:focus-visible {
  outline: 3px solid #E67E50;
  outline-offset: 2px;
}

button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid #E67E50;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
}