/* =============================================================================
   FRESHWISE - GEOMETRIC STRUCTURED DESIGN SYSTEM
   Design Style: Geometric shapes, structured grids, angular fonts, precise layouts
   ============================================================================= */

/* 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', Arial, 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-position: inside;
}

/* GEOMETRIC TYPOGRAPHY - Angular & Structured */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

h2 {
  font-size: 32px;
  border-left: 6px solid #2D7A3E;
  padding-left: 16px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
}

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

/* GEOMETRIC HEADER - Angular Structure */
header {
  background: linear-gradient(135deg, #2D7A3E 0%, #1e5128 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 0 100%);
}

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

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

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

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

/* GEOMETRIC NAVIGATION - Structured Layout */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.header-cta .btn-primary {
  background: #F4A460;
  color: #1a1a1a;
  padding: 12px 28px;
  font-weight: 700;
  border: 3px solid #F4A460;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-cta .btn-primary:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
}

/* MOBILE MENU - Geometric Overlay */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #2D7A3E;
  color: #ffffff;
  font-size: 28px;
  border: 3px solid #F4A460;
  padding: 12px 18px;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #2D7A3E 0%, #1e5128 100%);
  z-index: 2500;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 3px solid #F4A460;
  color: #ffffff;
  font-size: 32px;
  padding: 8px 16px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F4A460;
  color: #1a1a1a;
  transform: rotate(90deg);
}

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

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

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #F4A460;
  padding-left: 28px;
}

/* GEOMETRIC BUTTONS - Angular Design */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-primary {
  background: #2D7A3E;
  color: #ffffff;
  border-color: #2D7A3E;
  box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

.btn-primary:hover {
  background: #1e5128;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 122, 62, 0.4);
}

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

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

.btn-link {
  background: transparent;
  color: #2D7A3E;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  clip-path: none;
  text-decoration: underline;
}

.btn-link:hover {
  color: #1e5128;
  text-decoration: none;
}

/* GEOMETRIC HERO SECTION - Angular & Bold */
.hero {
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.05) 0%, rgba(244, 164, 96, 0.05) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(45, 122, 62, 0.03);
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  z-index: 0;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #2D7A3E;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #4a4a4a;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  background: #F4A460;
  color: #1a1a1a;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* GEOMETRIC SECTIONS - Structured Layout */
.section,
.problem-solution,
.services-preview,
.benefits,
.testimonials,
.cta-section,
.page-hero,
.mission-vision,
.story,
.team,
.achievements,
.service-detail,
.categories,
.featured-articles,
.seasonal-guide,
.quick-tips,
.product-categories,
.popular-products,
.seasonal-products,
.dietary-filters,
.contact-methods,
.office-hours,
.faq-contact,
.legal-page,
.thank-you-page {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section h2,
.problem-solution h2,
.services-preview h2,
.benefits h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 40px;
  margin-top: -32px;
}

/* GEOMETRIC GRIDS - Precise Flexbox Layouts */
.problem-list,
.services-grid,
.benefits-grid,
.testimonials-grid,
.categories-grid,
.articles-grid,
.tips-grid,
.products-grid,
.team-grid,
.achievements-grid,
.diet-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* PROBLEM ITEMS - Geometric Tags */
.problem-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2D7A3E;
  color: #ffffff;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 16px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 0 1 auto;
  margin-bottom: 16px;
}

.solution-text {
  font-size: 18px;
  text-align: center;
  margin: 32px auto;
  max-width: 800px;
  line-height: 1.8;
  color: #2a2a2a;
}

/* GEOMETRIC CARDS - Angular Structure */
.service-card,
.benefit-item,
.testimonial-card,
.category-card,
.article-card,
.tip-card,
.product-card,
.team-member,
.service-box,
.diet-card,
.method-card {
  background: #ffffff;
  border: 3px solid #e0e0e0;
  padding: 32px;
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 400px;
  transition: all 0.3s ease;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  position: relative;
  margin-bottom: 24px;
}

.service-card::before,
.benefit-item::before,
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #2D7A3E;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
}

.service-card:hover,
.benefit-item:hover,
.category-card:hover,
.article-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  border-color: #2D7A3E;
  box-shadow: 0 12px 32px rgba(45, 122, 62, 0.2);
}

.service-card h3,
.benefit-item h3,
.category-card h3 {
  color: #2D7A3E;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-price,
.price {
  display: inline-block;
  background: #F4A460;
  color: #1a1a1a;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* BENEFIT ICONS - Geometric Shapes */
.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 122, 62, 0.1);
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.benefit-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(48%) saturate(1000%) hue-rotate(95deg);
}

/* TESTIMONIALS - High Contrast for Readability */
.testimonial-card {
  background: #FFF8DC;
  border: 3px solid #F4A460;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #2a2a2a;
}

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

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

