/* ============================================
   GOLDEN MIST - NATURE ORGANIC DESIGN SYSTEM
   Premium Notebook Store - Milano
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
.cookie-text p {
  color: white;
}

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

/* TYPOGRAPHY - NATURE ORGANIC STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #3A5A3A;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A5A4A;
}

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

/* HEADER - ORGANIC EARTH TONES */
header {
  background: linear-gradient(135deg, #8B7324 0%, #6B5A1F 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(139, 115, 36, 0.15);
}

.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(2px 2px 4px rgba(0,0,0,0.2));
}

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

.main-nav a {
  color: #F5EBD9;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: rgba(245, 235, 217, 0.15);
  color: #FFF;
  transform: translateY(-2px);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #F5EBD9;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B7324 0%, #6B5A1F 100%);
  color: #F5EBD9;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 115, 36, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(139, 115, 36, 0.4);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #8B7324 0%, #5C4D18 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(245, 235, 217, 0.2);
  color: #F5EBD9;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #F5EBD9;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(245, 235, 217, 0.15);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 4px;
}

.mobile-nav a:hover {
  background-color: rgba(245, 235, 217, 0.15);
  transform: translateX(8px);
  color: #FFF;
}

/* HERO SECTION - ORGANIC NATURE INSPIRED */
.hero {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 115, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero h1 {
  color: #3A5A3A;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(139, 115, 36, 0.1);
}

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

.price-range,
.price {
  font-size: 28px;
  font-weight: 700;
  color: #8B7324;
  margin: 24px 0;
  text-shadow: 1px 1px 2px rgba(139, 115, 36, 0.1);
}

/* BUTTONS - ORGANIC ROUNDED SHAPES */
.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #8B7324 0%, #6B5A1F 100%);
  color: #F5EBD9;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 115, 36, 0.3);
  background: linear-gradient(135deg, #9B8334 0%, #7B6A2F 100%);
}

.btn-secondary {
  background-color: #FFF;
  color: #8B7324;
  border: 2px solid #8B7324;
}

.btn-secondary:hover {
  background-color: #8B7324;
  color: #F5EBD9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 115, 36, 0.3);
}

.btn-link {
  color: #8B7324;
  font-weight: 600;
  padding: 8px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-link:hover {
  border-bottom-color: #8B7324;
  transform: translateX(4px);
}

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

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

.trust-badges span {
  color: #5A6A5A;
  font-size: 14px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* SECTIONS - ORGANIC SPACING */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #5A6A5A;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* SERVICE CARDS - NATURAL CARD DESIGN */
.services-grid,
.services-cards,
.features-grid,
.categories-grid,
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.feature-item,
.category,
.product {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFF;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 115, 36, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #F5EBD9;
  margin-bottom: 20px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B7324 0%, #6B5A1F 100%);
  border-radius: 20px 20px 0 0;
}

.service-card:hover,
.feature-item:hover,
.category:hover,
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 115, 36, 0.2);
  border-color: #8B7324;
}

.service-card h3,
.feature-item h3,
.category h3,
.product h3 {
  color: #3A5A3A;
  margin-bottom: 16px;
}

.service-card p,
.feature-item p,
.category p,
.product p {
  color: #5A6A5A;
  font-size: 15px;
  line-height: 1.6;
}

.service-card .price,
.category .price,
.product .price {
  color: #8B7324;
  font-weight: 700;
  font-size: 20px;
  margin: 16px 0;
}

/* FEATURES SECTION */
.features {
  background: linear-gradient(135deg, #F5F5F0 0%, #E8E8DD 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #3A5A3A;
}

/* TESTIMONIALS - ORGANIC DESIGN */
.testimonials {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
}

.testimonials h2 {
  text-align: center;
  color: #3A5A3A;
  margin-bottom: 40px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(139, 115, 36, 0.12);
  position: relative;
  border-left: 4px solid #8B7324;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 60px;
  color: #D4AF37;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #2C3E2C;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  color: #8B7324;
  font-weight: 600;
  font-size: 14px;
  font-style: normal;
  margin-top: 16px;
}

/* CTA BANNER */
.cta-banner,
.cta-contact {
  background: linear-gradient(135deg, #8B7324 0%, #6B5A1F 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  color: #F5EBD9;
}

.cta-banner h2,
.cta-contact h2 {
  color: #F5EBD9;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-contact p {
  color: #F5EBD9;
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info,
.contact-details {
  color: #F5EBD9;
  font-size: 16px;
  margin-top: 32px;
  font-weight: 500;
}

/* PRODUCT PAGES SPECIFIC STYLES */
.product-description,
.features-detailed,
.use-cases,
.brands {
  margin-bottom: 60px;
}

.key-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-left: 20px;
}

.key-features li {
  color: #5A6A5A;
  padding-left: 12px;
  position: relative;
}

.key-features li::before {
  content: '🌿';
  position: absolute;
  left: -20px;
}

.use-cases-grid,
.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.use-case,
.sector {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(139, 115, 36, 0.1);
  border: 2px solid #F5EBD9;
  margin-bottom: 20px;
}

.use-case h3,
.sector h3 {
  color: #3A5A3A;
  margin-bottom: 12px;
}

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

.badges span {
  background-color: rgba(245, 235, 217, 0.2);
  color: #F5EBD9;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* PERFORMANCE TIERS / SOLUTIONS GRID */
.tiers-grid,
.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.tier,
.solution {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: #FFF;
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(139, 115, 36, 0.12);
  text-align: center;
  border: 3px solid #F5EBD9;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tier:hover,
.solution:hover {
  transform: translateY(-8px);
  border-color: #8B7324;
  box-shadow: 0 12px 32px rgba(139, 115, 36, 0.2);
}

.tier h3,
.solution h3 {
  color: #3A5A3A;
  margin-bottom: 16px;
}

.gaming-level {
  display: block;
  color: #5A6A5A;
  font-size: 14px;
  margin: 12px 0;
  font-style: italic;
}

/* SERVICES DETAILED */
.service {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 115, 36, 0.1);
  border-left: 4px solid #8B7324;
  margin-bottom: 20px;
}

.service h3 {
  color: #3A5A3A;
  margin-bottom: 12px;
}

.service ul {
  margin-top: 16px;
  padding-left: 20px;
}

.service li {
  color: #5A6A5A;
  margin-bottom: 8px;
}

/* STEPS / PROCESS */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B7324 0%, #6B5A1F 100%);
  color: #F5EBD9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(139, 115, 36, 0.3);
}

.step h3 {
  color: #3A5A3A;
  margin-bottom: 12px;
}

.step p {
  color: #5A6A5A;
  font-size: 14px;
}

/* UPGRADE OPTIONS */
.upgrades-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.upgrade {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFF;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(139, 115, 36, 0.1);
  border: 2px solid #F5EBD9;
  margin-bottom: 20px;
}

.upgrade h3 {
  color: #3A5A3A;
  margin-bottom: 12px;
}

/* BUNDLES */
.bundles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.bundle {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 115, 36, 0.1);
  text-align: center;
  border: 2px solid #8B7324;
  margin-bottom: 20px;
}

.bundle h3 {
  color: #3A5A3A;
  margin-bottom: 16px;
}

.saving {
  display: inline-block;
  background-color: #8B7324;
  color: #F5EBD9;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* ABOUT PAGE SPECIFIC */
.about-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 60px;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 115, 36, 0.1);
  border-top: 4px solid #8B7324;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(139, 115, 36, 0.1);
  border-left: 4px solid #8B7324;
  margin-bottom: 20px;
}

.value h3 {
  color: #3A5A3A;
  margin-bottom: 12px;
}

.showroom {
  background: linear-gradient(135deg, #F5F5F0 0%, #E8E8DD 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px 0;
}

.showroom h2 {
  text-align: center;
  color: #3A5A3A;
  margin-bottom: 24px;
}

.showroom ul {
  max-width: 700px;
  margin: 24px auto;
  padding-left: 20px;
}

.showroom li {
  color: #5A6A5A;
  margin-bottom: 12px;
  padding-left: 12px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 40px;
}

.stat {
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #8B7324;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #5A6A5A;
  font-weight: 500;
}

/* CONTACT PAGE */
.contact-methods {
  margin-bottom: 60px;
}

.methods-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.method,
.info-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 115, 36, 0.1);
  border-top: 4px solid #8B7324;
  margin-bottom: 20px;
}

