/* ============================================
   THERMAEON FLOW - GEOMETRIC STRUCTURED DESIGN
   CSS Stylesheet - Geometric & Structured Style
   ============================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A5029;
}

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

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

/* === HEADER === */
header {
  background-color: #ffffff;
  border-bottom: 3px solid #1A5029;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(26, 80, 41, 0.1);
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #1A5029;
  padding: 8px 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  border-bottom: 2px solid #F4A460;
  color: #F4A460;
}

.cta-button {
  background-color: #F4A460;
  color: #1A5029;
  padding: 12px 24px;
  border: 2px solid #F4A460;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.cta-button:hover {
  background-color: #1A5029;
  color: #ffffff;
  border-color: #1A5029;
  transform: translateY(-2px);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #1A5029;
  color: #ffffff;
  border: 2px solid #1A5029;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.mobile-menu-toggle:hover {
  background-color: #F4A460;
  border-color: #F4A460;
  color: #1A5029;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #1A5029;
  z-index: 2000;
  padding: 24px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 48px;
  height: 48px;
  background-color: #F4A460;
  color: #1A5029;
  border: 2px solid #F4A460;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

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

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

.mobile-nav a {
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #1A5029 0%, #2D7A3E 50%, #1A5029 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 30%, rgba(244, 164, 96, 0.05) 30%, rgba(244, 164, 96, 0.05) 70%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(244, 164, 96, 0.05) 30%, rgba(244, 164, 96, 0.05) 70%, transparent 70%);
  background-size: 60px 60px;
  z-index: 1;
}

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

.content-wrapper {
  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.3);
}

.subheadline {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #f0f0f0;
}

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

