/* ============================================
   INNER PAGES SHARED STYLES
   ============================================ */

/* About page - intro statement */
.about-intro {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro-tag {
  display: inline-block;
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-intro .display {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-rule {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--spring));
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: grow 0.8s ease 0.3s both;
  transform-origin: left;
}

.about-intro p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--spring) 0%, var(--leaf) 50%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
}

.tl-left { flex-direction: row; }
.tl-right { flex-direction: row-reverse; }

.tl-left .tl-card { margin-right: calc(50% + 3rem); }
.tl-right .tl-card { margin-left: calc(50% + 3rem); }

.tl-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--leaf), var(--spring));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: white;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--cream), 0 8px 30px rgba(76, 175, 80, 0.3);
  flex-shrink: 0;
}

.tl-connector { display: none; }

.tl-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 420px;
}

.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.tl-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.tl-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--soil-dark);
  margin-bottom: 0.8rem;
}

.tl-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.tl-list {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tl-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.tl-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--leaf);
}

.tl-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--leaf);
  font-size: 0.9rem;
}

/* ---- VALUES GRID ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s;
}

.value-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.7rem;
}

.value-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---- INNER CTA ---- */
.inner-cta {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  padding: 6rem 2rem;
}

.inner-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.inner-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}

.inner-cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================
   TECHNOLOGY PAGE
   ============================================ */
.tech-intro {
  max-width: 800px;
  margin: 0 auto;
}

.tech-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.tech-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.tech-process-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.tech-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.tech-process-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--spring));
}

.tech-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(76, 175, 80, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tech-process-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--soil-dark);
  margin-bottom: 0.8rem;
}

.tech-process-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Products section */
.products-section { background: var(--cream); }

.products-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-full-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.product-full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.product-full-header {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  padding: 2.5rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.product-full-header::before {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.product-full-header .product-emoji { font-size: 3.5rem; display: block; margin-bottom: 0.8rem; }
.product-full-header h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; }
.product-full-header .price { font-size: 1.3rem; font-weight: 700; color: var(--sun); margin-top: 0.4rem; }

.product-full-img-wrap {
  background: var(--cream);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.product-full-img {
  height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
  transition: transform 0.4s ease;
}

.product-full-card:hover .product-full-img {
  transform: scale(1.04) translateY(-4px);
}

.product-full-body { padding: 2rem; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.spec-table td {
  padding: 0.7rem 0;
  font-size: 0.9rem;
}
.spec-table td:first-child { color: var(--text-muted); width: 55%; }
.spec-table td:last-child { font-weight: 600; color: var(--soil-dark); }

.product-full-badge {
  display: inline-block;
  background: rgba(76, 175, 80, 0.1);
  color: var(--leaf);
  border: 1px solid rgba(76, 175, 80, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Comparison section */
.comparison-section { background: var(--soil-dark); }

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th {
  background: rgba(76, 175, 80, 0.15);
  color: var(--spring);
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table td {
  padding: 0.9rem 1.5rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comparison-table tbody tr:hover td { background: rgba(255,255,255,0.03); }

.comparison-table .highlight-col {
  color: var(--spring);
  font-weight: 600;
}

.tag-good {
  background: rgba(76, 175, 80, 0.2);
  color: var(--spring);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.tag-bad {
  background: rgba(255, 80, 80, 0.15);
  color: #ff8080;
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.crops-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.crops-showcase-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66.6%;
  margin-top: 2rem;
}

.crop-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.crop-card:hover .crop-bg-img {
  transform: scale(1.05);
}

.crop-emoji { display: none; }

.crop-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1.1;
  display: flex;
  align-items: flex-end;
  background: var(--forest);
  transition: transform 0.3s;
}

.crop-card:hover { transform: scale(1.02); }

.crop-emoji {
  font-size: 6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  opacity: 0.7;
}

.crop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,0,0.9) 0%, transparent 60%);
}

.crop-label {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: white;
}

.crop-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.crop-label p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
}

/* Results stats */
.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  overflow: hidden;
}

.result-stat {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.result-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--spring));
}

.result-stat .big-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--leaf);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.result-stat p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Testimonial cards */
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.t-quote {
  font-size: 3rem;
  color: var(--spring);
  line-height: 0.8;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.t-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf), var(--spring));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.t-name { font-weight: 600; color: white; font-size: 0.9rem; }
.t-role { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* Data highlights */
.data-section { background: var(--cream); }

.data-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.data-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.data-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--soil-dark);
}

.data-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.data-label { font-size: 0.85rem; color: var(--text-muted); min-width: 100px; }

.data-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.data-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--leaf), var(--spring));
  animation: grow 1s ease 0.5s both;
  transform-origin: left;
}

.data-pct {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--leaf);
  min-width: 40px;
  text-align: right;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--soil-dark);
  margin-bottom: 0.2rem;
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.contact-detail-text a:hover { color: var(--leaf); }

/* Map */
.map-section { background: var(--cream); }

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
}

/* Form */
.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soil-dark);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--offwhite);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.12);
  background: white;
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--leaf), var(--spring));
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.35);
  margin-top: 0.5rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.5);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--leaf); }
.form-success p { color: var(--text-muted); }

/* ============================================
   RESPONSIVE INNER PAGES
   ============================================ */
@media (max-width: 1024px) {
  .timeline::before { left: 28px; }
  .tl-left .tl-card,
  .tl-right .tl-card { margin: 0; margin-left: 80px; }
  .tl-left, .tl-right { flex-direction: column; }
  .tl-number { position: absolute; left: 0; transform: none; width: 48px; height: 48px; font-size: 1.2rem; }
  .tl-card { max-width: none; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .tech-process-grid { grid-template-columns: 1fr 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: 1fr 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .data-cards { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .crops-showcase { grid-template-columns: 1fr 1fr; }
  .crops-showcase-2 { grid-template-columns: 1fr 1fr; max-width: 100%; }
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .results-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .result-stat { padding: 1.2rem 0.8rem; }
  .result-stat .big-num { font-size: clamp(1.2rem, 6vw, 2rem); }
  .crops-showcase { grid-template-columns: 1fr; }
  .crops-showcase-2 { grid-template-columns: 1fr; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .tech-process-grid { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
}
