/* ============================================
   VORTEXFORCE NUTRITION - VIBRANT & ENERGETIC DESIGN
   Mobile-First Responsive CSS with Flexbox Only
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  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;
}

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

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

h1 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 28px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* HEADER - ELECTRIC & BOLD */
header {
  background: linear-gradient(135deg, #2D7A4F 0%, #1e5a39 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(45, 122, 79, 0.3);
}

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

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

.logo img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

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

/* MAIN NAVIGATION - DESKTOP */
.main-nav {
  display: none;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  margin: 0 4px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4A261;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: #e89450;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2D7A4F 0%, #1e5a39 100%);
  z-index: 1000;
  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;
  background: #F4A261;
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

.mobile-menu-close:hover {
  background: #e89450;
  transform: rotate(90deg) scale(1.1);
}

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

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

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: #F4A261;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

/* BUTTONS - ELECTRIC & DYNAMIC */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #F4A261 0%, #e89450 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: #2D7A4F;
  border: 3px solid #2D7A4F;
}

.btn-secondary:hover {
  background: #2D7A4F;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(45, 122, 79, 0.4);
}

/* HERO SECTION - VIBRANT & ENERGETIC */
.hero {
  background: linear-gradient(135deg, #E9F5EC 0%, #ffffff 50%, #fff5ed 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 122, 79, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite reverse;
}

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

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

.hero h1 {
  font-size: 38px;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 18px;
  color: #2a2a2a;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge,
.trust-indicators {
  font-size: 14px;
  color: #2D7A4F;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(45, 122, 79, 0.1);
  border-radius: 20px;
  display: inline-block;
  margin-top: 16px;
}

/* SECTIONS - DYNAMIC SPACING */
.section {
  margin-bottom: 60px;
  padding: 50px 20px;
}

.value-proposition,
.services-preview,
.process,
.testimonials,
.recipe-categories,
.recipe-features,
.core-principles,
.pricing-cards,
.mission-vision,
.values,
.intro,
.contact-options {
  padding: 60px 20px;
  background: #ffffff;
}

.value-proposition h2,
.services-preview h2,
.process h2,
.testimonials h2,
.recipe-categories h2,
.core-principles h2,
.pricing-cards h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 16px;
}

.value-proposition h2::after,
.services-preview h2::after,
.process h2::after,
.testimonials h2::after,
.recipe-categories h2::after,
.core-principles h2::after,
.pricing-cards h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #F4A261 0%, #2D7A4F 100%);
  border-radius: 3px;
}

/* FEATURE CARDS - FLEXBOX GRID */
.features-grid,
.services-grid,
.steps-grid,
.categories-grid,
.packages-grid,
.special-grid,
.principles-grid,
.values-grid,
.team-grid,
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.feature-card,
.service-card,
.step-card,
.category-card,
.package-card,
.special-card,
.principle-card,
.value-card,
.team-card,
.option-card {
  flex: 1 1 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.feature-card::before,
.service-card::before,
.category-card::before,
.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #F4A261 0%, #2D7A4F 100%);
  border-radius: 20px 20px 0 0;
}

.feature-card:hover,
.service-card:hover,
.category-card:hover,
.principle-card:hover,
.value-card:hover,
.option-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(244, 162, 97, 0.25);
  border-color: #F4A261;
}

