/* ============================================
   VOLTARIS SHOCK - NATURE ORGANIC DESIGN
   CSS Reset & Base Styles
   ============================================ */

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E2C;
  background-color: #FDFEF8;
  overflow-x: hidden;
}

/* ============================================
   NATURE ORGANIC COLOR PALETTE
   ============================================ */

:root {
  /* Earth Tones */
  --earth-brown: #8B6F47;
  --earth-dark: #2C3E2C;
  --earth-light: #E8DCC4;
  
  /* Green Accents */
  --green-primary: #4A7C4E;
  --green-secondary: #7BA05B;
  --green-light: #B8D4A8;
  --green-accent: #3D6B41;
  
  /* Natural Neutrals */
  --cream: #FDFEF8;
  --sand: #F5F1E8;
  --stone: #D4CFC0;
  --bark: #6B5D4F;
  
  /* Organic Accent */
  --terracotta: #C97B63;
  --moss: #5F7C6B;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 60px;
  
  /* Border Radius - Organic Shapes */
  --radius-soft: 20px;
  --radius-organic: 30px;
  --radius-round: 50%;
}

/* ============================================
   TYPOGRAPHY - NATURE ORGANIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--earth-dark);
  margin-bottom: var(--spacing-md);
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  margin-bottom: var(--spacing-sm);
  color: var(--earth-dark);
}

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

a:hover {
  color: var(--green-accent);
}

strong {
  font-weight: 600;
  color: var(--earth-dark);
}

ul, ol {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

li {
  margin-bottom: var(--spacing-xs);
  color: var(--earth-dark);
}

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

/* Section Spacing */
section {
  margin-bottom: var(--spacing-xxl);
  padding: var(--spacing-xl) var(--spacing-md);
}

.section {
  margin-bottom: var(--spacing-xxl);
  padding: var(--spacing-xl) var(--spacing-md);
}

/* Text Section */
.text-section {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* ============================================
   HEADER & NAVIGATION - ORGANIC SHAPES
   ============================================ */

header {
  background-color: var(--cream);
  padding: var(--spacing-md) 0;
  box-shadow: 0 4px 20px rgba(74, 124, 78, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--green-light);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  font-weight: 600;
  color: var(--earth-dark);
  font-size: 15px;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-soft);
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--green-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-menu a:hover {
  color: var(--green-primary);
  background-color: rgba(74, 124, 78, 0.05);
}

.nav-menu a:hover::after {
  width: 80%;
}

/* ============================================
   MOBILE MENU - ORGANIC SLIDE
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: var(--spacing-md);
  right: var(--spacing-md);
  z-index: 1001;
  background: var(--green-primary);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: var(--radius-soft);
  box-shadow: 0 4px 15px rgba(74, 124, 78, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--green-accent);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-accent) 100%);
  padding: var(--spacing-xl);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  padding: 8px 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: var(--radius-soft);
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xxl);
}

.mobile-nav a {
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: var(--spacing-sm);
  border-radius: var(--radius-soft);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

/* ============================================
   HERO SECTION - ORGANIC NATURAL STYLE
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--sand) 100%);
  padding: var(--spacing-xxl) var(--spacing-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-organic) var(--radius-organic);
  margin-bottom: var(--spacing-xxl);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 124, 78, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-round);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 160, 91, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-round);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--earth-dark);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--earth-brown);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.benefits-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
  margin-left: 0;
}

.benefits-list li {
  background: white;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-soft);
  font-weight: 600;
  color: var(--green-primary);
  box-shadow: 0 4px 15px rgba(74, 124, 78, 0.1);
}

/* ============================================
   BUTTONS - ORGANIC SHAPES
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-soft);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 6px 20px rgba(74, 124, 78, 0.3);
}

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

.btn-secondary:hover {
  background: var(--green-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 78, 0.3);
}

/* ============================================
   FEATURES GRID - FLEXBOX WITH ORGANIC CARDS
   ============================================ */

.features {
  background: var(--sand);
  border-radius: var(--radius-organic);
  padding: var(--spacing-xl);
}

.features h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--earth-dark);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.feature-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-soft);
  flex: 1 1 260px;
  max-width: 300px;
  min-width: 260px;
  box-shadow: 0 6px 20px rgba(74, 124, 78, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-secondary));
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 124, 78, 0.15);
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
  color: var(--green-primary);
  margin-bottom: var(--spacing-sm);
}

