/* ============================================================
   InfoTech Solutions — Inner Pages Stylesheet
   Product pages, Editorial News/Case Studies, About Us
   ============================================================ */

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  padding: 70px 80px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 420px at 20% 20%, rgba(74,175,80,0.14) 0%, transparent 62%),
    radial-gradient(700px 380px at 80% 35%, rgba(74,175,80,0.10) 0%, transparent 66%),
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-accent); }
.breadcrumb span { color: rgba(255,255,255,0.6); }
.page-hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-label::before { content:''; width:20px; height:2px; background:var(--green-accent); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.2s forwards;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 620px;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.35s forwards;
}
.page-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.5s forwards;
}

/* ── PRODUCT PAGE LAYOUT ────────────────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  align-items: start;
}
.product-main { padding: 70px 60px 70px 80px; }
.product-sidebar {
  background: var(--off-white);
  border-left: 1px solid var(--grey-200);
  padding: 48px 32px;
  position: sticky;
  top: 73px;
  min-height: calc(100vh - 73px);
}

/* Product content blocks */
.product-intro {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--grey-200);
}
.product-intro strong { color: var(--green-dark); font-weight: 600; }

.product-section { margin-bottom: 52px; }
.product-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-pale);
  position: relative;
}
.product-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 48px; height: 2px;
  background: var(--green-main);
}
.product-section p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 14px;
}

/* Feature list */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--green-pale);
  border-left: 3px solid var(--green-main);
  transition: transform 0.2s;
}
.feature-item:hover { transform: translateX(4px); }
.feature-item .fi-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.feature-item .fi-text { }
.feature-item .fi-title { font-size: 0.85rem; font-weight: 700; color: var(--green-dark); margin-bottom: 3px; }
.feature-item .fi-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; font-weight: 300; }

/* Benefits strip */
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--grey-200);
  border: 2px solid var(--grey-200);
  margin: 32px 0;
}
.benefit-card {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}
.benefit-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-main);
  line-height: 1;
  margin-bottom: 6px;
}
.benefit-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Process steps */
.process-steps { margin: 24px 0; }
.process-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-200);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.ps-num {
  width: 40px;
  height: 40px;
  background: var(--green-main);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.ps-content p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; font-weight: 300; }

/* Sidebar */
.sidebar-cta-card {
  background: var(--green-dark);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.sidebar-cta-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,175,80,0.2), transparent 70%);
}
.sidebar-cta-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.sidebar-cta-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 18px;
}
.sidebar-cta-card .btn { width: 100%; justify-content: center; }

.sidebar-related h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
.sidebar-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-200);
  text-decoration: none;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-link-item:hover { color: var(--green-main); padding-left: 4px; }
.sidebar-link-item .sli-icon { font-size: 1rem; color: var(--green-main); flex-shrink: 0; }

.sidebar-spec-box {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  padding: 20px;
  margin-top: 20px;
}
.sidebar-spec-box h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.82rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .sk { color: var(--grey-400); font-weight: 500; }
.spec-row .sv { color: var(--green-dark); font-weight: 600; }

/* ── PRODUCTS LISTING PAGE ──────────────────────────────── */
.products-listing { padding: 70px 80px; background: var(--white); }

