/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Marine-Agriculture Palette */
  --clr-primary: #1565C0;
  /* Deep forest green */
  --clr-primary-dark: #0D47A1;
  /* Very dark green */
  --clr-primary-light: #3197db;
  /* Medium green */
  --clr-accent: #3197db;
  /* Warm amber / harvest gold */
  --clr-accent-light: #000;
  /* Light amber */
  --clr-teal: #0d7a8c;
  /* Aqua teal */
  --clr-teal-light: #17a2b8;
  /* Light teal */
  --clr-water: #e8f4f8;
  /* Pale water blue bg */
  --clr-leaf: #EFF6FF;
  /* Pale green bg */
  --clr-dark: #1a2332;
  /* Near-black */
  --clr-text: #000;
  /* Body text */
  --clr-text-muted: #000;
  /* Muted text */
  --clr-border: #dde8f0;
  /* Subtle border */
  --clr-white: #ffffff;
  --clr-light-bg: #f5f8fb;
  /* Light section bg */

  /* Typography */
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 80px;
  --section-py-sm: 50px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.13);
  --shadow-card: 0 4px 20px rgba(26, 92, 56, 0.10);

  /* Transitions */
  --trans-base: all 0.3s ease;
}

/* ── Base Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--clr-text);
  line-height: 1.7;
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--clr-dark);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: var(--trans-base);
}

a:hover {
  color: var(--clr-accent);
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── Utility Helpers ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #3197db;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-label.teal {
  color: #fff;
  background: #3197db;
}

.section-label.green {
  color: #fff;
  background: #3197db;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--clr-primary);
}

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

.section-desc {
  font-size: 1.05rem;
  color: #000;
  max-width: 680px;
  line-height: 1.75;
}

.divider-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn-primary-vari {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
  box-shadow: 0 4px 16px rgba(26, 92, 56, 0.25);
  white-space: nowrap;
}

.btn-primary-vari:hover {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 92, 56, 0.35);
}

.btn-outline-vari {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--clr-primary);
  cursor: pointer;
  transition: var(--trans-base);
  white-space: nowrap;
}

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

.btn-accent-vari {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
  /* box-shadow: 0 4px 16px rgba(245, 156, 26, 0.30); */
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-accent-vari:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 128, 245, 0.45);
  color: var(--clr-dark);
}

.btn-white-vari {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-white);
  color: var(--clr-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans-base);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.btn-white-vari:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
  transform: translateY(-2px);
}

.btn-outline-white-vari {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--trans-base);
  white-space: nowrap;
}

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

/* ── Breadcrumb Area ── */
.breadcrumb-area {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Image: 1920×320px — shared breadcrumb banner */
.breadcrumb-area .bc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.breadcrumb-area .bc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(1deg, rgb(0 0 0 / 77%) 0%, rgba(13, 71, 161, .65) 100%);
}

.breadcrumb-area .bc-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.breadcrumb-area .bc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb-area .bc-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.breadcrumb-area .bc-nav a {
  color: rgba(255, 255, 255, 0.80);
  transition: color 0.25s;
}

.breadcrumb-area .bc-nav a:hover {
  color: var(--clr-accent-light);
}

.breadcrumb-area .bc-nav .separator {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb-area .bc-nav .current {
  color: var(--clr-accent-light);
  font-weight: 500;
}

/* ── Overview / Hero Section (Two-Column) ── */
.overview-section {
  padding: 50px 0;
  background: var(--clr-white);
}

.overview-section .overview-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Image: 700×520px — overview main image */
.overview-section .overview-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.overview-section .overview-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.overview-section .overview-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.overview-section .overview-badge .badge-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.overview-section .overview-badge .badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-dark);
}

.overview-section .overview-badge .badge-text span {
  font-size: 1rem;
  color: var(--clr-text-muted);
}

/* Checklist */
.checklist {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--clr-text);
  font-weight: 500;
}

.checklist li .check-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist li .check-icon svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

/* ── Product Cards / Application Cards Grid ── */
.cards-section {
  padding: 50px 0;
  background: #fff;
}

.cards-section.dark-bg {
  background: var(--clr-dark);
}

.vari-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--trans-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--clr-border);
}

.vari-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 92, 56, 0.25);
}

/* Image: 600×380px — product card image */
.vari-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.vari-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vari-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.vari-card .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--clr-primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
}

