/* ==========================================================================
   AGROEMERGE - MAIN STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

p {
  color: var(--color-text-muted);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

/* ==========================================================================
   SECTION & TYPOGRAPHY UTILITIES
   ========================================================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(46, 125, 50, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.section-tag.tag-accent {
  background: rgba(124, 179, 66, 0.15);
  color: var(--color-accent-dark);
  border-color: rgba(124, 179, 66, 0.3);
}

.section-tag.tag-earth {
  background: rgba(139, 90, 43, 0.12);
  color: var(--color-earth);
  border-color: rgba(139, 90, 43, 0.25);
}

.section-tag.tag-navy {
  background: rgba(13, 27, 42, 0.08);
  color: var(--color-navy);
  border-color: rgba(13, 27, 42, 0.2);
}

.section-tag.tag-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-accent-light);
  border-color: rgba(124, 179, 66, 0.35);
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  position: relative;
}

.section-title.title-light {
  color: var(--color-white);
}

.section-subtitle {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto var(--space-12);
}

.section-subtitle.subtitle-light {
  color: var(--color-text-subtle);
}

.text-center { text-align: center; }
.text-highlight { color: var(--color-primary); }
.text-highlight-accent { color: var(--color-accent); }
.text-highlight-earth { color: var(--color-earth); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, #1B5E20 0%, #558B2F 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-navy);
  box-shadow: var(--shadow-accent);
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.scrolled {
  background: rgba(13, 27, 42, 0.98);
  height: 72px;
  box-shadow: var(--shadow-dark-card);
  border-bottom-color: rgba(124, 179, 66, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 2px;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-title span {
  color: var(--color-accent);
}

.brand-tagline {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #94A3B8;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #E2E8F0;
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.75rem;
  cursor: pointer;
  padding: var(--space-2);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + var(--space-10));
  padding-bottom: var(--space-16);
  background: var(--grad-hero);
  color: var(--color-white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.35rem 0.9rem;
  background: rgba(124, 179, 66, 0.12);
  border: 1px solid rgba(124, 179, 66, 0.35);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
  animation: pulseGlow 2s infinite;
}

.hero-badge-text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent-light);
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.35rem, 4.2vw, 3.6rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.18;
  margin-bottom: var(--space-6);
}

.hero-title .glow-word {
  color: var(--color-accent);
  text-shadow: 0 0 25px rgba(124, 179, 66, 0.35);
}

.hero-description {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-accent-light);
  line-height: 1.1;
}

.metric-label {
  font-size: var(--text-xs);
  color: #94A3B8;
  margin-top: 2px;
  font-weight: 500;
}

/* Hero Visual Showcase with Carousel & Real Results */
.hero-visual {
  position: relative;
}

.hero-visual-card {
  background: var(--grad-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brand-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-brand-badge img {
  height: 32px;
  width: auto;
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 1px;
}

.hero-brand-badge span {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-white);
}

.card-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 600;
}

/* Hero Results Slider */
.hero-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  background: #0D1B2A;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5) var(--space-5) var(--space-4);
  background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-slide-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-primary);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.hero-slide-result {
  font-size: var(--text-xs);
  color: var(--color-accent-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Slider Tabs Selector */
.hero-slider-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.hero-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #CBD5E1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
  text-align: left;
  line-height: 1.15;
}

.hero-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.hero-tab-btn.active {
  background: rgba(46, 125, 50, 0.35);
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  box-shadow: 0 0 12px rgba(124, 179, 66, 0.3);
}

.hero-tab-btn .tab-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 179, 66, 0.35);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.floating-badge-1 {
  top: -15px;
  right: -15px;
}

.floating-badge-2 {
  bottom: -15px;
  left: -15px;
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 125, 50, 0.25);
  color: var(--color-accent);
  font-size: 1.1rem;
}

.badge-text-title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.badge-text-sub {
  font-size: 0.7rem;
  color: var(--color-accent-light);
}

/* Solution Cards with Real Field Photos */
.solution-card-img-wrap {
  position: relative;
  height: 190px;
  margin: calc(-1 * var(--space-8)) calc(-1 * var(--space-8)) var(--space-5);
  overflow: hidden;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.solution-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.solution-card:hover .solution-card-img {
  transform: scale(1.08);
}

.solution-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(13, 27, 42, 0.1) 0%, rgba(13, 27, 42, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--space-4);
}

/* ==========================================================================
   BRAND CONCEPT & 4 PILLARS
   ========================================================================== */
.section-brand {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.brand-concept-banner {
  background: linear-gradient(135deg, #F8FAF8 0%, #EFF6EF 100%);
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-left: 6px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-bottom: var(--space-12);
  box-shadow: var(--shadow-md);
}

.concept-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.concept-icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-green);
}

.concept-title {
  font-size: var(--text-xl);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
}

.concept-quote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-navy);
  font-weight: 500;
  line-height: 1.6;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.pillar-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gray-border);
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pillar-card.pillar-planta:hover::before { background: var(--color-accent); }
.pillar-card.pillar-planta:hover { border-color: rgba(124, 179, 66, 0.4); }

.pillar-card.pillar-campos:hover::before { background: var(--color-primary); }
.pillar-card.pillar-campos:hover { border-color: rgba(46, 125, 50, 0.4); }

.pillar-card.pillar-suelo:hover::before { background: var(--color-earth); }
.pillar-card.pillar-suelo:hover { border-color: rgba(139, 90, 43, 0.4); }

.pillar-card.pillar-tech:hover::before { background: var(--color-navy); }
.pillar-card.pillar-tech:hover { border-color: rgba(13, 27, 42, 0.4); }