.method h3,
.info-item h3 {
  color: #3A5A3A;
  margin-bottom: 16px;
}

.details {
  color: #5A6A5A;
  font-size: 14px;
  margin-top: 12px;
  font-style: italic;
}

.hours-table {
  max-width: 500px;
  margin: 24px auto;
  background-color: #FFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(139, 115, 36, 0.1);
}

.hours-table p {
  padding: 12px 0;
  border-bottom: 1px solid #F5EBD9;
  color: #5A6A5A;
}

.hours-table p:last-child {
  border-bottom: none;
}

.map-info {
  background-color: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 115, 36, 0.1);
  margin-top: 24px;
}

.map-info h3 {
  color: #3A5A3A;
  margin-bottom: 16px;
}

.map-info p {
  color: #5A6A5A;
  margin-bottom: 8px;
}

/* FAQ */
.faq-contact {
  margin-top: 60px;
}

.faq-item {
  background-color: #FFF;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(139, 115, 36, 0.08);
  border-left: 4px solid #8B7324;
}

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

.faq-item p {
  color: #5A6A5A;
  font-size: 15px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.legal-hero h1 {
  color: #3A5A3A;
  margin-bottom: 16px;
}

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

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

.legal-section {
  background-color: #FFF;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(139, 115, 36, 0.08);
  border-left: 4px solid #8B7324;
}

.legal-section h2 {
  color: #3A5A3A;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-section h3 {
  color: #3A5A3A;
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 18px;
}

.legal-section p {
  color: #5A6A5A;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
  margin-left: 20px;
  margin-top: 12px;
}

.legal-section li {
  color: #5A6A5A;
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #F5F5F0 0%, #E8E8DD 100%);
  border-radius: 30px;
  margin-top: 40px;
}

.legal-cta p {
  color: #5A6A5A;
  font-size: 18px;
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8B7324 0%, #6B5A1F 100%);
  color: #F5EBD9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(139, 115, 36, 0.3);
}

.thank-you-hero h1 {
  color: #3A5A3A;
  margin-bottom: 16px;
}

.message {
  color: #5A6A5A;
  font-size: 18px;
  margin-top: 16px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.suggestion {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(139, 115, 36, 0.1);
  border-top: 4px solid #8B7324;
  margin-bottom: 20px;
}

.suggestion h3 {
  color: #3A5A3A;
  margin-bottom: 12px;
}

/* FOOTER - ORGANIC EARTH TONES */
footer {
  background: linear-gradient(135deg, #3A5A3A 0%, #2C3E2C 100%);
  color: #F5EBD9;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

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

.footer-brand,
.footer-links,
.footer-legal,
.footer-contact {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

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

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

footer h4 {
  color: #F5EBD9;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

footer a {
  display: block;
  color: #C8E6C9;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

footer a:hover {
  color: #F5EBD9;
  padding-left: 8px;
}

.footer-contact p {
  color: #C8E6C9;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 235, 217, 0.2);
}

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

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3A5A3A 0%, #2C3E2C 100%);
  color: #F5EBD9;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: none;
  border-radius: 20px 20px 0 0;
}

#cookie-consent-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
  font-size: 14px;
  line-height: 1.6;
  color: #C8E6C9;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all-cookies {
  background-color: #8B7324;
  color: #F5EBD9;
}

#accept-all-cookies:hover {
  background-color: #9B8334;
  transform: translateY(-2px);
}

#reject-all-cookies {
  background-color: transparent;
  color: #F5EBD9;
  border: 2px solid #F5EBD9;
}

#reject-all-cookies:hover {
  background-color: rgba(245, 235, 217, 0.1);
}

#cookie-settings {
  background-color: transparent;
  color: #F5EBD9;
  border: none;
  text-decoration: underline;
  padding: 10px;
}

#cookie-settings:hover {
  color: #FFF;
}

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

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

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F5EBD9;
}