.vari-card .card-body-vari {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vari-card .card-title-vari {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 10px;
}

.vari-card .card-desc {
  font-size: 16px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.vari-card .card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}

.vari-card .card-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--clr-text);
}

.vari-card .card-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--clr-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.vari-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-primary);
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
  margin-top: auto;
  transition: var(--trans-base);
}

.vari-card .card-link:hover {
  color: var(--clr-accent);
  gap: 10px;
}

/* ── Features / Benefits Two-Column Reversed ── */
.features-section {
  padding: 50px 0;
  background: var(--clr-white);
}

.features-section.alt-bg {
  background: var(--clr-leaf);
}

.features-section .features-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Image: 700×520px — features section image */
.features-section .features-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.features-section .features-image-wrap .img-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.6;
}

/* Feature bullets */
.feature-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--clr-light-bg);
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-primary);
  transition: var(--trans-base);
}

.feature-item:hover {
  background: var(--clr-leaf);
  border-left-color: var(--clr-accent);
}

.feature-item .fi-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-teal));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item .fi-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.feature-item .fi-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 3px;
}

.feature-item .fi-text p {
  font-size: 16px;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Specifications / Tech Table ── */
.specs-section {
  padding: 50px 0;
  background: #EFF6FF;
}

.specs-table-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table thead tr {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
}

.specs-table thead th {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 22px;
  text-align: left;
}

.specs-table tbody tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.2s;
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.specs-table tbody tr:hover {
  background: var(--clr-leaf);
}

.specs-table tbody td {
  padding: 14px 22px;
  font-size: 0.92rem;
  color: var(--clr-text);
}

.specs-table tbody td:first-child {
  font-weight: 600;
  color: var(--clr-dark);
  font-family: var(--font-heading);
}

/* ── Applications / Use Cases Grid ── */
.applications-section {
  padding: 50px 0;
  background: #EFF6FF;
}

.app-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.app-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-base);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-dark);
}

.app-pill:hover {
  border-color: var(--clr-primary);
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.app-pill .pill-icon {
  width: 32px;
  height: 32px;
  background: #3197db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-pill .pill-icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* ── Application Card Grid (subpages) ── */
.app-card-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.app-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  text-align: center;
  transition: var(--trans-base);
}

.app-card:hover {
  border-color: var(--clr-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.app-card .ac-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-teal));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--trans-base);
}

.app-card:hover .ac-icon {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
}

.app-card .ac-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
}

.app-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 8px;
}

.app-card p {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Project Showcase Cards ── */
.showcase-section {
  padding: 50px 0;
  background: var(--clr-dark);
}

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

.showcase-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.showcase-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans-base);
}

.showcase-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 156, 26, 0.40);
  transform: translateY(-4px);
}

/* Image: 600×360px — showcase image */
.showcase-card .sc-img-wrap {
  height: 220px;
  overflow: hidden;
}

.showcase-card .sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-card:hover .sc-img-wrap img {
  transform: scale(1.06);
}

.showcase-card .sc-body {
  padding: 24px;
}

.showcase-card .sc-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--clr-accent);
  margin-bottom: 10px;
}

.showcase-card .sc-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.showcase-card .sc-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA Band ── */
.cta-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--color-accent) 0%, #0288D1 100%);
  position: relative;
  overflow: hidden;
}

/* .cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
} */

.cta-section .cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 14px;
}

.cta-section .cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-section .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── Related Pages Navigation ── */
.related-section {
  padding: 50px 0;
  background: var(--clr-light-bg);
}

.related-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-base);
  text-decoration: none;
}

.related-card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--clr-leaf);
}

.related-card .rc-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-teal));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans-base);
}

.related-card:hover .rc-icon {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
}

.related-card .rc-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.related-card .rc-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 3px;
}

.related-card .rc-text span {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.related-card .rc-arrow {
  margin-left: auto;
  color: var(--clr-text-muted);
  transition: var(--trans-base);
}

.related-card:hover .rc-arrow {
  color: var(--clr-primary);
  transform: translateX(4px);
}

/* ── Stats Bar ── */
.stats-bar {
  padding: 36px 0;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
}

.stat-item {
  text-align: center;
  padding: 16px 12px;
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .stat-num span {
  color: var(--clr-accent-light);
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.20);
  height: 50px;
  align-self: center;
}

/* ── Components List (subpage typical components) ── */
.components-section {
  padding: 50px 0;
  background: var(--clr-water);
}

.component-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  transition: var(--trans-base);
}