/* CTA SECTION - Strong Angular Design */
.cta-section {
  background: linear-gradient(135deg, #2D7A3E 0%, #1e5128 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.cta-section h2 {
  color: #ffffff;
  border-left: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #000;
}

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

.cta-section .btn-primary {
  background: #F4A460;
  border-color: #F4A460;
  color: #1a1a1a;
}

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

.cta-section .btn-secondary:hover {
  background: #ffffff;
  color: #2D7A3E;
}

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

/* BREADCRUMBS - Geometric Navigation */
.breadcrumbs {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 24px;
  padding: 12px 20px;
  background: rgba(45, 122, 62, 0.05);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.breadcrumbs a {
  color: #2D7A3E;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* PAGE HERO - Angular Header */
.page-hero {
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.08) 0%, rgba(244, 164, 96, 0.08) 100%);
  padding: 60px 20px 40px;
}

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

/* MISSION & VISION - Geometric Boxes */
.mission-box,
.vision-box {
  background: #ffffff;
  border: 3px solid #2D7A3E;
  padding: 40px;
  margin-bottom: 32px;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.mission-box h2,
.vision-box h2 {
  color: #2D7A3E;
  border-left: none;
  padding-left: 0;
  text-align: left;
}

.values {
  background: #FFF8DC;
  padding: 40px;
  margin-top: 32px;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.values h3 {
  color: #2D7A3E;
  margin-bottom: 20px;
}

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

.values li {
  padding: 12px 20px;
  background: #ffffff;
  border-left: 4px solid #2D7A3E;
  font-weight: 600;
}

/* STORY SECTION - Blockquote Styling */
.story blockquote {
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.05) 0%, rgba(244, 164, 96, 0.05) 100%);
  border-left: 6px solid #F4A460;
  padding: 32px;
  margin: 32px 0;
  font-style: italic;
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

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

.story cite {
  display: block;
  font-weight: 700;
  color: #2D7A3E;
  font-style: normal;
  margin-top: 16px;
}

/* ACHIEVEMENTS - Geometric Number Boxes */
.achievement {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: #ffffff;
  border: 3px solid #2D7A3E;
  flex: 1 1 200px;
  min-width: 180px;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.achievement .number {
  font-size: 48px;
  font-weight: 700;
  color: #2D7A3E;
  margin-bottom: 8px;
}

.achievement .label {
  font-size: 14px;
  text-align: center;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SERVICE DETAIL PAGE - Structured Layout */
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid #e0e0e0;
}

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

.duration,
.badge,
.count {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(45, 122, 62, 0.1);
  color: #2D7A3E;
  font-weight: 600;
  font-size: 14px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.badge {
  background: #F4A460;
  color: #1a1a1a;
}

.service-tagline {
  font-size: 20px;
  font-weight: 600;
  color: #2D7A3E;
  margin-bottom: 20px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-detail li {
  padding: 12px 20px;
  margin-bottom: 8px;
  background: rgba(45, 122, 62, 0.05);
  border-left: 4px solid #2D7A3E;
  list-style: none;
}

.service-cta {
  margin-top: 40px;
  text-align: center;
}

/* ARTICLES - Grid Layout */
.article-category {
  display: inline-block;
  background: #2D7A3E;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: #4a4a4a;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #e0e0e0;
}

/* SEASONAL BOX - Highlighted Info */
.seasonal-box {
  background: linear-gradient(135deg, #FFF8DC 0%, #ffffff 100%);
  border: 3px solid #F4A460;
  padding: 40px;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.seasonal-box h3 {
  color: #2D7A3E;
  margin-bottom: 20px;
}

.seasonal-box .tip {
  margin-top: 20px;
  padding: 16px;
  background: rgba(45, 122, 62, 0.1);
  border-left: 4px solid #2D7A3E;
  font-weight: 600;
}

/* SEASONAL GRID - Product Badges */
.seasonal-grid,
.product-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F4A460;
  color: #1a1a1a;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* CONTACT PAGE - Method Cards */
.method-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 122, 62, 0.1);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.method-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(48%) saturate(1000%) hue-rotate(95deg);
}

.method-content {
  font-size: 18px;
  font-weight: 700;
  color: #2D7A3E;
  margin: 8px 0;
}

.method-note {
  font-size: 14px;
  color: #4a4a4a;
}

/* CONTACT FORM NOTE */
.form-note {
  background: #FFF8DC;
  border: 3px solid #F4A460;
  padding: 32px;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.form-note p {
  margin-bottom: 16px;
  font-size: 16px;
}

.form-note ul {
  margin-top: 20px;
  padding-left: 20px;
}

.form-note li {
  margin-bottom: 12px;
  color: #2a2a2a;
}

/* OFFICE HOURS */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(45, 122, 62, 0.05);
  border-left: 4px solid #2D7A3E;
  font-style: italic;
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 28px;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

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

.faq-item p {
  color: #2a2a2a;
  line-height: 1.8;
}

/* LEGAL PAGES - Clean Typography */
.legal-page {
  padding: 60px 20px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  border-left: 6px solid #2D7A3E;
  padding-left: 16px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #2D7A3E;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
}

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

.legal-nav a {
  color: #2D7A3E;
  font-weight: 600;
  padding: 0 16px;
  transition: color 0.3s ease;
}

.legal-nav a:hover {
  color: #1e5128;
  text-decoration: underline;
}

/* THANK YOU PAGE - Centered Content */
.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 122, 62, 0.1);
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.confirmation-icon img {
  width: 72px;
  height: 72px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(48%) saturate(1000%) hue-rotate(95deg);
}

.subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.next-steps {
  background: #FFF8DC;
  border: 3px solid #F4A460;
  padding: 40px;
  margin: 40px 0;
  text-align: left;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.next-steps h2 {
  color: #2D7A3E;
  border-left: none;
  padding-left: 0;
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ol {
  margin: 24px 0;
  padding-left: 32px;
}

.next-steps li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.suggestions {
  margin: 48px 0;
}

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

.suggestion-card {
  background: #ffffff;
  border: 3px solid #e0e0e0;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: left;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.suggestion-card h3 {
  color: #2D7A3E;
  margin-bottom: 12px;
}

.contact-reminder {
  background: rgba(45, 122, 62, 0.05);
  padding: 32px;
  margin: 40px 0;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.contact-reminder h3 {
  color: #2D7A3E;
  margin-bottom: 20px;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* MESSAGE BOX */
.message-box {
  background: #FFF8DC;
  border: 3px solid #F4A460;
  padding: 40px;
  margin: 40px 0;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.message-box h2 {
  color: #2D7A3E;
  border-left: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 40px;
  padding: 32px;
  background: rgba(45, 122, 62, 0.05);
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.contact-info h3 {
  color: #2D7A3E;
  margin-bottom: 16px;
}

/* FOOTER - Geometric Structure */
footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
}

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

.footer-about,
.footer-links,
.footer-legal,
.footer-contact {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

footer h4 {
  color: #F4A460;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 8px;
  border-left: 2px solid transparent;
}

footer a:hover {
  color: #F4A460;
  border-left-color: #F4A460;
  padding-left: 16px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* COOKIE CONSENT BANNER - Geometric Design */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2D7A3E 100%);
  color: #ffffff;
  padding: 24px 20px;
  z-index: 3000;
  clip-path: polygon(0 15px, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.cookie-btn.accept {
  background: #F4A460;
  color: #1a1a1a;
  border-color: #F4A460;
}

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

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

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

.cookie-btn.settings {
  background: transparent;
  color: #F4A460;
  border-color: #F4A460;
}

.cookie-btn.settings:hover {
  background: rgba(244, 164, 96, 0.1);
}

/* COOKIE MODAL - Geometric Overlay */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h3 {
  color: #2D7A3E;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(45, 122, 62, 0.05);
  border-left: 4px solid #2D7A3E;
}

.cookie-category h4 {
  color: #2D7A3E;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 12px;
}

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

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

.cookie-toggle label {
  font-weight: 600;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .hero h1 { font-size: 44px; }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  /* Header - Hide desktop nav, show mobile menu */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Sections */
  .section,
  .problem-solution,
  .services-preview,
  .benefits,
  .testimonials,
  .cta-section,
  .page-hero {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* Grids - Stack on mobile */
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .categories-grid,
  .articles-grid,
  .tips-grid,
  .products-grid,
  .achievements-grid,
  .diet-grid,
  .methods-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card,
  .category-card,
  .article-card,
  .tip-card,
  .product-card,
  .achievement,
  .diet-card,
  .method-card {
    max-width: 100%;
    flex: 1 1 auto;
  }
  
  /* Buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .container {
    padding: 0 16px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  header,
  footer,
  .cta-section {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}

/* ACCESSIBILITY ENHANCEMENTS */
:focus-visible {
  outline: 3px solid #F4A460;
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .service-card,
  .benefit-item,
  .category-card {
    border-width: 4px;
  }
  
  .btn-primary,
  .btn-secondary {
    border-width: 4px;
  }
}

/* LOADING STATES */
.loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: wait;
}

/* SELECTION COLORS */
::selection {
  background: #F4A460;
  color: #1a1a1a;
}

::-moz-selection {
  background: #F4A460;
  color: #1a1a1a;
}