/* ═══════════════════════════════════════
   HONO AGRI — VIBRANT AGTECH SYSTEM (PHOTO-FORWARD GLASS THEME)
   ═══════════════════════════════════════ */

:root {
  --g: #22c55e;
  /* Vivid Emerald Green */
  --g2: #16a34a;
  /* Forest Green Accent */
  --g3: rgba(34, 197, 94, 0.12);
  --g4: rgba(34, 197, 94, 0.22);
  --g-glow: rgba(34, 197, 94, 0.35);

  --o: #f97316;
  /* Vibrant Harvest Amber/Orange */
  --o2: rgba(249, 115, 22, 0.18);
  --o-glow: rgba(249, 115, 22, 0.3);

  --bg: #091d0c;
  /* Deep Organic Forest Green */
  --bg2: #0e2712;
  /* Surface Dark Green */
  --bg3: #143319;
  /* Elevated Card Dark Green */
  --bg-card: rgba(14, 39, 18, 0.78);

  --surface: rgba(255, 255, 255, 0.05);
  --surface2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-g: rgba(34, 197, 94, 0.32);
  --border-o: rgba(249, 115, 22, 0.35);

  --text: #ffffff;
  /* Crisp White Text */
  --text-2: #d1e7d4;
  /* Soft Muted Green Text */
  --text-3: #92b896;
  /* Subtle Muted Label Text */

  --display: 'Plus Jakarta Sans', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --r-sm: 8px;
  --r: 14px;
  --r2: 20px;
  --r3: 28px;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

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

button {
  cursor: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }
}

/* ── Cursor ── */
#cur {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  top: 0;
  left: 0;
}

#cur .dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g);
  transform: translate(-50%, -50%);
}

#cur .ring {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(34, 197, 94, 0.6);
  transform: translate(-50%, -50%);
  transition: width .28s ease-out, height .28s ease-out, border-color .28s ease-out;
}

body.hov #cur .ring {
  width: 50px;
  height: 50px;
  border-color: var(--g);
  background: rgba(34, 197, 94, 0.12);
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

.wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2s infinite ease-out;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.wa-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.wa-tooltip {
  background: rgba(14, 39, 18, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-g);
  color: #fff;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all .3s ease;
  pointer-events: none;
}

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

/* ── Scroll Reveal ── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

.rv[d="1"] { transition-delay: .08s; }
.rv[d="2"] { transition-delay: .16s; }
.rv[d="3"] { transition-delay: .26s; }
.rv[d="4"] { transition-delay: .36s; }

/* ═══ HEADER ═══ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0;
  transition: background .4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 28px;
  max-width: 100%;
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, background .4s ease, backdrop-filter .4s ease;
}

header.s .header-inner {
  background: rgba(9, 29, 12, 0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), opacity .25s ease;
}

.logo:hover {
  transform: translateY(-1px);
  opacity: 0.98;
}

/* ── White Glass Symbol Badge ── */
.logo-mark {
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.logo:hover .logo-mark {
  transform: scale(1.04);
  border-color: var(--g);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.logo-mark img {
  height: 140%;
  width: 140%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.logo-accent {
  color: var(--g);
  font-weight: 800;
}

/* ── Corporate White Pill Badge (Full Logo Graphic Option) ── */
.logo-brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 5px 14px 5px 10px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}

.logo-brand-pill:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 26px rgba(34, 197, 94, 0.35);
}

.logo-brand-pill img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transition: transform .25s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 15px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  letter-spacing: -0.01em;
}

nav a:hover {
  color: #ffffff;
  background: var(--surface2);
}

nav a.highlight-nav {
  color: var(--o);
  background: var(--o2);
  border: 1px solid var(--border-o);
  font-weight: 600;
}

nav a.highlight-nav:hover {
  background: rgba(249, 115, 22, 0.28);
  color: #fff;
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: none;
  white-space: nowrap;
  transition: all .22s cubic-bezier(.16, 1, .3, 1);
  letter-spacing: -0.01em;
}

.btn-pill.ghost {
  background: var(--surface);
  color: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-pill.ghost:hover {
  background: var(--surface2);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-pill.green {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--g-glow);
}

.btn-pill.green:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(34, 197, 94, 0.5);
}

