/* ========================================
   CRISP MAINTAIN - GEOMETRIC STRUCTURED DESIGN
   Modern Electric Vehicle Comparison Platform
   ======================================== */

/* CSS RESET & BASE */
* {
  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: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - GEOMETRIC & STRUCTURED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #234A24;
}

h2 {
  font-size: 32px;
  color: #234A24;
}

h3 {
  font-size: 24px;
  color: #2C5F2D;
}

h4 {
  font-size: 18px;
  color: #2C5F2D;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333333;
}

a {
  color: #2C5F2D;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #7ED957;
}

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

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

/* HEADER - ANGULAR & STRUCTURED */
header {
  background-color: #ffffff;
  border-bottom: 3px solid #234A24;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(35, 74, 36, 0.1);
}

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

.logo {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #234A24;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #7ED957;
  color: #7ED957;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #234A24;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(35, 74, 36, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2C5F2D;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #234A24;
  z-index: 1999;
  padding: 80px 32px 32px;
  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);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #7ED957;
  border-color: #7ED957;
  color: #234A24;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  padding: 12px 0;
  border-left: 3px solid transparent;
  padding-left: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  border-left-color: #7ED957;
  color: #7ED957;
  padding-left: 24px;
}

/* HERO SECTION - GEOMETRIC STRUCTURED */
.hero {
  background: linear-gradient(135deg, #234A24 0%, #2C5F2D 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(126, 217, 87, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: rgba(126, 217, 87, 0.1);
  transform: rotate(45deg);
}

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

.hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.trust-badges span {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* BUTTONS - ANGULAR GEOMETRIC */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: #7ED957;
  color: #234A24;
  border-color: #7ED957;
}

.btn-primary:hover {
  background-color: #234A24;
  color: #ffffff;
  border-color: #234A24;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(35, 74, 36, 0.3);
}

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

.btn-secondary:hover {
  background-color: #ffffff;
  color: #234A24;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/* VALUE PROPOSITION - GRID LAYOUT */
.value-proposition {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 3px solid #234A24;
  position: relative;
  transition: all 0.3s ease;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #7ED957, #234A24);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(35, 74, 36, 0.2);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card h3 {
  color: #234A24;
  margin-bottom: 16px;
  font-size: 20px;
}

.value-card p {
  color: #555555;
  line-height: 1.8;
}

/* SERVICES OVERVIEW - STRUCTURED GRID */
.services-overview {
  padding: 60px 20px;
  background-color: #ffffff;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background-color: #f8f9fa;
  padding: 40px 32px;
  border-left: 5px solid #7ED957;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #234A24;
  opacity: 0.05;
  transform: rotate(45deg) translate(30px, -30px);
}

.service-card:hover {
  background-color: #ffffff;
  border-left-color: #234A24;
  box-shadow: 0 8px 24px rgba(35, 74, 36, 0.15);
  transform: translateX(8px);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #7ED957;
  margin-bottom: 16px;
}

/* TESTIMONIALS - GEOMETRIC CARDS */
.testimonials {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #e0e0e0;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: #7ED957;
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 2;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: #234A24;
  font-style: normal;
  margin-bottom: 0;
}

/* CTA SECTIONS - GEOMETRIC STRUCTURE */
.cta-final,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #234A24 0%, #2C5F2D 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(126, 217, 87, 0.1);
  transform: rotate(45deg);
}

.cta-final h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-final p,
.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-line {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.8;
  margin-top: 24px;
}

.benefits-list p {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-left: 4px solid #7ED957;
  margin-bottom: 32px;
}

/* COMPARISON & CATEGORY CARDS */
.comparison-categories,
.guide-categories {
  padding: 60px 20px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #234A24;
  color: #ffffff;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #7ED957;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.4s ease;
}

.category-card:hover::before {
  width: 400px;
  height: 400px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(35, 74, 36, 0.4);
}

.category-card h3 {
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.category-card p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

/* FEATURED COMPARISONS & GUIDES */
.featured-comparisons,
.featured-guides {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.comparisons-grid,
.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.comparison-card,
.guide-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border: 3px solid #e0e0e0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.comparison-card:hover,
.guide-card:hover {
  border-color: #7ED957;
  box-shadow: 0 8px 24px rgba(35, 74, 36, 0.15);
  transform: translateY(-4px);
}

.comparison-card h3,
.guide-card h3 {
  margin-bottom: 16px;
  color: #234A24;
}

.comparison-card p,
.guide-card p {
  margin-bottom: 24px;
  color: #555555;
}

/* METHODOLOGY & METHOD GRID */
.methodology {
  padding: 60px 20px;
}

.method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.method-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 16px;
  background-color: #f8f9fa;
  border-top: 4px solid #7ED957;
  transition: all 0.3s ease;
}

.method-item:hover {
  background-color: #ffffff;
  border-top-color: #234A24;
  box-shadow: 0 8px 16px rgba(35, 74, 36, 0.1);
}

.method-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.method-item p {
  font-size: 14px;
  color: #666666;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 20px;
}

.service-item {
  background-color: #f8f9fa;
  padding: 48px;
  margin-bottom: 40px;
  border-left: 8px solid #7ED957;
  position: relative;
}

.service-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #234A24;
  opacity: 0.03;
  transform: rotate(45deg) translate(50px, -50px);
}

.service-item h2 {
  margin-bottom: 16px;
}

.service-item .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #7ED957;
  margin-bottom: 8px;
  display: block;
}

.service-item .tagline {
  font-size: 18px;
  color: #234A24;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-item .included {
  background-color: #ffffff;
  padding: 20px;
  margin: 24px 0;
  border: 2px solid #e0e0e0;
}

