:root { --page-max-width: 1280px; --section-space-desktop: 64px; --section-space-tablet: 40px; --section-space-mobile: 40px; --content-gap: 24px; --card-radius: 24px; --small-radius: 14px; --border-color: #DCE1E5; --color-primary: #0BA56A; /* Brand Green */ --color-primary-dark: #078857; /* Dark Green */ --color-primary-soft: #EAF7EF; /* Soft Green */ --color-teal: #0E7C86; /* Teal accent */ --color-teal-soft: #E8F4F5; /* Soft Teal accent */ --color-primary-text: #111B24; --color-secondary-text: #707070; --color-light-shade: #D9D9D9; --color-stroke: #DCE1E5; --color-bg: #FFFFFF; --color-bg-soft: #F7F9F7; /* Soft Green BG */ --color-bg-muted: #F3F6F4; /* Muted Green BG */ --surface-card: #FFFFFF; --surface-soft-accent: #F4FAF6; --color-amber: #B7791F; --color-amber-soft: #FBF3E4; --color-danger: #C0392B; --color-danger-soft: #FBEBEA; --font-primary: "Inter", sans-serif; --text-main-heading-size: clamp(22px, 4vw, 32px); --text-sub-heading-size: 22px; --text-paragraph-heading-size: 18px; --text-paragraph-size: 17px; --radius-card: 24px; --radius-lg: 32px; --radius-btn: 8px; --radius-pill: 999px; --radius-input: 14px; --transition-fast: 0.18s ease; --transition-base: 0.25s ease; --transition-slow: 0.45s ease; --space-12: 12px; --space-16: 16px; --space-20: 20px; --space-24: 24px; --space-32: 32px; --space-48: 48px; --space-64: 64px; --space-80: 80px; --space-100: 100px; }
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); font-size: var(--text-paragraph-size); line-height: 1.6; color: var(--color-primary-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
/* Container Spacing & Grid System alignment */
.container-xl, .container-xl-custom { max-width: var(--page-max-width) !important; margin-left: auto; margin-right: auto; padding-left: 80px !important; padding-right: 80px !important; }
@media (max-width: 991px) {
  .container-xl, .container-xl-custom { padding-left: 40px !important; padding-right: 40px !important; }
}
@media (max-width: 767px) {
  .container-xl, .container-xl-custom { padding-left: 20px !important; padding-right: 20px !important; }
}
/* Section Spacing alignment */
.tg-section { padding-top: var(--section-space-desktop); padding-bottom: var(--section-space-desktop); }
.tg-section-compact { padding-top: calc(var(--section-space-desktop) * 0.75); padding-bottom: calc(var(--section-space-desktop) * 0.75); }
@media (max-width: 767px) {
  .tg-section { padding-top: var(--section-space-mobile); padding-bottom: var(--section-space-mobile); }
  .tg-section-compact { padding-top: calc(var(--section-space-mobile) * 0.75); padding-bottom: calc(var(--section-space-mobile) * 0.75); }
}
/* Hero section banner styling matching seafood layout & color */
.tg-hero { padding-top: 145px; padding-bottom: 70px; background: linear-gradient(180deg, #FFFFFF 0%, #F4FAF6 100%); overflow: hidden; }
@media (max-width: 991px) {
  .tg-hero { padding-top: 100px; padding-bottom: 70px; }
}
/* trust strip */
.trust-strip { border-top: 1px solid rgba(11, 165, 106, 0.14); border-bottom: 1px solid rgba(11, 165, 106, 0.14); padding: 28px 0; background: var(--color-primary-soft); overflow: hidden; }
.trust-rail { display: flex; align-items: center; width: max-content; animation: trust-marquee 28s linear infinite; }
.trust-group { display: flex; align-items: center; flex-shrink: 0; }
.trust-rail::-webkit-scrollbar { display: none; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--color-primary-text); white-space: nowrap; padding: 0 24px; position: relative; }
.trust-item i { color: var(--color-primary); font-size: 16px; }
.trust-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); height: 22px; width: 1px; background: var(--color-stroke); }
@keyframes trust-marquee {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 767px) {
  .trust-strip { padding: 22px 0; }
}
@media (max-width: 575px) {
  .trust-rail { animation-duration: 22s; }
  .trust-item { padding: 0 16px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .trust-rail { animation: none; transform: none; }
}
/* Typography elements */
.eyebrow { font-size: 12.5px; font-weight: 600; color: var(--color-primary); line-height: normal; margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.14em; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); display: inline-block; }
.main-heading { font-size: clamp(22px, 4vw, 32px); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; color: var(--color-primary-text); }
h1.main-heading, .main-heading-hero { font-size: clamp(28px, 5vw, 44px); line-height: 1.06; font-weight: 700; letter-spacing: -0.03em; color: var(--color-primary-text); }
h3 { font-weight: 600 !important; }
.sub-heading { font-size: 20px; line-height: 1.25; font-weight: 600; letter-spacing: -0.01em; color: var(--color-primary-text); margin-bottom: 12px; }
.paragraph-heading { font-size: var(--text-paragraph-heading-size); line-height: 120%; font-weight: 600; color: var(--color-primary-text); margin-bottom: 12px; }
.paragraph-semibold { font-size: 16px; font-weight: 600; color: var(--color-primary-text); }
p, .paragraph, p.lead-text { font-size: var(--text-paragraph-size); line-height: 1.6; font-weight: 400; color: var(--color-secondary-text); }
@media (max-width: 767px) {
  h2, .main-heading:not(h1) { font-size: 24px !important; }
  h3, .sub-heading, .paragraph-heading { font-size: 18px !important; }
  #engagement-result { font-size: 16px !important; }
  p, .paragraph, p.lead-text { font-size: 17px; }
}
@media (max-width: 576px) {
  #engagement-result { font-size: 14px !important; }
  p, .paragraph, p.lead-text { font-size: 15px; }
}
@media (max-width: 425px) {
  p, .paragraph, p.lead-text { font-size: 14px; }
}
/* Action buttons and links */
.btn-tg-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-pill); background: var(--color-primary); color: #fff !important; border: 1px solid var(--color-primary); font-size: 14px; font-weight: 600; line-height: 1.2; text-decoration: none; transition: all var(--transition-base); white-space: nowrap; box-shadow: 0 6px 18px rgba(11, 165, 106, 0.3); }
.btn-tg-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11, 165, 106, 0.36); }
.btn-tg-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-pill); background: #fff; color: var(--color-primary-text) !important; border: 1px solid var(--color-stroke); font-size: 14px; font-weight: 600; line-height: 1.2; text-decoration: none; transition: all var(--transition-base); white-space: nowrap; }
.btn-tg-secondary:hover { border-color: var(--color-primary); color: var(--color-primary) !important; background: rgba(11, 165, 106, 0.04); transform: translateY(-2px); }
.link-cta { font-size: 16px; font-weight: 600; color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px; transition: all var(--transition-fast); text-decoration: none; }
.link-cta i { transition: transform var(--transition-fast); }
.link-cta:hover { color: var(--color-primary-dark); }
.link-cta:hover i { transform: translateX(4px); }
/* Scroll animations removed for performance */
/* Accessibility focus outline */
:focus-visible { outline: 3px solid rgba(11, 165, 106, 0.35); outline-offset: 3px; }
/* Decorative pills/chips */
.tg-chip { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; padding: 0 14px; border-radius: var(--radius-pill); background: var(--color-primary-soft); color: var(--color-primary-text); border: 1px solid rgba(11, 165, 106, 0.16); font-size: 14px; font-weight: 600; }
.tg-chip::before { content: "\2713"; color: var(--color-primary); font-weight: 700; }
.hero-banner-image { width: 100%; height: auto; border-radius: 0 !important; mix-blend-mode: multiply; -webkit-mask-image: radial-gradient(ellipse at center, #000 68%, rgba(0, 0, 0, 0.88) 78%, transparent 100%); mask-image: radial-gradient(ellipse at center, #000 68%, rgba(0, 0, 0, 0.88) 78%, transparent 100%); }
/* Sticky side column for large screens */
@media (min-width: 992px) {
  .sticky-side-column { position: -webkit-sticky; position: sticky; top: 120px; align-self: flex-start; }
  ;
}
/* Numbered process / platform rows */
.editorial-list { position: relative; padding-left: 8px; }
.editorial-row { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--color-stroke); }
.editorial-row:last-child { border-bottom: none; }
.editorial-num { font-size: 20px; font-weight: 700; color: var(--color-primary); }
/* Bento Cards layout */
.bento-card { background: #fff; border: 1px solid var(--color-stroke); border-radius: var(--radius-card); padding: 24px; height: 100%; transition: all var(--transition-base); }
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0, 40, 22, 0.08); border-color: #CDE8D6; }
.bento-card-lg { background: var(--color-primary-text); color: #fff; }
.bento-card-lg .sub-heading { color: #fff; }
.bento-card-lg p { color: rgba(255, 255, 255, 0.72); }
.bento-card-accent { background: var(--color-primary-soft); border-color: rgba(11, 165, 106, 0.2); }
.bento-icon { font-size: 24px; color: var(--color-primary); margin-bottom: 14px; display: inline-block; }
.bento-card-lg .bento-icon { color: #7FE3B4; }
/* Assessment checklist panel */
.engagement-panel { background: var(--color-bg-soft); border: 1px solid var(--color-stroke); border-radius: var(--radius-lg); padding: 56px; }
@media (max-width: 767px) {
  .engagement-panel { padding: 32px 20px; }
}
.engagement-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--color-stroke); flex-wrap: wrap; }
.engagement-row p { font-size: 15px; }
.engagement-yn label { display: flex; align-items: center; gap: 8px; font-weight: 600; cursor: pointer; }
.engagement-yn input { width: 18px; height: 18px; accent-color: var(--color-primary); }
/* Alternate feature showcases (Zig-zag) */
.zigzag-item { display: flex; align-items: center; gap: 32px; padding: 24px 0; max-width: 880px; margin: 0 auto; }
.zigzag-item.reverse { flex-direction: row-reverse; text-align: right; }
.zigzag-icon { flex: 0 0 64px; height: 64px; width: 64px; border-radius: 18px; background: var(--color-primary-soft); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--color-primary); }
.zigzag-text { flex: 1; }
@media (max-width: 767px) {
  .zigzag-icon { flex: 0 0 48px; height: 48px; width: 48px; font-size: 20px; border-radius: 12px; }
}
@media (max-width: 576px) {
  .zigzag-item, .zigzag-item.reverse { flex-direction: row; text-align: left; }
}
/* Horizontal Journey / Process timeline */
.journey-track { display: flex; gap: 20px; overflow-x: auto; overflow-y: hidden; padding-bottom: 12px; scroll-snap-type: x proximity; -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */; }
.journey-track::-webkit-scrollbar { display: none; /* Chrome, Safari and Opera */; }
.journey-step { flex: 0 0 240px; scroll-snap-align: start; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 22px; padding: 24px; position: relative; transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.journey-step:hover { background: rgba(11, 165, 106, 0.15); border-color: rgba(11, 165, 106, 0.4); transform: translateY(-2px); }
.journey-emoji { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 12px; background: rgba(127, 227, 180, 0.1); border: 1px solid rgba(127, 227, 180, 0.2); color: #7FE3B4; margin-bottom: 16px; }
.journey-emoji svg { width: 36px; height: 36px; max-width: 100%; max-height: 100%; color: #43c773; }
.journey-index { position: absolute; top: 20px; right: 20px; font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, 0.35); }
.journey-tag { display: inline-block; font-size: 12px; font-weight: 600; color: #7FE3B4; background: rgba(11, 165, 106, 0.16); padding: 4px 10px; border-radius: 999px; margin: 8px 0 12px; }
.journey-copy { font-size: 14px; line-height: 170%; color: rgba(255, 255, 255, 0.65); margin: 0; }
/* Feature Mosaic Grid */
.feature-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; grid-auto-flow: dense; gap: 16px; align-items: stretch; }
.feature-tile { background: #fff; border: 1px solid var(--color-stroke); border-radius: 22px; padding: 22px; transition: all var(--transition-base); display: flex; flex-direction: column; justify-content: flex-start; }
.feature-tile:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0, 40, 22, 0.08); border-color: #CDE8D6; }
.feature-tile-icon { font-size: 22px; color: var(--color-primary); margin-bottom: 12px; flex: 0 0 auto; }
.feature-tile h3 { margin-bottom: 6px; font-size: 17px; }
.feature-tile p { font-size: 14px; line-height: 160%; margin-bottom: 0; }
.feature-tile-tall { grid-row: span 2; background: var(--color-primary-soft); border-color: rgba(11, 165, 106, 0.2); justify-content: center; }
.feature-tile-wide { grid-column: span 2; }
@media (min-width: 992px) {
  .feature-mosaic { grid-template-columns: repeat(12, 1fr); }
  .feature-qr { grid-row: 1 / 3; grid-column: 1 / 4; }
  .feature-erp { grid-row: 1; grid-column: 4 / 7; }
  .feature-audit { grid-row: 1; grid-column: 7 / 10; }
  .feature-workflows { grid-row: 1 / 3; grid-column: 10 / 13; }
  .feature-facility { grid-row: 2; grid-column: 4 / 10; }
  .feature-access { grid-row: 3; grid-column: 1 / 5; }
  .feature-alerts { grid-row: 3; grid-column: 5 / 9; }
  .feature-api { grid-row: 3; grid-column: 9 / 13; }
}
@media (max-width: 991px) {
  .feature-mosaic { grid-template-columns: repeat(2, 1fr); }
  .feature-tile-wide { grid-column: span 2; }
  .feature-tile-tall { grid-row: span 1; justify-content: flex-start; }
}
@media (max-width: 576px) {
  .feature-mosaic { grid-template-columns: 1fr; gap: 12px; }
  .feature-tile { grid-column: auto !important; grid-row: auto !important; }
}
/* Module carousel slider */
.module-carousel { position: relative; }
.module-slide { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 8px 64px; }
.module-visual { background: #fff; border: 1px solid var(--color-stroke); border-radius: 28px; box-shadow: 0 20px 55px rgba(40, 0, 4, 0.08); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.module-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 72px; color: var(--color-primary); background: var(--surface-soft-accent); border-radius: 28px; }
.module-image { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.module-nav-btn { width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1px solid var(--color-stroke); display: inline-flex; align-items: center; justify-content: center; color: var(--color-primary-text); font-size: 18px; transition: all 0.2s ease; }
.carousel-control-prev:hover .module-nav-btn, .carousel-control-next:hover .module-nav-btn { background: var(--color-primary) !important; border-color: var(--color-primary) !important; color: #fff !important; }
.carousel-control-prev:focus .module-nav-btn, .carousel-control-next:focus .module-nav-btn, .carousel-control-prev:active .module-nav-btn, .carousel-control-next:active .module-nav-btn { color: var(--color-primary-text) !important; background: #fff !important; border-color: var(--color-stroke) !important; }
.carousel-control-prev, .carousel-control-next { width: 48px; opacity: 1; }
.module-indicators { position: static; margin-top: 32px; display: flex; justify-content: center; align-items: center; }
.module-indicators [data-bs-target] { width: 48px; height: 48px; background: transparent !important; border: none; opacity: 1; display: inline-flex; align-items: center; justify-content: center; padding: 0; margin: 0; position: relative; cursor: pointer; }
.module-indicators [data-bs-target]::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--color-stroke); transition: all 0.2s ease; }
.module-indicators [data-bs-target].active::before { background: var(--color-primary); width: 22px; border-radius: 5px; }
@media (max-width: 767px) {
  .module-slide { grid-template-columns: 1fr; padding: 8px 8px; gap: 28px; }
}
/* compliance blocks (FSMA quote + grid) */
.fsma-quote { border-left: 3px solid var(--color-primary); background: var(--color-primary-soft); padding: 20px 24px; border-radius: 0 16px 16px 0; margin-top: 28px; }
.fsma-quote i { color: var(--color-primary); font-size: 20px; }
.fsma-quote p { font-size: 15px; font-style: italic; color: var(--color-primary-text); }
.fsma-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fsma-block { background: #fff; border: 1px solid var(--color-stroke); border-radius: 18px; padding: 22px; display: flex; flex-direction: column; height: 100%; }
.fsma-block-accent { background: var(--color-primary-text); border-color: var(--color-primary-text); }
.fsma-block-accent p { color: rgba(255, 255, 255, 0.75); }
.fsma-block-accent .fsma-block-tag { color: #7FE3B4; }
.fsma-block-tag { display: block; font-size: 14px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
@media (max-width: 576px) {
  .fsma-grid { grid-template-columns: 1fr; }
}
/* FSMA Interactive Checklist */
.fsma-checklist { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 20px; overflow: hidden; }
.fsma-checklist-header { display: grid; grid-template-columns: 1fr 80px 80px; padding: 16px 20px; font-size: 13px; color: rgba(255, 255, 255, 0.5); font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.fsma-checklist-row { display: grid; grid-template-columns: 1fr 80px 80px; align-items: center; padding: 16px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: #fff; font-size: 15px; }
.fsma-checklist-row:last-child { border-bottom: none; }
.fsma-checklist-row label { display: flex; justify-content: center; }
.fsma-radio { width: 18px; height: 18px; accent-color: var(--color-primary); }
/* Certification badge showcase */
.cert-board { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.cert-card { flex: 1 1 220px; max-width: 260px; background: #fff; border: 1px solid var(--color-stroke); border-radius: 20px; padding: 20px; text-align: center; transition: all var(--transition-base); }
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(40, 0, 4, 0.08); }
.cert-badge { display: inline-block; background: var(--color-primary-soft); color: var(--color-primary); font-weight: 700; font-size: 14px; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px; }
/* Business Benefit grid */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-stroke); border: 1px solid var(--color-stroke); border-radius: 24px; overflow: hidden; }
.benefit-block { background: #fff; padding: 26px 24px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); position: relative; }
.benefit-block:hover { background: #f2faf6 !important; box-shadow: 0 12px 30px rgba(11, 165, 106, 0.15); transform: translateY(-3px); z-index: 2; }
.benefit-num { font-size: 28px; font-weight: 800; -webkit-text-stroke: 1px var(--color-primary); color: transparent; display: block; margin-bottom: 12px; transition: all 0.3s ease; }
.benefit-block:hover .benefit-num { color: #0BA56A !important; -webkit-text-stroke: 0px transparent; }
.benefit-block:hover .paragraph-heading { color: #0BA56A !important; }
@media (max-width: 991px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .benefit-grid { grid-template-columns: 1fr; }
}
/* Solutions segment */
.solution-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px; overflow: hidden; }
.solution-item { background: rgba(255, 255, 255, 0.02); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.solution-item i { font-size: 26px; color: #7FE3B4; flex: 0 0 auto; margin-top: 2px; }
@media (max-width: 767px) {
  .solution-showcase { grid-template-columns: 1fr; }
}
/* Comparison system (Before/After) */
.comparison-table-wrap { border-radius: 24px; border: 1px solid var(--color-stroke); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { margin-bottom: 0; min-width: 750px; }
.comparison-table thead th { background: var(--color-primary-text); color: #fff; font-size: 15px; font-weight: 600; padding: 18px 22px; border: none; }
.comparison-table thead th.tg-col { background: var(--color-primary); }
.comparison-table tbody td { padding: 18px 22px; font-size: 15px; color: var(--color-secondary-text); border-color: var(--color-stroke); vertical-align: middle; }
.comparison-table tbody td.tg-col { background: var(--color-primary-soft); color: var(--color-primary-text); font-weight: 600; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
/* Testimonials / customer quotes */
.testimonial-card { max-width: 760px; background: #fff; border: 1px solid var(--color-stroke); border-radius: 28px; padding: 48px; text-align: center; }
.testimonial-quote-icon { font-size: 36px; color: var(--color-primary); margin-bottom: 16px; display: block; }
.testimonial-nav { position: static; width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1px solid var(--color-stroke); opacity: 1; display: inline-flex; align-items: center; justify-content: center; color: var(--color-primary-text); transition: all 0.2s ease; }
.testimonial-nav:focus, .testimonial-nav:active { color: var(--color-primary-text) !important; background: #fff !important; border-color: var(--color-stroke) !important; box-shadow: none !important; opacity: 1 !important; }
.testimonial-nav:hover { background: var(--color-primary) !important; border-color: var(--color-primary) !important; color: #fff !important; opacity: 1 !important; }
/* Case study interactive grids */
.case-showcase { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 24px; }
.case-card { background: #fff; border: 1px solid var(--color-stroke); border-radius: 24px; padding: 28px; display: flex; flex-direction: column; justify-content: center; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; position: relative; overflow: hidden; }
.case-card-visual { display: none; aspect-ratio: 16/9; background: var(--surface-soft-accent); align-items: center; justify-content: center; font-size: 56px; color: var(--color-primary); border-radius: 18px; margin-bottom: 24px; overflow: hidden; }
.case-card-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.case-card.active { grid-column: 1; grid-row: 1 / 3; border-radius: 28px; padding: 32px; justify-content: flex-start; background: #fff; cursor: default; }
.case-card.active .case-card-visual { display: flex; }
.case-card.pos-right-1 { grid-column: 2; grid-row: 1; background: var(--color-bg-soft); }
.case-card.pos-right-2 { grid-column: 2; grid-row: 2; background: var(--color-bg-soft); }
.case-card.pos-right-1:hover, .case-card.pos-right-2:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(22, 70, 39, 0.05); border-color: var(--color-primary-soft); background: #fff; }
/* Adjust heading sizes for active vs secondary */
.case-card.active h3 { font-size: 24px; }
.case-card:not(.active) h3 { font-size: 18px; }
@media (max-width: 991px) {
  .case-showcase { grid-template-columns: 1fr; grid-template-rows: auto; gap: 20px; }
  .case-card.active, .case-card.pos-right-1, .case-card.pos-right-2 { grid-column: auto; grid-row: auto; background: #fff; padding: 28px; border-radius: 24px; }
  .case-card .case-card-visual { display: flex; /* Show visuals for all on mobile/tablet */; }
  .case-card h3 { font-size: 20px !important; }
}
/* Paper record interactive assessment */
.paper-panel { max-width: 720px; margin: 0 auto; background: var(--color-primary-soft); border: 1px solid rgba(11, 165, 106, 0.2); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
@media (max-width: 767px) {
  .paper-panel { padding: 24px 16px; border-radius: 24px; }
  .paper-check-item { padding: 12px 14px; font-size: 14px; }
}
.paper-checklist { display: flex; flex-direction: column; gap: 14px; text-align: left; max-width: 560px; margin: 0 auto; }
.paper-check-item { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--color-stroke); border-radius: 14px; padding: 16px 18px; cursor: pointer; font-size: 16px; color: var(--color-primary-text); }
.paper-check { width: 18px; height: 18px; accent-color: var(--color-primary); flex: 0 0 auto; }
#paper-feedback.state-warning { color: var(--color-amber); }
#paper-feedback.state-danger { color: var(--color-danger); }
/* FAQ accordion layout */
.faq-accordion .accordion-item { border: none; border-bottom: 1px solid var(--color-stroke); background: transparent; }
.faq-accordion .accordion-button { font-size: 18px; font-weight: 600; color: var(--color-primary-text); padding: 24px 0; background: transparent; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--color-primary); background: transparent; box-shadow: none; }
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-body { padding: 0 0 24px; font-size: 16px; line-height: 175%; color: var(--color-secondary-text); }
/* Final lead generation CTA block */
.final-cta-panel { background: var(--color-primary-soft); border: 1px solid rgba(11, 165, 106, 0.18); border-radius: 36px; padding: 48px; }
.cta-title-lg { font-size: 32px; color: var(--color-primary-text); }
@media (max-width: 767px) {
  .final-cta-panel { padding: 32px 20px; border-radius: 24px; }
  .cta-title-lg { font-size: 20px; }
}
/* 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-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 i { color: var(--color-primary); font-size: 22px; }
.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-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); }
.tg-toc-nav { margin-top: 20px; padding-top: 20px; border-top: 1px solid #f0f0f0; }
.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: 6px; height: 6px; background-color: var(--color-primary); border-radius: 50%; display: inline-block; flex-shrink: 0; margin-right: 12px; }
.tg-toc-link:hover, .tg-toc-link:active { color: var(--color-primary); text-decoration: none; }
@media (max-width: 991px) {
  .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 i { font-size: 20px; }
  .tg-toc-arrow { width: 32px; height: 32px; }
  .tg-toc-nav { margin-top: 16px; padding-top: 16px; }
  .tg-toc-list { grid-template-columns: 1fr; gap: 10px; }
  .tg-toc-link { font-size: 14px; padding: 6px 0; }
}
/* Scroll-to-top button crimson override */
.to_top { background-color: var(--color-primary) !important; }
/* Inline styles refactoring */
.gtm-iframe { display: none; visibility: hidden; }
#hero-heading { max-width: 600px; }
.hero-lead-text { max-width: 540px; }
.hero-trust-text { font-size: 14px; color: var(--color-secondary-text); font-weight: 500; margin-bottom: 0; }
.hero-trust-icon { color: var(--color-primary); margin-right: 6px; font-size: 16px; }
.link-cta-inline { display: inline !important; }
.bg-soft-shade { background: var(--color-bg-soft) !important; }
.section-header-max-900-mb-36 { max-width: 900px; margin-bottom: 36px; }
.section-header-max-900-mb-56 { max-width: 900px; margin-bottom: 56px; }
.section-header-max-900-mb-40 { max-width: 900px; margin-bottom: 40px; }
.section-header-max-700-mb-36 { max-width: 700px; margin-bottom: 36px; }
#engagement-heading { font-size: 26px; }
#engagement-result { color: var(--color-secondary-text); }
.border-bottom-none { border-bottom: none !important; }
.engagement-note { font-size: 14px; color: var(--color-secondary-text); }
.bg-dark-shade { background: var(--color-primary-text) !important; }
.bg-dark-shade .main-heading { color: #fff !important; }
.journey-lead-text { color: rgba(255, 255, 255, 0.7); font-size: 16px; line-height: 175%; }
.bg-dark-shade h3, .bg-dark-shade .paragraph-heading { color: #fff !important; }
.journey-footer-wrap { max-width: 900px; }
.module-tag { color: var(--color-primary); }
.fsma-readiness-heading { color: #fff !important; font-size: 26px; }
.fsma-readiness-lead { color: rgba(255, 255, 255, 0.7); font-size: 16px; line-height: 175%; }
.fsma-readiness-link { color: #7FE3B4; font-weight: 600; }
.fsma-readiness-link:hover { color: #fff; }
#fsma-result { color: #fff; }
.solutions-lead-text { color: rgba(255, 255, 255, 0.7); font-size: 16px; line-height: 175%; }
.solutions-svg-icon { flex: 0 0 auto; margin-top: 2px; }
.testimonial-quote { font-weight: 400 !important; font-size: 20px !important; line-height: 150%; }
.testimonial-author-title { font-size: 14px; color: var(--color-secondary-text); }
.case-client-tag { color: var(--color-primary); }
#paper-heading { font-size: 26px; }
#paper-feedback { color: var(--color-secondary-text); }
#paper-cta { display: none; max-width: 100%; }
#faqAccordion { max-width: 880px; }
.tg-final-cta { padding-top: 72px; padding-bottom: 72px; }
.cta-lead-text { max-width: 560px; }
/* Custom Stylings for Fish Traceability Page Interactive Components */
:root { --fish-primary: #0BA56A; --fish-primary-dark: #078857; --fish-primary-soft: #EAF7EF; --fish-dark: #111B24; --fish-slate: #1E293B; --fish-muted: #64748B; --fish-border: #DCE1E5; --fish-bg-light: #F7F9F7; --fish-accent: #0E7C86; --fish-accent-soft: #E8F4F5; }
/* Hero Sub-badge */
.hero-sub-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--fish-primary-soft); border: 1px solid rgba(11, 165, 106, 0.25); padding: 6px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--fish-primary-dark); margin-bottom: 20px; }
/* Gap Interactive Accordion */
.gap-row-item { background: #ffffff; border: 1px solid var(--fish-border); border-radius: 16px; padding: 20px 24px; margin-bottom: 14px; cursor: pointer; transition: all 0.25s ease; }
.gap-row-item:hover { border-color: var(--fish-primary); box-shadow: 0 8px 24px rgba(11, 165, 106, 0.08); }
.gap-row-item.open { background: var(--fish-primary-soft); border-color: rgba(11, 165, 106, 0.3); }
.gap-row-head { display: flex; align-items: center; justify-content: space-between; }
.gap-row-num { font-family: monospace, monospace; font-weight: 700; font-size: 14px; color: var(--fish-primary); background: rgba(11, 165, 106, 0.12); padding: 4px 10px; border-radius: 6px; margin-right: 14px; }
.gap-row-title { font-size: 17px; font-weight: 600; color: var(--fish-dark); flex: 1; }
.gap-row-toggle { width: 32px; height: 32px; border-radius: 50%; background: rgba(11, 165, 106, 0.1); display: inline-flex; align-items: center; justify-content: center; color: var(--fish-primary); transition: transform 0.25s ease; }
.gap-row-item.open .gap-row-toggle { transform: rotate(45deg); background: var(--fish-primary); color: #ffffff; }
.gap-row-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.3s ease; margin-top: 0; color: var(--fish-slate); font-size: 15px; line-height: 1.6; }
.gap-row-item.open .gap-row-body { max-height: 200px; margin-top: 14px; padding-top: 12px; border-top: 1px dashed rgba(11, 165, 106, 0.25); }
/* Stats Callout Box */
.stat-callout-box { background: linear-gradient(135deg, var(--fish-dark) 0%, #1E293B 100%); border-radius: 24px; padding: 36px; color: #ffffff; position: relative; overflow: hidden; box-shadow: 0 16px 40px rgba(17, 27, 36, 0.15); }
.stat-callout-box::before { content: ""; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(11, 165, 106, 0.25) 0%, rgba(0, 0, 0, 0) 70%); border-radius: 50%; }
.stat-quote-text { font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, 0.9); font-style: italic; position: relative; z-index: 1; }
.stat-callout-box a, .stat-callout-btn { color: #7FE3B4 !important; border: 1px solid rgba(127, 227, 180, 0.4) !important; background: rgba(11, 165, 106, 0.12) !important; text-decoration: none !important; transition: all 0.25s ease !important; }
.stat-callout-box a:hover, .stat-callout-btn:hover { background: var(--fish-primary) !important; color: #ffffff !important; border-color: var(--fish-primary) !important; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(11, 165, 106, 0.3); }
/* Connect Tabs Explorer */
.connect-tabs-wrap { display: flex; flex-direction: column; gap: 12px; }
.connect-tab-btn { background: #ffffff; border: 1px solid var(--fish-border); border-radius: 16px; padding: 16px 20px; text-align: left; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: flex-start; gap: 14px; }
.connect-tab-btn:hover, .connect-tab-btn.active { border-color: var(--fish-primary); background: var(--fish-bg-light); box-shadow: none; }
.ct-num-badge { font-size: 12px; font-weight: 800; color: var(--fish-primary); background: #ffffff; border: 1px solid rgba(11, 165, 106, 0.3); padding: 4px 8px; border-radius: 6px; }
.connect-tab-btn .font-weight-bold { font-weight: 600 !important; }
/* Dynamic SVG Diagram Box */
.diagram-box { background: var(--fish-dark); border-radius: 24px; padding: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 340px; color: #ffffff; }
/* Trace Stage Explorer Track */
/* Top Stage Menu Bar */
.trace-menu-wrap { width: 100%; text-align: center; overflow-x: auto; padding-bottom: 6px; }
.trace-menu-bar { display: inline-flex; align-items: center; justify-content: center; background: #ffffff; border: 1px solid rgba(11, 165, 106, 0.2); border-radius: 999px; padding: 6px 8px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04); gap: 4px; width: fit-content; max-width: 100%; margin: 0 auto; }
.trace-menu-item { background: transparent; border: none; padding: 10px 20px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: #475467; display: flex; align-items: center; gap: 8px; cursor: default; pointer-events: none; transition: all 0.3s ease; outline: none; white-space: nowrap; }
.trace-menu-item.active { background: #0BA56A !important; color: #ffffff !important; font-weight: 700; box-shadow: 0 6px 20px rgba(11, 165, 106, 0.35) !important; }
/* Featured Stage Display Card */
.trace-display-card { background: #ffffff; border: 1.5px solid rgba(11, 165, 106, 0.22); border-radius: 28px; padding: 36px; box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05); transition: all 0.35s ease; }
.tdc-title { font-size: 24px; font-weight: 800; color: #0F172A; }
/* Card Nav Buttons */
.tdc-nav-btn { padding: 10px 24px; border-radius: 999px; font-size: 14.5px; font-weight: 700; transition: all 0.3s ease; outline: none; display: inline-flex; align-items: center; justify-content: center; }
.tdc-nav-btn-prev { background: #ffffff; border: 1.5px solid #CBD5E1; color: #475467; }
.tdc-nav-btn-prev:hover:not(:disabled) { border-color: #0BA56A; color: #0BA56A; background: rgba(11, 165, 106, 0.06); }
.tdc-nav-btn-next { background: #0BA56A !important; border: 1.5px solid #0BA56A !important; color: #ffffff !important; box-shadow: 0 4px 14px rgba(11, 165, 106, 0.3); }
.tdc-nav-btn-next:hover:not(:disabled) { background: #088A58 !important; border-color: #088A58 !important; box-shadow: 0 6px 18px rgba(11, 165, 106, 0.4); }
.tdc-nav-btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none !important; border-color: #E2E8F0 !important; color: #94A3B8 !important; background: #F8FAFC !important; }
.tdc-items-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 10px; }
.tdc-item-card { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; transition: all 0.25s ease; }
.tdc-item-card:hover { background: #ffffff; border-color: #0BA56A; box-shadow: 0 6px 20px rgba(11, 165, 106, 0.1); transform: translateY(-2px); }
.tdc-item-text { font-size: 16px; font-weight: 700; color: #1E293B; }
.trace-field-lbl { font-size: 12px; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.trace-field-val { font-size: 14px; font-weight: 700; color: var(--fish-dark); margin-top: 2px; }
/* Section 5: Platform Capabilities Cards Grid */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 16px; }
@media (max-width: 1199px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
}
.feat-card { background: #ffffff; border: 1px solid rgba(11, 165, 106, 0.18); border-radius: 20px; padding: 28px 24px; position: relative; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; }
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(11, 165, 106, 0.14); border-color: #0BA56A; }
.feat-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.feat-card-num { font-size: 12px; font-weight: 700; color: #0BA56A; background: rgba(11, 165, 106, 0.1); border: 1px solid rgba(11, 165, 106, 0.2); padding: 4px 12px; border-radius: 999px; letter-spacing: 0.05em; }
.feat-card-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(11, 165, 106, 0.08); border: 1px solid rgba(11, 165, 106, 0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #0BA56A; transition: all 0.3s ease; }
.feat-card:hover .feat-card-icon { transform: scale(1.1) rotate(4deg); background: #0BA56A; color: #ffffff; }
.feat-card-title { font-size: 18.5px; font-weight: 700; color: #0F172A; margin-bottom: 12px; line-height: 1.35; }
.feat-card-desc { font-size: 14.5px; color: #475467; line-height: 1.6; margin-bottom: 0; flex-grow: 1; }
/* Scorecard Quiz Styling */
.scorecard-card { background: #ffffff; border: 1px solid var(--fish-border); border-radius: 28px; padding: 40px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05); }
.quiz-progress-bar { display: flex; gap: 8px; margin-bottom: 30px; }
.quiz-progress-step { flex: 1; height: 6px; border-radius: 999px; background: #E2E8F0; transition: background 0.3s ease; }
.quiz-progress-step.done { background: var(--fish-primary); }
.quiz-opt-btn { background: #ffffff; border: 1px solid var(--fish-border); border-radius: 14px; padding: 16px 20px; width: 100%; text-align: left; margin-bottom: 12px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 16px; font-weight: 500; color: var(--fish-dark); transition: all 0.2s ease; }
.quiz-opt-btn:hover { border-color: var(--fish-primary); background: var(--fish-primary-soft); transform: translateX(4px); }
.quiz-opt-badge { width: 28px; height: 28px; border-radius: 50%; background: rgba(11, 165, 106, 0.12); color: var(--fish-primary); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
#scStartBtn, #scorecard .btn-success { color: #ffffff !important; transition: all 0.25s ease; }
#scStartBtn:hover, #scorecard .btn-success:hover { color: #ffffff !important; opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11, 165, 106, 0.4) !important; }
/* Compliance Table Hover Styling */
.compliance-custom-table tbody tr { transition: background-color 0.25s ease, color 0.25s ease; }
.compliance-custom-table tbody tr:hover { background-color: rgba(11, 165, 106, 0.06) !important; }
.compliance-custom-table tbody tr:hover td:first-child { color: #0BA56A !important; }
/* Business Types Interactive Sector Showcase */
.biz-pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 991px) {
  .biz-pill-grid { grid-template-columns: repeat(2, 1fr); }
  #bizPanelWrap { grid-column: 1 / -1; margin-top: 4px; margin-bottom: 12px; }
}
@media (max-width: 767px) {
  .biz-pill-grid { grid-template-columns: 1fr; }
  .tg-final-cta { padding-top: 20px; padding-bottom: 20px; }
}
.biz-pill-btn { width: 100%; min-height: 62px; box-sizing: border-box; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; padding: 14px 18px; color: rgba(255, 255, 255, 0.7); font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: flex-start; transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease; }
.biz-pill-btn:hover { background: rgba(11, 165, 106, 0.15); border-color: rgba(11, 165, 106, 0.4); color: #ffffff; }
.biz-pill-btn.active { background: #0BA56A; border-color: #0BA56A; color: #ffffff; box-shadow: 0 6px 20px rgba(11, 165, 106, 0.35); }
.biz-showcase-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2); transition: all 0.3s ease; }
/* Section 10 Interactive Master-Detail Console (#F7F9F7 Theme) */
.int-nav-item { background: #ffffff; border: 1px solid #E2E8F0; color: #334155; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; }
.int-nav-item .int-nav-num { font-size: 13px; color: #0BA56A; background: rgba(11, 165, 106, 0.1); padding: 4px 10px; border-radius: 20px; font-weight: 700; }
.int-nav-item .int-nav-title { font-size: 14.5px; color: #0F172A; }
.int-nav-item h3.int-nav-title { font-size: 14.5px !important; line-height: 1.35; margin: 0; }
.int-nav-item .int-nav-arrow { color: #94A3B8; transition: transform 0.3s ease, color 0.3s ease; }
.int-nav-item:hover, .int-nav-item.active { background: #ffffff; border-color: #0BA56A; color: #0BA56A; transform: translateX(4px); box-shadow: 0 4px 16px rgba(11, 165, 106, 0.12); }
.int-nav-item.active .int-nav-title, .int-nav-item:hover .int-nav-title { color: #0BA56A; }
.int-nav-item.active .int-nav-arrow, .int-nav-item:hover .int-nav-arrow { color: #0BA56A; transform: translateX(3px); }
.int-console-display { background: #ffffff; border: 1px solid rgba(11, 165, 106, 0.3); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05); transition: opacity 0.25s ease, transform 0.25s ease; }
.nav-dot-indicator { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; cursor: pointer; transition: all 0.3s ease; }
.nav-dot-indicator.active { background: #0BA56A; width: 24px; border-radius: 10px; }
/* Section 10 Console Action Buttons */
.int-action-btn { font-size: 13.5px; font-weight: 700; padding: 8px 20px; border-radius: 50px; cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); display: inline-flex; align-items: center; gap: 6px; outline: none; }
.int-prev-btn { background: #ffffff !important; color: #0F172A !important; border: 1px solid #CBD5E1 !important; }
.int-prev-btn:hover { background: #F1F5F9 !important; color: #0F172A !important; border-color: #94A3B8 !important; transform: translateY(-1px); }
.int-next-btn { background: #0BA56A !important; color: #ffffff !important; border: 1px solid #0BA56A !important; }
.int-next-btn:hover { background: #098857 !important; color: #ffffff !important; border-color: #098857 !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(11, 165, 106, 0.35); }
.pulse-beacon-dot { width: 8px; height: 8px; background-color: #0BA56A; border-radius: 50%; box-shadow: 0 0 0 0 rgba(11, 165, 106, 0.7); animation: pulse-green-beacon 2s infinite; }
/* Section 11 Step-by-Step Interactive Workflow Pipeline */
#buildTimeline { transition: opacity 0.25s ease, transform 0.25s ease; }
.build-stepper-track { position: relative; padding: 10px 0; }
.build-stepper-track .stepper-line { position: absolute; top: 24px; left: 30px; right: 30px; height: 3px; background: #E2E8F0; z-index: 1; }
.stepper-node { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; }
.stepper-node .node-circle { width: 38px; height: 38px; border-radius: 50%; background: #ffffff; border: 2px solid #CBD5E1; color: #64748B; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); }
.stepper-node .node-label { font-size: 12px; font-weight: 700; color: #64748B; transition: color 0.3s ease; }
.stepper-node:hover .node-circle, .stepper-node.active .node-circle { background: #0BA56A; border-color: #0BA56A; color: #ffffff; transform: scale(1.15); box-shadow: 0 6px 18px rgba(11, 165, 106, 0.35); }
.stepper-node:hover .node-label, .stepper-node.active .node-label { color: #0BA56A; }
/* Step Cards */
.build-step-card { background: #ffffff; border: 1px solid #E2E8F0; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03); overflow: hidden; }
.build-step-card .step-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #0BA56A, #05ce80); opacity: 0; transition: opacity 0.3s ease; }
.build-step-card .step-num-badge { background: rgba(11, 165, 106, 0.1); color: #0BA56A; font-weight: 800; font-size: 12px; }
.build-step-card .step-phase-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.8px; color: #94A3B8; }
.build-step-card .step-arrow-flow { color: #94A3B8; font-weight: bold; transition: transform 0.3s ease, color 0.3s ease; }
.build-step-card:hover, .build-step-card.active { border-color: #0BA56A !important; transform: translateY(-6px); box-shadow: 0 16px 36px rgba(11, 165, 106, 0.14); }
.build-step-card:hover .step-card-accent, .build-step-card.active .step-card-accent { opacity: 1; }
.build-step-card:hover .step-num-badge, .build-step-card.active .step-num-badge { background: #0BA56A; color: #ffffff; }
.build-step-card:hover .step-arrow-flow, .build-step-card.active .step-arrow-flow { color: #0BA56A; transform: translateX(4px); }
/* Section 12 Cost Factor Cards */
.cost-factor-card { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid #E2E8F0 !important; }
.cost-factor-card:hover { transform: translateY(-4px); border-color: #0BA56A !important; box-shadow: 0 12px 28px rgba(11, 165, 106, 0.12) !important; }
/* Estimator Navigation Buttons */
#estBack { background: #ffffff !important; color: #334155 !important; border: 1px solid #CBD5E1 !important; }
#estBack:hover:not(:disabled) { background: #F8FAFC !important; color: #0F172A !important; border-color: #94A3B8 !important; }
#estBack:disabled { opacity: 0.45; cursor: not-allowed; }
#estNext { background: #0BA56A !important; color: #ffffff !important; border: 1px solid #0BA56A !important; transition: all 0.25s ease; }
#estNext:hover:not(:disabled) { background: #09925d !important; border-color: #09925d !important; color: #ffffff !important; }
#estNext:disabled { opacity: 0.45 !important; cursor: not-allowed !important; box-shadow: none !important; }
/* Estimator Option Cards Hover */
.est-choice-btn { transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important; }
.est-choice-btn:hover { border-color: #0BA56A !important; background: rgba(11, 165, 106, 0.04) !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(11, 165, 106, 0.08) !important; }
/* Estimator Result Buttons Hover */
.est-res-btn-primary { background: #0BA56A !important; color: #ffffff !important; border: 1px solid #0BA56A !important; font-size: 15px; box-shadow: 0 4px 14px rgba(11, 165, 106, 0.25); transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important; text-decoration: none !important; }
.est-res-btn-primary:hover { background: #088755 !important; border-color: #088755 !important; color: #ffffff !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11, 165, 106, 0.35) !important; }
.est-res-btn-secondary { background: #ffffff !important; color: #1E293B !important; border: 1px solid #CBD5E1 !important; font-size: 15px; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important; text-decoration: none !important; }
.est-res-btn-secondary:hover { background: rgba(11, 165, 106, 0.08) !important; color: #0BA56A !important; border-color: #0BA56A !important; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(11, 165, 106, 0.12) !important; }
/* Case Study Cards Hover */
.case-study-card { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; border: 1px solid #E2E8F0 !important; }
.case-study-card:hover { transform: translateY(-6px); border-color: #0BA56A !important; box-shadow: 0 16px 36px rgba(11, 165, 106, 0.12) !important; }
.case-study-card:hover .case-card-img-wrap img { transform: scale(1.06); }
.case-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.4s ease !important; }
.case-cta-btn:hover { background: #0BA56A !important; color: #ffffff !important; border-color: #0BA56A !important; box-shadow: 0 4px 12px rgba(11, 165, 106, 0.25) !important; }
/* Why Choose TransGenie Bento Grid Layout */
.bento-hero-card { transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important; }
.bento-hero-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(11, 165, 106, 0.25) !important; }
.bento-sub-card { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important; border: 1px solid #E2E8F0 !important; }
.bento-sub-card:hover { transform: translateY(-4px); border-color: #0BA56A !important; box-shadow: 0 12px 28px rgba(11, 165, 106, 0.12) !important; }
@keyframes pulse-green-beacon {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 165, 106, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(11, 165, 106, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 165, 106, 0); }
}
/* Score Ring SVG */
.score-ring-wrap { position: relative; width: 180px; height: 180px; margin: 0 auto 20px; }
.score-ring-wrap svg { transform: rotate(-90deg); width: 180px; height: 180px; }
.score-ring-bg { fill: none; stroke: #E2E8F0; stroke-width: 12; }
.score-ring-fg { fill: none; stroke: var(--fish-primary); stroke-width: 12; stroke-linecap: round; transition: stroke-dasharray 1s ease; }
.score-number { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.score-number .num { font-size: 40px; font-weight: 800; color: var(--fish-dark); line-height: 1; }
.score-number .den { font-size: 13px; color: #64748B; font-weight: 600; }
/* Cost Estimator Styling */
.estimator-box { background: #ffffff; border: 1px solid var(--fish-border); border-radius: 28px; padding: 40px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05); }
.est-choice-btn { background: #ffffff; border: 1.5px solid var(--fish-border); border-radius: 14px; padding: 14px 18px; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--fish-dark); }
.est-choice-btn:hover { border-color: var(--fish-primary); }
.est-choice-btn.selected { background: var(--fish-primary-soft); border-color: var(--fish-primary); color: var(--fish-primary-dark); }
.est-chk-box { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--fish-border); display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.est-choice-btn.selected .est-chk-box { background: var(--fish-primary); border-color: var(--fish-primary); color: #ffffff; }
/* Business Personas Tab System */
.biz-tab-btn { background: #ffffff; border: 1px solid var(--fish-border); border-radius: 999px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: var(--fish-slate); cursor: pointer; transition: all 0.2s ease; }
.biz-tab-btn:hover { border-color: var(--fish-primary); color: var(--fish-primary); }
.biz-tab-btn.active { background: var(--fish-primary); color: #ffffff; border-color: var(--fish-primary); box-shadow: 0 4px 14px rgba(11, 165, 106, 0.3); }
/* Mobile Adjustments */
@media (max-width: 767px) {
  .trace-track-wrap { overflow-x: auto; padding-bottom: 16px; justify-content: flex-start; gap: 24px; }
  .trace-track-line, .trace-track-fill { display: none; }
  .gap-row-item {padding:15px 20px;}
  .trace-explorer-container, .scorecard-card, .estimator-box { padding: 24px 18px; }
}
.trace-explorer-container, .scorecard-card, .estimator-box { padding: 24px 18px; }
/* Styles moved from fish-traceability-software.html */
.fish-style-1 { color: #7FE3B4; }
.fish-style-2 { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; }
.fish-style-3 { border-top:1px solid rgba(255,255,255,0.15); }
.fish-style-4 { font-size:12.5px; color:rgba(255,255,255,0.7); font-weight:500; }
.fish-style-5 { font-size:12px; font-weight:600; }
.fish-style-6 { background:#ffffff; border:1px solid var(--fish-border); }
.fish-style-7 { font-size:15px; }
.fish-style-8 { font-size:13.5px; line-height:1.4; }
.fish-style-9 { font-size:15px; }
.fish-style-10 { font-size:13.5px; line-height:1.4; }
.fish-style-11 { font-size:15px; }
.fish-style-12 { font-size:13.5px; line-height:1.4; }
.fish-style-13 { font-size:15px; }
.fish-style-14 { font-size:13.5px; line-height:1.4; }
.fish-style-15 { font-size:14px; }
.fish-style-16 { color:#7FE3B4; }
.fish-style-17 { width:100%; }
.fish-style-18 { width:100%; }
.fish-style-19 { width:100%; }
.fish-style-20 { width:100%; }
.fish-style-21 { width:100%; }
.fish-style-22 { width:100%; }
.fish-style-24 { background:#ffffff; border:1px solid #E2E8F0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); }
.fish-style-25 { width:100%; border-collapse:collapse; }
.fish-style-26 { background:#F8FAFC; border-bottom:2px solid #E2E8F0; }
.fish-style-27 { padding:18px 24px; font-size:15px; font-weight:700; color:#0F172A; width:32%; }
.fish-style-28 { padding:18px 24px; font-size:15px; font-weight:700; color:#0F172A; width:68%; }
.fish-style-29 { border-bottom:1px solid #F1F5F9; }
.fish-style-30 { padding:20px 24px; font-weight:700; color:#0F172A; font-size:15px; vertical-align:middle; }
.fish-style-31 { padding:20px 24px; color:#334155; font-size:15px; line-height:1.6; vertical-align:middle; }
.fish-style-32 { border-bottom:1px solid #F1F5F9; }
.fish-style-33 { padding:20px 24px; font-weight:700; color:#0F172A; font-size:15px; vertical-align:middle; }
.fish-style-34 { padding:20px 24px; color:#334155; font-size:15px; line-height:1.6; vertical-align:middle; }
.fish-style-35 { border-bottom:1px solid #F1F5F9; }
.fish-style-36 { padding:20px 24px; font-weight:700; color:#0F172A; font-size:15px; vertical-align:middle; }
.fish-style-37 { padding:20px 24px; color:#334155; font-size:15px; line-height:1.6; vertical-align:middle; }
.fish-style-38 { padding:20px 24px; font-weight:700; color:#0F172A; font-size:15px; vertical-align:middle; }
.fish-style-39 { padding:20px 24px; color:#334155; font-size:15px; line-height:1.6; vertical-align:middle; }
.fish-style-40 { background:rgba(11,165,106,0.06); border:1px solid rgba(11,165,106,0.22); }
.fish-style-41 { color:#0F172A; font-size:16px; line-height:1.6; }
.fish-style-42 { background:rgba(11,165,106,0.12); border:1px solid rgba(11,165,106,0.3); }
.fish-style-43 { font-size:16px; line-height:1.6; }
.fish-style-44 { max-width: 900px; background: rgba(11, 165, 106, 0.08); border: 1px solid rgba(11, 165, 106, 0.25); }
.fish-style-45 { color: #0b4f35; font-size: 16.5px; line-height: 1.6; }
.fish-style-46 { background:#F7F9F7; padding:90px 0; color:#1E293B; }
.fish-style-47 { max-width: 900px; background: rgba(11, 165, 106, 0.08); border: 1px solid rgba(11, 165, 106, 0.25); }
.fish-style-48 { color: #0b4f35; font-size: 16.5px; line-height: 1.6; }
.fish-style-49 { background:#ffffff; padding:90px 0; }
.fish-style-50 { color:#0BA56A; font-weight:800; letter-spacing:1px; text-transform:uppercase; }
.fish-style-51 { max-width: 950px; }
.fish-style-52 { background:#F7F9F7; padding:90px 0; }
.fish-style-53 { background:rgba(11,165,106,0.12); color:#0BA56A; width:36px; height:36px; font-weight:bold; }
.fish-style-54 { background:rgba(11,165,106,0.12); color:#0BA56A; width:36px; height:36px; font-weight:bold; }
.fish-style-55 { background:rgba(11,165,106,0.12); color:#0BA56A; width:36px; height:36px; font-weight:bold; }
.fish-style-56 { background:rgba(11,165,106,0.12); color:#0BA56A; width:36px; height:36px; font-weight:bold; }
.fish-style-57 { background:rgba(11,165,106,0.12); color:#0BA56A; width:36px; height:36px; font-weight:bold; }
.fish-style-58 { background:rgba(11,165,106,0.12); color:#0BA56A; width:36px; height:36px; font-weight:bold; }
.fish-style-59 { max-width: 920px; background: #ffffff; border: 1px solid rgba(11, 165, 106, 0.3); box-shadow: 0 16px 40px rgba(11, 165, 106, 0.08); }
.fish-style-60 { background:#0BA56A; border:1px solid #0BA56A; font-size:15px; }
.fish-style-61 { background:#ffffff; padding:90px 0; }
.fish-style-62 { max-width: 840px; }
.fish-style-63 { background:#F7F9F7; padding:90px 0; }
.fish-style-64 { border-radius:24px !important; }
.fish-style-65 { height:210px; border-radius:16px !important; }
.fish-style-66 { background:rgba(11,165,106,0.9); color:#ffffff; font-size:12px; }
.fish-style-67 { font-size:14.5px; line-height:1.7; }
.fish-style-68 { border-color:#F1F5F9 !important; }
.fish-style-69 { background:rgba(11,165,106,0.1); color:#0BA56A; border:1px solid rgba(11,165,106,0.2); font-size:14px; transition:all 0.25s ease; }
.fish-style-70 { border-radius:24px !important; }
.fish-style-71 { height:210px; border-radius:16px !important; }
.fish-style-72 { background:rgba(11,165,106,0.9); color:#ffffff; font-size:12px; }
.fish-style-73 { font-size:14.5px; line-height:1.7; }
.fish-style-74 { border-color:#F1F5F9 !important; }
.fish-style-75 { background:rgba(11,165,106,0.1); color:#0BA56A; border:1px solid rgba(11,165,106,0.2); font-size:14px; transition:all 0.25s ease; }
.fish-style-76 { border-radius:24px !important; }
.fish-style-77 { height:210px; border-radius:16px !important; }
.fish-style-78 { background:rgba(11,165,106,0.9); color:#ffffff; font-size:12px; }
.fish-style-79 { font-size:14.5px; line-height:1.7; }
.fish-style-80 { border-color:#F1F5F9 !important; }
.fish-style-81 { background:rgba(11,165,106,0.1); color:#0BA56A; border:1px solid rgba(11,165,106,0.2); font-size:14px; transition:all 0.25s ease; }
.fish-style-82 { background:#F7F9F7; padding:90px 0; }
.fish-style-83 { border-radius:20px !important; }
.fish-style-84 { background:rgba(11,165,106,0.1); color:#0BA56A; font-size:13px; }
.fish-style-85 { font-size:14.5px; line-height:1.7; }
.fish-style-86 { border-radius:20px !important; }
.fish-style-87 { background:rgba(11,165,106,0.1); color:#0BA56A; font-size:13px; }
.fish-style-88 { font-size:14.5px; line-height:1.7; }
.fish-style-89 { border-radius:20px !important; }
.fish-style-90 { background:rgba(11,165,106,0.1); color:#0BA56A; font-size:13px; }
.fish-style-91 { font-size:14.5px; line-height:1.7; }
.fish-style-92 { border-radius:20px !important; }
.fish-style-93 { background:rgba(11,165,106,0.1); color:#0BA56A; font-size:13px; }
.fish-style-94 { font-size:14.5px; line-height:1.7; }
.fish-style-95 { border-radius:20px !important; }
.fish-style-96 { background:rgba(11,165,106,0.1); color:#0BA56A; font-size:13px; }
.fish-style-97 { font-size:14.5px; line-height:1.7; }
.fish-style-98 { color:var(--fish-primary); }
.fish-style-99 { max-width: 880px; }
.fish-style-100 { font-size:20px; }
.fish-style-101 { max-width: 600px; font-size: 16px; }
.fish-style-102 { background:#0BA56A; color:#ffffff !important; border:none; font-size:16px; box-shadow:0 6px 20px rgba(11,165,106,0.3); }
.fish-style-103 { font-size:12px; background:#0BA56A !important; }
.fish-style-104 { font-size:13px; font-weight:600; }
.fish-style-105 { font-size:13px; letter-spacing:0.08em; }
.fish-style-106 { stroke-dasharray: 0; stroke:#0BA56A; }
.fish-style-107 { color:#0BA56A; }
.fish-style-108 { color:#64748B; }
.fish-style-109 { background:rgba(11,165,106,0.12); color:#0BA56A; border:1px solid rgba(11,165,106,0.25); font-size:15px; font-weight:700; }
.fish-style-110 { background:#F8FAFC; border:1px solid #E2E8F0; }
.fish-style-111 { font-size:11px; letter-spacing:0.05em; }
.fish-style-112 { font-size:14.5px; color:#0F172A; }
.fish-style-113 { background:#F8FAFC; border:1px solid #E2E8F0; }
.fish-style-114 { font-size:11px; letter-spacing:0.05em; }
.fish-style-115 { font-size:14.5px; color:#0F172A; }
.fish-style-116 { background:#0BA56A; color:#ffffff !important; border:none; font-size:16px; box-shadow:0 6px 20px rgba(11,165,106,0.3); text-decoration:none; }
.fish-style-117 { font-size:15px; font-weight:600; border-color:#CBD5E1; }
.fish-style-118 { background:rgba(11,165,106,0.2); color:#0BA56A; font-size:14px; font-weight:700; }
.fish-style-119 { font-size:17px; line-height:1.75; }
.fish-style-120 { background:rgba(11,165,106,0.12); color:#0BA56A; font-weight:800; font-size:12px; letter-spacing:0.5px; }
.fish-style-121 { background:#F8FAFC; border:1px solid #E2E8F0; }
.fish-style-122 { color:#334155; font-size:17.5px; line-height:1.8; font-weight:400; }
.fish-style-123 { border-color:#E2E8F0 !important; }
.fish-style-124 { font-size:13px; }
.fish-style-125 { font-size:14.5px; line-height:1.7; }
.fish-style-126 { border-color:#F1F5F9 !important; }
.fish-style-127 { font-size:12px; letter-spacing:0.5px; color:#0BA56A; }
.fish-style-128 { background:rgba(11,165,106,0.12); color:#0BA56A; font-weight:800; font-size:12px; }
.fish-style-129 { height:6px; background:#E2E8F0; border-radius:10px; }
.estimator-progress-0 { width: 0; }
.estimator-progress-1 { width: 20%; }
.estimator-progress-2 { width: 40%; }
.estimator-progress-3 { width: 60%; }
.estimator-progress-4 { width: 80%; }
.estimator-progress-5 { width: 100%; }
.estimator-progress-0, .estimator-progress-1, .estimator-progress-2, .estimator-progress-3, .estimator-progress-4, .estimator-progress-5 { background:#0BA56A; border-radius:10px; transition:width 0.4s ease; }
.fish-style-131 { background:#ffffff; border-color:#E2E8F0; cursor:pointer; transition:all 0.2s ease; }
.fish-style-132 { font-size:14.5px; color:#1E293B; }
.fish-style-133 { width:22px; height:22px; border:1px solid #CBD5E1; color:#ffffff; font-weight:bold; font-size:12px; }
.fish-style-134 { border-color:#F1F5F9 !important; }
.fish-style-135 { background:#ffffff; color:#334155 !important; border:1px solid #CBD5E1 !important; font-size:14px; }
.fish-style-136 { background:#0BA56A !important; color:#ffffff !important; border:1px solid #0BA56A !important; font-size:14px; box-shadow:0 4px 12px rgba(11,165,106,0.25); }
.fish-style-137 { background:rgba(11,165,106,0.12); color:#0BA56A; font-weight:800; font-size:12px; }
.fish-style-138 { color:#0BA56A; font-size:16px; }
.fish-style-139 { background:#F8FAFC; border:1px solid #E2E8F0; }
.fish-style-140 { font-size:15px; line-height:1.7; }
/* Interactive state styles */
#toc-list-container.toc-expanded { max-height: 1000px; }
.is-hidden { display: none !important; }
#intConsoleScreen.is-updating, #buildTimeline.is-updating { opacity: 0; transform: translateY(8px); }
#buildTimeline.is-updating { transform: translateY(6px); }
#estNext.is-disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
.est-choice-btn.is-selected { border-color: #0BA56A !important; background: rgba(11, 165, 106, 0.06) !important; }
.estimator-step-title { font-size: 20px; line-height: 1.3; font-weight: 600 !important; }
.biz-panel-title { font-size: 20px; line-height: 1.25; }
.integration-panel-title { font-size: 20px; line-height: 1.25; font-weight: 600 !important; }
.est-chk-box.is-selected { background: #0BA56A !important; border-color: #0BA56A !important; }
#main-content h1 { font-size: 44px !important; }
#main-content h2 { font-size: 32px !important; }
#main-content h3 { font-size: 20px !important; }
#main-content h4 { font-size: 18px !important; }
#main-content p { font-size: 17px !important; }
#main-content button, #main-content a[class*="btn"] { box-sizing: border-box; }
#main-content button:hover:not(:disabled), #main-content button:focus:not(:disabled), #main-content a[class*="btn"]:hover, #main-content a[class*="btn"]:focus { transform: none !important; scale: 1 !important; }
#main-content .btn-tg-primary:hover, #main-content .btn-success:hover, #main-content .tdc-nav-btn-next:hover:not(:disabled), #main-content .int-next-btn:hover, #main-content #estNext:hover:not(:disabled), #main-content .est-res-btn-primary:hover, #main-content .case-cta-btn:hover { background-color: #078857 !important; border-color: #078857 !important; color: #ffffff !important; }
#main-content .btn-tg-secondary:hover, #main-content .tdc-nav-btn-prev:hover:not(:disabled), #main-content .int-prev-btn:hover, #main-content #estBack:hover:not(:disabled), #main-content .est-res-btn-secondary:hover, #main-content .connect-tab-btn:hover, #main-content .quiz-opt-btn:hover, #main-content .est-choice-btn:hover { background-color: rgba(11, 165, 106, 0.08) !important; border-color: #0BA56A !important; color: #078857 !important; }
#main-content .biz-pill-btn:hover { background-color: rgba(11, 165, 106, 0.15) !important; border-color: rgba(11, 165, 106, 0.4) !important; color: #ffffff !important; }
@media (min-width: 768px) and (max-width: 991px) {
  .container-xl, .container-xl-custom { padding-left: 40px !important; padding-right: 40px !important; }
  .tg-hero .col-lg-6 { flex: 0 0 100%; width: 100%; max-width: 100%; }
  #hero-heading, .hero-lead-text { width: 100%; max-width: none; }
  .tg-hero { padding-top: 100px; padding-bottom: 70px; }
  .tg-section { padding-top: 64px; padding-bottom: 64px; }
  #main-content h1 { font-size: 44px !important; line-height: 1.06; }
  #main-content h2 { font-size: 32px !important; line-height: 1.12; }
  #main-content h3 { font-size: 20px !important; line-height: 1.25; }
  #main-content h4 { font-size: 18px !important; line-height: 1.3; }
  #main-content p { font-size: 17px !important; line-height: 1.6; }
  #intSystemNav #intConsoleScreen { width: 100%; height: auto !important; margin: 4px 0 12px; }
  .case-card-img-wrap { height: auto !important; aspect-ratio: 388 / 240; }
}
@media (max-width: 767px) {
  .container-xl, .container-xl-custom { padding-left: 20px !important; padding-right: 20px !important; }
  .tg-hero .col-lg-6 { flex: 0 0 100%; width: 100%; max-width: 100%; }
  #hero-heading, .hero-lead-text { width: 100%; max-width: none; }
  .tg-hero { padding-top: 95px; padding-bottom: 64px; }
  .tg-section { padding-top: 40px; padding-bottom: 40px; }
  .tg-section-compact { padding-top: 30px; padding-bottom: 30px; }
  #main-content h1 { font-size: 28px !important; line-height: 1.15; }
  #main-content h2 { font-size: 24px !important; line-height: 1.2; }
  #main-content h3 { font-size: 18px !important; line-height: 1.3; }
  #main-content h4 { font-size: 16px !important; line-height: 1.35; }
  #main-content p { font-size: 14px !important; line-height: 1.6; }
  .final-cta-panel { padding: 32px 20px; border-radius: 24px; }
  .tg-toc-section { padding: 20px 0; }
  .tg-toc-card { padding: 16px; }
  #trace-explorer .section-header { margin-bottom: 24px !important; }
  .trace-menu-wrap { padding-bottom: 4px; text-align: left; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .trace-menu-wrap::-webkit-scrollbar { display: none; }
  .trace-menu-bar { width: max-content; max-width: none; margin: 0; padding: 4px; gap: 2px; justify-content: flex-start !important; }
  .trace-menu-item { padding: 8px 12px; font-size: 12px; gap: 4px; }
  .trace-menu-item.active { box-shadow: 0 3px 10px rgba(11, 165, 106, 0.24) !important; }
  .trace-display-card { padding: 20px 16px; border-radius: 20px; }
  .tdc-top-bar { gap: 12px !important; margin-bottom: 18px !important; }
  .tdc-title { font-size: 18px !important; }
  .tdc-nav-btns { gap: 8px !important; }
  .tdc-nav-btn { padding: 8px 16px; font-size: 13px; min-height: 42px; }
  .tdc-items-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 0; }
  .tdc-item-card { padding: 12px 14px; border-radius: 12px; min-height: 58px; }
  .tdc-item-text { font-size: 14px; }
  #intSystemNav #intConsoleScreen { width: 100%; height: auto !important; margin: 4px 0 12px; padding: 20px 16px !important; }
  .case-card-img-wrap { height: auto !important; aspect-ratio: 388 / 240; }
  #main-content .btn-tg-primary, #main-content .btn-tg-secondary, #main-content .fish-style-60, #main-content #scStartBtn, #main-content #scCtaBtn, #main-content .est-res-btn-primary, #main-content .est-res-btn-secondary, #main-content .case-cta-btn { padding: 10px 18px !important; min-height: 42px; font-size: 13px !important; line-height: 1.25; }
  .stat-callout-box { padding: 22px 18px; border-radius: 18px; }
  .stat-callout-box .fish-style-1 { gap: 6px !important; margin-bottom: 12px !important; }
  .stat-callout-box .fish-style-2 { font-size: 11px; line-height: 1.4; letter-spacing: 0.06em; }
  .stat-callout-box h3 { margin-bottom: 14px !important; }
  .stat-callout-box .stat-quote-text { margin-bottom: 18px !important; line-height: 1.65 !important; }
  .stat-callout-box .fish-style-3 { flex-direction: column; align-items: flex-start !important; gap: 12px; padding-top: 16px !important; }
  .stat-callout-box .fish-style-4 { font-size: 12px; }
  .stat-callout-box .stat-callout-btn { padding: 8px 14px !important; min-height: 38px; font-size: 12px !important; }
  #catch-to-customer .row.g-4 { --bs-gutter-y: 16px; }
  .journey-step { padding: 18px 16px; border-radius: 16px; }
  .journey-emoji { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 12px; }
  .journey-emoji svg { width: 28px; height: 28px; }
  .journey-index { top: 16px; right: 16px; font-size: 12px; }
  .journey-step .paragraph-heading { margin-bottom: 8px; }
  .journey-copy { line-height: 1.6; }
  .features-grid { gap: 12px; margin-top: 8px; }
  .feat-card { padding: 18px 16px; border-radius: 16px; }
  .feat-card-top { margin-bottom: 12px; }
  .feat-card-num { padding: 3px 10px; font-size: 11px; }
  .feat-card-title { margin-bottom: 8px; }
  .feat-card-desc { line-height: 1.55; }
  .estimator-step-title { font-size: 18px; }
  .biz-panel-title { display: none; }
  .integration-panel-title { font-size: 18px; }
}
#main-content .int-nav-item h3.int-nav-title { font-size: 14.5px !important; line-height: 1.35; margin: 0; }

/* Built For Modern Chip Badges */
.built-for-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.built-for-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-text);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.built-for-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.built-for-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #123826;
  background: #F0F9F5;
  border: 1px solid rgba(11, 165, 106, 0.22);
  border-radius: 20px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.built-for-chip:hover {
  background: #0BA56A;
  color: #ffffff;
  border-color: #0BA56A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 165, 106, 0.25);
}
