/* ===========================
   SLEEK TRACTOR - MONOCHROME SOPHISTICATED
   Modern Culinary Design System
   =========================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 24px;
}

h1 { font-size: 48px; letter-spacing: -1px; }
h2 { font-size: 36px; letter-spacing: -0.5px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

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

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

ul {
  list-style: none;
}

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

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

/* ===========================
   HEADER & NAVIGATION
   =========================== */

header {
  background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.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);
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

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

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ffffff;
  color: #000000;
  transform: rotate(90deg);
}

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

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

.mobile-nav a:hover {
  padding-left: 12px;
  color: #e0e0e0;
}

/* ===========================
   HERO SECTIONS
   =========================== */

.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

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

.tagline {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 24px;
  color: #e0e0e0;
  font-style: italic;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #d0d0d0;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.btn-link {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  text-decoration-color: #666666;
  color: #666666;
}

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

/* TRUST BADGES */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.badge img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.badge span {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

/* ===========================
   SECTIONS & SPACING
   =========================== */

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
  font-style: italic;
}

/* ===========================
   CARD LAYOUTS (FLEXBOX ONLY)
   =========================== */

.services-grid,
.benefits-grid,
.recipe-grid,
.testimonial-grid,
.format-grid,
.category-grid,
.instructor-grid,
.collection-grid,
.content-cards,
.booking-options,
.stats-grid,
.values-grid,
.team-grid,
.contact-grid,
.articles-grid,
.use-case-grid,
.steps-grid,
.rights-grid,
.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* SERVICE CARDS */
.service-card,
.service-card-detailed,
.benefit,
.recipe-card,
.testimonial-card,
.format-card,
.category-card,
.instructor-card,
.collection-card,
.content-card,
.service-option,
.stat,
.value-card,
.team-member,
.contact-card,
.article-card,
.use-case-card,
.step-card,
.right-card,
.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.service-card-detailed:hover,
.format-card:hover,
.category-card:hover,
.collection-card:hover,
.content-card:hover,
.article-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card img,
.benefit img,
.format-card img,
.category-card img,
.value-card img,
.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0);
}

.service-card h3,
.service-card-detailed h3,
.benefit h3,
.recipe-card h3,
.format-card h3,
.category-card h3,
.collection-card h3,
.content-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card p,
.service-card-detailed p,
.benefit p,
.format-card p,
.category-card p,
.collection-card p,
.content-card p {
  color: #4d4d4d;
  line-height: 1.7;
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
}

.features-list {
  margin: 20px 0;
  padding-left: 0;
}

.features-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4d4d4d;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
}

/* RECIPE CARDS */
.recipe-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border: 2px solid #d0d0d0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recipe-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.recipe-meta span,
.difficulty,
.time,
.servings,
.category,
.spots {
  background: #000000;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: #f8f8f8;
  border: 2px solid #d0d0d0;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-style: italic;
}

.customer-name {
  font-weight: 700;
  color: #000000;
  font-style: normal !important;
  margin-top: 16px;
}

/* ===========================
   COURSE LAYOUTS
   =========================== */

.course-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.course-item {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-left: 6px solid #000000;
  padding: 32px;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.course-item:hover {
  border-left-color: #666666;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.course-item h3 {
  flex: 1 1 100%;
  margin-bottom: 12px;
}

.course-date,
.course-instructor {
  color: #4d4d4d;
  font-size: 14px;
}

/* ===========================
   FILTERS & SEARCH
   =========================== */

.filter-section {
  background: #f8f8f8;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}

.filter-group {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
}

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

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #2d2d2d;
  transition: color 0.3s ease;
}

.filter-options label:hover {
  color: #000000;
}

.filter-options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #000000;
}

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

.search-input,
.email-input {
  flex: 1 1 300px;
  padding: 16px 20px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.search-input:focus,
.email-input:focus {
  outline: none;
  border-color: #000000;
}

/* ===========================
   FORMS
   =========================== */

.contact-form-section,
.newsletter {
  background: #f8f8f8;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.form-display {
  max-width: 600px;
  margin: 32px auto 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000000;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #000000;
}

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

.form-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #000000;
}

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

/* NEWSLETTER */
.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin: 32px auto 0;
  max-width: 550px;
  flex-wrap: wrap;
}

.newsletter-form .email-input {
  flex: 1 1 300px;
}

