/* ===== INNOV8 - Global Styles ===== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-green: #2D5016;
  --accent-green: #7CB342;
  --dark-text: #263238;
  --white: #FFFFFF;
  --light-green-bg: #E8F5E9;
  --light-gray: #F5F5F5;
  --medium-gray: #B0BEC5;
  --border-color: #E0E0E0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-text);
  line-height: 1.7;
  background: var(--white);
}

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

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-green);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-green);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

/* ===== Layout ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-light {
  background: var(--light-green-bg);
}

.section-gray {
  background: var(--light-gray);
}

.section-dark {
  background: var(--primary-green);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.15rem;
  color: #546E7A;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer .logo img {
  height: 240px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.nav-links a {
  color: var(--dark-text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
  background: var(--light-green-bg);
}

.nav-links .btn-nav {
  background: var(--accent-green);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
}

.nav-links .btn-nav:hover {
  background: var(--primary-green);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-green);
}

.btn-white:hover {
  background: var(--light-green-bg);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-group.center {
  justify-content: center;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(45,80,22,0.75) 0%, rgba(45,80,22,0.6) 100%),
    url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: 300px;
}

.hero .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  max-width: 650px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 550px;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.hero .btn-group {
  margin-bottom: 3rem;
}

.page-hero {
  min-height: 45vh;
  padding-top: 300px;
  background: linear-gradient(135deg, rgba(45,80,22,0.75) 0%, rgba(45,80,22,0.6) 100%),
    url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero p {
  color: var(--white);
}

.page-hero-terreplenish {
  background: linear-gradient(135deg, rgba(45,80,22,0.75) 0%, rgba(45,80,22,0.6) 100%),
    url('bg-4.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-hero-about {
  background: linear-gradient(135deg, rgba(45,80,22,0.75) 0%, rgba(45,80,22,0.6) 100%),
    url('bg-2.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-hero-solutions {
  background: linear-gradient(135deg, rgba(45,80,22,0.75) 0%, rgba(45,80,22,0.6) 100%),
    url('bg-5.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-hero-pilot {
  background: linear-gradient(135deg, rgba(45,80,22,0.75) 0%, rgba(45,80,22,0.6) 100%),
    url('bg-3.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-hero-resources {
  background: linear-gradient(135deg, rgba(45,80,22,0.75) 0%, rgba(45,80,22,0.6) 100%),
    url('bg-4.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.page-hero h1 {
  font-size: 2.8rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.trust-badge .icon {
  width: 20px;
  height: 20px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== Grid Systems ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: start;
}

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

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

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Clickable card links */
a.card-link-block {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}

a.card-link-block:hover {
  border: 2px solid var(--accent-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

a.card-link-block .card-source {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.02em;
}

.card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #546E7A;
  font-size: 0.95rem;
}

.card-accent {
  border-top: 4px solid var(--accent-green);
}

.card-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  box-shadow: none;
}

.card-outline:hover {
  border-color: var(--accent-green);
}

/* ===== Steps/Process ===== */
.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
}

/* ===== Benefits List ===== */
.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 24px;
  height: 24px;
  background: var(--accent-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.benefits-list li strong {
  display: block;
  color: var(--primary-green);
  margin-bottom: 0.2rem;
}

/* ===== Comparison Table ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th, td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

th {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  position: sticky;
  top: 0;
}

th:last-child {
  background: var(--accent-green);
}

tr:hover td {
  background: var(--light-green-bg);
}

td:first-child {
  font-weight: 600;
  color: var(--primary-green);
}

/* ===== Accordion/FAQ ===== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.accordion-header:hover {
  background: var(--light-green-bg);
}

.accordion-header::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-green);
  font-weight: 400;
  transition: transform var(--transition);
}

.accordion-item.active .accordion-header::after {
  content: '−';
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 1.5rem 1.5rem;
  color: #546E7A;
  line-height: 1.7;
}

/* ===== Tabs ===== */
.tabs {
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.tab-btn {
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--border-color);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-text);
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: var(--accent-green);
  color: var(--primary-green);
}

.tab-btn.active {
  background: var(--accent-green);
  color: var(--white);
  border-color: var(--accent-green);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===== Crop Tags ===== */
.crop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.crop-tag {
  padding: 1rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--primary-green);
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  transition: all var(--transition);
}

.crop-tag:hover {
  background: var(--accent-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Certifications ===== */
.cert-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cert-item {
  text-align: center;
  max-width: 220px;
}

.cert-icon {
  width: 70px;
  height: 70px;
  background: var(--light-green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.cert-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.cert-item p {
  font-size: 0.85rem;
  color: #546E7A;
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.section-light .cta-section h2 {
  color: var(--primary-green);
}

/* ===== Included List ===== */
.included-list {
  list-style: none;
  max-width: 500px;
}

.included-list li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 1.05rem;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

/* ===== Form Styles ===== */
.form-section {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary-green);
  font-size: 0.95rem;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
}

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

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

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent-green);
}

.form-note {
  font-size: 0.85rem;
  color: #78909C;
  margin-top: 1rem;
}

/* ===== Timeline ===== */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-green);
}

.timeline-item {
  padding-left: 70px;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 10px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.timeline-item h3 {
  margin-bottom: 0.3rem;
}

.timeline-item .timeline-date {
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===== Resource Cards ===== */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.resource-card-body {
  padding: 1.5rem;
}

.resource-card-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: var(--light-green-bg);
  color: var(--primary-green);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.resource-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.resource-card p {
  font-size: 0.9rem;
  color: #546E7A;
}

.resource-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Stats ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.stat .label {
  font-size: 0.95rem;
  color: #546E7A;
  margin-top: 0.3rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-green);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: rgba(255,255,255,0.8);
}

/* ===== Contact Info ===== */
.contact-info {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

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

.contact-item .contact-icon {
  width: 50px;
  height: 50px;
  background: var(--light-green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 0.5rem;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  section { padding: 3.5rem 0; }

  .container { padding: 0 1.2rem; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.4rem; }
  .page-hero { min-height: 35vh; }

  .grid-2, .grid-3, .grid-4, .grid-6 {
    grid-template-columns: 1fr;
  }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .nav-links {
    display: none;
    position: fixed;
    top: 300px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    gap: 0.2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.8rem 1rem;
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.8rem;
  }

  .cert-row { gap: 1.5rem; }
  .stats-row { gap: 2rem; }
  .contact-info { gap: 1.5rem; }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .form-section {
    padding: 1.5rem;
  }

  .tab-buttons {
    gap: 0.3rem;
  }

  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .timeline::before { left: 18px; }
  .timeline-item { padding-left: 55px; }
  .timeline-number { left: 0; width: 36px; height: 36px; font-size: 0.85rem; }

  .table-wrapper { margin: 0 -1.2rem; border-radius: 0; }

  table { font-size: 0.85rem; }
  th, td { padding: 0.7rem 0.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .crop-grid { gap: 0.6rem; }
  .crop-tag { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
}