.cookie-modal-header h2 {
  color: #3A5A3A;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #5A6A5A;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #F5EBD9;
  color: #3A5A3A;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F5F5F0;
  border-radius: 12px;
}

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

.cookie-category h3 {
  color: #3A5A3A;
  margin: 0;
  font-size: 18px;
}

.cookie-category p {
  color: #5A6A5A;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

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

.cookie-toggle.active {
  background-color: #8B7324;
}

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

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

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

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 2px solid #F5EBD9;
}

.cookie-modal-footer button {
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-preferences {
  background: linear-gradient(135deg, #8B7324 0%, #6B5A1F 100%);
  color: #F5EBD9;
}

#save-cookie-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 36, 0.3);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu button, hide desktop nav */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Cards and grids */
  .service-card,
  .feature-item,
  .category,
  .product,
  .use-case,
  .sector,
  .tier,
  .solution,
  .service,
  .method,
  .info-item,
  .value,
  .suggestion {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Footer */
  .footer-brand,
  .footer-links,
  .footer-legal,
  .footer-contact {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-modal-footer button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .section,
  section {
    padding: 32px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .stat {
    min-width: 150px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

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

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

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

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #8B7324;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-preferences-modal {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #FFF;
  }
  
  a {
    text-decoration: underline;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    color: #000;
  }
  
  .btn-primary {
    border: 2px solid #000;
  }
}

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

/* END OF CSS */