/* ===================================
   ORBITGLOW - VIBRANT & ENERGETIC CSS
   Design Style: Electric & Dynamic
   =================================== */

/* === CSS RESET & NORMALIZE === */
* {
  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: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* === HEADER === */
header {
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 50%, #FFD600 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 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: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

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

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

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

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

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

.main-nav a:hover {
  text-shadow: 0 0 10px rgba(255, 214, 0, 0.8);
}

.header-cta {
  margin-left: auto;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF1744, #FF6B00);
  color: white;
  font-size: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(255, 23, 68, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FF1744 0%, #FF6B00 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 30px;
  text-shadow: 0 0 10px rgba(255, 214, 0, 0.8);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  color: #1a1a1a;
  border: 3px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.4);
  background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #FF6B00 0%, #FFD600 100%);
  color: #1a1a1a;
  border: 3px solid transparent;
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
}

.btn-outline {
  background: transparent;
  color: #FF1744;
  border: 3px solid #FF1744;
}

.btn-outline:hover {
  background: #FF1744;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 50%, #00E676 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,214,0,0.3) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,0.3) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.hero h1 {
  color: #ffffff;
  font-size: 64px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: slideDown 0.8s ease-out;
}

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

.hero-subtitle {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeIn 1.2s ease-out 0.6s backwards;
}

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

.trust-badges span {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-secondary {
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero-secondary h1 {
  color: #1a1a1a;
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-secondary p {
  color: #1a1a1a;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* === SECTIONS === */
section {
  padding: 80px 20px;
  margin-bottom: 0;
}

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

.section h2 {
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 48px;
  font-size: 40px;
}

.section-intro {
  text-align: center;
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* === FEATURES GRID === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.feature-card:hover::before {
  transform: scale(1);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.feature-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

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

.service-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid #FF1744;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.2);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card.featured {
  border-color: #00E676;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  transform: scale(1.05);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 23, 68, 0.4);
}

.service-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  color: #1a1a1a;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

.service-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #FF1744;
  margin: 24px 0;
}

.service-card.featured .price {
  color: #1a1a1a;
}

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

.pricing-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid #FF6B00;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card.featured {
  border-color: #00E676;
  background: linear-gradient(135deg, rgba(0,230,118,0.1) 0%, rgba(0,200,83,0.1) 100%);
  transform: scale(1.08);
}

.pricing-card.special {
  border-color: #FFD600;
  background: linear-gradient(135deg, rgba(255,214,0,0.1) 0%, rgba(255,107,0,0.1) 100%);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: #FF1744;
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 18px;
  color: #666;
}

.pricing-card .features {
  text-align: left;
  margin: 32px 0;
}

.pricing-card .features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 16px;
  color: #333;
}

/* === STEPS & TIMELINE === */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.3);
  transition: all 0.4s ease;
}

.step:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 23, 68, 0.5);
}

.step-number {
  width: 70px;
  height: 70px;
  background: #FFD600;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
}

.step h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.step p {
  color: #ffffff;
  font-size: 16px;
}

.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.timeline-step {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 32px 20px;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
  transition: all 0.4s ease;
}

.timeline-step:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5);
}

.timeline-step h3 {
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 12px;
}

.timeline-step p {
  color: #1a1a1a;
  font-size: 16px;
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  padding: 80px 20px;
}

.testimonials h2 {
  color: #1a1a1a;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.testimonial-card .rating {
  color: #FFD600;
  font-size: 24px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  font-style: italic;
}

.testimonial-card .author {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 23, 68, 0.2);
}

.testimonial-card .author strong {
  display: block;
  color: #FF1744;
  font-size: 18px;
  margin-bottom: 4px;
}

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

