/* ===================================
   VITALGENUSS - NATURE ORGANIC DESIGN
   Modern, Scientific, Trustworthy
   =================================== */

/* 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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E2F;
  background-color: #FDFEF9;
  overflow-x: hidden;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --primary-green: #2D7A4F;
  --primary-dark: #1F5738;
  --secondary-orange: #F4A261;
  --accent-light: #E9F5F0;
  --accent-sage: #C8D5B9;
  --earth-brown: #8B6F47;
  --warm-cream: #FAF8F3;
  --text-dark: #2C3E2F;
  --text-medium: #5A6C57;
  --text-light: #8B9D88;
  --white: #FFFFFF;
  --shadow: rgba(45, 122, 79, 0.1);
  --shadow-hover: rgba(45, 122, 79, 0.2);
}

/* TYPOGRAPHY - NATURE INSPIRED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-green);
  margin-bottom: 16px;
}

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

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

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

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

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-orange);
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  font-weight: 600;
  color: var(--primary-green);
}

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

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

/* HEADER - ORGANIC STYLE */
header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px var(--shadow);
}

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

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

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

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

.main-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* MOBILE MENU - HAMBURGER NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow-hover);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
  color: var(--accent-light);
}

/* HERO SECTION - ORGANIC SHAPES */
.hero {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--warm-cream) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 122, 79, 0.08) 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: var(--primary-green);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* BUTTONS - ORGANIC ROUNDED STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 16px var(--shadow);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--shadow-hover);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.trust-badges span {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin-top: 20px;
}

/* CARD GRIDS - FLEXBOX LAYOUTS */
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.pricing-grid,
.collections-grid,
.info-grid,
.principles-grid,
.macro-grid,
.experts-grid,
.values-grid,
.team-grid,
.achievements-grid,
.contact-grid,
.team-contact-grid,
.faq-list,
.cta-grid,
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* BENEFIT CARDS - NATURE INSPIRED */
.benefit-card,
.service-card,
.collection-card,
.info-card,
.principle-card,
.macro-card,
.value-card,
.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid var(--accent-light);
}

.benefit-card:hover,
.service-card:hover,
.collection-card:hover,
.info-card:hover,
.principle-card:hover,
.macro-card:hover,
.value-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px var(--shadow-hover);
  border-color: var(--primary-green);
}

.benefit-card h3,
.service-card h3,
.collection-card h3,
.info-card h3,
.principle-card h3,
.macro-card h3,
.value-card h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.collection-card p,
.info-card p,
.principle-card p,
.macro-card p,
.value-card p,
.contact-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* PRICING CARDS - FEATURED STYLE */
.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--white);
  padding: 40px 28px;
  border-radius: 24px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid var(--accent-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card.featured {
  border: 3px solid var(--primary-green);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  color: var(--primary-green);
  font-size: 24px;
  margin-bottom: 8px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-green);
  margin: 16px 0;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-medium);
}

.pricing-card .features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.pricing-card .features li {
  padding: 10px 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--accent-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card .features li:before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .features li:last-child {
  border-bottom: none;
}

.best-for {
  font-style: italic;
  color: var(--text-medium);
  font-size: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--accent-sage);
}

.price-highlight {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  text-align: center;
  margin: 24px 0;
}

.save {
  color: var(--secondary-orange);
  font-size: 16px;
  font-weight: 600;
}

/* STEPS - ORGANIC FLOW */
.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px var(--shadow);
}

.step h3 {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: var(--text-medium);
  font-size: 15px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  border-left: 4px solid var(--primary-green);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  font-style: normal;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: var(--secondary-orange);
  font-weight: 600;
  margin-top: 32px;
}

/* EXPERT CARDS */
.expert-card,
.team-member,
.team-contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  border: 2px solid var(--accent-light);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.expert-card:hover,
.team-member:hover,
.team-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
  border-color: var(--primary-green);
}

.expert-card h3,
.team-member h3,
.team-contact-card h3 {
  color: var(--primary-green);
  font-size: 22px;
  margin-bottom: 8px;
}

.credentials,
.role {
  color: var(--secondary-orange);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* BENEFIT ITEMS - LIST STYLE */
.benefit-item,
.achievement-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 20px;
  background-color: var(--accent-light);
  border-radius: 16px;
  border-left: 4px solid var(--primary-green);
  margin-bottom: 16px;
}