/* Improved card grid — magazine/editorial style */
.products-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prod-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.prod-card:hover {
  border-color: var(--green-main);
  box-shadow: 0 12px 40px rgba(13,43,26,0.12);
  transform: translateY(-5px);
}
.prod-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.prod-card-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(13,43,26,0.5), transparent);
}
.prod-card-thumb-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,175,80,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,175,80,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.prod-card-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  z-index: 1;
  background: rgba(13,43,26,0.7);
  padding: 4px 10px;
  border: 1px solid rgba(74,175,80,0.3);
}
.prod-card-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.prod-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.15;
}
.prod-card-desc {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}
.prod-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--grey-100);
  background: var(--off-white);
}
.prod-card-footer span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-main);
}
.prod-card-arrow {
  width: 28px;
  height: 28px;
  background: var(--green-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.prod-card:hover .prod-card-arrow { background: var(--green-bright); transform: translateX(3px); }

/* ── EDITORIAL NEWS ─────────────────────────────────────── */
.news-index { background: var(--white); }
.news-index-wrap { padding: 70px 80px; }

/* Featured story */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  background: var(--green-dark);
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
}
.news-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,175,80,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,175,80,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.nf-content {
  padding: 60px 60px 60px 70px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nf-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nf-label::before { content:''; width:16px; height:2px; background:var(--green-accent); }
.nf-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.nf-excerpt {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 28px;
}
.nf-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nf-visual {
  background: linear-gradient(160deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.7;
  position: relative;
}
.nf-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-dark) 0%, transparent 40%);
}

/* News grid — editorial */
.news-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--grey-200);
}
.editorial-card {
  padding: 30px 28px;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  background: var(--white);
  color: var(--text);
}
.editorial-card:hover { background: var(--off-white); }
.editorial-card:nth-child(3n) { border-right: none; }
.ec-category {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ec-category::before { content:''; width:12px; height:2px; background:var(--green-main); }
.ec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ec-excerpt {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}
.ec-date {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 1px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-200);
  text-transform: uppercase;
}

/* ── SINGLE NEWS ARTICLE ────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  padding: 70px 80px;
  align-items: start;
}
.article-body { max-width: 700px; }
.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  margin: 32px 0 14px;
}
.article-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.article-body blockquote {
  border-left: 4px solid var(--green-main);
  padding: 18px 24px;
  background: var(--green-pale);
  margin: 28px 0;
  font-size: 1.05rem;
  color: var(--green-dark);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
}
.article-sidebar { }
.article-sidebar .sidebar-cta-card { margin-bottom: 20px; }
.article-tags { margin-top: 28px; }
.article-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  margin: 4px 4px 4px 0;
  border: 1px solid var(--green-border);
}
.related-articles h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
.related-article-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-200);
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
.related-article-item:hover { color: var(--green-main); }
.rai-icon { font-size: 1.2rem; flex-shrink: 0; }
.rai-title { font-size: 0.82rem; font-weight: 600; line-height: 1.4; }
.rai-date { font-size: 0.7rem; color: var(--grey-400); margin-top: 3px; }

/* ── CASE STUDIES INDEX ─────────────────────────────────── */
.cases-index-wrap { padding: 70px 80px; background: var(--white); }

/* Big case study feature */
.case-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 56px;
  border: 1.5px solid var(--grey-200);
  overflow: hidden;
}
.cf-visual {
  background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.cf-visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,175,80,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,175,80,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cf-visual-icon { font-size: 7rem; position: relative; z-index: 1; }
.cf-content {
  padding: 52px 52px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cf-sector {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 18px;
  border: 1px solid var(--green-border);
}
.cf-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cf-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}
.cf-result {
  background: var(--green-pale);
  border-left: 4px solid var(--green-main);
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
}
.cf-result strong { color: var(--green-mid); }

/* Case studies editorial grid */
.cases-grid-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-editorial-card {
  border: 1.5px solid var(--grey-200);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.case-editorial-card:hover {
  border-color: var(--green-main);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cec-header {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}
.cec-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,175,80,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,175,80,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cec-sector {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-accent);
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.cec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.cec-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.cec-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
  margin-bottom: 18px;
}
.cec-result {
  background: var(--green-pale);
  border-left: 3px solid var(--green-main);
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
}
.cec-result strong { color: var(--green-mid); }
.cec-footer {
  padding: 14px 28px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
}
.cec-read {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-main);
}
.cec-arrow {
  width: 26px; height: 26px;
  background: var(--green-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.2s;
}
.case-editorial-card:hover .cec-arrow { background: var(--green-bright); }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-layout { background: var(--white); }

.about-intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.about-intro-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 22px;
}
.about-intro-text h2 em { color: var(--green-main); font-style: normal; }
.about-intro-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.about-intro-visual {
  background: linear-gradient(135deg, var(--green-dark), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-intro-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,175,80,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,175,80,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
.about-visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
.about-big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
  opacity: 0.9;
}
.about-big-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: -10px;
}

/* Values section */
.about-values { padding: 80px; background: var(--off-white); }
.about-values h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-values-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  padding: 32px 24px;
  border-bottom: 3px solid var(--green-main);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.value-desc { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; font-weight: 300; }

/* Timeline */
.about-timeline { padding: 80px; background: var(--white); }
.about-timeline h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 12px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-main), var(--green-accent));
}
.timeline-item {
  position: relative;
  padding: 0 0 44px 44px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--green-main);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--green-main);
}
.ti-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-main);
  line-height: 1;
  margin-bottom: 6px;
}
.ti-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.ti-desc { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; font-weight: 300; }