.btn-pill.amber {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.4);
}

.btn-pill.amber:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(249, 115, 22, 0.55);
}

.ham {
  display: none;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}

.ham span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  display: block;
}

@media (max-width: 900px) {
  nav { display: none !important; }
  .hdr-right .btn-pill { display: none !important; }
  .ham { display: flex !important; }
  .header-inner { padding: 0 16px; height: 60px; }
  .logo { gap: 8px; }
  .logo-mark { height: 36px; width: 36px; border-radius: 10px; }
  .logo-text { font-size: 17px; }
}

/* Mobile Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(9, 29, 12, 0.96);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  padding: 24px 24px 40px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: var(--shadow-lg);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: none;
}

.drawer a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .25s;
}

.drawer a:hover {
  color: var(--g);
  padding-left: 6px;
}

.drawer .btn-pill {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}

/* ═══ HERO SECTION (HIGH VISIBILITY PHOTO BACKGROUND) ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(5, 20, 8, 0.65) 0%, rgba(7, 28, 12, 0.82) 100%),
              url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 10%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 10%, black 40%, transparent 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

.blob-1 {
  width: 750px;
  height: 500px;
  top: -160px;
  left: -120px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
  animation: blob-drift 22s ease-in-out infinite alternate;
}

.blob-2 {
  width: 650px;
  height: 600px;
  top: 10%;
  right: -140px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
  animation: blob-drift 28s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(35px, -25px) scale(1.1); }
}

/* Hero Body */
.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 124px 0 76px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 56px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.badge-dot.orange { background: var(--o); }
.badge-dot.gray { background: #94a3b8; animation: none; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}

.hero-h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.hero-h1 .accent-g {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 60%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15.5px, 1.45vw, 18px);
  line-height: 1.7;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 34px;
  font-weight: 450;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 520px;
}

@media (max-width: 480px) {
  .hero-pillars { grid-template-columns: 1fr; }
}

.pillar-card {
  background: rgba(14, 39, 18, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-g);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}

.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--g);
  background: rgba(18, 48, 23, 0.88);
}

.pillar-card.consulting-pillar {
  border-color: var(--border-o);
  background: rgba(30, 20, 10, 0.72);
}

.pillar-card.consulting-pillar:hover {
  border-color: var(--o);
  background: rgba(38, 24, 12, 0.85);
}

.pillar-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g3);
  border: 1px solid var(--border-g);
}

.pillar-card.consulting-pillar .pillar-icon {
  background: var(--o2);
  border-color: var(--border-o);
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  color: var(--g);
}

.pillar-card.consulting-pillar .pillar-icon svg {
  color: var(--o);
}

.pillar-info .ptitle {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.pillar-info .pdesc {
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 2px;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  align-items: center;
}

.hero-metrics {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.metric .m-val {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  display: block;
}

.metric .m-lab {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}

.m-div {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Right Card: Interactive Platform & Expert Booking Showcase */
.hero-card {
  background: rgba(11, 33, 14, 0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border-g);
  border-radius: var(--r3);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.card-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border);
}

.card-tab {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  border: none;
  background: none;
  text-align: center;
  cursor: none;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
}

.card-tab.active {
  color: #ffffff;
  background: rgba(34, 197, 94, 0.12);
  border-bottom-color: var(--g);
}

.card-tab.active.tab-consult {
  border-bottom-color: var(--o);
  background: rgba(249, 115, 22, 0.14);
}

.card-tab svg {
  width: 16px;
  height: 16px;
}

.card-content-pane {
  padding: 18px;
}

.expert-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
  transition: all .25s ease;
}

.expert-card-row:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: var(--o);
  transform: translateY(-1px);
}

.expert-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.expert-avatar.vet {
  border-color: var(--border-o);
  background: rgba(249, 115, 22, 0.15);
}

.expert-avatar svg {
  width: 22px;
  height: 22px;
  color: var(--g);
}

.expert-avatar.vet svg {
  color: var(--o);
}

.expert-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--g);
  border: 2px solid #0e2712;
}

.expert-info {
  flex: 1;
}