.trust-badges span {
  background-color: rgba(244, 164, 96, 0.9);
  color: #1A5029;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #F4A460;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-primary,
.cta-secondary {
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.cta-primary {
  background-color: #F4A460;
  color: #1A5029;
  border-color: #F4A460;
}

.cta-primary:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.cta-secondary:hover {
  background-color: #ffffff;
  color: #1A5029;
  transform: translateY(-3px);
}

/* === SECTIONS === */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

/* === TRUST INDICATORS === */
.trust-indicators {
  background-color: #f8f8f8;
  padding: 40px 20px;
  border-top: 4px solid #1A5029;
  border-bottom: 4px solid #1A5029;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border: 3px solid #1A5029;
  min-width: 200px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F4A460;
  font-family: 'Merriweather', serif;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #1A5029;
  font-weight: 600;
  text-transform: uppercase;
}

/* === PROBLEMS SECTION === */
.problems {
  background-color: #ffffff;
  text-align: center;
}

.problems h2 {
  margin-bottom: 32px;
}

.problem-list {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.problem-list li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background-color: #f8f8f8;
  border-left: 4px solid #F4A460;
  font-size: 16px;
  color: #333333;
  position: relative;
}

.problem-list li::before {
  content: '▸';
  position: absolute;
  left: 20px;
  color: #1A5029;
  font-size: 20px;
  font-weight: 700;
}

.solution-text {
  font-size: 20px;
  font-weight: 700;
  color: #1A5029;
  margin-top: 32px;
}

/* === GRID LAYOUTS === */
.lifehack-grid,
.services-grid,
.testimonials-grid,
.methods-grid,
.tasks-grid,
.plants-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

/* === CARDS === */
.lifehack-card,
.service-card,
.testimonial-card,
.method-card,
.task-card,
.plant-card,
.mission-card,
.resource-card {
  background-color: #ffffff;
  border: 3px solid #1A5029;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.lifehack-card:hover,
.service-card:hover,
.method-card:hover,
.task-card:hover,
.plant-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(26, 80, 41, 0.2);
  border-color: #F4A460;
}

.lifehack-card h3,
.service-card h3,
.method-card h3,
.task-card h3,
.plant-card h3,
.mission-card h3,
.resource-card h3 {
  color: #1A5029;
  margin-bottom: 12px;
}

.category-tag,
.difficulty,
.timing {
  display: inline-block;
  padding: 6px 12px;
  background-color: #F4A460;
  color: #1A5029;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #F4A460;
  align-self: flex-start;
  margin-top: auto;
}

.service-card.featured {
  border-color: #F4A460;
  border-width: 4px;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #F4A460;
  color: #1A5029;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #F4A460;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #F4A460;
  font-family: 'Merriweather', serif;
  margin: 12px 0;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.features li {
  padding-left: 24px;
  position: relative;
  color: #333333;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A5029;
  font-weight: 700;
}

/* === TESTIMONIALS === */
.testimonials {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 3px solid #1A5029;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

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

.client-name {
  font-weight: 700;
  color: #1A5029;
  display: block;
  margin-bottom: 8px;
}

.rating {
  color: #F4A460;
  font-size: 20px;
  display: block;
}

/* === BUTTONS === */
.button,
.button-primary,
.link-button,
.cta-button-large,
.cta-button-secondary {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  border: 3px solid #1A5029;
  transition: all 0.3s ease;
  cursor: pointer;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.button,
.link-button {
  background-color: #ffffff;
  color: #1A5029;
}

.button:hover,
.link-button:hover {
  background-color: #1A5029;
  color: #ffffff;
  transform: translateY(-2px);
}

.button-primary,
.cta-button-large {
  background-color: #F4A460;
  color: #1A5029;
  border-color: #F4A460;
  padding: 18px 36px;
  font-size: 16px;
}

.button-primary:hover,
.cta-button-large:hover {
  background-color: #1A5029;
  color: #ffffff;
  border-color: #1A5029;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
  background-color: transparent;
  color: #1A5029;
  border-color: #1A5029;
}

.cta-button-secondary:hover {
  background-color: #1A5029;
  color: #ffffff;
}

/* === CTA SECTIONS === */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1A5029 0%, #2D7A3E 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 40%, rgba(244, 164, 96, 0.05) 40%, rgba(244, 164, 96, 0.05) 60%, transparent 60%);
  background-size: 40px 40px;
  z-index: 1;
}

.cta-banner .container,
.cta-section .container {
  position: relative;
  z-index: 2;
}

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

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

.guarantee {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: #F4A460;
  font-weight: 600;
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #1A5029 0%, #2D7A3E 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 40%, rgba(244, 164, 96, 0.05) 40%, rgba(244, 164, 96, 0.05) 60%, transparent 60%);
  background-size: 40px 40px;
  z-index: 1;
}

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

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #F4A460;
  text-align: left;
}

.breadcrumbs a {
  color: #ffffff;
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  border-bottom-color: #F4A460;
}

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

.page-hero .subheadline {
  color: #f0f0f0;
}

.last-update {
  font-size: 14px;
  color: #F4A460;
  font-style: italic;
}

/* === FILTER SECTION === */
.filter-section {
  background-color: #f8f8f8;
  padding: 32px 20px;
  border-top: 3px solid #1A5029;
  border-bottom: 3px solid #1A5029;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #1A5029;
  border: 2px solid #1A5029;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #1A5029;
  color: #ffffff;
}

/* === TABS === */
.tabs-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background-color: #f8f8f8;
  padding: 20px;
  border-top: 3px solid #1A5029;
  border-bottom: 3px solid #1A5029;
}

.tab-btn {
  padding: 12px 24px;
  background-color: #ffffff;
  color: #1A5029;
  border: 2px solid #1A5029;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #1A5029;
  color: #ffffff;
}

/* === PROCESS/STEPS === */
.steps-grid,
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step-card,
.step-item {
  background-color: #ffffff;
  border: 3px solid #1A5029;
  padding: 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #F4A460;
  color: #1A5029;
  border: 3px solid #1A5029;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

/* === CONTACT PAGE === */
.methods-grid {
  gap: 32px;
}

.method-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
}

.method-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.contact-value {
  font-weight: 700;
  color: #1A5029;
  font-size: 18px;
  margin: 8px 0;
}

.availability {
  font-size: 14px;
  color: #666666;
}

.form-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: #f8f8f8;
  border: 3px solid #1A5029;
  border-left-width: 8px;
}

.privacy-notice {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.privacy-notice a {
  color: #1A5029;
  text-decoration: underline;
}

.consultation-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border: 4px solid #F4A460;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.benefits {
  text-align: left;
  margin: 24px 0;
}

.benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #333333;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A5029;
  font-weight: 700;
  font-size: 20px;
}