.feature-card h4 {
  color: var(--green-primary);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--earth-dark);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   SERVICES GRID - FLEXBOX WITH ORGANIC CARDS
   ============================================ */

.services {
  background: var(--cream);
  padding: var(--spacing-xl) var(--spacing-md);
}

.services h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--earth-brown);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.service-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-soft);
  flex: 1 1 320px;
  max-width: 380px;
  min-width: 280px;
  box-shadow: 0 6px 20px rgba(74, 124, 78, 0.08);
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-md);
  border: 2px solid var(--green-light);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 124, 78, 0.15);
  border-color: var(--green-primary);
}

.service-card h3 {
  color: var(--green-primary);
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  margin-bottom: var(--spacing-sm);
  color: var(--earth-dark);
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--green-primary);
  margin: var(--spacing-sm) 0;
}

.service-card .tags {
  font-size: 14px;
  color: var(--moss);
  font-style: italic;
  margin-top: var(--spacing-sm);
}

/* ============================================
   TESTIMONIALS - ORGANIC CARDS WITH CONTRAST
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--sand) 100%);
  padding: var(--spacing-xl) var(--spacing-md);
  border-radius: var(--radius-organic);
  margin-top: var(--spacing-xxl);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--earth-dark);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.testimonial-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-soft);
  flex: 1 1 400px;
  max-width: 550px;
  min-width: 300px;
  box-shadow: 0 8px 25px rgba(74, 124, 78, 0.12);
  position: relative;
  margin-bottom: var(--spacing-md);
  border-left: 5px solid var(--green-primary);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 60px;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
}

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

.customer-name {
  font-weight: 600;
  color: var(--green-primary);
  font-style: normal;
  padding-left: 0;
  margin-bottom: var(--spacing-xs);
}

.rating {
  color: var(--terracotta);
  font-size: 18px;
  letter-spacing: 2px;
}

/* ============================================
   STATS SECTION - ORGANIC DESIGN
   ============================================ */

.stats {
  background: var(--earth-dark);
  color: white;
  padding: var(--spacing-xxl) var(--spacing-md);
  border-radius: var(--radius-organic);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
}

.stat-card {
  text-align: center;
  flex: 1 1 200px;
  min-width: 180px;
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: var(--spacing-xs);
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: var(--sand);
  margin-bottom: 0;
}

/* ============================================
   CTA BANNER - ORGANIC ACCENT
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-accent) 100%);
  color: white;
  padding: var(--spacing-xxl) var(--spacing-md);
  text-align: center;
  border-radius: var(--radius-organic);
  margin: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-round);
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: var(--spacing-lg);
  color: var(--green-light);
}

.urgency {
  font-weight: 600;
  color: var(--terracotta);
  background: white;
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-soft);
  margin-top: var(--spacing-md);
}

.cta-section {
  text-align: center;
  margin: var(--spacing-xl) 0;
}

/* ============================================
   CONTENT SECTION - ORGANIC LAYOUT
   ============================================ */

.content {
  padding: var(--spacing-xl) var(--spacing-md);
}

.content h2 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  color: var(--green-primary);
}

.content h3 {
  margin-top: var(--spacing-lg);
  color: var(--earth-dark);
}