.pillar-icon-box {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-4);
  transition: transform var(--transition-normal);
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.1);
}

.icon-planta { background: rgba(124, 179, 66, 0.15); color: var(--color-accent-dark); }
.icon-campos { background: rgba(46, 125, 50, 0.15); color: var(--color-primary); }
.icon-suelo { background: rgba(139, 90, 43, 0.15); color: var(--color-earth); }
.icon-tech { background: rgba(13, 27, 42, 0.12); color: var(--color-navy); }

.pillar-name {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.pillar-role {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.pillar-planta .pillar-role { color: var(--color-accent-dark); }
.pillar-campos .pillar-role { color: var(--color-primary); }
.pillar-suelo .pillar-role { color: var(--color-earth); }
.pillar-tech .pillar-role { color: var(--color-navy); }

.pillar-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SOLUTIONS SECTION (6 PRECISION SOLUTIONS)
   ========================================================================== */
.section-solutions {
  padding: var(--space-20) 0;
  background: var(--color-bg-light);
}

.solutions-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.filter-btn {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-green);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.solution-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(46, 125, 50, 0.35);
}

.solution-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.solution-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: var(--grad-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-green);
}

.solution-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(124, 179, 66, 0.15);
  color: var(--color-accent-dark);
  border: 1px solid rgba(124, 179, 66, 0.3);
}

.solution-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.solution-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.solution-features-list {
  list-style: none;
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.solution-features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: #334155;
  font-weight: 500;
}

.feature-bullet {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.solution-card-footer {
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solution-cta-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
  background: none;
  border: none;
}

.solution-cta-link:hover {
  color: var(--color-primary-dark);
}

/* ==========================================================================
   INTERACTIVE DIAGNOSTIC WIZARD
   ========================================================================== */
.section-wizard {
  padding: var(--space-20) 0;
  background: var(--grad-hero);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.wizard-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--grad-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: var(--space-10);
}

.wizard-progress-bar {
  position: absolute;
  top: 22px;
  left: 15%;
  right: 15%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 1;
}

.wizard-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-green);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.wizard-step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1B2A4A;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  transition: all var(--transition-normal);
}

.wizard-step-node.active .step-circle {
  background: var(--color-primary);
  border-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(124, 179, 66, 0.4);
}

.wizard-step-node.completed .step-circle {
  background: var(--color-accent);
  border-color: var(--color-accent-light);
  color: var(--color-navy);
}

.step-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wizard-step-node.active .step-label {
  color: var(--color-accent-light);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

.wizard-step-heading {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  text-align: center;
}

.wizard-step-sub {
  font-size: var(--text-sm);
  color: #94A3B8;
  margin-bottom: var(--space-6);
  text-align: center;
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.wizard-option-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wizard-option-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.wizard-option-card.selected {
  background: rgba(46, 125, 50, 0.3);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(124, 179, 66, 0.25);
}

.option-icon {
  font-size: 2rem;
  margin-bottom: var(--space-2);
  color: var(--color-accent);
}

.option-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.option-desc {
  font-size: var(--text-xs);
  color: #94A3B8;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-result-box {
  background: linear-gradient(145deg, #182C44 0%, #102135 100%);
  border: 1px solid rgba(124, 179, 66, 0.35);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.3rem 0.8rem;
  background: rgba(124, 179, 66, 0.15);
  color: var(--color-accent-light);
  border: 1px solid rgba(124, 179, 66, 0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.result-title {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.result-desc {
  font-size: var(--text-base);
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.result-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.result-benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
}

.benefit-val {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-accent);
}

.benefit-txt {
  font-size: var(--text-xs);
  color: #94A3B8;
}

/* ==========================================================================
   WHY AGROEMERGE & VALUE PROPOSITION
   ========================================================================== */
.section-why {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-brand-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-border);
  background: #fff;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.why-feature-item {
  display: flex;
  gap: var(--space-4);
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: rgba(46, 125, 50, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-feature-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.why-feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.multibrand-banner {
  margin-top: var(--space-16);
  padding: var(--space-8);
  background: var(--color-bg-light);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-xl);
  text-align: center;
}

.multibrand-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.multibrand-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.brand-pill {
  padding: var(--space-2) var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.section-testimonials {
  padding: var(--space-20) 0;
  background: var(--color-bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
}

.testimonial-text {
  font-size: var(--text-sm);
  color: #334155;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--color-gray-border);
  padding-top: var(--space-4);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-navy);
}

.author-location {
  font-size: var(--text-xs);
  color: var(--color-gray);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.section-contact {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--space-10);
}

.contact-info-panel {
  background: var(--grad-hero);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
}

.contact-info-header h3 {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.contact-info-header p {
  color: #CBD5E1;
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(124, 179, 66, 0.15);
  color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: var(--text-xs);
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
}

.contact-form-panel {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-feedback {
  display: none;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
}

.form-feedback.success {
  display: block;
  background: rgba(46, 125, 50, 0.12);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--color-navy);
  color: #CBD5E1;
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand-logo {
  height: 48px;
  margin-bottom: var(--space-4);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 2px;
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: #94A3B8;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: #64748B;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.whatsapp-btn-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-normal);
  animation: pulseGlowGreen 3s infinite;
}

.floating-whatsapp:hover .whatsapp-btn-circle {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .pillars-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .result-benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }

  .mobile-menu-active .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--color-navy);
    padding: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    gap: var(--space-4);
  }

  .mobile-menu-active .nav-actions {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--header-height) + 260px);
    left: 0;
    width: 100%;
    padding: 0 var(--space-6) var(--space-6);
    background: var(--color-navy);
  }
}