.component-item:last-child {
  margin-bottom: 0;
}

.component-item:hover {
  border-color: var(--clr-primary);
  background: var(--clr-leaf);
  transform: translateX(4px);
}

.component-item .ci-num {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.component-item strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-dark);
}

/* ── Section Divider Wave ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── ≥1400px ── */
@media (min-width: 1400px) {
  :root {
    --section-py: 100px;
  }

  /* .breadcrumb-area {
    height: 360px;
  } */

  /* .overview-section .overview-image-wrap {
    min-height: 540px;
  } */

  /* .features-section .features-image-wrap {
    min-height: 540px;
  } */

  .vari-card .card-img-wrap {
    height: 240px;
  }

  .showcase-card .sc-img-wrap {
    height: 240px;
  }
}

/* ── ≥1200px ── */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  :root {
    --section-py: 90px;
  }

  .overview-section .overview-image-wrap {
    min-height: 500px;
  }
}

/* ── ≥992px ── */
@media (min-width: 992px) and (max-width: 1199.98px) {
  :root {
    --section-py: 80px;
  }

  .breadcrumb-area {
    height: 300px;
  }

  .overview-section .overview-image-wrap {
    min-height: 460px;
  }

  .section-title {
    font-size: 1.9rem;
  }
}

/* ── ≥768px ── */
@media (min-width: 768px) and (max-width: 991.98px) {
  :root {
    --section-py: var(--section-py-sm);
  }

  .breadcrumb-area {
    height: 260px;
  }

  .overview-section .overview-image-wrap {
    min-height: 380px;
    margin-bottom: 40px;
  }

  .features-section .features-image-wrap {
    min-height: 380px;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .cta-section .cta-actions {
    margin-top: 24px;
  }

  .stat-divider {
    display: none;
  }
}

/* ── ≥576px ── */
@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --section-py: 44px;
  }

  .breadcrumb-area {
    height: 230px;
  }

  .breadcrumb-area .bc-title {
    font-size: 1.5rem;
  }

  .overview-section .overview-image-wrap {
    min-height: 320px;
    margin-bottom: 32px;
  }

  .features-section .features-image-wrap {
    min-height: 320px;
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .vari-card .card-features {
    grid-template-columns: 1fr;
  }

  .app-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section .cta-actions {
    margin-top: 22px;
  }

  .stat-item {
    padding: 10px 6px;
  }

  .stat-divider {
    display: none;
  }
}

/* ── <576px ── */
@media (max-width: 575.98px) {
  :root {
    --section-py: 36px;
  }

  .breadcrumb-area {
    height: 200px;
  }

  .breadcrumb-area .bc-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .breadcrumb-area .bc-nav {
    font-size: 0.80rem;
  }

  .overview-section .overview-image-wrap {
    min-height: 260px;
    /* margin-bottom: 28px; */
  }

  .features-section .features-image-wrap {
    min-height: 260px;
    /* margin-bottom: 28px; */
  }

  .section-title {
    font-size: 1.35rem;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  .vari-card .card-features {
    grid-template-columns: 1fr;
  }

  .app-card-grid {
    grid-template-columns: 1fr;
  }

  .app-pill-grid {
    gap: 10px;
  }

  .app-pill {
    font-size: 0.83rem;
    padding: 8px 16px;
  }

  .cta-section .cta-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }

  .btn-primary-vari,
  .btn-outline-vari,
  .btn-accent-vari,
  .btn-white-vari,
  .btn-outline-white-vari {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .stat-item .stat-num {
    font-size: 1.7rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 8px 4px;
  }

  .related-card {
    padding: 16px 18px;
  }

  .specs-table thead th,
  .specs-table tbody td {
    padding: 11px 14px;
    font-size: 0.85rem;
  }

  .showcase-card .sc-img-wrap {
    height: 190px;
  }

  .feature-item {
    flex-direction: column;
    gap: 12px;
  }

  .feature-item .fi-icon {
    margin-bottom: 4px;
  }

  .overview-section .overview-badge {
    left: 14px;
    bottom: 14px;
    padding: 10px 14px;
  }
}


/* =============================================
   NEWS ARTICLE PAGE — Marine Bollard Series launch
   Uses site tokens: --vp-blue, --vp-blue-dark, --vp-blue-light,
   --vp-teal, --vp-ink, --vp-grey, --vp-border, --vp-radius,
   --vp-radius-sm, --vp-shadow, --vp-shadow-hover
============================================= */

.vp-news-article {
  padding: 50px 0 40px;
  background-color: #fff;
}

.vp-news-header {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.vp-news-tag {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: #3197db;
  border-radius: 999px;
}

.vp-news-title {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--vp-blue-dark);
  margin-bottom: 16px;
}

.vp-news-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--vp-grey);
  margin-bottom: 0;
}

