/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a3d1b;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

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

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

strong {
  color: #1a3d1b;
  font-weight: 600;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.logo img {
  height: 48px;
  width: auto;
}

.tagline {
  font-size: 12px;
  color: #7CB342;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: rgba(124, 179, 66, 0.2);
  color: #7CB342;
}

.cta-button {
  background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 179, 66, 0.4);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  color: #ffffff;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a3d1b 0%, #2C5F2D 100%);
  z-index: 2000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(124, 179, 66, 0.2);
  color: #7CB342;
  transform: translateX(8px);
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
}

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

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

.cookie-btn.accept {
  background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
  color: #ffffff;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}

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

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

.cookie-btn.settings {
  background: transparent;
  color: #7CB342;
  text-decoration: underline;
}

.cookie-btn.settings:hover {
  color: #ffffff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal h3 {
  margin-bottom: 20px;
  color: #1a3d1b;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

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

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

.cookie-toggle.active {
  background: #7CB342;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  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;
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 0;
  text-align: center;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #e8f5e9;
}

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

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  color: #e8f5e9;
}

.breadcrumbs a {
  color: #7CB342;
}

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

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #7CB342;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: #e8f5e9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 179, 66, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1a3d1b;
}

.btn-link {
  background: transparent;
  color: #7CB342;
  padding: 8px 0;
  font-weight: 600;
  text-decoration: underline;
}

.btn-link:hover {
  color: #689F38;
}

/* ===================================
   CARDS & GRIDS
   =================================== */

.value-grid,
.services-grid,
.tech-features,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-item,
.service-card,
.tech-item,
.method {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item:hover,
.service-card:hover,
.tech-item:hover,
.method:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.value-item img,
.tech-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.value-item h3,
.service-card h3,
.tech-item h3,
.method h3 {
  color: #1a3d1b;
  font-size: 20px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #7CB342;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

/* ===================================
   SECTIONS
   =================================== */

.value-proposition,
.services-overview,
.solutions-preview,
.process,
.social-proof,
.technology {
  background: #ffffff;
  border-radius: 12px;
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  margin-bottom: 48px;
}

section h2 {
  text-align: center;
  color: #1a3d1b;
  margin-bottom: 48px;
}

/* ===================================
   SOLUTION TABS
   =================================== */

.solution-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
  color: #ffffff;
}

.solution-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: #f8f9fa;
  border-radius: 12px;
}

.benefits-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  padding-left: 32px;
  position: relative;
  color: #4a5568;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7CB342;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   PROCESS STEPS
   =================================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #7CB342;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #1a3d1b;
  font-weight: 600;
}

.testimonial-author span {
  color: #64748b;
  font-size: 14px;
}

/* ===================================
   STATS & COUNTERS
   =================================== */

.stats-counter,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.metric {
  flex: 1;
  min-width: 180px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
}

.metric-number {
  font-size: 48px;
  font-weight: 700;
  color: #7CB342;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   TABLES
   =================================== */

.comparison-table {
  overflow-x: auto;
  margin: 32px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

thead {
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  color: #ffffff;
}

thead th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: #f8f9fa;
}

tbody td {
  padding: 16px;
  color: #4a5568;
}

/* ===================================
   CASE STUDIES
   =================================== */

.case-studies {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-study-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-left: 6px solid #7CB342;
}

.client-type {
  display: inline-block;
  background: #e8f5e9;
  color: #2C5F2D;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.project-scope {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.key-numbers {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.key-numbers span {
  background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

/* ===================================
   COMPANY SECTIONS
   =================================== */

.company-story,
.mission-vision,
.team,
.certifications,
.sustainability {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission,
.vision,
.values {
  padding: 32px;
  background: #f8f9fa;
  border-radius: 12px;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.values li {
  padding-left: 32px;
  position: relative;
  color: #4a5568;
}

.values li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #7CB342;
  font-weight: 700;
  font-size: 18px;
}

.team-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods,
.contact-info,
.office-info {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.contact-details {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  margin-top: 32px;
}

.contact-details p {
  margin-bottom: 16px;
  font-size: 16px;
}

.appointment-note {
  background: #e8f5e9;
  color: #2C5F2D;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 24px;
}

/* ===================================
   FAQ SECTIONS
   =================================== */

.faq {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.faq-item {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #7CB342;
}

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

.faq-contact {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
}

.faq-contact a {
  color: #7CB342;
  font-weight: 600;
  text-decoration: underline;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-final,
.cta-consultation,
.cta-trust,
.cta-portfolio,
.cta-custom {
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
}

.cta-final h2,
.cta-consultation h2,
.cta-trust h2,
.cta-portfolio h2,
.cta-custom h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p,
.cta-consultation p,
.cta-trust p,
.cta-portfolio p,
.cta-custom p {
  color: #e8f5e9;
  margin-bottom: 24px;
}

.urgency {
  font-size: 14px;
  color: #7CB342;
  font-weight: 600;
  margin-top: 16px;
}

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

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}

.thank-you-content h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.confirmation-message {
  background: rgba(124, 179, 66, 0.2);
  color: #7CB342;
  padding: 16px 24px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
}

.next-steps {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.while-you-wait,
.explore-more {
  background: #f8f9fa;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

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

.link-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.link-card h3 {
  color: #1a3d1b;
  font-size: 20px;
}

.link-card p {
  color: #64748b;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-hero {
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.legal-hero h1 {
  color: #ffffff;
}

.legal-hero p {
  color: #e8f5e9;
}

.legal-content {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 12px;
  max-width: 900px;
  margin: 40px auto;
}

.legal-content h2 {
  text-align: left;
  color: #1a3d1b;
  margin-top: 32px;
  margin-bottom: 16px;
  border-bottom: 2px solid #7CB342;
  padding-bottom: 8px;
}

.legal-content h3 {
  text-align: left;
  color: #2C5F2D;
  margin-top: 24px;
}

.legal-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 16px 24px;
}

.legal-content li {
  padding-left: 24px;
  position: relative;
  color: #4a5568;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7CB342;
  font-size: 20px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, #1a3d1b 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-column h4 {
  color: #7CB342;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column p {
  color: #e8f5e9;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-column li a {
  color: #e8f5e9;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column li a:hover {
  color: #7CB342;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(124, 179, 66, 0.3);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #e8f5e9;
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #e8f5e9;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #7CB342;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .logo img {
    height: 36px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Cards */
  .value-grid,
  .services-grid,
  .tech-features,
  .methods-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .value-item,
  .service-card,
  .tech-item,
  .method {
    max-width: 100%;
  }
  
  /* Process Steps */
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  /* Tables */
  table {
    font-size: 14px;
  }
  
  thead th,
  tbody td {
    padding: 12px 8px;
  }
  
  /* Testimonials */
  .testimonials {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
  }
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .service-card,
  .tech-item {
    min-width: 45%;
  }
  
  .header-content {
    gap: 16px;
  }
  
  .main-nav {
    gap: 16px;
  }
  
  .main-nav a {
    font-size: 13px;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

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

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

.hidden {
  display: none;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

:focus {
  outline: 2px solid #7CB342;
  outline-offset: 2px;
}

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

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .btn-primary,
  .btn-secondary,
  .cta-final,
  .cta-consultation {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}