.expert-info .ename {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.expert-info .espec {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 1px;
}

.expert-info .emeta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  margin-top: 3px;
  display: flex;
  gap: 8px;
  font-weight: 500;
}

.expert-action-btn {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--o);
  background: var(--o2);
  border: 1px solid var(--border-o);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all .2s ease;
}

.expert-action-btn:hover {
  background: var(--o);
  color: #fff;
}

.card-banner-box {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(34, 197, 94, 0.12) 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cbb-text {
  font-size: 12.5px;
  color: var(--text-2);
  font-weight: 500;
}

.cbb-text strong {
  color: #ffffff;
  display: block;
  font-family: var(--display);
  font-size: 13.5px;
}

/* Stats Bar */
.hero-bar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(9, 26, 12, 0.88);
  backdrop-filter: blur(18px);
}

.hb-item {
  padding: 22px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background .25s;
}

.hb-item:last-child {
  border-right: none;
}

.hb-item:hover {
  background: var(--surface2);
}

.hb-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--g3);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hb-icon svg {
  width: 20px;
  height: 20px;
  color: var(--g);
}

.hb-item:nth-child(3) .hb-icon svg {
  color: var(--o);
}

.hb-num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.hb-txt {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .hero-bar { grid-template-columns: 1fr 1fr; }
  .hb-item:nth-child(2) { border-right: none; }
  .hb-item:nth-child(n+3) { border-top: 1px solid var(--border); }
}

/* ═══ PROBLEM / CHALLENGE SECTION (HIGH VISIBILITY FIELD PHOTO) ═══ */
.problem {
  padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 25, 12, 0.78) 0%, rgba(5, 20, 8, 0.85) 100%),
              url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1800&q=80') center/cover fixed;
}

.problem::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), rgba(249, 115, 22, 0.4), transparent);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

@media (max-width: 860px) {
  .problem-inner { grid-template-columns: 1fr; gap: 44px; }
}

.sec-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sec-tag.orange-tag { color: var(--o); }

.problem-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.problem-h em {
  font-style: normal;
  background: linear-gradient(135deg, var(--o) 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pstat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(14, 39, 18, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}

.pstat:hover {
  background: rgba(18, 48, 23, 0.88);
  border-color: var(--border-g);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.pstat.highlight-pstat {
  border-color: var(--border-g);
  background: rgba(20, 52, 25, 0.82);
}

.pstat.highlight-pstat:hover {
  border-color: var(--g);
}

.pstat-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--o2);
  border: 1px solid var(--border-o);
}

.pstat.highlight-pstat .pstat-icon {
  background: var(--g3);
  border-color: var(--border-g);
}

.pstat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--o);
}

.pstat.highlight-pstat .pstat-icon svg {
  color: var(--g);
}

.pstat-body { flex: 1; }

.pstat-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.pstat-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 3px;
  line-height: 1.45;
}

.pstat-arrow {
  color: var(--g);
  font-size: 18px;
  font-weight: 700;
}

/* ═══ FEATURED AGRICULTURAL CONSULTING SECTION (VIVID FIELD BACKGROUND) ═══ */
.consulting-feature-sec {
  padding: clamp(85px, 9.5vw, 140px) 0;
  background: linear-gradient(180deg, rgba(9, 30, 14, 0.75) 0%, rgba(6, 22, 9, 0.86) 100%),
              url('https://images.unsplash.com/photo-1595974482597-4b8da8879bc5?auto=format&fit=crop&w=1800&q=80') center/cover fixed;
  position: relative;
  overflow: hidden;
}

.consulting-feature-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--o), rgba(34, 197, 94, 0.4), transparent);
}

.consulting-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  top: 20%;
  right: -100px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(90px);
}

.consulting-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}

@media (max-width: 920px) {
  .consulting-grid-main { grid-template-columns: 1fr; gap: 48px; }
}

.consulting-showcase-box {
  background: rgba(14, 39, 18, 0.84);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-o);
  border-radius: var(--r3);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.consulting-showcase-box::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 60%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--g);
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--border-g);
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-badge.consulting-badge {
  color: var(--o);
  background: var(--o2);
  border-color: var(--border-o);
}

