/* ===========================================
   VERTICALS — Industry-specific CFO landing pages
   Shared CSS for: poultry, dairy, aquaculture, field crops
   =========================================== */

:root {
  --olive: #3A4A2B;
  --olive-dark: #2A3621;
  --olive-light: #4D6139;
  --cream: #EFE7D6;
  --cream-light: #F5F0E3;
  --cream-dark: #E5DAC2;
  --gold: #B8862F;
  --gold-light: #D4A248;
  --gold-dark: #8E6722;
  --ink: #1A1A1A;
  --line: #C9A876;
}

body { font-family: 'Cairo', sans-serif; background: #FAF6EC; color: var(--ink); }
.num, .ltr { font-family: 'Inter', sans-serif; direction: ltr; display: inline-block; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.gold-bar { width: 50px; height: 3px; background: var(--gold); }

/* ===== VERTICAL HERO ===== */
.v-hero {
  background:
    radial-gradient(ellipse at top right, rgba(184,134,47,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(58,74,43,0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 60%, var(--olive-dark) 100%);
  color: var(--cream);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.v-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, transparent 0%, #FAF6EC 100%);
  pointer-events: none;
}
.v-hero-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) {
  .v-hero-wrap { grid-template-columns: 1fr; gap: 32px; }
  .v-hero { padding: 50px 0 70px; }
}
.v-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(184,134,47,0.15); border: 1px solid rgba(184,134,47,0.35);
  padding: 7px 16px; border-radius: 999px;
  font-family: 'Cairo', sans-serif; font-size: 12px; font-weight: 700; color: var(--gold-light);
  margin-bottom: 20px;
}
.v-hero h1 {
  font-family: 'Cairo', sans-serif; font-weight: 900;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.1; color: var(--cream);
  margin-bottom: 22px;
}
.v-hero h1 .gold { color: var(--gold-light); }
.v-hero-lede {
  font-family: 'Cairo', sans-serif; font-size: 18px; line-height: 1.7;
  color: rgba(239,231,214,0.88); max-width: 580px; margin-bottom: 30px;
}
.v-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}
.v-btn-primary {
  background: #25D366; color: white; padding: 14px 28px; border-radius: 999px;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 6px 22px rgba(37,211,102,0.35);
}
.v-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.v-btn-ghost {
  background: rgba(239,231,214,0.08); color: var(--cream);
  border: 1.5px solid rgba(239,231,214,0.3); padding: 12px 26px; border-radius: 999px;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  backdrop-filter: blur(8px); transition: all 0.2s;
}
.v-btn-ghost:hover { background: rgba(239,231,214,0.15); border-color: var(--gold); }
.v-hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 24px; border-top: 1px solid rgba(239,231,214,0.15);
}
.v-hero-meta-item .label { font-family: 'Cairo', sans-serif; font-size: 11px; color: rgba(239,231,214,0.6); margin-bottom: 4px; }
.v-hero-meta-item .val { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 22px; color: var(--gold-light); }