.content ul {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.content li {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.text-image-section img {
  flex: 1 1 300px;
  max-width: 500px;
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 25px rgba(74, 124, 78, 0.15);
}

.text-image-section .text-content {
  flex: 1 1 400px;
}

/* ============================================
   FOOTER - ORGANIC NATURAL DESIGN
   ============================================ */

footer {
  background: var(--earth-dark);
  color: var(--sand);
  padding: var(--spacing-xxl) 0 var(--spacing-md);
  margin-top: var(--spacing-xxl);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: var(--spacing-md);
}

.footer-section h3 {
  color: var(--green-light);
  margin-bottom: var(--spacing-md);
  font-size: 18px;
}

.footer-section p {
  color: var(--sand);
  font-size: 14px;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: var(--sand);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--green-light);
  padding-left: 5px;
}

.footer-logo {
  height: 40px;
  margin-bottom: var(--spacing-sm);
}

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

.footer-bottom p {
  color: var(--stone);
  font-size: 14px;
  margin: 0;
}

/* ============================================
   LEGAL CONTENT - ORGANIC READABILITY
   ============================================ */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

.legal-content h2 {
  color: var(--green-primary);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--green-light);
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.legal-content ul {
  margin-bottom: var(--spacing-md);
}

.updated {
  font-style: italic;
  color: var(--moss);
  background: var(--sand);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-soft);
  display: inline-block;
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   CONTACT FORM INFO - ORGANIC STYLE
   ============================================ */

.contact-form-info {
  background: var(--sand);
  padding: var(--spacing-lg);
  border-radius: var(--radius-soft);
  border-left: 4px solid var(--green-primary);
  margin: var(--spacing-lg) 0;
}

.contact-form-info p {
  margin-bottom: var(--spacing-sm);
  color: var(--earth-dark);
}

.form-note {
  font-size: 14px;
  color: var(--moss);
  font-style: italic;
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm);
  background: rgba(74, 124, 78, 0.05);
  border-radius: var(--radius-soft);
}

.note {
  font-size: 14px;
  color: var(--moss);
  font-style: italic;
  background: var(--sand);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-soft);
  margin-top: var(--spacing-sm);
  display: inline-block;
}

/* ============================================
   COOKIE CONSENT BANNER - ORGANIC DESIGN
   ============================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--earth-dark) 0%, var(--bark) 100%);
  color: white;
  padding: var(--spacing-md);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sand);
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-soft);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

.cookie-btn-reject:hover {
  background: white;
  color: var(--earth-dark);
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Cookie Settings Modal */
#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 44, 0.9);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

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

.cookie-modal-content {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-soft);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.cookie-category {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--sand);
  border-radius: var(--radius-soft);
  border-left: 4px solid var(--green-primary);
}

.cookie-category h3 {
  color: var(--earth-dark);
  font-size: 18px;
  margin-bottom: var(--spacing-xs);
}

.cookie-category p {
  font-size: 14px;
  color: var(--earth-dark);
  margin-bottom: var(--spacing-sm);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

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

.cookie-toggle label {
  font-weight: 600;
  color: var(--green-primary);
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop nav */
  .nav-menu {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .benefits-list {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Card adjustments */
  .features-grid,
  .services-grid,
  .testimonials-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card {
    max-width: 100%;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section img {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .feature-card {
    flex: 1 1 calc(50% - var(--spacing-md));
  }
  
  .service-card {
    flex: 1 1 calc(50% - var(--spacing-md));
  }
  
  .stat-card {
    flex: 1 1 calc(50% - var(--spacing-md));
  }
}

/* ============================================
   UTILITY CLASSES - ORGANIC HELPERS
   ============================================ */

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

.mt-large {
  margin-top: var(--spacing-xl);
}

.mb-large {
  margin-bottom: var(--spacing-xl);
}

.hidden {
  display: none;
}

/* ============================================
   ANIMATIONS - SMOOTH ORGANIC TRANSITIONS
   ============================================ */

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--green-light);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  .hero-cta,
  .cta-banner {
    display: none;
  }
  
  body {
    color: black;
    background: white;
  }
}