.feature-card h3,
.service-card h3,
.category-card h3,
.principle-card h3,
.value-card h3 {
  color: #2D7A4F;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p,
.service-card p,
.category-card p,
.principle-card p,
.value-card p {
  color: #2a2a2a;
  line-height: 1.7;
}

/* STEP CARDS - NUMBERED */
.step-card {
  background: #ffffff;
  text-align: center;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #F4A261 0%, #e89450 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.3);
}

/* PRICING CARDS - FEATURED */
.package-card {
  flex: 1 1 100%;
  max-width: 100%;
  position: relative;
}

.package-card.featured {
  background: linear-gradient(135deg, #E9F5EC 0%, #ffffff 100%);
  border: 4px solid #F4A261;
  transform: scale(1);
}

.package-card.featured::before {
  background: linear-gradient(90deg, #2D7A4F 0%, #F4A261 100%);
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #F4A261 0%, #e89450 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: #2D7A4F;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.description {
  font-size: 15px;
  color: #2a2a2a;
  margin-bottom: 24px;
  font-style: italic;
}

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

.features-list li {
  padding: 10px 0;
  color: #2a2a2a;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #E9F5EC 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #F4A261;
  margin-bottom: 20px;
}

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

.testimonial-author {
  color: #2D7A4F;
  font-weight: 700;
  font-size: 14px;
  font-style: normal;
  margin-bottom: 0;
}

.trust-badges {
  text-align: center;
  margin-top: 40px;
}

.trust-badges p {
  font-size: 14px;
  color: #2D7A4F;
  font-weight: 600;
  padding: 16px 24px;
  background: rgba(45, 122, 79, 0.1);
  border-radius: 25px;
  display: inline-block;
}

/* CTA SECTION - HIGH ENERGY */
.cta-section {
  background: linear-gradient(135deg, #2D7A4F 0%, #1e5a39 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 7s ease-in-out infinite;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-section p {
  color: #E9F5EC;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee {
  color: #E9F5EC;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: inline-block;
}

/* RECIPE SECTIONS */
.recipe-card {
  flex: 1 1 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #F4A261;
  margin-bottom: 20px;
}

.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(244, 162, 97, 0.25);
}

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

.recipe-stats {
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

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

/* MACRONUTRIENTS & MYTHS */
.macros-grid,
.myths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.macro-card,
.myth-card {
  flex: 1 1 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #F4A261;
  margin-bottom: 20px;
}

.macro-card h3,
.myth-card h3 {
  color: #2D7A4F;
  margin-bottom: 12px;
  font-size: 20px;
}

/* WORKSHOP CTA */
.workshop-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E9F5EC 0%, #ffffff 100%);
}

.workshop-box {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid #F4A261;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.workshop-box h3 {
  color: #2D7A4F;
  font-size: 26px;
  margin-bottom: 16px;
}

.workshop-includes {
  color: #2a2a2a;
  font-size: 14px;
  margin: 20px 0;
  padding: 16px;
  background: #E9F5EC;
  border-radius: 12px;
}

/* GUARANTEES */
.guarantees {
  padding: 60px 20px;
  background: #E9F5EC;
}

.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.guarantee-item {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.guarantee-item h3 {
  color: #2D7A4F;
  font-size: 20px;
  margin-bottom: 10px;
}

.guarantee-item p {
  color: #2a2a2a;
  font-size: 15px;
}

/* MISSION & VISION */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.mission-box,
.vision-box {
  flex: 1 1 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #E9F5EC 0%, #ffffff 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #2D7A4F;
  margin-bottom: 20px;
}

.mission-box h2,
.vision-box h2 {
  color: #2D7A4F;
  font-size: 26px;
  margin-bottom: 16px;
  text-align: left;
}

.mission-box h2::after,
.vision-box h2::after {
  display: none;
}

/* TEAM CARDS */
.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #2a2a2a;
  font-size: 16px;
}

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

.role {
  color: #F4A261;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* STORY & CERTIFICATIONS */
.story,
.certifications {
  padding: 60px 20px;
  background: #ffffff;
}

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

.cert-list {
  max-width: 800px;
  margin: 0 auto;
}

.cert-list li {
  padding: 16px;
  margin-bottom: 12px;
  background: #E9F5EC;
  border-radius: 12px;
  color: #2a2a2a;
  font-size: 16px;
  border-left: 5px solid #2D7A4F;
}

/* CONTACT PAGE */
.info-box,
.hours-box {
  background: #E9F5EC;
  padding: 28px;
  border-radius: 20px;
  margin-bottom: 24px;
  border-left: 5px solid #2D7A4F;
}

.info-box h3,
.hours-box h3 {
  color: #2D7A4F;
  margin-bottom: 16px;
}

.departments {
  padding: 60px 20px;
  background: #ffffff;
}

.dept-list {
  max-width: 800px;
  margin: 0 auto;
}

.dept-list li {
  padding: 16px;
  margin-bottom: 12px;
  background: #f9f9f9;
  border-radius: 12px;
  color: #2a2a2a;
  font-size: 16px;
}

/* FAQ SECTIONS */
.faq {
  padding: 60px 20px;
  background: #E9F5EC;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.faq-item {
  flex: 1 1 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

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

.faq-item p {
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.7;
}

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

.legal-hero h1 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.last-updated {
  color: #2a2a2a;
  font-size: 14px;
  font-style: italic;
}

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

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

.content-wrapper h2 {
  color: #2D7A4F;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #E9F5EC;
}

.content-wrapper h3 {
  color: #2D7A4F;
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-wrapper p {
  color: #2a2a2a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.content-wrapper ul li {
  color: #2a2a2a;
  margin-bottom: 10px;
  line-height: 1.7;
  position: relative;
  padding-left: 24px;
}

.content-wrapper ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F4A261;
  font-weight: 700;
}

.contact-section {
  padding: 60px 20px;
  background: #E9F5EC;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2D7A4F 0%, #1e5a39 100%);
  color: #ffffff;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 40px rgba(45, 122, 79, 0.3);
  animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.next-steps,
.meanwhile,
.quick-links {
  padding: 60px 20px;
  background: #ffffff;
}

.actions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.action-card,
.link-card {
  flex: 1 1 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 5px solid #F4A261;
  margin-bottom: 20px;
}

.note {
  text-align: center;
  color: #2a2a2a;
  font-size: 14px;
  font-style: italic;
  margin-top: 32px;
  padding: 12px;
  background: #E9F5EC;
  border-radius: 12px;
}

.social-proof {
  padding: 60px 20px;
  background: #E9F5EC;
}

.proof-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.proof-item {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.proof-item p {
  color: #2a2a2a;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.testimonial {
  padding: 60px 20px;
  background: #ffffff;
}

.testimonial-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #E9F5EC 0%, #ffffff 100%);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #F4A261;
  text-align: center;
}

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

/* SUBSCRIPTION TIERS */
.subscription-tiers {
  padding: 60px 20px;
  background: #E9F5EC;
}

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

.tier-card {
  flex: 1 1 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 5px solid #2D7A4F;
  margin-bottom: 20px;
}

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

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

.footer-section {
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 24px;
}

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

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 6px 0;
}

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookie-text {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #2D7A4F 0%, #1e5a39 100%);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 79, 0.4);
}

.cookie-btn-reject {
  background: #444444;
  color: #ffffff;
}

.cookie-btn-reject:hover {
  background: #555555;
  transform: translateY(-2px);
}

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

.cookie-btn-settings:hover {
  background: #F4A261;
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.cookie-modal h2 {
  color: #2D7A4F;
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border-left: 5px solid #F4A261;
}

.cookie-category h3 {
  color: #2D7A4F;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #cccccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.cookie-toggle input[type="checkbox"]:checked {
  background: #2D7A4F;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

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

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

/* HIGHLIGHT BOXES */
.highlight {
  background: linear-gradient(135deg, #E9F5EC 0%, #ffffff 100%);
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 5px solid #2D7A4F;
  margin: 24px 0;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE TABLET */
@media (min-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 24px; }
  
  .hero h1 { font-size: 52px; }
  .hero-subtitle { font-size: 20px; }
  
  .mobile-menu-toggle { display: none; }
  .main-nav { display: flex; gap: 8px; }
  
  .feature-card,
  .service-card,
  .step-card,
  .category-card,
  .recipe-card,
  .macro-card,
  .myth-card,
  .principle-card,
  .value-card,
  .team-card,
  .option-card,
  .guarantee-item,
  .tier-card,
  .faq-item,
  .action-card,
  .link-card,
  .proof-item {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
  
  .package-card,
  .special-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
  
  .mission-box,
  .vision-box {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
  
  .footer-section {
    flex: 1 1 calc(33.333% - 32px);
    max-width: calc(33.333% - 32px);
  }
  
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .cookie-text { flex: 1; }
  .cookie-buttons { flex-shrink: 0; }
}

/* RESPONSIVE DESKTOP */
@media (min-width: 1024px) {
  h1 { font-size: 56px; }
  h2 { font-size: 42px; }
  h3 { font-size: 28px; }
  
  .hero h1 { font-size: 64px; }
  .hero { padding: 100px 20px; }
  
  .feature-card,
  .category-card,
  .recipe-card,
  .principle-card,
  .value-card,
  .guarantee-item,
  .faq-item,
  .action-card,
  .link-card,
  .proof-item {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }
  
  .service-card,
  .package-card,
  .team-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }
  
  .step-card,
  .macro-card,
  .tier-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }
  
  .special-card,
  .option-card {
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }
  
  .package-card.featured {
    transform: scale(1.05);
  }
  
  .package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
  }
}

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

.section {
  animation: fadeIn 0.8s ease-out;
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #F4A261;
  outline-offset: 3px;
}

.btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  outline: 3px solid #ffffff;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}