/* Global Styles & Variables */
:root {
  --primary: #4CAF50;
  --primary-light: #A3C293;
  --primary-dark: #3a8c3e;
  --secondary: #F9F9F6;
  --text: #333;
  --text-light: #666;
  --text-lighter: #999;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-large: 16px;
  --transition: all 0.3s ease;
  --linen-bg: url('images/root1.jpg');
  --wood-bg: url('images/root2.jpg');
}

/* Typography */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background: var(--primary);
  margin: 0.8rem auto;
  border-radius: 2px;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin: 0 0 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* Header & Navigation */
header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo img {
  height: 50px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 1.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.btn.primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn.primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn.secondary {
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn.secondary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.intro {
  background-image: var(--linen-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: 75px;
  overflow: hidden;
}

.intro-content {
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.intro-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.intro-leaf {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  z-index: 5;
}

.animated-leaf {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  animation: leafFloat 5s ease-in-out infinite;
}

@keyframes leafFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* What is Section */
.what-is {
  background-color: white;
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.info-card svg {
  width: 100%;
  height: 100%;
}

.info-card svg circle {
  fill: var(--primary-light);
  stroke: var(--primary);
  stroke-width: 2;
}

.info-card svg text {
  fill: white;
  font-family: 'Mulish', sans-serif;
  font-weight: bold;
  font-size: 16px;
}

.infographic {
  margin: 4rem 0;
  text-align: center;
}

.nutrition-flow {
  max-width: 800px;
  margin: 0 auto;
}

.nutrition-flow .node {
  fill: var(--primary-light);
  stroke: var(--primary);
  stroke-width: 2;
}

.nutrition-flow .flow-line {
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 5, 5;
  animation: flowDash 10s linear infinite;
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -200;
  }
}

.nutrition-flow text {
  fill: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
}

.mistake-table {
  margin-top: 3rem;
  overflow-x: auto;
}

.mistake-table h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

table th, table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

table th {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table tr:hover {
  background-color: #f3f3f3;
}

/* Solution Section */
.solution {
  background-image: var(--wood-bg);
  background-size: cover;
  background-position: center;
  color: var(--text);
  position: relative;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.solution-text {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.solution-list li {
  display: flex;
  margin-bottom: 1.5rem;
}

.check-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.solution-item h4 {
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.solution-timeline {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 2rem;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--primary-light);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  opacity: 0.6;
  transition: var(--transition);
}

.timeline-item.active {
  opacity: 1;
}

.timeline-marker {
  position: absolute;
  left: -2.4rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: 3px solid var(--primary);
  z-index: 10;
}

.timeline-content h4 {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Pricing Section */
.pricing {
  background-color: white;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background-color: var(--secondary);
  border-radius: var(--radius-large);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.card-header {
  margin-bottom: 2rem;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.vegetable-icon {
  width: 100%;
  height: 100%;
}

.vegetable-icon .icon-bg {
  fill: var(--primary-light);
  opacity: 0.2;
}

.vegetable-icon .plant {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
}

.vegetable-icon .leaf {
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
}

.vegetable-icon .fruit {
  fill: var(--primary);
}

.card-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.card-price .currency {
  font-size: 1.5rem;
  font-weight: 500;
  vertical-align: super;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.features li:last-child {
  border-bottom: none;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.testimonials:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  opacity: 0.1;
  z-index: 0;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 2rem;
  display: flex;
  overflow: hidden;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 1rem;
  transition: transform 0.5s ease;
}

.testimonial-bubble {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s forwards 0.3s;
}

.quote-svg {
  width: 20px;
  height: 20px;
  fill: white;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--primary-light);
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.prev-slide, .next-slide {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.5rem;
}

.prev-slide:hover, .next-slide:hover {
  color: var(--primary-dark);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* How it works section */
.how-it-works {
  background-color: white;
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.step-svg {
  width: 100%;
  height: 100%;
}

.step-svg .icon-bg {
  fill: var(--primary-light);
  opacity: 0.2;
}

.step-svg .icon-element {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
}

.step-svg .icon-detail {
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
}

.process-connector {
  flex: 0 0 70px;
  height: 3px;
  background-color: var(--primary-light);
  margin-top: 60px;
  position: relative;
}

.process-connector:before, .process-connector:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-light);
  top: 50%;
  transform: translateY(-50%);
}

.process-connector:before {
  left: 0;
}

.process-connector:after {
  right: 0;
}

/* FAQ Section */
.faq {
  background-color: var(--secondary);
}

.accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: white;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  background-color: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-icon {
  margin-right: 1rem;
  font-size: 1.25rem;
}

.accordion-title {
  flex-grow: 1;
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(45deg);
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-cta h3 {
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
  background-color: white;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-form-container {
  background-color: var(--secondary);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background-color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-top: 0.3rem;
  margin-right: 0.8rem;
}

.form-group.checkbox label {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map {
  height: 300px;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.address {
  background-color: var(--secondary);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.address h3 {
  margin-top: 0;
}

.address p {
  margin-bottom: 0.5rem;
}

.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem;
  border-radius: var(--radius-large);
  text-align: center;
  color: white;
}

.newsletter h2 {
  color: white;
  margin-bottom: 2rem;
}

.newsletter h2:after {
  background: white;
}

.subscribe-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row input {
  flex-grow: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 1.5rem;
  font-size: 1rem;
}

.success-message {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-logo p {
  opacity: 0.7;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3:after,
.footer-legal h3:after,
.footer-contact h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  opacity: 0.5;
  font-size: 0.9rem;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --primary: #5CBD60;
    --primary-light: #85BC73;
    --primary-dark: #3a8c3e;
    --secondary: #1a1a1a;
    --text: #e0e0e0;
    --text-light: #b0b0b0;
    --text-lighter: #808080;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  body {
    background-color: #111;
  }
  
  header {
    background-color: #222;
  }
  
  .nav-menu a {
    color: #e0e0e0;
  }
  
  .mobile-menu-toggle span {
    background-color: #e0e0e0;
  }
  
  .btn.secondary {
    background-color: #333;
    color: var(--primary);
  }
  
  .btn.secondary:hover {
    background-color: #444;
  }
  
  .intro {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), var(--linen-bg);
  }
  
  .what-is {
    background-color: #222;
  }
  
  .info-card {
    background-color: #333;
  }
  
  table {
    background-color: #333;
  }
  
  table th {
    background-color: var(--primary-dark);
  }
  
  table tr:nth-child(even) {
    background-color: #3a3a3a;
  }
  
  table tr:hover {
    background-color: #444;
  }
  
  .solution {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--wood-bg);
  }
  
  .solution-text,
  .solution-timeline {
    background-color: rgba(34, 34, 34, 0.9);
  }
  
  .pricing {
    background-color: #222;
  }
  
  .pricing-card {
    background-color: #333;
  }
  
  .testimonials {
    background-color: #222;
  }
  
  .testimonial-bubble {
    background-color: #333;
  }
  
  .how-it-works {
    background-color: #222;
  }
  
  .faq {
    background-color: #111;
  }
  
  .accordion-item {
    background-color: #333;
  }
  
  .accordion-header {
    background-color: #333;
  }
  
  .accordion-header:hover {
    background-color: #444;
  }
  
  .faq-cta {
    background-color: #333;
  }
  
  .contact {
    background-color: #222;
  }
  
  .contact-form-container {
    background-color: #333;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    background-color: #444;
    border-color: #555;
    color: #e0e0e0;
  }
  
  .address {
    background-color: #333;
  }
}

/* Responsive Styles */
@media (max-width: 1280px) {
  h1 {
    font-size: 2.7rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .intro-leaf {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 960px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 100;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .solution-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-leaf {
    display: none;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-connector {
    display: none;
  }
  
  @media (prefers-color-scheme: dark) {
    .nav-menu {
      background-color: #222;
    }
  }
}

@media (max-width: 760px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .intro {
    min-height: 70vh;
  }
  
  .intro-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .card-price {
    font-size: 2rem;
  }
  
  .testimonial-bubble {
    padding: 1.5rem;
  }
  
  .newsletter {
    padding: 2rem 1.5rem;
  }
}