/* Team section */
.about-team { padding: 80px; background: var(--off-white); }
.about-team h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-sub { color: var(--text-light); font-size: 0.95rem; font-weight: 300; max-width: 560px; margin-bottom: 48px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-main);
}
.team-info { padding: 20px; }
.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.team-role { font-size: 0.75rem; font-weight: 600; color: var(--green-main); text-transform: uppercase; letter-spacing: 1.5px; }

/* Sectors section */
.about-sectors { padding: 80px; background: var(--green-dark); position: relative; overflow: hidden; }
.about-sectors::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,175,80,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,175,80,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.about-sectors h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.about-sectors-sub { color: rgba(255,255,255,0.5); font-size: 0.95rem; font-weight: 300; max-width: 560px; margin-bottom: 40px; position: relative; }
.sectors-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.sector-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(74,175,80,0.25);
  padding: 20px 18px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.sector-pill:hover { background: rgba(74,175,80,0.12); border-color: rgba(74,175,80,0.5); }
.sector-pill-icon { font-size: 1.8rem; margin-bottom: 8px; }
.sector-pill-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── FILTER BAR ─────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-right: 8px;
}
.filter-btn {
  padding: 7px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--grey-200);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-main);
  border-color: var(--green-main);
  color: white;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; min-height: auto; border-left: none; border-top: 2px solid var(--grey-200); }
  .product-main { padding: 50px 40px; }
  .news-featured { grid-template-columns: 1fr; }
  .nf-visual { height: 200px; }
  .about-intro-section { grid-template-columns: 1fr; }
  .about-intro-visual { min-height: 300px; }
  .about-intro-text, .about-values, .about-timeline, .about-team, .about-sectors { padding: 50px 40px; }
  .values-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .sectors-list { grid-template-columns: repeat(3,1fr); }
  .case-feature { grid-template-columns: 1fr; }
  .cf-visual { min-height: 200px; }
}

@media (max-width: 900px) {
  .products-masonry { grid-template-columns: repeat(2,1fr); }
  .news-editorial-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid-editorial { grid-template-columns: 1fr; }
  .page-hero, .products-listing, .news-index-wrap, .cases-index-wrap, .article-layout { padding: 50px 30px; }
  .article-layout { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .benefits-strip { grid-template-columns: 1fr 1fr; }
  .sectors-list { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .products-masonry { grid-template-columns: 1fr; }
  .news-editorial-grid { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .sectors-list { grid-template-columns: repeat(2,1fr); }
  .cf-content { padding: 30px; }
  .benefits-strip { grid-template-columns: 1fr; }
}


/* Sidebar media placeholder */
.sidebar-media{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(91,163,245,0.14);
  background:rgba(255,255,255,0.03);
  margin-bottom:18px;
}
.sidebar-media img{
  width:100%;
  height:auto;
  display:block;
}