/* === STATS === */
.stats {
  background: linear-gradient(135deg, #FF1744 0%, #00E676 100%);
  padding: 80px 20px;
}

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

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.stat:hover {
  transform: translateY(-10px) scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.stat-label {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

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

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #1a1a1a;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 32px;
}

.cta-content .guarantee {
  margin-top: 24px;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.price-highlight {
  font-size: 48px;
  font-weight: 700;
  color: #FF1744;
  margin: 24px 0;
  text-shadow: 0 2px 10px rgba(255, 23, 68, 0.3);
}

/* === RECIPE GRID === */
.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.recipe-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.recipe-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.recipe-image-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #FF6B00 0%, #FFD600 100%);
}

.recipe-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recipe-content h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

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

.recipe-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* === FILTERS === */
.filter-section {
  background: #f8f8f8;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.filters {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.filter-group h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

.filter-btn {
  padding: 12px 24px;
  background: #ffffff;
  border: 3px solid #FF6B00;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #FF6B00;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #FF6B00 0%, #FFD600 100%);
  color: #1a1a1a;
  transform: scale(1.05);
}

.results-info {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

/* === COLLECTIONS === */
.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.collection-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
  transition: all 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5);
}

.collection-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 16px;
}

.collection-card p {
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 24px;
}

/* === PRINCIPLES & CONTENT === */
.principles-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.principle-card {
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.principle-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.principle-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #FF1744;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
}

.principle-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 12px;
}

.principle-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
}

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

.pillar {
  flex: 1 1 200px;
  max-width: 260px;
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.3);
  transition: all 0.4s ease;
}

.pillar:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(255, 23, 68, 0.5);
}

.pillar h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.pillar p {
  color: #ffffff;
  font-size: 16px;
}

/* === MYTHS GRID === */
.myths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.myth-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 20px;
  border: 4px solid #00E676;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.2);
  transition: all 0.4s ease;
}

.myth-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.4);
}

.myth-card h3 {
  color: #FF1744;
  font-size: 20px;
  margin-bottom: 16px;
}

.myth-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.myth-card strong {
  color: #00C853;
}

/* === EXPERTS GRID === */
.experts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.expert-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
  transition: all 0.4s ease;
}

.expert-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5);
}

.expert-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 8px;
}

.expert-card .title {
  color: #FF1744;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.expert-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

/* === TEAM GRID === */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1 1 280px;
  max-width: 320px;
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
  transition: all 0.4s ease;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.team-member h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 8px;
}

.team-member .title {
  color: #FF1744;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

/* === APPROACH GRID === */
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.approach-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.3);
  transition: all 0.4s ease;
}

.approach-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 23, 68, 0.5);
}

.approach-item h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 16px;
}

.approach-item p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

/* === BENEFITS GRID === */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #ffffff;
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  border: 4px solid #00E676;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.2);
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.4);
}

.benefit-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.benefit-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* === FAQ === */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

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

.faq-item p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
}

/* === CONTACT SECTIONS === */
.contact-options {
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5);
}

.contact-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
}

.contact-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

.contact-card a {
  color: #FF1744;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* === CONTACT FORM === */
.contact-form-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-placeholder {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid #FF6B00;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.2);
}

.form-note {
  text-align: center;
  font-size: 18px;
  color: #FF1744;
  margin-bottom: 32px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,214,0,0.2) 0%, rgba(255,107,0,0.2) 100%);
  border-radius: 12px;
}

.form-fields-display {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.field-placeholder {
  height: 50px;
  background: #f8f8f8;
  border: 2px solid #ddd;
  border-radius: 8px;
}

.field-placeholder.textarea {
  height: 150px;
}

.submit-placeholder {
  margin-top: 16px;
  text-align: center;
}

.button-placeholder {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* === LOCATION === */
.location-section {
  padding: 60px 20px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.location-info {
  flex: 1 1 300px;
  max-width: 450px;
}

.location-info h3 {
  color: #FF1744;
  font-size: 28px;
  margin-bottom: 20px;
}

.location-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.map-placeholder {
  flex: 1 1 400px;
  min-height: 350px;
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
}

/* === BUSINESS INQUIRIES === */
.business-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.business-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 23, 68, 0.3);
  transition: all 0.4s ease;
}

.business-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 23, 68, 0.5);
}

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

.business-card p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 12px;
}

.business-card a {
  color: #FFD600;
  font-weight: 600;
}

.business-card a:hover {
  text-decoration: underline;
}

/* === LEGAL PAGES === */
.legal-hero {
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
  padding: 80px 20px;
  text-align: center;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

.last-updated {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

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

.legal-content h2 {
  color: #FF1744;
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 32px;
  margin-bottom: 20px;
}

.legal-content ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

.legal-content a {
  color: #FF1744;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* === DSGVO RIGHTS === */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.right-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.2);
  transition: all 0.4s ease;
}

.right-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 230, 118, 0.4);
}