.cta-text {
  margin-top: 24px;
  font-weight: 600;
  color: #1A5029;
}

.hours-table {
  max-width: 500px;
  margin: 32px auto;
  background-color: #ffffff;
  border: 3px solid #1A5029;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 2px solid #f0f0f0;
}

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

.day {
  font-weight: 600;
  color: #1A5029;
}

.time {
  color: #333333;
}

.notice {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.location-info {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: #f8f8f8;
  border: 3px solid #1A5029;
  border-left-width: 8px;
  text-align: center;
}

.address {
  font-size: 18px;
  font-weight: 700;
  color: #1A5029;
  margin-bottom: 16px;
}

.parking-info {
  color: #666666;
}

/* === LEGAL PAGES === */
.legal-content {
  padding: 40px 20px;
}

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

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 3px solid #F4A460;
}

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

.content-wrapper ul {
  margin: 16px 0 16px 24px;
}

.content-wrapper ul li {
  list-style: square;
  margin-bottom: 8px;
  color: #333333;
}

.content-wrapper a {
  color: #1A5029;
  font-weight: 600;
  border-bottom: 1px solid #1A5029;
}

.content-wrapper a:hover {
  color: #F4A460;
  border-bottom-color: #F4A460;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #1A5029 0%, #2D7A3E 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #F4A460;
  color: #1A5029;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  animation: successPulse 1s ease-in-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* === FOOTER === */
footer {
  background-color: #1A5029;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 4px solid #F4A460;
}

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

.footer-section {
  flex: 1 1 250px;
}

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

.tagline {
  font-size: 14px;
  color: #F4A460;
  font-style: italic;
}

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

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

footer nav a {
  color: #ffffff;
  font-size: 14px;
  padding: 4px 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
  transition: all 0.3s ease;
}

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

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

.footer-bottom {
  border-top: 2px solid rgba(244, 164, 96, 0.3);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.legal-links a {
  color: #F4A460;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}

.legal-links a:hover {
  border-bottom-color: #F4A460;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A5029;
  color: #ffffff;
  padding: 20px;
  z-index: 9999;
  border-top: 4px solid #F4A460;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-consent.active {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

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

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

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

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

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

.cookie-settings:hover {
  background-color: #F4A460;
  color: #1A5029;
}

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

.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #1A5029;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #F4A460;
  color: #1A5029;
  border: 2px solid #1A5029;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f8f8f8;
  border-left: 4px solid #1A5029;
}

.cookie-category h3 {
  color: #1A5029;
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #cccccc;
  border: 2px solid #1A5029;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background-color: #1A5029;
}

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

.toggle-switch.active::after {
  transform: translateX(30px);
}

.cookie-save {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #F4A460;
  color: #1A5029;
  border: 3px solid #F4A460;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 24px;
  transition: all 0.3s ease;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.cookie-save:hover {
  background-color: #1A5029;
  color: #ffffff;
  border-color: #1A5029;
}

/* === RESPONSIVE DESIGN === */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
  }
  
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 50px 20px;
  }
  
  .lifehack-card,
  .service-card,
  .testimonial-card,
  .method-card,
  .task-card,
  .plant-card,
  .step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .stat-item {
    min-width: 150px;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
  }
  
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}