.privacy-notice {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

/* ===========================
   BLOG & ARTICLES
   =========================== */

.featured-article {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 60px;
  border-radius: 8px;
  margin-bottom: 60px;
}

.featured-article h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 20px;
}

.featured-article .excerpt {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #d0d0d0;
}

.category-tag {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.category-btn {
  padding: 12px 24px;
  background: #ffffff;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.category-btn:hover,
.category-btn.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popular-item {
  background: #f8f8f8;
  padding: 24px;
  border-left: 4px solid #000000;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.popular-item h4 {
  flex: 1 1 300px;
  margin-bottom: 0;
  font-size: 18px;
}

.views {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
}

/* ===========================
   FAQ & LEGAL
   =========================== */

.faq-list,
.legal-text,
.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f8f8;
  padding: 28px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

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

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

.faq-item p {
  color: #4d4d4d;
  line-height: 1.8;
}

.legal-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.legal-hero h1 {
  color: #ffffff;
}

.last-updated {
  color: #d0d0d0;
  font-style: italic;
}

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

.toc {
  background: #f8f8f8;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 40px;
  border: 2px solid #e0e0e0;
}

.toc h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.toc ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc a {
  color: #000000;
  font-weight: 600;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: #666666;
  text-decoration: underline;
}

.legal-text h2 {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid #e0e0e0;
}

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

.legal-text ul {
  padding-left: 24px;
}

.legal-text li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4d4d4d;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px auto;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #f8f8f8;
  border-left: 6px solid #000000;
  border-radius: 4px;
}

.milestone .year {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #000000;
  min-width: 100px;
}

.milestone p {
  color: #2d2d2d;
  font-size: 16px;
  margin-bottom: 0;
}

/* ===========================
   THANK YOU PAGE
   =========================== */

.thank-you-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  background: #ffffff;
  color: #000000;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-weight: 700;
}

.thank-you-message {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  color: #d0d0d0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 40px auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #f8f8f8;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

/* ===========================
   CTA BANNERS
   =========================== */

.cta-banner,
.booking-cta,
.consultation-cta,
.premium-cta {
  background: linear-gradient(135deg, #737373 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
}

.cta-banner h2,
.booking-cta h2,
.consultation-cta h2,
.premium-cta h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner p,
.booking-cta p,
.consultation-cta p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #d0d0d0;
}

.benefits-list {
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

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

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

/* ===========================
   FOOTER
   =========================== */

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

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

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

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

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

.footer-section p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #d0d0d0;
  transition: color 0.3s ease;
  padding: 4px 0;
}

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

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

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

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */

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

.cookie-banner.show {
  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 1 400px;
  font-size: 14px;
  line-height: 1.6;
  color: #d0d0d0;
}

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

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

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

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

.cookie-btn-decline,
.cookie-btn-settings {
  background: transparent;
  color: #ffffff;
}

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

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal h2 {
  color: #000000;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8f8f8;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 2px solid #e0e0e0;
}

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

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

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

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

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

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

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

/* ===========================
   RESPONSIVE - MOBILE FIRST
   =========================== */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop nav */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .tagline {
    font-size: 20px;
  }
  
  /* Section padding */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* Card layouts */
  .service-card,
  .service-card-detailed,
  .benefit,
  .recipe-card,
  .testimonial-card,
  .format-card,
  .category-card,
  .instructor-card,
  .collection-card,
  .content-card,
  .service-option,
  .stat,
  .value-card,
  .team-member,
  .contact-card,
  .article-card,
  .use-case-card,
  .step-card,
  .right-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Trust badges */
  .trust-badges {
    gap: 24px;
  }
  
  /* Forms */
  .search-bar,
  .newsletter-form {
    flex-direction: column;
  }
  
  .search-input,
  .email-input {
    width: 100%;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Course items */
  .course-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Filter groups */
  .filter-group {
    flex: 1 1 100%;
  }
  
  /* Timeline */
  .milestone {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Featured article */
  .featured-article {
    padding: 40px 24px;
  }
  
  .featured-article h2 {
    font-size: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .benefit,
  .recipe-card,
  .format-card,
  .category-card,
  .value-card,
  .article-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* High contrast for accessibility */
@media (prefers-contrast: high) {
  .btn-primary {
    border-width: 3px;
  }
  
  .service-card,
  .recipe-card {
    border-width: 3px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}