.consulting-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.citem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.citem-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--o2);
  border: 1px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.citem-check svg {
  width: 14px;
  height: 14px;
  color: var(--o);
}

.citem-text {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}

.citem-text strong {
  color: #ffffff;
  font-weight: 700;
}

.experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 540px) {
  .experts-grid { grid-template-columns: 1fr; }
}

.expert-full-card {
  background: rgba(14, 39, 18, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .28s cubic-bezier(.16, 1, .3, 1);
}

.expert-full-card:hover {
  background: rgba(22, 52, 26, 0.88);
  border-color: var(--o);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.efc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.efc-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--o2);
  border: 1px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
}

.efc-icon svg {
  width: 22px;
  height: 22px;
  color: var(--o);
}

.efc-role {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.efc-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--o);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.efc-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 16px;
}

.efc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.efc-status {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--g);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.efc-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--o);
  background: var(--o2);
  border: 1px solid var(--border-o);
  padding: 5px 13px;
  border-radius: 100px;
  transition: all .2s ease;
}

.efc-btn:hover {
  background: var(--o);
  color: #fff;
}

/* ═══ PLATFORM FEATURES SECTION ═══ */
.features {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

.sec-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sec-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.sec-head {
  margin-bottom: 56px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 920px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .feat-grid { grid-template-columns: 1fr; }
}

.fcard {
  background: rgba(14, 39, 18, 0.78);
  backdrop-filter: blur(16px);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: background .3s ease, transform .3s ease;
}

.fcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g) 0%, rgba(34, 197, 94, 0.4) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.fcard.consult-fcard::before {
  background: linear-gradient(90deg, var(--o) 0%, rgba(249, 115, 22, 0.4) 100%);
}

.fcard:hover {
  background: rgba(19, 48, 23, 0.92);
}

.fcard:hover::before {
  transform: scaleX(1);
}

.fcard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.fcard-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .1em;
  font-weight: 600;
}

.fcard-badge {
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--o2);
  color: var(--o);
  border: 1px solid var(--border-o);
  font-weight: 600;
  letter-spacing: .04em;
}

.fcard-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 22px;
  background: var(--g3);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcard.consult-fcard .fcard-icon {
  background: var(--o2);
  border-color: var(--border-o);
}

.fcard-icon svg {
  width: 23px;
  height: 23px;
  color: var(--g);
}

.fcard.consult-fcard .fcard-icon svg {
  color: var(--o);
}

.fcard h3 {
  font-family: var(--display);
  font-size: 18.5px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.fcard p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  letter-spacing: -0.01em;
}

/* ═══ HOW IT WORKS SECTION ═══ */
.how {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--bg);
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 56px;
}

.step {
  background: rgba(14, 39, 18, 0.78);
  backdrop-filter: blur(16px);
  padding: 34px 28px;
  position: relative;
  transition: background .25s;
}

.step:hover {
  background: rgba(19, 48, 23, 0.92);
}

.step-num {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--g);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: block;
  font-weight: 600;
}

.step-ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--g3);
  border: 1px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-ico svg {
  width: 21px;
  height: 21px;
  color: var(--g);
}

.step h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

@media (max-width: 820px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ═══ CROP CYCLE SECTION (VIVID FIELD BACKGROUND) ═══ */
.cycle {
  padding: clamp(80px, 9vw, 130px) 0;
  background: linear-gradient(180deg, rgba(6, 22, 9, 0.78) 0%, rgba(10, 32, 15, 0.85) 100%),
              url('https://images.unsplash.com/photo-1586771107445-d3ca888129ff?auto=format&fit=crop&w=1800&q=80') center/cover fixed;
  position: relative;
  overflow: hidden;
}

.cycle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

.cycle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

@media (max-width: 900px) {
  .cycle-layout { grid-template-columns: 1fr; gap: 50px; }
}

.cycle-wheel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.c-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-g);
}

.c-ring-2 {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px dashed rgba(34, 197, 94, 0.4);
}

.c-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  padding: 10px;
  color: #fff;
}

.c-center strong {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.c-center span {
  font-family: var(--mono);
  font-size: 9px;
  color: #dcfce7;
  margin-top: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.c-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}

.c-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--o);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.4);
}