.benefit-item p,
.achievement-item p {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

/* MODULES LIST */
.modules-list {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  margin: 24px 0;
}

.modules-list p {
  padding: 14px 0;
  border-bottom: 1px solid var(--accent-light);
  color: var(--text-dark);
  font-weight: 500;
}

.modules-list p:last-child {
  border-bottom: none;
}

/* SAVINGS LIST */
.savings-list {
  background-color: var(--accent-light);
  padding: 32px;
  border-radius: 20px;
  margin: 24px 0;
}

.savings-list p {
  padding: 12px 0;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px dashed var(--accent-sage);
}

.savings-list p:last-child {
  border-bottom: none;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section h2 {
  color: var(--primary-green);
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section h3 {
  color: var(--primary-dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.text-section li {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.last-updated {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 12px;
}

/* OFFICE INFO & DETAILS */
.office-info,
.office-details {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  margin: 24px 0;
  border-left: 4px solid var(--primary-green);
}

.office-details p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.note,
.general-note {
  font-style: italic;
  color: var(--text-medium);
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--accent-sage);
}

/* FORM NOTICE */
.form-notice {
  background-color: var(--accent-light);
  padding: 24px;
  border-radius: 16px;
  margin: 24px 0;
  border-left: 4px solid var(--secondary-orange);
}

.form-notice ul {
  margin-top: 12px;
  margin-left: 20px;
}

.form-notice li {
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* FAQ ITEMS */
.faq-item {
  flex: 1 1 100%;
  background-color: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 16px;
  border-left: 4px solid var(--primary-green);
}

.faq-item h3 {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-dark);
  margin: 0;
}

/* CTA SECTIONS */
.cta-final {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  padding: 60px 20px;
  border-radius: 32px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 8px 32px var(--shadow-hover);
}

.cta-final h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final p {
  color: var(--accent-light);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .btn-primary {
  background-color: var(--white);
  color: var(--primary-green);
}

.cta-final .btn-primary:hover {
  background-color: var(--accent-light);
  color: var(--primary-green);
}

.cta-final .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta-final .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

.guarantee {
  color: var(--accent-light);
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
}

/* CTA CARDS (THANK YOU PAGE) */
.cta-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid var(--accent-light);
  display: block;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px var(--shadow-hover);
  border-color: var(--primary-green);
}

.cta-card h3 {
  color: var(--primary-green);
  font-size: 20px;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-medium);
  margin: 0;
}

/* MISSION GRID */
.mission-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow);
  border-top: 4px solid var(--primary-green);
}

.mission-item h2 {
  color: var(--primary-green);
  font-size: 24px;
  margin-bottom: 16px;
}

.mission-item p {
  color: var(--text-dark);
  line-height: 1.7;
}

/* DURATION LABEL */
.duration {
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* MASTERCLASS INTRO */
.masterclass-intro {
  font-size: 18px;
  color: var(--text-medium);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* FOOTER - ORGANIC EARTH TONES */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 48px 20px 24px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section p {
  color: var(--accent-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: var(--accent-light);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  color: var(--accent-light);
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 24px;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 24px 24px 0 0;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: var(--accent-light);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: var(--white);
  color: var(--primary-green);
}

.cookie-accept:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-light);
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

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

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

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-medium);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: var(--accent-light);
  color: var(--primary-green);
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  color: var(--primary-green);
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--accent-light);
  border-radius: 16px;
  border-left: 4px solid var(--primary-green);
}

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

.cookie-category p {
  color: var(--text-dark);
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: var(--text-light);
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: var(--primary-green);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--white);
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

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

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

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  .benefit-card,
  .service-card,
  .collection-card,
  .info-card,
  .principle-card,
  .macro-card,
  .value-card,
  .contact-card,
  .pricing-card,
  .step,
  .testimonial-card,
  .expert-card,
  .team-member,
  .team-contact-card,
  .benefit-item,
  .achievement-item,
  .mission-item,
  .cta-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

  .pricing-card.featured:hover {
    transform: translateY(-8px) scale(1);
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
  }

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

  .cookie-btn {
    width: 100%;
  }

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

  .price {
    font-size: 28px;
  }

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

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .collection-card,
  .info-card,
  .principle-card,
  .macro-card,
  .value-card,
  .pricing-card,
  .testimonial-card,
  .expert-card,
  .team-member,
  .cta-card,
  .mission-item {
    flex: 1 1 calc(50% - 24px);
  }

  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.hero-content,
.benefit-card,
.service-card,
.pricing-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* SCROLL BEHAVIOR */
html {
  scroll-padding-top: 80px;
}

/* FOCUS STATES FOR ACCESSIBILITY */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid var(--secondary-orange);
  outline-offset: 2px;
}

/* SELECTION COLORS */
::selection {
  background-color: var(--primary-green);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary-green);
  color: var(--white);
}

/* PREVENT TEXT OVERFLOW */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none;
  }
}

/* END OF STYLESHEET */