.vp-news-meta svg {
  width: 16px;
  height: 16px;
  stroke: var(--vp-teal);
  flex-shrink: 0;
}

.vp-news-meta-dot {
  color: #3197db;
}

/* Featured image */
.vp-news-featured {
  max-width: 1000px;
  margin: 0 auto 48px;
  border-radius: var(--vp-radius);
  overflow: hidden;
  box-shadow: var(--vp-shadow);
}

.vp-news-featured img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Article body */
.vp-news-body {
  max-width: 1140px;
  margin: 0 auto;
}

.vp-news-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--vp-ink);
  margin-bottom: 18px;
}

.vp-news-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--vp-grey);
  margin-bottom: 20px;
}

.vp-news-block {
  margin-top: 40px;
}

.vp-news-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--vp-blue-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--vp-border);
}

/* Checklist */
.vp-news-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.vp-news-checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--vp-ink);
}

.vp-news-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: #3197db;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5ea8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/* Application pills */
.vp-news-app-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vp-news-app-pills span {
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #3197db;
  border: 1px solid var(--vp-border);
  border-radius: 999px;
}

/* Specs table */
.vp-news-table-wrap {
  overflow-x: auto;
  border-radius: var(--vp-radius-sm);
  border: 1px solid var(--vp-border);
}

.vp-news-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.vp-news-table thead th {
  background: var(--vp-blue-dark);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  white-space: nowrap;
}

.vp-news-table tbody td {
  padding: 13px 16px;
  color: var(--vp-ink);
  border-top: 1px solid var(--vp-border);
}

.vp-news-table tbody tr:nth-child(odd) {
  background: var(--vp-blue-light);
}

.vp-news-table tbody td:first-child {
  font-weight: 700;
  color: var(--vp-blue);
}

.vp-news-table-note {
  font-size: 13px;
  color: var(--vp-grey);
  margin-top: 12px;
  margin-bottom: 0;
  font-style: italic;
}

/* Sidebar */
.vp-news-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vp-news-side-card,
.vp-news-side-cta {
  background: #fff;
  border: 1px solid var(--vp-border);
  border-radius: var(--vp-radius);
  padding: 28px 24px;
  box-shadow: var(--vp-shadow);
}

.vp-news-side-card h4,
.vp-news-side-cta h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--vp-blue-dark);
  margin-bottom: 18px;
}

.vp-news-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vp-news-facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--vp-border);
  font-size: 14px;
}

.vp-news-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vp-news-facts li span {
  color: var(--vp-grey);
}

.vp-news-facts li strong {
  color: var(--vp-ink);
  text-align: right;
}

.vp-news-side-cta {
  background: var(--vp-blue-light);
  border-color: var(--vp-blue-light);
}

.vp-news-side-cta p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--vp-grey);
  margin-bottom: 20px;
}

.vp-btn-primary,
.vp-btn-outline {
  display: block;
  /* width: 100%; */
  text-align: center;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--vp-radius-sm);
  transition: all .25s ease;
}

.vp-btn-primary {
  background: var(--vp-blue);
  color: #fff;
  border: 1px solid var(--vp-blue);
  margin-bottom: 12px;
}

.vp-btn-primary:hover {
  background: var(--vp-blue-dark);
  border-color: var(--vp-blue-dark);
  color: #fff;
  box-shadow: var(--vp-shadow-hover);
}

.vp-btn-outline {
  background: transparent;
  color: var(--vp-blue);
  border: 1px solid var(--vp-blue);
}

.vp-btn-outline:hover {
  background: var(--vp-blue);
  color: #fff;
}

