/* Sticky Header Table of Contents horizontal navigation (Desktop) */
.toc-nav { position: sticky; top: 84px; z-index: 900; background: #fff; border-bottom: 1px solid var(--color-stroke); }
.toc-scroll { display: flex; gap: 6px; overflow-x: auto; padding: 14px 0; scrollbar-width: thin; }
.toc-scroll::-webkit-scrollbar { height: 4px; }
.toc-scroll::-webkit-scrollbar-thumb { background: var(--color-stroke); border-radius: 4px; }
.toc-link { white-space: nowrap; font-size: 14.5px; font-weight: 600; color: var(--color-secondary-text); padding: 8px 16px; border-radius: 999px; text-decoration: none; transition: all var(--transition-fast); border: 1px solid transparent; }
.toc-link:hover { color: var(--color-primary); }
.toc-link.active { background: var(--color-primary-soft); color: var(--color-primary-dark); border-color: rgba(11, 165, 106, 0.25); }
/* Mobile-only collapsible Table of Contents component */
.tg-toc-section { display: none; background-color: #fafafa; padding: 32px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.tg-toc-section .container-xl-custom { padding-inline: 20px; }
.tg-toc-card { max-width: 960px; margin: 0 auto; background: #ffffff; border: 1px solid #e6f5ee; border-radius: 16px; padding: 24px; box-shadow: 0 8px 24px rgba(0, 40, 22, 0.04); }
.tg-toc-trigger { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 0; color: var(--color-primary-text); cursor: pointer; font-family: 'Poppins', system-ui, -apple-system, sans-serif; }
.tg-toc-trigger-text { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.tg-toc-trigger-text svg { width: 22px; height: 22px; color: var(--tg-primary); flex-shrink: 0; }
.tg-toc-arrow { width: 36px; height: 36px; background: #e6f5ee; border-radius: 50%; color: #008352; display: flex; align-items: center; justify-content: center; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.tg-toc-arrow svg { width: 18px; height: 18px; }
.tg-toc-card.active .tg-toc-arrow { transform: rotate(180deg); }
.tg-toc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
#toc-list-container.toc-expanded { max-height: 1000px; }
.tg-toc-nav { margin-top: 20px; padding: 20px 0 2px 20px; border-top: 1px solid #e6f5ee; border-left: 3px solid var(--tg-primary); }
.tg-toc-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 24px; }
.tg-toc-item { margin: 0; padding: 0; }
.tg-toc-link { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: #475467; font-weight: 500; padding: 4px 0; transition: color 0.2s ease; text-decoration: none; }
.tg-toc-link::before { content: ""; width: 7px; height: 7px; background-color: var(--tg-primary); border-radius: 50%; display: inline-block; flex-shrink: 0; margin-right: 4px; }
.tg-toc-link:hover,
.tg-toc-link:active { color: var(--tg-primary); text-decoration: none; }
@media (max-width: 991px) {
  .tg-toc-section { display: block; padding: 20px 0; }
  .tg-toc-section .container-xl-custom { padding-inline: 16px; }
  .tg-toc-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .tg-toc-section { display: block; padding: 20px 0; }
  .tg-toc-card { padding: 16px; }
  .tg-toc-trigger-text { font-size: 16px; }
  .tg-toc-trigger-text svg { width: 20px; height: 20px; }
  .tg-toc-arrow { width: 32px; height: 32px; }
  .tg-toc-nav { margin-top: 16px; padding: 16px 0 2px 16px; }
  .tg-toc-list { grid-template-columns: 1fr; gap: 10px; }
  .tg-toc-link { font-size: 14px; padding: 6px 0; }
}
/* =========================================================
   TRANSGENIE — FARM TRACEABILITY SOFTWARE
   Design system, tokens, layout & components
   ========================================================= */
:root { --tg-primary: #0BA56A; --tg-primary-dark: #078857; --tg-primary-soft: #EAF7EF; --tg-teal: #0E7C86; --tg-teal-soft: #E8F4F5; --tg-heading: #111B24; --tg-body: #566B62; --tg-border: #DCE1E5; --tg-white: #FFFFFF; --tg-background-soft: #F7F9F7; --tg-background-muted: #F3F6F4; --tg-warning: #B7791F; --tg-warning-soft: #FBF3E4; --tg-danger: #C0392B; --tg-danger-soft: #FBEBEA; --space-1: 8px; --space-2: 12px; --space-3: 16px; --space-4: 20px; --space-5: 24px; --space-6: 32px; --space-7: 40px; --space-8: 48px; --space-9: 64px; --space-10: 80px; --radius-sm: 14px; --radius-md: 22px; --radius-lg: 30px; --radius-pill: 999px; --shadow-panel: 0 16px 45px rgba(17, 27, 36, .08); --shadow-lg: 0 24px 70px rgba(12, 38, 32, .14); --shadow-sm: 0 2px 8px rgba(12, 38, 32, .05); --ease: 250ms ease; }
/* ---------- Reset & Base ---------- */
.tg-main-wrap { font-family: "Inter", system-ui, -apple-system, sans-serif; color: var(--tg-body); background: var(--tg-white); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.tg-main-wrap h1,
.tg-main-wrap h2,
.tg-main-wrap h3 { color: var(--tg-heading); margin: 0; font-family: "Inter", system-ui, -apple-system, sans-serif; }
.tg-main-wrap h1 { font-size: clamp(36px, 4vw, 44px); line-height: 1.1; font-weight: 700; letter-spacing: -0.03em; }
.tg-main-wrap h2 { font-size: 32px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
.tg-main-wrap h3 { font-size: 20px; line-height: 1.25; font-weight: 600; letter-spacing: -0.01em; }
.tg-main-wrap p { font-size: 17px; line-height: 1.6; color: var(--tg-body); margin: 0; }
.tg-main-wrap .body-large { font-size: 18px; line-height: 1.65; color: var(--tg-body); }
.tg-main-wrap .small-text { font-size: 14px; line-height: 1.5; color: var(--tg-body); }
.eyebrow { font-size: 12.5px; line-height: 1.2; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tg-primary); display: inline-flex; align-items: center; gap: 8px; margin-bottom: var(--space-2); }
.eyebrow::before { content: ""; width: 16px; height: 1.5px; background: var(--tg-primary); }
/* ---------- Layout Containers ---------- */
.tg-container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 80px; }
.tg-section { padding-block: 64px; position: relative; }
.tg-section--soft { background: var(--tg-background-soft); }
.tg-section--muted { background: var(--tg-background-muted); }
.tg-section--dark { background: var(--tg-heading); }
.section-intro { max-width: 900px; margin-bottom: var(--space-8); }
.section-intro p { margin-top: var(--space-4); }
.section-intro.center { margin-inline: auto; text-align: center; }
.section-intro.center p { margin-inline: auto; }
/* ---------- Buttons & Tags ---------- */
.tg-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; min-height: 44px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; line-height: 1.2; border: 1px solid transparent; text-decoration: none; transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease); cursor: pointer; }
.tg-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.tg-btn-primary { background: var(--tg-primary); color: #fff !important; border-color: var(--tg-primary); }
.tg-btn-primary:hover { background: var(--tg-primary-dark); border-color: var(--tg-primary-dark); transform: translateY(-2px); }
.tg-btn-secondary { background: var(--tg-white); color: var(--tg-heading) !important; border-color: var(--tg-border); }
.tg-btn-secondary:hover { color: var(--tg-primary) !important; border-color: var(--tg-primary); background: rgba(11, 165, 106, .04); }
.tg-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--tg-primary-soft); color: var(--tg-primary-dark); }
/* ---------- HERO ---------- */
.tg-hero { padding-top: 145px; padding-bottom: 70px; }
.tg-hero .reveal { opacity: 1 !important; transform: none !important; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-9); align-items: center; }
.hero-copy p.body-large { max-width: 880px; margin-block: var(--space-4) var(--space-6); }
.hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero-visual { position: relative; border-radius: var(--radius-lg); padding: 24px; aspect-ratio: 500/362; display: flex; align-items: center; justify-content: center;}
.hero-visual img { display: block; width: 100%; height: 100%; object-fit: contain; }
/* ---------- STANDARDS ORBIT (bubble cluster) ---------- */
.orbit-wrap { position: relative; padding: var(--space-4) 0; }
.orbit-cluster { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; max-width: 920px; margin-inline: auto; }
.orbit-bubble { display: flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: var(--radius-pill); border: 1px solid var(--tg-border); background: var(--tg-white); font-weight: 600; font-size: 15px; color: var(--tg-heading); transition: all var(--ease); }
.orbit-bubble:nth-child(odd) { background: var(--tg-primary-soft); border-color: transparent; color: var(--tg-primary-dark); }
.orbit-bubble:nth-child(3n) { background: var(--tg-teal-soft); border-color: transparent; color: var(--tg-teal); }
.orbit-bubble .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.orbit-bubble:hover { transform: translateY(-3px); box-shadow: var(--shadow-panel); }
/* ---------- GAP: Modern Split Spotlight & Card Grid Layout ---------- */
.gap-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-5); align-items: center; }
/* Spotlight Card (Left Column) */
.gap-spotlight { background: var(--tg-white); border: 1px solid var(--tg-border); border-radius: var(--radius-md); padding: var(--space-5); box-shadow: var(--shadow-panel); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: border-color var(--ease), box-shadow var(--ease); }
.gap-spotlight::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--tg-primary), var(--tg-teal)); }
.gap-spotlight-inner { display: flex; flex-direction: column; }
.gap-spotlight-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-3); }
.gap-spotlight-num { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: var(--tg-primary); line-height: 1; }
.gap-spotlight-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--tg-primary-soft); color: var(--tg-primary-dark); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-3); transition: transform var(--ease); }
.gap-spotlight-icon svg { width: 24px; height: 24px; }
.gap-spotlight-title { font-size: 22px; font-weight: 700; color: var(--tg-heading); margin-bottom: 5px; letter-spacing: -0.02em; }
.gap-spotlight-desc { font-size: 15px; line-height: 1.6; color: var(--tg-body); margin-bottom: 0; }
/* 6-Card Interactive Grid (Right Column) */
.gap-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.gap-card { background: var(--tg-white); border: 1px solid var(--tg-border); border-radius: var(--radius-sm); padding: 16px 20px; cursor: pointer; transition: all var(--ease); display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; position: relative; min-height: 56px; }
.gap-card:hover { border-color: rgba(11, 165, 106, 0.4); box-shadow: 0 10px 25px rgba(11, 165, 106, 0.08); transform: translateY(-3px); }
.gap-card.active { background: var(--tg-primary-soft); border-color: var(--tg-primary); box-shadow: 0 12px 30px rgba(11, 165, 106, 0.12); }
.gap-card-num { font-size: 13.5px; font-weight: 700; color: var(--tg-body); opacity: 0.6; flex-shrink: 0; }
.gap-card.active .gap-card-num { color: var(--tg-primary-dark); opacity: 1; }
.gap-card-title { font-size: 15.5px; font-weight: 700; color: var(--tg-heading); margin-bottom: 0; line-height: 1.25; flex: 1; }
.gap-card:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - (var(--space-4) / 2)); }
@media (max-width: 991px) {
  .gap-layout { grid-template-columns: 1fr; gap: var(--space-6); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .gap-cards-grid { grid-template-columns: 1fr; }
  .gap-card:last-child:nth-child(odd) { grid-column: auto; width: 100%; }
  .gap-spotlight { padding: var(--space-5); }
  .gap-spotlight-title { font-size: 20px; }
  .process-grid { grid-template-columns: 1fr; }
}
/* ---------- ONE PLATFORM & CALLOUT ---------- */
.platform-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-8); align-items: start; }
.platform-copy h2 { margin-bottom: 14px; }
.platform-copy p+p { margin-top: var(--space-4); }
.platform-right-col { display: flex; flex-direction: column; gap: var(--space-4); }
.lot-callout { background: var(--tg-primary-soft); border: 1px solid transparent; border-radius: var(--radius-md); padding: var(--space-5) var(--space-6); }
.lot-callout .eyebrow { color: var(--tg-primary-dark); }
.lot-callout .eyebrow::before { background: var(--tg-primary-dark); }
.lot-callout h3 { margin-bottom: var(--space-2); }
/* ---------- ONE PLATFORM CTA ---------- */
.platform-cta-section { display: none; }
.platform-cta { position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 28px 30px; border-radius: 20px; background: #008352; box-shadow: 0 14px 35px rgba(6, 61, 43, .16); }
.platform-cta::before,
.platform-cta::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; background: rgba(255, 255, 255, .06); }
.platform-cta::before { width: 200px; height: 200px; top: -120px; right: -40px; }
.platform-cta::after { width: 140px; height: 140px; right: -30px; bottom: -90px; }
.platform-cta-copy { width: 100%; }
.platform-cta-copy h2 { color: #fff; font-size: 21px; line-height: 1.3; margin-bottom: 8px; }
.platform-cta-copy p { color: rgba(255, 255, 255, .88); font-size: 14px; line-height: 1.5; }
.platform-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; flex-shrink: 0; min-height: 48px; padding: 12px 22px; border-radius: 999px; background: #fff; color: var(--tg-primary-dark); font-size: 14px; font-weight: 700; text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.platform-cta-btn svg { width: 17px; height: 17px; }
.platform-cta-btn:hover { color: var(--tg-primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
/* ---------- PROCESS GRID (How it works static cards) ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.process-card { background: var(--tg-white); border: 1px solid var(--tg-border); border-radius: var(--radius-md); padding: var(--space-5); display: flex; flex-direction: column; transition: all var(--ease); position: relative; }
.process-card:hover { border-color: rgba(11, 165, 106, 0.4); box-shadow: 0 10px 25px rgba(11, 165, 106, 0.08); transform: translateY(-3px); }
.process-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.process-card-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--tg-primary-soft); color: var(--tg-primary-dark); display: flex; align-items: center; justify-content: center; }
.process-card-icon svg { width: 22px; height: 22px; }
.process-card-num { font-size: 20px; font-weight: 800; color: var(--tg-primary); opacity: 0.6; }
.process-card h3 { font-size: 18px; font-weight: 700; color: var(--tg-heading); margin-bottom: var(--space-2); }
.process-card p { font-size: 14.5px; line-height: 1.6; color: var(--tg-body); margin-bottom: 0; }
/* ---------- INSIDE OUR FARM TRACEABILITY (Interactive Accordion Grid) ---------- */
.inside-accordion-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.inside-accordion-column { display: flex; flex-direction: column; gap: 16px; }
.inside-accordion-item { background: var(--tg-white); border: 1px solid var(--tg-border); border-radius: 16px; overflow: hidden; transition: all 0.3s var(--ease); }
.inside-accordion-item.active { border-color: var(--tg-primary); box-shadow: 0 8px 24px rgba(11, 165, 106, 0.08); }
.inside-accordion-header { width: 100%; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; background: transparent; border: none; cursor: pointer; text-align: left; gap: 16px; transition: background 0.2s var(--ease); }
.inside-accordion-header:hover { background: var(--tg-background-soft); }
.inside-accordion-left { display: flex; align-items: center; gap: 16px; }
.inside-accordion-icon { width: 52px; height: 52px; border-radius: 14px; background: #EAF7EF; color: var(--tg-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s var(--ease); }
.inside-accordion-icon svg { width: 28px; height: 28px; transition: all 0.3s var(--ease); }
/* --- Inactive State: Emerald stroke/fill --- */
.inside-accordion-icon svg path[stroke],
.inside-accordion-icon svg circle[stroke],
.inside-accordion-icon svg rect[stroke],
.inside-accordion-icon svg ellipse[stroke],
.inside-accordion-icon svg line[stroke],
.inside-accordion-icon svg polyline[stroke] { stroke: var(--tg-primary) !important; }
.inside-accordion-icon svg path[fill]:not([fill="none"]),
.inside-accordion-icon svg circle[fill]:not([fill="none"]),
.inside-accordion-icon svg rect[fill]:not([fill="none"]) { fill: var(--tg-primary) !important; }
/* --- Active State: Emerald filled container + Crisp White SVG --- */
.inside-accordion-item.active .inside-accordion-icon { background: var(--tg-primary); color: #ffffff; box-shadow: 0 6px 16px rgba(11, 165, 106, 0.25); }
.inside-accordion-item.active .inside-accordion-icon svg path[stroke],
.inside-accordion-item.active .inside-accordion-icon svg circle[stroke],
.inside-accordion-item.active .inside-accordion-icon svg rect[stroke],
.inside-accordion-item.active .inside-accordion-icon svg ellipse[stroke],
.inside-accordion-item.active .inside-accordion-icon svg line[stroke],
.inside-accordion-item.active .inside-accordion-icon svg polyline[stroke] { stroke: #ffffff !important; }
.inside-accordion-item.active .inside-accordion-icon svg path[fill]:not([fill="none"]),
.inside-accordion-item.active .inside-accordion-icon svg circle[fill]:not([fill="none"]),
.inside-accordion-item.active .inside-accordion-icon svg rect[fill]:not([fill="none"]) { fill: #ffffff !important; }
.inside-accordion-title { display: flex; flex-direction: column; gap: 2px; }
.inside-accordion-num { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; color: var(--tg-primary); text-transform: uppercase; }
.inside-accordion-title h3 { font-size: 17px; font-weight: 700; color: var(--tg-heading); margin: 0; }
.inside-accordion-chevron { width: 20px; height: 20px; stroke: var(--tg-body); transition: transform 0.3s var(--ease), stroke 0.3s var(--ease); flex-shrink: 0; }
.inside-accordion-item.active .inside-accordion-chevron { transform: rotate(180deg); stroke: var(--tg-primary); }
.inside-accordion-body { max-height: 0; overflow: hidden; visibility: hidden; opacity: 0; transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s var(--ease), opacity 0.2s ease, visibility 0s linear 0.35s; padding: 0 24px; }
.inside-accordion-item.active .inside-accordion-body { max-height: 200px; padding: 0 24px 20px 84px; visibility: visible; opacity: 1; transition-delay: 0s; }
.inside-accordion-body p { font-size: 14.5px; line-height: 1.6; color: var(--tg-body); margin: 0; }
@media (max-width: 991px) {
  .inside-accordion-grid { grid-template-columns: 1fr; }
  .inside-accordion-item.active .inside-accordion-body { padding-left: 24px; }
}
/* ---------- INTERACTIVE TECHNOLOGY MATRIX HUB ---------- */
.tech-matrix-wrapper { display: flex; flex-direction: column; gap: 28px; }
.tech-matrix-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tech-matrix-card { position: relative; background: var(--tg-white); border: 1px solid var(--tg-border); border-radius: 20px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.tech-matrix-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--tg-primary), #34D399); opacity: 0; transition: opacity 0.3s var(--ease); }
.tech-matrix-card:hover { transform: translateY(-6px); border-color: rgba(11, 165, 106, 0.4); box-shadow: 0 16px 36px rgba(11, 165, 106, 0.1); }
.tech-matrix-card:hover::before { opacity: 1; }
.tech-matrix-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.tech-matrix-num { font-size: 13px; font-weight: 800; color: var(--tg-primary); letter-spacing: 0.05em; background: #EAF7EF; padding: 4px 10px; border-radius: 20px; }
.tech-matrix-status { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--tg-body); opacity: 0.7; }
.tech-matrix-card .tech-card-num { width: 52px; height: 52px; border-radius: 14px; background: #EAF7EF; border: 1px solid rgba(11, 165, 106, 0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 18px; font-weight: 800; color: var(--tg-primary); letter-spacing: 0.02em; transition: all 0.3s var(--ease); }
.tech-matrix-card:hover .tech-card-num { background: var(--tg-primary); border-color: var(--tg-primary); color: #ffffff; transform: scale(1.05); box-shadow: 0 4px 14px rgba(11, 165, 106, 0.25); }
.tech-matrix-card h3 { font-size: 19px; font-weight: 700; color: var(--tg-heading); margin: 0 0 10px 0; transition: color 0.3s var(--ease); }
.tech-matrix-card:hover h3 { color: var(--tg-primary); }
.tech-matrix-card p.small-text { font-size: 14px; line-height: 1.6; color: var(--tg-body); margin: 0 0 20px 0; }
.tech-matrix-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--tg-primary); background: rgba(11, 165, 106, 0.08); padding: 6px 12px; border-radius: 20px; width: fit-content; }
.tech-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tg-primary); }
/* Architecture Banner */
.tech-architecture-banner { background: var(--tg-white); border: 1px solid var(--tg-border); border-radius: 16px; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02); }
.tech-arch-label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--tg-heading); }
.tech-arch-label svg { width: 20px; height: 20px; stroke: var(--tg-primary); }
.tech-arch-chips { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tech-arch-chip { font-size: 12.5px; font-weight: 600; color: var(--tg-heading); background: var(--tg-background-soft); border: 1px solid var(--tg-border); padding: 6px 14px; border-radius: 20px; }
@media (max-width: 1024px) {
  .tech-matrix-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tech-matrix-grid { grid-template-columns: 1fr; }
  .tech-architecture-banner { flex-direction: column; align-items: flex-start; }
}
/* ---------- INTERACTIVE JOURNEY STEPPER HUB ---------- */
.journey-interactive-wrapper { display: flex; flex-direction: column; gap: 36px; }
/* Stepper Rail (No Scrollbar, Flexible 100% Width) */
.journey-stepper-container { width: 100%; overflow: visible; padding: 16px 0 20px 0; }
.journey-stepper-rail { position: relative; display: flex; justify-content: space-between; align-items: flex-start; width: 100%; }
.journey-stepper-rail::before { content: ''; position: absolute; top: 18px; left: calc(100% / 14); right: calc(100% / 14); height: 3px; background: #EAF7EF; border-radius: 4px; z-index: 1; }
.journey-progress-line { position: absolute; top: 18px; left: 20px; height: 3px; background: var(--tg-primary); border-radius: 4px; z-index: 2; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); width: 0px; }
.journey-step-node { position: relative; z-index: 3; background: none; border: none; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; padding: 0; outline: none; flex: 1; }
.journey-step-node .node-circle { width: 38px; height: 38px; border-radius: 50%; background: var(--tg-white); border: 2px solid #D1EBE0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--tg-body); transition: all 0.3s var(--ease); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); }
.journey-step-node:hover .node-circle { border-color: var(--tg-primary); color: var(--tg-primary); transform: scale(1.08); }
.journey-step-node.active .node-circle { background: var(--tg-primary); border-color: var(--tg-primary); color: #ffffff; transform: scale(1.12); box-shadow: 0 6px 18px rgba(11, 165, 106, 0.35); }
.journey-step-node .node-label { font-size: 12px; font-weight: 700; color: var(--tg-body); transition: color 0.3s var(--ease); text-align: center; line-height: 1.25; white-space: normal; max-width: 84px; }
.journey-step-node.active .node-label { color: var(--tg-primary); font-weight: 800; }
/* Cards Grid */
.journey-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; min-height: 190px; }
.journey-card { background: var(--tg-white); border: 1.5px solid var(--tg-border); border-radius: 18px; padding: 24px 20px; cursor: default; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; justify-content: flex-start; }
.journey-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.journey-card-num { width: 38px; height: 38px; border-radius: 10px; background: #EAF7EF; color: var(--tg-primary); font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.journey-card-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--tg-body); opacity: 0.7; }
.journey-card h3 { font-size: 17px; font-weight: 700; color: var(--tg-heading); margin: 0 0 8px 0; transition: color 0.3s var(--ease); }
.journey-card p { font-size: 13.5px; line-height: 1.6; color: var(--tg-body); margin: 0; }
.journey-card:hover { transform: translateY(-4px); border-color: rgba(11, 165, 106, 0.4); box-shadow: 0 12px 28px rgba(11, 165, 106, 0.08); }
.journey-card.active { border-color: var(--tg-primary); background: #ffffff; box-shadow: 0 14px 32px rgba(11, 165, 106, 0.16); transform: translateY(-4px); }
.journey-card.active .journey-card-num { background: var(--tg-primary); color: #ffffff; }
.journey-card.active h3 { color: var(--tg-primary); }
/* Empty Slot for Sliding Window */
.journey-card-empty { visibility: hidden; pointer-events: none; min-height: 160px; }
@media (max-width: 991px) {
  .journey-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .journey-cards-grid { grid-template-columns: 1fr; }
}
/* ---------- STANDARDS GRID ---------- */
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.standard-card { background: var(--tg-white); border: 1.5px solid var(--tg-border); border-radius: 18px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: flex-start; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; }
.standard-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: transparent; transition: background 0.3s var(--ease); }
.standard-card:hover { transform: translateY(-5px); border-color: rgba(11, 165, 106, 0.4); box-shadow: 0 16px 36px rgba(11, 165, 106, 0.1); }
.standard-card:hover::before { background: var(--tg-primary); }
.standard-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.standard-card h3 { font-size: 19px; font-weight: 700; color: var(--tg-heading); margin: 0; line-height: 1.3; }
.standard-badge { display: inline-block; padding: 4px 10px; border-radius: 8px; background: #EAF7EF; color: var(--tg-primary); font-size: 11.5px; font-weight: 700; white-space: nowrap; letter-spacing: 0.02em; }
.standard-card p { font-size: 14px; line-height: 1.6; color: var(--tg-body); margin: 0; }
@media (max-width: 1024px) {
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .standards-grid { grid-template-columns: 1fr; }
}
/* ---------- SECTION 9 TRI-PANEL INTERACTIVE HUB ---------- */
.farm-biz-interactive-tri { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 24px; align-items: center; width: 100%; background: var(--tg-white); border: 1.5px solid var(--tg-border); border-radius: 24px; padding: 32px 28px; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03); }
.farm-biz-col { display: flex; flex-direction: column; gap: 14px; }
.farm-biz-tab { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: var(--tg-background-soft); border: 1.5px solid transparent; border-radius: 14px; cursor: pointer; text-align: left; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); outline: none; width: 100%; }
.farm-biz-tab .tab-num { width: 30px; height: 30px; border-radius: 8px; background: var(--tg-white); color: var(--tg-body); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); flex-shrink: 0; border: 1px solid var(--tg-border); }
.farm-biz-tab .tab-title { font-size: 14.5px; font-weight: 700; color: var(--tg-heading); flex: 1; transition: color 0.3s var(--ease); }
.farm-biz-col--right .tab-title { text-align: right; }
.farm-biz-tab .tab-chevron { width: 15px; height: 15px; color: var(--tg-body); opacity: 0.4; transition: all 0.3s var(--ease); flex-shrink: 0; }
.farm-biz-col--left .farm-biz-tab:hover { background: #ffffff; border-color: rgba(11, 165, 106, 0.3); transform: translateX(4px); }
.farm-biz-col--right .farm-biz-tab:hover { background: #ffffff; border-color: rgba(11, 165, 106, 0.3); transform: translateX(-4px); }
.farm-biz-tab:hover .tab-num { color: var(--tg-primary); border-color: var(--tg-primary); }
.farm-biz-tab.active { background: #ffffff; border-color: var(--tg-primary); box-shadow: 0 6px 20px rgba(11, 165, 106, 0.12); }
.farm-biz-col--left .farm-biz-tab.active { transform: translateX(4px); }
.farm-biz-col--right .farm-biz-tab.active { transform: translateX(-4px); }
.farm-biz-tab.active .tab-num { background: var(--tg-primary); color: #ffffff; border-color: var(--tg-primary); }
.farm-biz-tab.active .tab-title { color: var(--tg-primary); font-weight: 800; }
.farm-biz-tab.active .tab-chevron { color: var(--tg-primary); opacity: 1; }
/* Center Showcase Box */
.farm-biz-showcase { background: #111b24; border: 1.5px solid rgba(11, 165, 106, 0.25); border-radius: 20px; padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; min-height: 240px; text-align: center; align-items: center; }
.farm-biz-showcase::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--tg-primary); }
.showcase-content { animation: fadeIn 0.4s var(--ease); display: flex; flex-direction: column; align-items: center; justify-content: center; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.showcase-badge { display: inline-block; font-size: 11.5px; font-weight: 800; color: #34D399; background: rgba(11, 165, 106, 0.2); padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; border: 1px solid rgba(52, 211, 153, 0.25); }
.showcase-content h3 { font-size: 23px; font-weight: 800; color: #ffffff; margin: 0 0 12px 0; line-height: 1.3; }
.showcase-content p { font-size: 15px; line-height: 1.6; color: #D1EBE0; margin: 0; max-width: 380px; }
@media (max-width: 1024px) {
  .farm-biz-interactive-tri { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
}
/* ---------- FARM RECORDS CTA ---------- */
.record-cta-section { padding: 0 0 64px; background: var(--tg-white); }
.record-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; padding: 30px 34px; border: 1px solid rgba(0, 131, 82, .24); border-radius: 22px; background: linear-gradient(100deg, #eaf7ef 0%, #f8fcfa 70%); box-shadow: 0 12px 32px rgba(0, 83, 52, .07); }
.record-cta-copy h2 { font-size: 25px; line-height: 1.25; color: var(--tg-heading); margin-bottom: 7px; }
.record-cta-copy p { font-size: 15px; line-height: 1.55; color: var(--tg-body); }
.record-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 11px 20px; border-radius: 999px; background: #008352; color: #fff; font-size: 13.5px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background var(--ease), transform var(--ease), box-shadow var(--ease); }
.record-cta-btn svg { width: 16px; height: 16px; }
.record-cta-btn:hover { color: #fff; background: var(--tg-primary-dark); transform: translateY(-2px); box-shadow: 0 9px 20px rgba(0, 131, 82, .2); }
/* ---------- READINESS CHECKLIST ---------- */
.checklist-box { background: var(--tg-heading); border-radius: var(--radius-lg); padding: var(--space-8); color: #fff; }
.checklist-box-inner { display: flex; flex-direction: column; max-width: 720px; margin-inline: auto; }
.checklist-items { order: 2; display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: 0; }
.checklist-item { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-4) var(--space-5); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .04); border: 1.5px solid rgba(255, 255, 255, .1); transition: all var(--ease); width: 100%; text-align: left; min-height: 44px; cursor: pointer; }
.checklist-item:hover { border-color: var(--tg-primary); }
.checklist-item.checked { background: rgba(11, 165, 106, .14); border-color: var(--tg-primary); }
.check-icon { width: 24px; height: 24px; border-radius: 7px; border: 1.5px solid rgba(255, 255, 255, .3); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all var(--ease); }
.checklist-item.checked .check-icon { background: var(--tg-primary); border-color: var(--tg-primary); }
.check-icon svg { width: 14px; height: 14px; stroke: #fff; display: none; }
.checklist-item.checked .check-icon svg { display: block; }
.checklist-item span.ci-text { font-size: 15.5px; color: #E4E9EA; }
.checklist-result { order: 1; border-radius: var(--radius-md); padding: 24px 28px; margin-bottom: var(--space-7); background: rgba(11, 165, 106, .12); border: 1.5px solid rgba(11, 165, 106, .35); text-align: center; transition: all var(--ease); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); }
.cr-popup-content { animation: fadeIn 0.35s var(--ease); display: flex; flex-direction: column; align-items: center; }
.cr-strike-tag { display: inline-block; font-size: 12px; font-weight: 800; color: #34D399; background: rgba(11, 165, 106, 0.2); padding: 4px 14px; border-radius: 20px; border: 1px solid rgba(52, 211, 153, 0.3); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.checklist-result .cr-title,
.cr-popup-content h3 { font-size: 22px; font-weight: 800; color: #ffffff !important; margin: 0 0 10px 0; line-height: 1.3; }
.checklist-result .cr-text,
.cr-popup-content p { font-size: 15.5px; line-height: 1.6; color: #D1EBE0 !important; max-width: 580px; margin: 0 auto; }
/* ---------- DIFFERENCE TOGGLE ---------- */
.diff-toggle-head { display: flex; justify-content: center; gap: var(--space-2); margin-bottom: var(--space-7); }
.diff-toggle-btn { padding: 12px 26px; border-radius: var(--radius-pill); border: 1.5px solid var(--tg-border); font-weight: 600; font-size: 14.5px; color: var(--tg-body); transition: all var(--ease); min-height: 44px; background: var(--tg-white); cursor: pointer; }
.diff-toggle-btn.active { background: var(--tg-heading); color: #fff; border-color: var(--tg-heading); }
.diff-rows { display: flex; flex-direction: column; gap: var(--space-3); max-width: 820px; margin-inline: auto; }
.diff-row { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-5) var(--space-6); border-radius: var(--radius-md); border: 1px solid var(--tg-border); }
.diff-row.mode-without { background: var(--tg-danger-soft); border-color: transparent; }
.diff-row.mode-with { background: var(--tg-primary-soft); border-color: transparent; }
.diff-row-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.diff-row.mode-without .diff-row-icon { background: var(--tg-danger); }
.diff-row.mode-with .diff-row-icon { background: var(--tg-primary); }
.diff-row-icon svg { width: 16px; height: 16px; stroke: #fff; }
.diff-row p { color: var(--tg-heading); font-weight: 500; font-size: 15.5px; }
/* ---------- SECTION 12 EXPANDING FLEX ACCORDION DECK ---------- */
.gains-flex-deck { display: flex; gap: 16px; min-height: 380px; margin-top: 24px; width: 100%; }
.gains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-6); }
.gain-card { background: var(--tg-white); border: 1px solid var(--tg-border); border-radius: 16px; padding: 28px 24px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.gain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #0ba56a, #008352); opacity: 0; transition: opacity 0.3s ease; }
.gain-card:hover,
.gain-card.active { border-color: rgba(11, 165, 106, 0.35); box-shadow: 0 14px 35px rgba(11, 165, 106, 0.09); transform: translateY(-4px); }
.gain-card:hover::before,
.gain-card.active::before { opacity: 1; }
.gain-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.gain-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(11, 165, 106, 0.08); color: #008352; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; }
.gain-card-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.gain-card:hover .gain-card-icon,
.gain-card.active .gain-card-icon { background: #008352; color: #ffffff; transform: scale(1.05); }
.gain-card-num { font-size: 14px; font-weight: 800; color: #008352; background: rgba(11, 165, 106, 0.1); padding: 4px 10px; border-radius: 20px; letter-spacing: 0.02em; }
.gain-card-body h3 { font-size: 18px; font-weight: 700; color: var(--tg-heading); margin-bottom: 10px; line-height: 1.3; }
.gain-card-body p { font-size: 14.5px; line-height: 1.6; color: var(--tg-body); margin-bottom: 0; }
.gain-card-footer { margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(0, 0, 0, 0.05); display: flex; align-items: center; justify-content: space-between; }
.gain-indicator { height: 3px; width: 100%; border-radius: 2px; background: rgba(11, 165, 106, 0.12); position: relative; overflow: hidden; }
.gain-indicator::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: #008352; transition: width 0.4s ease; }
.gain-card:hover .gain-indicator::after,
.gain-card.active .gain-indicator::after { width: 100%; }
@media (max-width: 991px) {
  .gains-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 576px) {
  .gains-grid { grid-template-columns: 1fr; gap: 14px; }
  .gain-card { padding: 20px 18px; }
  .gain-card-body h3 { font-size: 16.5px; }
  .gain-card-body p { font-size: 13.5px; }
}
/* ---------- SUCCESS STORY (Farmsent) ---------- */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-9); align-items: center; }
.story-visual { background: var(--tg-teal-soft); border-radius: var(--radius-lg); padding: 0; aspect-ratio: 2/1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.story-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.story-copy .tg-tag { margin-bottom: var(--space-4); }
.story-block { margin-bottom: var(--space-4); }
.story-block .lbl { font-weight: 700; color: var(--tg-heading); font-size: 14.5px; margin-bottom: var(--space-1); }
/* ---------- TESTIMONIALS (Aligned with index.html) ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border: 1.5px solid var(--tg-border); border-radius: 16px; padding: 28px; transition: box-shadow 0.25s ease; display: flex; flex-direction: column; justify-content: space-between; }
.testi-card:hover { box-shadow: var(--shadow-lg); }
.testi-ind { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--tg-primary); margin-bottom: 12px; }
.testi-q { font-size: 14px !important; color: var(--tg-body); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-num { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800; color: var(--tg-heading); line-height: 1.2; margin-bottom: 4px; }
.testi-title-custom { color: var(--tg-primary); font-size: 20px; font-weight: 800; margin-top: 16px; }
.testi-numlbl { font-size: 12.5px; color: var(--tg-body); margin-bottom: 18px; }
.testi-auth { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--tg-border); }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--tg-primary-dark), var(--tg-primary)); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: var(--tg-heading); }
.testi-role { font-size: 12px; color: var(--tg-body); }
/* ---------- FAQ: MODERN FLOATING CARD ACCORDION UI ---------- */
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--tg-white); border: 1.5px solid var(--tg-border); border-radius: 16px; overflow: hidden; transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-item.open { background: #EAF7EF; border-color: var(--tg-primary); box-shadow: 0 10px 25px rgba(11, 165, 106, 0.12); transition-delay: 0s; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 28px; text-align: left; background: transparent; border: none; cursor: pointer; outline: none; }
.faq-left { display: flex; align-items: center; gap: 18px; }
.faq-num { width: 34px; height: 34px; border-radius: 50%; background: rgba(11, 165, 106, 0.08); color: var(--tg-primary); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.faq-item.open .faq-num { background: var(--tg-primary); color: #FFFFFF; }
.faq-qtxt { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--tg-heading); line-height: 1.4; }
.faq-toggle-btn { width: 36px; height: 36px; border-radius: 50%; background: #F1F5F9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--tg-body); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s var(--ease), color 0.3s var(--ease); }
.faq-toggle-btn svg { width: 16px; height: 16px; }
.faq-item.open .faq-toggle-btn { transform: rotate(135deg); background: var(--tg-primary); color: #FFFFFF; }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease 0.05s; }
.faq-item.open .faq-a { max-height: 220px; opacity: 1; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease 0.1s; }
.faq-a p { padding: 0 28px 24px 80px; margin: 0; font-size: 15px; line-height: 1.7; color: var(--tg-body); }
  /* Mobile Responsiveness for FAQ Cards */
@media (max-width: 640px) { .faq-q { padding: 18px 20px; }
  .faq-left { gap: 12px; }
  .faq-num { width: 28px; height: 28px; font-size: 12px; }
  .faq-qtxt { font-size: 15px; }
  .faq-a p { padding: 0 20px 20px 20px; font-size: 14px; }
}
/* ---------- FINAL CTA ---------- */
.final-cta { background: var(--tg-heading); border-radius: var(--radius-lg); padding: var(--space-9) var(--space-8); text-align: center; color: #fff; }
.final-cta h2 { color: #fff; max-width: 640px; margin-inline: auto; margin-bottom: var(--space-6); }
.final-cta-ctas { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }
.final-cta .tg-btn-primary { background: #fff; color: var(--tg-primary-dark); border-color: #fff; }
.final-cta .tg-btn-secondary { background: transparent; color: #fff !important; border-color: rgba(255, 255, 255, .25); }
.final-cta .tg-btn-secondary:hover { border-color: var(--tg-primary); color: var(--tg-primary) !important; background: rgba(255, 255, 255, .06); }
/* Section Spacing Utilities */
#testimonials .section-intro { margin-bottom: 40px; }
.story-copy h2 { margin-bottom: 20px; }
.story-copy>p { margin-bottom: 24px; }
.story-copy .tg-btn { margin-top: 16px; }
/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
  /* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 1199px) { .tg-container { padding-inline: 36px; }
}
@media (max-width: 991px) {
  .tg-container { padding-inline: 24px; }
  .tg-section { padding-block: 52px; }
  .tg-hero { padding-top: 105px; padding-bottom: 52px; }
  h1,
  .tg-main-wrap h1,
  .tg-hero h1 { font-size: 34px !important; font-weight: 800; line-height: 1.2; }
  h2,
  .tg-main-wrap h2,
  .section-intro h2 { font-size: 28px !important; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
  h3,
  .tg-main-wrap h3 { font-size: 20px !important; font-weight: 700; line-height: 1.3; }
  h4,
  .tg-main-wrap h4 { font-size: 18px !important; font-weight: 600; line-height: 1.35; }
  p,
  .tg-main-wrap p,
  .body-large,
  .small-text,
  .gap-spotlight-desc,
  .journey-card p,
  .standard-card p,
  .inside-accordion-body p,
  .process-card p,
  .story-copy p,
  .faq-a p,
  .hero-copy p,
  .testi-q,
  .checklist-item p,
  .diff-card p { font-size: 16px !important; line-height: 1.6; }
  .section-intro { margin-bottom: 32px; }
  .tg-btn { padding: 11px 20px; font-size: 13.5px; font-weight: 600; min-height: 42px; }
  .orbit-bubble { padding: 11px 18px; font-size: 13.5px; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-visual { max-width: 500px; margin-inline: auto; aspect-ratio: 500/362; padding: 18px; }
  .gap-layout { grid-template-columns: 1fr; gap: 20px; }
  .gap-spotlight { padding: 24px 20px; }
  .gap-card { padding: 18px 16px; }
  .platform-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .platform-cta-section { padding-bottom: 52px; }
  .platform-cta { align-items: flex-start; flex-direction: column; gap: 20px; padding: 30px; }
  .feature-explorer { grid-template-columns: 1fr; }
  .feature-nav { border-right: none; border-bottom: 1px solid var(--tg-border); }
  .inside-accordion-grid { grid-template-columns: 1fr; gap: 12px; }
  .inside-accordion-header { padding: 16px 18px; }
  .inside-accordion-body { padding: 0 18px; }
  .inside-accordion-item.active .inside-accordion-body { padding: 0 18px 18px; }
  .tech-grid,
  .tech-matrix-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .journey-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .journey-card { padding: 20px 18px; }
  .standards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .standard-card { padding: 22px 20px; }
  .farmtypes-wrap { grid-template-columns: 1fr; }
  .record-cta-section { padding-bottom: 52px; }
  .record-cta { grid-template-columns: 1fr; }
  .record-cta-btn { grid-column: 1 / -1; width: 100%; }
  .farmtypes-tabs { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--tg-border); -webkit-overflow-scrolling: touch; }
  .farmtypes-tab { white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; padding: 12px 16px; font-size: 14px; }
  .farmtypes-tab.active { border-bottom-color: var(--tg-primary); }
  .checklist-grid { grid-template-columns: 1fr; gap: 20px; }
  .diff-table { overflow-x: auto; }
  .gains-editorial { grid-template-columns: 1fr; gap: 16px; }
  .story-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .story-copy { order: 1; }
  .story-visual { order: 2; width: 100%; max-width: 480px; margin-inline: auto; padding: 0; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .testi-card { padding: 24px 20px; }
  .faq-q { padding: 18px 20px; }
  .faq-a p { padding: 0 20px 20px 60px; font-size: 16px !important; }
  .final-cta { padding: 44px 24px; }
}
@media (max-width: 767px) {
  .tg-container { padding-inline: 18px; }
  .tg-section { padding-block: 40px; }
  .tg-hero { padding-top: 92px; padding-bottom: 40px; }
  h1,
  .tg-main-wrap h1,
  .tg-hero h1 { font-size: 28px !important; font-weight: 800; line-height: 1.2; }
  h2,
  .tg-main-wrap h2,
  .section-intro h2 { font-size: 24px !important; font-weight: 700; line-height: 1.28; margin-bottom: 10px; }
  h3,
  .tg-main-wrap h3 { font-size: 18px !important; font-weight: 700; line-height: 1.35; }
  h4,
  .tg-main-wrap h4 { font-size: 16px !important; font-weight: 600; line-height: 1.35; }
  p,
  .tg-main-wrap p,
  .body-large,
  .small-text,
  .gap-spotlight-desc,
  .journey-card p,
  .standard-card p,
  .inside-accordion-body p,
  .process-card p,
  .story-copy p,
  .faq-a p,
  .hero-copy p,
  .testi-q,
  .checklist-item p,
  .diff-card p { font-size: 15px !important; line-height: 1.55; }
  .section-intro { margin-bottom: 24px; }
  .tg-btn { padding: 10px 18px; font-size: 13px; font-weight: 600; width: 100%; }
  .hero-ctas { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; width: 100%; }
  .hero-ctas .tg-btn { width: auto; min-width: 0; padding: 10px 8px; font-size: 12.5px; white-space: nowrap; }
  .hero-ctas .tg-btn svg { width: 14px; height: 14px; }
  .orbit-cluster { gap: 8px; }
  .orbit-bubble { padding: 9px 14px; font-size: 12.5px; }
  .platform-cta-section { padding-bottom: 40px; }
  .platform-cta { gap: 16px; padding: 22px 18px; border-radius: 17px; }
  .platform-cta-copy h2 { font-size: 21px !important; margin-bottom: 7px; }
  .platform-cta-copy p { font-size: 14px !important; line-height: 1.5; }
  .platform-cta-btn { width: fit-content; min-height: 40px; padding: 9px 18px; font-size: 12.5px; }
  .gap-layout { display: block; }
  .gap-cards-grid { grid-template-columns: 1fr; gap: 9px; }
  .gap-card,
  .gap-card:last-child:nth-child(odd) { width: 100%; min-height: 0; padding: 12px 14px; border-radius: 12px; }
  .gap-card-num { font-size: 11px; }
  .gap-card-title { font-size: 14px !important; margin-bottom: 0; }
  .gap-cards-grid>.gap-spotlight { padding: 14px; margin: 0; border-radius: 13px; box-shadow: none; }
  .gap-cards-grid>.gap-spotlight::before { height: 2px; }
  .gap-cards-grid>.gap-spotlight .gap-spotlight-header,
  .gap-cards-grid>.gap-spotlight .gap-spotlight-icon,
  .gap-cards-grid>.gap-spotlight .gap-spotlight-title { display: none; }
  .gap-spotlight-header { margin-bottom: 8px; }
  .gap-spotlight-num { font-size: 22px; }
  .gap-spotlight-icon { width: 36px; height: 36px; margin-bottom: 8px; border-radius: 10px; }
  .gap-spotlight-icon svg { width: 18px; height: 18px; }
  .gap-spotlight-title { font-size: 16px !important; margin-bottom: 4px; }
  .gap-spotlight-desc { font-size: 13px !important; line-height: 1.45; }
  .journey-stepper-container { overflow-x: auto; padding: 8px 0 12px; scrollbar-width: thin; scrollbar-color: var(--tg-primary) var(--tg-primary-soft); -webkit-overflow-scrolling: touch; }
  .journey-stepper-container::-webkit-scrollbar { display: block; height: 6px; }
  .journey-stepper-container::-webkit-scrollbar-track { background: var(--tg-primary-soft); border-radius: 999px; }
  .journey-stepper-container::-webkit-scrollbar-thumb { background: var(--tg-primary); border-radius: 999px; }
  .journey-stepper-rail { width: max-content; min-width: 100%; justify-content: flex-start; }
  .journey-stepper-rail::before { left: 42px; right: 42px; }
  .journey-step-node { flex: 0 0 84px; min-width: 84px; }
  .journey-step-node .node-circle { width: 34px; height: 34px; font-size: 11px; }
  .journey-step-node .node-label { width: 80px; max-width: 80px; font-size: 10.5px; line-height: 1.2; white-space: normal; }
  .process-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-card { min-width: 0; padding: 18px 14px; border-radius: 16px; }
  .process-card-header { margin-bottom: 14px; }
  .process-card-icon { width: 40px; height: 40px; border-radius: 10px; }
  .process-card-icon svg { width: 20px; height: 20px; }
  .process-card-num { font-size: 18px; }
  .process-panel { grid-template-columns: 1fr; gap: var(--space-4); padding: var(--space-4); }
  .process-panel-visual { order: -1; max-width: 180px; margin-inline: auto; }
  .process-explorer { padding: var(--space-4); border-radius: var(--radius-md); }
  .feature-detail { padding: var(--space-4); }
  .tech-matrix-grid { grid-template-columns: 1fr; gap: 14px; }
  .tech-matrix-wrapper { gap: 18px; }
  .tech-matrix-card { padding: 16px; border-radius: 16px; justify-content: flex-start; }
  .tech-matrix-card-header { margin-bottom: 12px; }
  .tech-matrix-card .tech-card-num { width: 42px; height: 42px; margin-bottom: 12px; border-radius: 11px; font-size: 16px; }
  .tech-matrix-card h3 { font-size: 17px !important; margin-bottom: 6px; }
  .tech-matrix-card p.small-text { font-size: 14px !important; line-height: 1.5; margin-bottom: 12px; }
  .tech-matrix-tag { padding: 4px 10px; font-size: 11px; }
  .standards-grid { grid-template-columns: 1fr; gap: 14px; }
  .standard-card { padding: 14px 16px; border-radius: 14px; }
  .standard-card-header { margin-bottom: 8px; gap: 8px; }
  .standard-card h3 { font-size: 17px !important; }
  .standard-card p { font-size: 14px !important; line-height: 1.45; }
  .standard-badge { padding: 3px 8px; font-size: 10.5px; border-radius: 7px; }
  .checklist-box { padding: 16px; border-radius: 18px; }
  .checklist-box-inner { display: flex; flex-direction: column; }
  .checklist-result { order: 1; padding: 16px 14px; margin-bottom: 14px; border-radius: 14px; }
  .checklist-result .cr-title,
  .cr-popup-content h3 { font-size: 18px !important; margin-bottom: 6px; }
  .checklist-result .cr-text,
  .cr-popup-content p { font-size: 13.5px !important; line-height: 1.5; }
  .checklist-items { order: 2; gap: 8px; margin-bottom: 0; }
  .checklist-item { min-height: 0; gap: 12px; padding: 12px; border-radius: 11px; }
  .check-icon { width: 20px; height: 20px; border-radius: 6px; }
  .check-icon svg { width: 12px; height: 12px; }
  .checklist-item span.ci-text { font-size: 13.5px; line-height: 1.45; }
  .farm-biz-interactive-tri { padding: 16px; gap: 14px; border-radius: 18px; }
  .farm-biz-showcase { min-height: 150px; padding: 18px 16px; border-radius: 16px; }
  .showcase-badge { margin-bottom: 8px; padding: 3px 12px; }
  .showcase-content h3 { margin-bottom: 6px; font-size: 18px !important; }
  .showcase-content p { font-size: 14px !important; line-height: 1.45; }
  .record-cta-section { padding-bottom: 40px; }
  .record-cta { grid-template-columns: 1fr; gap: 13px; padding: 18px; border-radius: 16px; }
  .record-cta-copy h2 { font-size: 20px !important; margin-bottom: 6px; }
  .record-cta-copy p { font-size: 13.5px !important; line-height: 1.5; }
  .record-cta-btn { grid-column: auto; width: fit-content; min-height: 38px; padding: 8px 13px; font-size: 12px; white-space: normal; text-align: center; }
  .record-cta-btn svg { width: 14px; height: 14px; }
  .diff-toggle-head { gap: 6px; margin-bottom: 18px; }
  .diff-toggle-btn { min-height: 38px; padding: 8px 10px; font-size: 12px; line-height: 1.25; }
  .diff-rows { gap: 9px; }
  .diff-row { gap: 10px; padding: 12px 14px; border-radius: 14px; }
  .diff-row-icon { width: 26px; height: 26px; }
  .diff-row-icon svg { width: 13px; height: 13px; }
  .diff-row p { font-size: 13.5px !important; line-height: 1.45; }
  .gains-flex-deck { gap: 10px; margin-top: 16px; }
  .gfd-card { padding: 16px; border-radius: 15px; }
  .gfd-num { font-size: 19px; }
  .gfd-content { margin: 10px 0; }
  .gfd-content h3,
  .gfd-card.active .gfd-content h3,
  .gfd-card:hover .gfd-content h3 { font-size: 17px !important; margin-bottom: 5px; }
  .gfd-content p,
  .gfd-card.active .gfd-content p,
  .gfd-card:hover .gfd-content p { font-size: 13.5px !important; line-height: 1.45; margin-top: 4px; }
  .journey-card { padding: 16px 14px; }
  .crop-tabs { grid-template-columns: 1fr 1fr; gap: 8px; }
  .crop-tab { padding: 12px 8px; font-size: 13px; gap: 6px; }
  .crop-card { padding: 14px; border-radius: 16px; }
  .crop-card-title { font-size: 16px; margin-bottom: 12px; }
  .crop-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-bottom: 10px; }
  .crop-stat-box { padding: 12px; border-radius: 11px; }
  .crop-stat-label { font-size: 11.5px; margin-bottom: 3px; }
  .crop-stat-value { font-size: 19px; }
  .crop-row { padding: 10px 12px; margin-bottom: 7px; border-radius: 10px; font-size: 12.5px; }
  .faq-q { padding: 14px 16px; }
  .faq-left { gap: 10px; }
  .faq-num { width: 28px; height: 28px; font-size: 12px; }
  .faq-qtxt { font-size: 14px; line-height: 1.35; }
  .faq-a p { padding: 0 16px 16px 16px; font-size: 15px !important; line-height: 1.6; }
  .testi-card { padding: 20px 16px; }
  .testi-ind { font-size: 10.5px; margin-bottom: 8px; }
  .testi-q { font-size: 15px !important; margin-bottom: 14px; }
  .testi-title-custom { font-size: 18px; }
  .final-cta { padding: 32px 18px; border-radius: 16px; }
  .final-cta h2 { font-size: 24px !important; margin-bottom: 16px; }
}
@media (max-width: 576px) {
  .tg-container { padding-inline: 16px; }
  .hero-ctas .tg-btn { width: auto; padding-inline: 6px; font-size: 12px; }
  .final-cta-ctas .tg-btn { width: 100%; }
  .journey-cards-grid { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 44px 1fr; gap: var(--space-3); }
  .journey-step-num { width: 44px; height: 44px; font-size: 13px; }
  .journey-step::before { left: 21px; top: 44px; }
  .compliance-row { grid-template-columns: 1fr 28px; padding: var(--space-3); }
  .compliance-row-region { display: none; }
}