/* Hero KPI card (right side) */
.v-hero-card {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-radius: 24px; padding: 28px; color: var(--ink);
  box-shadow: 0 25px 60px -10px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,134,47,0.15);
  transform: rotate(1deg); transition: transform 0.5s;
}
.v-hero-card:hover { transform: rotate(0); }
.v-hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid rgba(184,134,47,0.2);
}
.v-hero-card-title { font-family: 'Cairo', sans-serif; font-weight: 800; color: var(--olive); font-size: 16px; }
.v-hero-card-sub { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(26,26,26,0.5); margin-top: 2px; }
.v-hero-card-kpis {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.v-hero-card-kpi {
  background: var(--cream-light); padding: 14px; border-radius: 12px; border-right: 3px solid var(--gold);
}
.v-hero-card-kpi .label { font-family: 'Cairo', sans-serif; font-size: 11px; color: rgba(26,26,26,0.6); margin-bottom: 5px; }
.v-hero-card-kpi .val { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 24px; color: var(--olive); line-height: 1; }
.v-hero-card-kpi .unit { font-size: 13px; color: var(--gold); font-weight: 700; }

/* ===== SECTION ===== */
.v-section { padding: 70px 0; }
.v-section.alt { background: var(--cream-light); }
.v-section.dark { background: var(--olive); color: var(--cream); }
.v-section.darkest { background: var(--olive-dark); color: var(--cream); }
.v-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.v-narrow { max-width: 880px; margin: 0 auto; }

.v-section-head { margin-bottom: 40px; }
.v-section-head h2 {
  font-family: 'Cairo', sans-serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.2; color: var(--olive); margin: 8px 0 14px;
}
.v-section.dark .v-section-head h2, .v-section.darkest .v-section-head h2 { color: var(--cream); }
.v-section-head h2 .gold { color: var(--gold); }
.v-section.dark .v-section-head h2 .gold, .v-section.darkest .v-section-head h2 .gold { color: var(--gold-light); }
.v-section-head p {
  font-family: 'Cairo', sans-serif; font-size: 17px; line-height: 1.7;
  color: rgba(26,26,26,0.7); max-width: 700px;
}
.v-section.dark .v-section-head p, .v-section.darkest .v-section-head p {
  color: rgba(239,231,214,0.85);
}

/* "Why this industry is different" — pain grid */
.v-pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.v-pain-card {
  background: white; border-radius: 16px; padding: 28px 22px;
  border-top: 3px solid var(--gold); transition: all 0.3s;
  box-shadow: 0 1px 0 rgba(58,74,43,0.05);
}
.v-pain-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(58,74,43,0.15); }
.v-pain-card .ico {
  width: 44px; height: 44px; background: rgba(184,134,47,0.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  font-size: 20px;
}
.v-pain-card h3 { font-family: 'Cairo', sans-serif; font-weight: 800; color: var(--olive); font-size: 17px; margin-bottom: 8px; }
.v-pain-card p { font-family: 'Cairo', sans-serif; font-size: 14px; line-height: 1.7; color: rgba(26,26,26,0.7); }

/* KPI benchmark table */
.v-kpi-table {
  width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif;
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 40px -10px rgba(58,74,43,0.15);
}
.v-kpi-table th {
  background: var(--olive); color: var(--cream); padding: 14px 18px; text-align: right;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 13px;
}
.v-kpi-table th.num-col { text-align: center; }
.v-kpi-table td {
  padding: 13px 18px; border-bottom: 1px solid rgba(58,74,43,0.06); font-size: 14px;
}
.v-kpi-table td:first-child { font-family: 'Cairo', sans-serif; font-weight: 600; color: var(--olive); }
.v-kpi-table td.num-cell { text-align: center; font-weight: 700; }
.v-kpi-table tr:nth-child(even) td { background: rgba(245,240,227,0.4); }
.v-kpi-table .good { color: #15803d; }
.v-kpi-table .bad { color: #b91c1c; }
.v-kpi-table .ok { color: #a16207; }

/* Mini case study */
.v-case {
  background: white; border-radius: 24px; padding: 36px;
  box-shadow: 0 20px 50px -15px rgba(58,74,43,0.2);
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: stretch;
}
@media (max-width: 800px) { .v-case { grid-template-columns: 1fr; padding: 26px; } }
.v-case-left {
  background: linear-gradient(160deg, var(--olive) 0%, var(--olive-dark) 100%);
  color: var(--cream); border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.v-case-eyebrow {
  font-family: 'Cairo', sans-serif; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-light); font-weight: 700;
  margin-bottom: 10px;
}
.v-case-left h3 {
  font-family: 'Cairo', sans-serif; font-weight: 900; font-size: 24px;
  line-height: 1.25; color: var(--cream); margin-bottom: 14px;
}
.v-case-stat {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 56px; color: var(--gold-light); line-height: 1; margin-bottom: 4px;
}
.v-case-stat-label { font-family: 'Cairo', sans-serif; font-size: 13px; color: rgba(239,231,214,0.7); }
.v-case-right h4 {
  font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 17px;
  color: var(--olive); margin: 16px 0 8px;
}
.v-case-right h4:first-child { margin-top: 0; }
.v-case-right p {
  font-family: 'Cairo', sans-serif; font-size: 14px; line-height: 1.7;
  color: rgba(26,26,26,0.75); margin-bottom: 12px;
}
.v-case-result {
  background: var(--cream-light); border-right: 3px solid var(--gold);
  padding: 14px 16px; border-radius: 8px; margin-top: 14px;
  font-family: 'Cairo', sans-serif; font-size: 14px; color: var(--olive); font-weight: 700;
}

/* JTBD list */
.v-jtbd { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.v-jtbd-card {
  background: white; padding: 24px; border-radius: 12px;
  border-right: 4px solid var(--gold);
}
.v-jtbd-card .label { font-family: 'Cairo', sans-serif; font-size: 11px; color: var(--gold); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.v-jtbd-card h4 { font-family: 'Cairo', sans-serif; font-weight: 800; color: var(--olive); font-size: 17px; margin-bottom: 8px; }
.v-jtbd-card p { font-family: 'Cairo', sans-serif; font-size: 14px; line-height: 1.65; color: rgba(26,26,26,0.7); }

/* Process steps */
.v-process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.v-process-step {
  background: white; border-radius: 14px; padding: 26px 22px;
  position: relative; border-top: 3px solid var(--gold);
}
.v-process-num {
  position: absolute; top: -20px; right: 20px;
  width: 40px; height: 40px; background: var(--olive); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 16px;
  box-shadow: 0 6px 16px rgba(58,74,43,0.25);
}
.v-process-step h4 { font-family: 'Cairo', sans-serif; font-weight: 800; color: var(--olive); margin: 8px 0; font-size: 16px; }
.v-process-step p { font-family: 'Cairo', sans-serif; font-size: 13px; line-height: 1.7; color: rgba(26,26,26,0.65); }

/* CTA strip */
.v-cta-strip {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
  color: var(--cream); padding: 60px 24px; border-radius: 28px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 25px 60px -20px rgba(0,0,0,0.4);
}
.v-cta-strip::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,134,47,0.2) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.v-cta-strip h3 {
  font-family: 'Cairo', sans-serif; font-weight: 900;
  font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 14px; color: var(--cream);
}
.v-cta-strip h3 .gold { color: var(--gold-light); }
.v-cta-strip p {
  font-family: 'Cairo', sans-serif; font-size: 16px; max-width: 600px;
  margin: 0 auto 28px; color: rgba(239,231,214,0.85); line-height: 1.7;
}
.v-cta-strip .v-btn-primary {
  font-size: 16px; padding: 16px 32px;
}

/* Verticals hub specific */
.v-hub-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
}
.v-hub-card {
  background: white; border-radius: 20px; padding: 32px 26px; text-decoration: none;
  border-top: 4px solid var(--gold); transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
  display: flex; flex-direction: column; min-height: 360px;
  box-shadow: 0 1px 0 rgba(58,74,43,0.05);
  position: relative; overflow: hidden;
}
.v-hub-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(58,74,43,0.25);
}
.v-hub-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(184,134,47,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.v-hub-card-ico {
  width: 56px; height: 56px; background: rgba(184,134,47,0.12);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}
.v-hub-card h3 {
  font-family: 'Cairo', sans-serif; font-weight: 900;
  font-size: 22px; color: var(--olive); margin-bottom: 8px;
}
.v-hub-card p {
  font-family: 'Cairo', sans-serif; font-size: 14px; line-height: 1.7;
  color: rgba(26,26,26,0.7); flex-grow: 1; margin-bottom: 18px;
}
.v-hub-card .stats {
  display: flex; gap: 14px; padding-top: 14px; border-top: 1px solid rgba(184,134,47,0.2);
  font-family: 'Cairo', sans-serif; font-size: 12px;
}
.v-hub-card .stat-item { color: rgba(26,26,26,0.6); }
.v-hub-card .stat-item b { font-family: 'Inter', sans-serif; color: var(--olive); font-size: 14px; }
.v-hub-card .arrow {
  font-family: 'Cairo', sans-serif; color: var(--gold); font-weight: 800;
  font-size: 13px; margin-top: 14px;
}

/* Float WA */
.v-float-wa {
  position: fixed; bottom: 24px; left: 24px; z-index: 100; background: #25D366;
  color: white; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4); animation: vpulse 2s infinite;
}
@keyframes vpulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* Breadcrumb */
.v-breadcrumb {
  font-family: 'Cairo', sans-serif; font-size: 12px;
  color: rgba(239,231,214,0.6); margin-bottom: 16px;
}
.v-breadcrumb a { color: var(--gold-light); text-decoration: none; }
.v-breadcrumb a:hover { text-decoration: underline; }
.v-breadcrumb .sep { margin: 0 8px; color: rgba(239,231,214,0.3); }