.service-item .included strong {
  color: #234A24;
}

/* GUARANTEES */
.guarantees {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.guarantee-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 3px solid #234A24;
}

.guarantee-item h3 {
  color: #234A24;
  margin-bottom: 12px;
}

.guarantee-item p {
  color: #555555;
}

/* GUIDES LIST */
.beginner-guides {
  padding: 60px 20px;
}

.guides-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-item {
  background-color: #ffffff;
  padding: 24px 32px;
  border-left: 5px solid #7ED957;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.guide-item:hover {
  border-left-color: #234A24;
  box-shadow: 0 4px 16px rgba(35, 74, 36, 0.1);
  transform: translateX(8px);
}

.guide-item h3 {
  color: #234A24;
  margin-bottom: 0;
}

/* MISSION & STORY */
.mission,
.story {
  padding: 60px 20px;
}

.mission h2,
.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.mission p,
.story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  text-align: center;
}

/* VALUES */
.values {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

/* MILESTONES */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.milestone {
  padding: 20px 24px;
  background-color: #f8f9fa;
  border-left: 4px solid #7ED957;
  font-size: 16px;
}

.milestone strong {
  color: #234A24;
  font-weight: 700;
  margin-right: 8px;
}

/* CONTACT INFO */
.contact-info {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 32px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* CONTACT OPTIONS */
.contact-options {
  padding: 60px 20px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.option-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #234A24;
  color: #ffffff;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover {
  background-color: #2C5F2D;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(35, 74, 36, 0.3);
}

.option-card h3 {
  color: #7ED957;
  margin-bottom: 16px;
}

.option-card p {
  color: #ffffff;
  margin-bottom: 8px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.form-info {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border: 3px solid #234A24;
}

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

.form-info strong {
  color: #234A24;
}

.form-info ul {
  margin: 16px 0;
  padding-left: 24px;
}

.form-info li {
  margin-bottom: 8px;
  color: #555555;
}

/* OFFICE INFO */
.office-info {
  padding: 60px 20px;
}

.office-details {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f8f9fa;
  padding: 40px;
  border-top: 4px solid #7ED957;
}

.office-details p {
  margin-bottom: 24px;
  line-height: 1.8;
}

/* RESPONSE COMMITMENT */
.response-commitment {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, #7ED957, #234A24);
}

.step h3 {
  color: #234A24;
  margin-bottom: 12px;
}

.step p {
  color: #555555;
}

/* LEGAL PAGES */
.legal-hero {
  background-color: #234A24;
  color: #ffffff;
  padding: 80px 20px 60px;
  text-align: center;
}

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

.legal-hero .subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 16px;
}

.legal-hero .last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid #e0e0e0;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #234A24 0%, #2C5F2D 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  background-color: #7ED957;
  color: #234A24;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border-radius: 50%;
  font-weight: 700;
}

.thank-you-hero h1 {
  color: #ffffff;
}

.next-steps,
.confirmation-details {
  padding: 60px 20px;
}

.next-actions,
.what-next {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.actions-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.action-card,
.suggestion {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.action-card:hover,
.suggestion:hover {
  border-color: #7ED957;
  box-shadow: 0 8px 16px rgba(35, 74, 36, 0.15);
  transform: translateY(-4px);
}

.action-card h3,
.suggestion h3 {
  margin-bottom: 24px;
}

.return-home {
  padding: 40px 20px;
  text-align: center;
}

.support-info {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #666666;
}

/* FOOTER - GEOMETRIC STRUCTURE */
footer {
  background-color: #234A24;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 5px solid #7ED957;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #7ED957;
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
}

.footer-nav a:hover {
  color: #7ED957;
  border-left-color: #7ED957;
  padding-left: 16px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #234A24;
  color: #ffffff;
  padding: 24px;
  z-index: 1998;
  border-top: 3px solid #7ED957;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept {
  background-color: #7ED957;
  border-color: #7ED957;
  color: #234A24;
}

.cookie-btn-accept:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #234A24;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 90%;
  padding: 40px;
  border: 3px solid #234A24;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 2px solid #234A24;
  color: #234A24;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #234A24;
  color: #ffffff;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #234A24;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f9fa;
  border-left: 4px solid #7ED957;
}

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

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background-color: #7ED957;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

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

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

.cookie-category p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 0;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: center;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
  
  /* Grid adjustments */
  .value-grid,
  .services-grid,
  .testimonials-grid,
  .categories-grid,
  .comparisons-grid,
  .guides-grid,
  .method-grid,
  .guarantees-grid,
  .options-grid,
  .steps-grid,
  .actions-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .testimonial-card,
  .category-card,
  .comparison-card,
  .guide-card,
  .method-item,
  .guarantee-item,
  .option-card,
  .step,
  .action-card,
  .suggestion {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent mobile */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    justify-content: stretch;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Service items mobile */
  .service-item {
    padding: 32px 24px;
  }
  
  .service-item .price {
    font-size: 28px;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    width: 95%;
    padding: 24px;
    max-height: 90vh;
  }
  
  /* CTA sections */
  .cta-final,
  .cta-section {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .service-card,
  .category-card,
  .method-item {
    flex: 1 1 calc(50% - 16px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    background: #ffffff;
    color: #000000;
  }
  
  .hero h1,
  .hero-subtitle {
    color: #000000;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
.btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.cookie-btn:focus {
  outline: 3px solid #7ED957;
  outline-offset: 2px;
}

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

/* SMOOTH ANIMATIONS */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

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

/* END OF STYLESHEET */