.c-lbl {
  position: absolute;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10.5px;
  background: rgba(14, 39, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-g);
  padding: 4px 11px;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cycle-copy h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.cycle-copy p {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cycle-ops {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.cycle-op {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
  border: 1px solid var(--border-g);
  background: rgba(14, 39, 18, 0.78);
  backdrop-filter: blur(12px);
  padding: 6px 13px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ═══ E-BOOKS AGROPECUÁRIOS SECTION ═══ */
.ebooks-sec {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.ebooks-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.4) 50%, transparent 100%);
}

.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

@media (max-width: 960px) {
  .ebooks-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .ebooks-grid { grid-template-columns: 1fr; }
}

.ebook-card {
  background: rgba(14, 39, 18, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ebook-card:hover {
  background: rgba(19, 48, 23, 0.92);
  border-color: var(--g);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ebook-cover {
  width: 100%;
  height: 190px;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #16a34a, #22c55e);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.ebook-cover-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.ebook-cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebook-badge {
  font-family: var(--mono);
  font-size: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  position: relative;
  z-index: 2;
}

.ebook-cover-title {
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.ebook-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
}

.ebook-title {
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.ebook-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.ebook-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.ebook-price {
  font-family: var(--display);
  font-size: 18.5px;
  font-weight: 800;
  color: var(--g);
  letter-spacing: -0.02em;
}

.ebook-buy-btn {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: var(--g);
  border: none;
  padding: 7.5px 16px;
  border-radius: 100px;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ebook-buy-btn:hover {
  background: var(--g2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--g-glow);
}

/* ═══ VALUE PROPOSITION QUOTE ═══ */
.value {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

.value-inner {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.value-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(34, 197, 94, 0.1), transparent 65%);
}

.value-quote {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 24px 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.value-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--g) 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

.value-line {
  width: 64px;
  height: 3px;
  border-radius: 3px;
  margin: 32px auto 0;
  background: linear-gradient(90deg, var(--g), var(--o));
}

/* ═══ FARMER SCHOOL SECTION (INATIVADA - BREVEMENTE) ═══ */
.school {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--bg);
  position: relative;
}

.school::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

.school-banner {
  width: 100%;
  height: 260px;
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.school-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.school-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 20%, rgba(5, 20, 8, 0.85) 100%);
}

.sb-cap {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: #ffffff;
  background: rgba(9, 29, 12, 0.88);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.courses {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 20px;
  scroll-snap-type: x mandatory;
}

.courses::-webkit-scrollbar {
  height: 4px;
}

.courses::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

/* Inactivated Course Card Styles */
.course {
  flex: 0 0 auto;
  width: 275px;
  scroll-snap-align: start;
  background: rgba(14, 39, 18, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 215px;
  transition: all .28s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.course:hover {
  border-color: var(--border-g);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: rgba(19, 48, 23, 0.92);
}

.course-status-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--o);
  background: var(--o2);
  border: 1px solid var(--border-o);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.course-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

.course h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  margin: 8px 0 8px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.course p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-weight: 500;
}

/* ═══ DIRECT CONTACT & CONSULTING REQUEST SECTION ═══ */
.contact-sec {
  padding: clamp(85px, 9.5vw, 140px) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.contact-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--o), var(--g), transparent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 52px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

.contact-form-box {
  background: rgba(14, 39, 18, 0.84);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-o);
  border-radius: var(--r3);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.cform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 540px) {
  .cform-grid { grid-template-columns: 1fr; }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field-group label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.field-group input, .field-group select, .field-group textarea {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  transition: all .2s ease;
}

.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
  border-color: var(--o);
  background: rgba(249, 115, 22, 0.08);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.field-group select option {
  background: #0e2712;
  color: #ffffff;
}

.field-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cinfo-card {
  background: rgba(14, 39, 18, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
}

.cinfo-card:hover {
  border-color: var(--border-g);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background: rgba(19, 48, 23, 0.9);
}

.cinfo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--o2);
  border: 1px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinfo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--o);
}

.cinfo-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.cinfo-val {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 3px;
  line-height: 1.5;
  font-weight: 500;
}

.cinfo-link {
  color: var(--o);
  font-weight: 700;
  text-decoration: underline;
  margin-top: 4px;
  display: inline-block;
}

/* ═══ CTA SECTION (HIGH VISIBILITY PHOTO BACKGROUND) ═══ */
.cta {
  padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 28, 12, 0.7) 0%, rgba(5, 20, 8, 0.85) 100%),
              url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2000&q=80') center/cover fixed;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}

.cta-bg-img {
  display: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 58px);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: #ffffff;
  line-height: 1.05;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.cta h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--g) 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  font-size: 16.5px;
  color: var(--text-2);
  margin-bottom: 38px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.waitform {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.waitform input {
  background: rgba(14, 39, 18, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-g);
  border-radius: 100px;
  padding: 13.5px 24px;
  color: #ffffff;
  font-family: var(--body);
  font-size: 14px;
  min-width: 290px;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
  letter-spacing: -0.01em;
}

.waitform input::placeholder {
  color: var(--text-3);
}

.waitform input:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 3px var(--g-glow);
}

.cta-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}

.confirm-msg {
  display: none;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--g);
  margin-bottom: 18px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--border-g);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
}