.right-card h3 {
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 12px;
}

.right-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

.processing-table {
  overflow-x: auto;
  margin: 32px 0;
}

.processing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.processing-table th,
.processing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.processing-table th {
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.processing-table td {
  font-size: 15px;
  color: #333;
}

/* === CERTIFICATIONS === */
.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.cert-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
  transition: all 0.4s ease;
}

.cert-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.cert-item h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 12px;
}

.cert-item p {
  color: #1a1a1a;
  font-size: 16px;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #ffffff;
  color: #00E676;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thank-you-hero h1 {
  color: #1a1a1a;
  font-size: 56px;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  color: #1a1a1a;
  font-size: 24px;
}

.next-steps,
.recommended-actions {
  padding: 60px 20px;
}

.step-card,
.action-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #FFD600 0%, #FF6B00 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
  transition: all 0.4s ease;
}

.step-card:hover,
.action-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card h3,
.action-card h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 16px;
}

.step-card p,
.action-card p {
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 20px;
}

.contact-info-section {
  background: linear-gradient(135deg, #FF1744 0%, #FF6B00 100%);
  padding: 60px 20px;
  text-align: center;
}

.contact-info-section h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 250px;
  max-width: 300px;
}

.contact-method p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-method strong {
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.back-navigation,
.return-home {
  padding: 60px 20px;
  text-align: center;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirmation-message {
  padding: 60px 20px;
}

.message-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
  text-align: center;
}

.message-box p {
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1.7;
}

.next-actions {
  padding: 60px 20px;
}

.actions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.action-item {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  border: 4px solid #FF6B00;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.2);
  transition: all 0.4s ease;
}

.action-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.action-item h3 {
  color: #1a1a1a;
  font-size: 24px;
  margin-bottom: 16px;
}

.action-item p {
  color: #333;
  font-size: 16px;
  margin-bottom: 24px;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

.footer-col {
  flex: 1 1 200px;
  max-width: 280px;
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #FFD600;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul li a {
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
}

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

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 2px solid rgba(255, 214, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-legal {
  flex: 1 1 200px;
  text-align: right;
}

.footer-legal p {
  font-size: 14px;
  color: #999;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  color: #1a1a1a;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

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

.cookie-btn-reject:hover {
  background: #FF1744;
}

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

.cookie-btn-settings:hover {
  background: #FFD600;
  color: #1a1a1a;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

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

.cookie-modal-header h3 {
  color: #1a1a1a;
  font-size: 28px;
}

.cookie-modal-close {
  width: 40px;
  height: 40px;
  background: #FF1744;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: #FF6B00;
}

.cookie-category {
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  color: #1a1a1a;
  font-size: 20px;
  margin: 0;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: #ddd;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: #00E676;
}

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

.cookie-toggle.active::after {
  left: 33px;
}

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

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

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

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

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

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.response-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  p {
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-secondary h1 {
    font-size: 36px;
  }
  
  /* Section padding */
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  /* Grid adjustments */
  .features-grid,
  .services-grid,
  .pricing-grid,
  .steps-grid,
  .testimonials-grid,
  .stats-grid,
  .recipe-grid,
  .collections-grid {
    gap: 24px;
  }
  
  /* Card sizes */
  .feature-card,
  .service-card,
  .pricing-card,
  .recipe-card {
    max-width: 100%;
  }
  
  /* Button sizes */
  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .btn-large {
    padding: 16px 36px;
    font-size: 16px;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    text-align: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Location content */
  .location-content {
    flex-direction: column;
  }
  
  .location-info,
  .map-placeholder {
    max-width: 100%;
  }
  
  /* Thank you page */
  .thank-you-hero h1 {
    font-size: 42px;
  }
  
  /* Principle cards to column */
  .principle-card {
    flex-direction: column;
  }
  
  /* Stats to 2 columns */
  .stat {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  /* Stats to single column */
  .stat {
    flex: 1 1 100%;
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 90%;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .price-highlight {
    font-size: 38px;
  }
  
  .thank-you-hero h1 {
    font-size: 36px;
  }
}

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

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 214, 0, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 214, 0, 0.8); }
}

/* Apply float animation to certain elements */
.feature-card img,
.benefit-card img {
  animation: float 3s ease-in-out infinite;
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .btn {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}