/* CTA band */
.vp-news-ctaband {
  background: var(--vp-blue-dark);
  padding: 50px 0;
}

.vp-news-ctaband-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.vp-news-ctaband-inner h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.vp-news-ctaband-inner p {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  margin-bottom: 0;
}

.vp-news-ctaband-inner .vp-btn-primary {
  width: auto;
  padding: 14px 32px;
  background: var(--vp-teal);
  border-color: var(--vp-teal);
  white-space: nowrap;
}

.vp-news-ctaband-inner .vp-btn-primary:hover {
  background: #fff;
  color: var(--vp-blue-dark);
  border-color: #fff;
}

/* Related pages */
.vp-news-related {
  padding: 50px 0 70px;
}

.vp-news-related-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vp-blue-dark);
  margin-bottom: 20px;
}

.vp-news-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vp-news-related-links a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--vp-blue-dark);
  background: #fff;
  border: 1px solid var(--vp-border);
  border-radius: 999px;
  transition: all .25s ease;
}

.vp-news-related-links a:hover {
  background: var(--vp-blue);
  border-color: var(--vp-blue);
  color: #fff;
}

/* =============================================
   RESPONSIVE — News Article
============================================= */
@media (max-width: 991px) {
  .vp-news-sidebar {
    position: static;
    margin-top: 40px;
  }

  .vp-news-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .vp-news-article {
    padding: 40px 0 20px;
  }

  .vp-news-title {
    font-size: 24px;
  }

  .vp-news-lead {
    font-size: 17px;
  }

  .vp-news-checklist {
    grid-template-columns: 1fr;
  }

  .vp-news-ctaband-inner {
    flex-direction: column;
    text-align: center;
  }

  .vp-news-ctaband-inner .vp-btn-primary {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .vp-news-featured {
    border-radius: var(--vp-radius-sm);
    margin-bottom: 32px;
  }

  .vp-news-side-card,
  .vp-news-side-cta {
    padding: 22px 18px;
  }
}


/* About us page code  */

/* ===================== MILESTONES — COMPACT + STATS ===================== */
.milestone-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.ms-stat {
  background: var(--white);
  border-radius: 4px;
  text-align: center;
  padding: 1.1rem 0.75rem;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
}

.ms-stat-num,
.ms-stat-plus {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: #3197db;
  line-height: 1;
}

.ms-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* Reduced vertical rhythm for the timeline itself */
.timeline--compact {
  margin-top: 1.5rem;
}

.timeline--compact .timeline-item {
  margin-bottom: 1.1rem;
  gap: 1rem;
}

.timeline--compact .tl-content {
  padding: 1rem 1.35rem;
}

.timeline--compact .tl-year {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.timeline--compact .tl-title {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.timeline--compact .tl-desc {
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Milestone icon inside the dot (replaces the plain dot-inner) */
.timeline--compact .tl-dot {
  width: 40px;
  height: 40px;
}

.timeline--compact .tl-dot svg {
  width: 18px;
  height: 18px;
  stroke: #3197db;
}

@media (max-width: 768px) {
  .milestone-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================== SUSTAINABILITY — FEATURE BLOCKS + BIGGER IMAGE ===================== */
.sust-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.sust-feature-card {
  background: var(--slate-light);
  border-radius: 4px;
  padding: 1.5rem 1.25rem;
  text-align: left;
}

.sust-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--steel));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sust-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: #3197db;
}

.sust-feature-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.sust-feature-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Bigger image, remove old empty vertical space */
.sust-img-col {
  position: relative;
}

.sust-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px;
}

/* Replaces the old single "100% Weld Tested" .sust-stamp badge */
.sust-stat-badge {
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border-radius: 4px;
  padding: 1.1rem 1.75rem;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.15);
  width: calc(100% - 2rem);
  justify-content: space-evenly;
}

.sust-stat-badge-item {
  text-align: center;
}

.sust-stat-badge-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #3197db;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.sust-stat-badge-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.sust-stat-badge-divider {
  width: 1px;
  height: 32px;
  background: var(--slate-mid);
}

@media (max-width: 768px) {
  .sust-features {
    grid-template-columns: 1fr;
  }

  .sust-img-wrap img {
    height: 320px;
  }

  .sust-stat-badge {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }
}