/* ═══ FOOTER ═══ */
footer {
  background: #051408;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 68px 0 34px;
  position: relative;
  color: #e2ebe3;
}

footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), rgba(249, 115, 22, 0.4), transparent);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}

@media (max-width: 520px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

.foot-brand .logo {
  color: #ffffff;
}

.foot-brand p {
  font-size: 13.5px;
  color: #a3b8a6;
  line-height: 1.65;
  max-width: 260px;
  margin-top: 14px;
}

.foot-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #86a38a;
  margin-bottom: 18px;
  font-weight: 600;
}

.foot-col a {
  display: block;
  font-size: 13.5px;
  color: #c4d4c6;
  margin-bottom: 11px;
  transition: color .2s;
  letter-spacing: -0.01em;
}

.foot-col a:hover {
  color: var(--g);
}

.foot-col a.highlight-foot {
  color: #ffbe76;
  font-weight: 600;
}

.foot-col a.highlight-foot:hover {
  color: #fff;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom p {
  font-family: var(--mono);
  font-size: 11px;
  color: #86a38a;
  letter-spacing: .04em;
}

/* ═══ FAQ SECTION (SEO & GOOGLE RICH SNIPPET OPTIMIZED) ═══ */
.faq-sec {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.faq-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), var(--o), transparent);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 48px auto 0;
}

.faq-item {
  background: rgba(14, 39, 18, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--border-g);
  background: rgba(19, 48, 23, 0.9);
}

.faq-item details {
  width: 100%;
}

.faq-item summary {
  padding: 22px 28px;
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--g3);
  border: 1px solid var(--border-g);
  color: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
}

.faq-item details[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--o2);
  border-color: var(--border-o);
  color: var(--o);
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
  padding-top: 16px;
}

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ═══ MASTER MOBILE RESPONSIVENESS OVERRIDES ═══ */
@media (max-width: 600px) {
  .hero-body {
    padding: 86px 0 44px;
  }

  .hero-h1 {
    font-size: clamp(27px, 7.2vw, 38px);
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
  }

  .hero-sub {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .pillar-card {
    padding: 12px 14px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 26px;
  }

  .hero-cta .btn-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 13.5px 18px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
  }

  .m-div {
    display: none;
  }

  .metric .m-val {
    font-size: 22px;
  }

  .metric .m-lab {
    font-size: 9.5px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    z-index: 990;
  }

  .wa-btn {
    width: 52px;
    height: 52px;
  }

  .wa-btn svg {
    width: 28px;
    height: 28px;
  }

  .wa-tooltip {
    display: none !important;
  }

  .sec-h {
    font-size: clamp(26px, 6.5vw, 36px);
  }

  .sec-sub {
    font-size: 14.5px;
  }

  .cform-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 18px 18px;
    font-size: 13.5px;
  }

  .waitform input {
    min-width: 100%;
    width: 100%;
  }

  .waitform button {
    width: 100%;
    justify-content: center;
  }
}