/* ââ DESIGN TOKENS ââ */
:root {
  --black:      #0d0d0d;
  --dark:       #2b2b2b;
  --mid:        #515151;
  --gray:       #717171;
  --mint:       #6decd9;
  --mint-light: #e7f9f0;
  --border:     #ededed;
  --off-white:  #f8f9f1;
  --white:      #ffffff;
  --font:       'Montserrat', sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:     0px;
  --section-pad: 120px 64px;
}

/* ââ RESET ââ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ââ TYPOGRAPHY ââ */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  display: block;
}

/* ââ BUTTONS ââ */

/* Neon button â mint glow */
.cs-btn-neon,
a.cs-btn-neon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--mint);
  border-radius: 40px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.35s var(--ease), color 0.2s;
  box-shadow: 0 0 8px rgba(109,236,217,0.18), inset 0 0 8px rgba(109,236,217,0.06);
}
.cs-btn-neon::before,
a.cs-btn-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(109,236,217,0.14) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease);
}
.cs-btn-neon:hover,
a.cs-btn-neon:hover {
  box-shadow: 0 0 22px rgba(109,236,217,0.45), 0 0 48px rgba(109,236,217,0.18), inset 0 0 18px rgba(109,236,217,0.1);
  text-shadow: 0 0 10px rgba(109,236,217,0.7);
  color: var(--mint);
}
.cs-btn-neon:hover::before,
a.cs-btn-neon:hover::before { transform: translateX(200%); }

/* Glass button */
.cs-btn-glass,
a.cs-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}
.cs-btn-glass:hover,
a.cs-btn-glass:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}

/* Mint solid button */
.cs-btn-mint,
a.cs-btn-mint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--mint);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--mint);
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.cs-btn-mint:hover,
a.cs-btn-mint:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--mint);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--white); }

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: none;
  border: 1px solid var(--dark);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-sm:hover { background: var(--black); color: var(--white); }

.btn-mint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--mint);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.btn-mint:hover { opacity: 0.85; }

/* ââ ANIMATIONS ââ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ââ NAV ââ */
.cs-nav {
  position: fixed;
  top: 32px;
  left: 32px;
  right: 32px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  border-radius: 20px;
  overflow: hidden;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s;
  border: 1px solid transparent;
}
.cs-nav.scrolled {
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-color: rgba(255,255,255,0.08);
}
.cs-nav-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}
.cs-nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}
.cs-nav-menu-item {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.cs-nav-menu-item:hover { color: var(--white); }
.cs-nav-cta {
  padding: 9px 20px;
  font-size: 13px;
}

/* ââ NAV TRIGGER ââ */
.cs-nav-trigger {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 0;
  transition: opacity 0.2s;
}
.cs-nav-trigger:hover { opacity: 0.7; }

/* ââ NAV OVERLAY ââ */
.cs-nav-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  border-radius: 0;
}
.cs-nav-overlay {
  position: fixed;
  inset: 32px;
  z-index: 200;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cs-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Left image panel */
.cs-nav-overlay-img {
  width: 45%;
  flex-shrink: 0;
  background: #1a1a2e center/cover no-repeat;
}
.cs-nav-overlay-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Right white panel */
.cs-nav-overlay-panel {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 32px;
  overflow: hidden;
  position: relative;
}

/* Overlay header row */
.cs-nav-overlay-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.cs-nav-logo--overlay {
  position: absolute;
  left: 24px;
  top: 0;
  height: 68px;
  display: flex;
  align-items: center;
  color: var(--white);
  z-index: 10;
}

.cs-nav-overlay-close {
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 5;
}
.cs-nav-overlay-close .cs-close-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cs-nav-overlay-close:hover .cs-close-icon {
  background: rgba(109,236,217,0.2);
  border-color: var(--mint);
  color: var(--mint);
}

/* Level panels â stacked absolutely inside panel */
.cs-nav-lvl {
  position: absolute;
  inset: 0;
  padding: 0 24px 32px;
  padding-top: 88px;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.32s ease;
}

/* Level 1: visible by default */
#cs-nav-lvl1 {
  transform: translateX(0);
  opacity: 1;
}
#cs-nav-lvl1.hidden {
  transform: translateX(-32px);
  opacity: 0;
  pointer-events: none;
}

/* Level 2 sub-panels: start off to the right */
.cs-nav-lvl--sub {
  transform: translateX(40px);
  opacity: 0;
  pointer-events: none;
}
.cs-nav-lvl--sub.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

/* Primary nav links */
.cs-nav-primary ul,
.cs-nav-secondary ul {
  list-style: none;
}

.cs-nav-item {
  display: block;
  width: 100%;
  text-align: left;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 300;
  color: var(--black);
  text-decoration: none;
  padding: 9px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.cs-nav-item:hover { color: var(--mint); }

.cs-nav-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 16px 0;
  flex-shrink: 0;
}

.cs-nav-secondary ul li {
  line-height: 1;
}
.cs-nav-secondary a {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  display: block;
  padding: 7px 0;
  transition: color 0.15s;
  text-decoration: none;
}
.cs-nav-secondary a:hover { color: var(--black); }

/* Back button (level 2 header) */
.cs-nav-back {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
  padding: 9px 0;
  transition: color 0.15s;
}
.cs-nav-back:hover { color: var(--mint); }
.cs-nav-back svg { flex-shrink: 0; }

/* Sub-menu items */
.cs-nav-lvl--sub nav ul { list-style: none; }
.cs-nav-lvl--sub nav ul li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.15s;
}
.cs-nav-lvl--sub nav ul li a:hover { color: var(--mint); }

/* Overlay footer */
.cs-nav-overlay-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.cs-nav-eu-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cs-nav-eu-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  border: 1px solid #ddd;
  padding: 3px 7px;
  border-radius: 3px;
}

/* ââ HERO ââ */
.cs-hero {
  position: relative;
  min-height: 100vh;
  margin: 16px 16px 0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 80px 4px 64px;
  background: #1a1a1a;
}
.cs-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 8s var(--ease);
}
.cs-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31.4deg, rgba(0,0,0,var(--overlay-alpha,0.5)) 36%, rgba(0,0,0,calc(var(--overlay-alpha,0.5) * 0.3)) 78%);
}
.cs-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.cs-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  width: 100%;
}

/* News slider (left column) */
.cs-hero-news-slider {
  flex-shrink: 0;
  justify-self: start;
  margin-left: 48px;
  width: clamp(260px, 26vw, 360px);
  height: clamp(360px, 48vh, 480px);
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

/* Individual news card â stacked, crossfade */
.cs-hero-news {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #2b2b2b;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.cs-hero-news.active {
  opacity: 1;
  pointer-events: auto;
}
.cs-hero-news-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-hero-news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(72.13deg, rgba(0,0,0,0.35) 22%, rgba(102,102,102,0) 79%);
}
.cs-hero-news-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 16px;
  border-radius: 43px;
  background: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}
.cs-hero-news-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
}
.cs-hero-news-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: white;
  margin: 0 0 6px;
}
.cs-hero-news-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-hero-news-hover {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.35s;
  opacity: 0;
}
.cs-hero-news:hover .cs-hero-news-hover,
.cs-hero-news.hovered .cs-hero-news-hover {
  max-height: 120px;
  opacity: 1;
}
.cs-hero-news-hover-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
}
.cs-hero-news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  text-decoration: none;
}
.cs-hero-news-link::after {
  content: 'â';
  transition: transform 0.2s;
}
.cs-hero-news-link:hover::after { transform: translateX(4px); }

/* Progress bar */
.cs-hero-news-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--mint);
  box-shadow: 0 0 6px rgba(109,236,217,0.6);
  pointer-events: none;
  z-index: 10;
}
.cs-hero-news.active .cs-hero-news-progress {
  animation: newsProgress 4.5s linear forwards;
}
@keyframes newsProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Slider arrows */
.cs-hero-slider-arrows {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 20;
}
.cs-hero-slider-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.cs-hero-slider-arrow:hover {
  background: rgba(109,236,217,0.2);
  border-color: var(--mint);
  color: var(--mint);
}

/* Main content (right column) */
.cs-hero-content {
  max-width: 620px;
  min-width: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease) 0.2s, transform 0.9s var(--ease) 0.2s;
}
.cs-hero-content.visible { opacity: 1; transform: translateY(0); }
.cs-hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}
.cs-hero h1 {
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}
.cs-hero h1 em { font-style: normal; font-weight: 400; }
.cs-hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 36px;
}
.cs-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cs-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px 11px;
  border-radius: 39px;
  background: var(--mint-light);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cs-hero-btn-primary:hover { opacity: 0.88; }
.cs-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  font-size: 15px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.cs-hero-btn-secondary:hover { background: rgba(255,255,255,0.22); }
.cs-hero-scroll {
  position: absolute;
  bottom: 64px;
  right: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mint);
  animation: scrollDown 2s var(--ease) infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 200%; } }

/* ââ PRODUCTS ââ */
.cs-products {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.cs-product-tabs { display: flex; flex-direction: column; }
.cs-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 400;
  color: var(--border);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  text-align: left;
  transition: color 0.25s;
  letter-spacing: 0.01em;
  width: 100%;
}
.cs-tab-btn.active { color: var(--black); font-weight: 600; }
.cs-tab-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  margin-right: 12px;
  opacity: 0;
  transition: opacity 0.25s;
  flex-shrink: 0;
}
.cs-tab-btn.active .cs-tab-indicator { opacity: 1; }
.cs-product-right { display: grid; gap: 32px; }
.cs-product-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.cs-product-heading strong { font-weight: 600; }
.cs-product-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--mid);
}
.cs-product-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cs-product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--off-white);
}
.cs-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cs-product-img:hover img { transform: scale(1.04); }

/* ââ TECHNOLOGY ââ */
.cs-technology {
  background: var(--black);
  padding: var(--section-pad);
  overflow: hidden;
}
.cs-tech-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 64px;
  display: block;
}
.cs-tech-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.cs-tech-headline {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 700px;
}
.cs-tech-headline strong { font-weight: 600; }
.cs-tech-right { flex-shrink: 0; max-width: 420px; }
.cs-tech-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.cs-tech-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  transition: gap 0.2s;
}
.cs-tech-link:hover { gap: 18px; }
.cs-tech-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 80px 0;
}
.cs-tech-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.cs-stat {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.cs-stat.visible { opacity: 1; transform: translateY(0); }
.cs-stat:nth-child(2) { transition-delay: 0.1s; }
.cs-stat:nth-child(3) { transition-delay: 0.2s; }
.cs-stat-number {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.cs-stat-number span { color: var(--mint); }
.cs-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ââ ESG ââ */
.cs-esg {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
}
.cs-esg-item { border-bottom: 1px solid var(--border); }
.cs-esg-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--border);
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
  letter-spacing: -0.01em;
}
.cs-esg-trigger.active { color: var(--black); }
.cs-esg-icon {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.cs-esg-trigger.active .cs-esg-icon {
  background: var(--mint);
  border-color: var(--mint);
  transform: rotate(45deg);
}
.cs-esg-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.cs-esg-body.open { max-height: 400px; }
.cs-esg-body-inner {
  padding: 0 0 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--mid);
}
.cs-esg-visual { position: sticky; top: 120px; }
.cs-esg-card {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
}
.cs-esg-card img { width: 100%; height: 100%; object-fit: cover; }
.cs-esg-card-label {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  color: var(--white);
}
.cs-esg-card-label h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cs-esg-card-label p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ââ WHO WE ARE ââ */
.cs-who {
  background: var(--off-white);
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 80px;
  align-items: start;
}
.cs-who-label-col { padding-top: 6px; }
.cs-who-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.cs-who-quote {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--dark);
  letter-spacing: -0.005em;
  margin-bottom: 48px;
  max-width: 760px;
}
.cs-who-quote strong { font-weight: 600; color: var(--black); }

/* ââ TEXT + IMAGE ââ */
.cs-text-image {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cs-text-image.img-left { direction: rtl; }
.cs-text-image.img-left > * { direction: ltr; }
.cs-text-image.dark { background: var(--black); color: var(--white); }
.cs-text-image.dark .cs-ti-body { color: rgba(255,255,255,0.6); }
.cs-ti-img { aspect-ratio: 4/5; overflow: hidden; background: var(--off-white); }
.cs-ti-img img { width: 100%; height: 100%; object-fit: cover; }
.cs-ti-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  display: block;
}
.cs-text-image.dark .cs-ti-label { color: rgba(255,255,255,0.4); }
.cs-ti-heading {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.cs-ti-heading strong { font-weight: 600; }
.cs-ti-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 32px;
}
.cs-ti-body p + p { margin-top: 1em; }

/* ââ CONTACT ââ */
.cs-contact {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cs-contact h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.cs-contact h2 strong { font-weight: 600; }
.cs-contact-intro {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 40px;
}
.cs-contact-meta { display: grid; gap: 8px; }
.cs-contact-meta a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.cs-contact-meta a:hover { color: var(--mint); }
.cs-contact-form { display: grid; gap: 16px; }
.cs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cs-field { display: flex; flex-direction: column; gap: 6px; }
.cs-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.cs-field input,
.cs-field textarea,
.cs-field select {
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
}
.cs-field input:focus,
.cs-field textarea:focus,
.cs-field select:focus { border-color: var(--mint); }
.cs-field textarea { min-height: 120px; }
.cs-form-note { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ââ FOOTER ââ */
.cs-footer {
  background: var(--black);
  padding: 80px 64px 48px;
}
.cs-footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}
.cs-footer-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}
.cs-footer-tagline {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}
.cs-footer-address {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}
.cs-footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.cs-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cs-footer-col a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.cs-footer-col a:hover { color: var(--white); }
.cs-newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  margin-top: 16px;
}
.cs-newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  color: var(--white);
  outline: none;
}
.cs-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.cs-newsletter-form button {
  padding: 13px 20px;
  background: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cs-newsletter-form button:hover { opacity: 0.85; }
.cs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cs-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.cs-footer-social { display: flex; gap: 20px; }
.cs-footer-social a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.cs-footer-social a:hover { color: var(--white); }

/* == IMAGE BANNER == */
.cs-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: #1a1a1a;
}
.cs-banner--padded {
  margin: 16px;
  border-radius: 20px;
  min-height: calc(100vh - 32px);
}
.cs-banner--full { margin: 0; border-radius: 0; }
.cs-banner-media { position: absolute; inset: 0; }
.cs-banner-media img, .cs-banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 45%, rgba(0,0,0,0.45) 100%);
}
.cs-banner-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 52px 64px;
}
.cs-banner-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.cs-banner-divider {
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin-bottom: 36px;
}
.cs-banner-heading-row {
  display: flex;
  align-items: center;
  gap: 40px;
}
.cs-banner-heading {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: rgba(255,255,255,0.92);
  margin: 0;
}
.cs-banner-heading-row { cursor: default; width: fit-content; }
.cs-banner-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.0);
  transition: border-color 0.25s, transform 0.25s, background 0.25s, box-shadow 0.35s;
  flex-shrink: 0;
}
.cs-banner-arrow svg { width: 26px; height: 26px; }
.cs-banner-arrow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg 250deg, rgba(109,236,217,0.9) 320deg, transparent 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  opacity: 0;
  transition: opacity 0.35s;
}
.cs-banner-heading-row:hover .cs-banner-arrow {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateX(6px);
  box-shadow: 0 0 24px rgba(109,236,217,0.25), inset 0 0 12px rgba(109,236,217,0.08);
  color: var(--mint, #6decd9);
}
.cs-banner-heading-row:hover .cs-banner-arrow::before {
  opacity: 1;
  animation: csRingSpin 2.2s linear infinite;
}
@keyframes csRingSpin { to { transform: rotate(360deg); } }
.cs-banner-body {
  max-width: 420px;
  margin-left: clamp(300px, 40%, 560px);
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.cs-banner-body p { margin: 0 0 10px; }
.cs-banner-body p:last-child { margin-bottom: 0; }

/* == WHO WE ARE (v2) == */
.cs-who {
  display: grid !important;
  grid-template-columns: minmax(200px, 26%) minmax(0, 1fr) !important;
  gap: 0;
  padding: 64px 18px 64px 0 !important;
  background: var(--white, #fff) !important;
  align-items: start;
}
.cs-who-label-col { display: block !important; padding: 40px 0 0 clamp(20px, 4vw, 57px); }
.cs-who-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black, #0d0d0d);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.35);
  margin-right: clamp(16px, 3vw, 46px);
  writing-mode: horizontal-tb;
  transform: none;
  text-transform: none;
  letter-spacing: 0.01em;
}
.cs-who-card {
  position: relative;
  isolation: isolate;
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(36px, 4vw, 59px) clamp(28px, 3.5vw, 50px);
  min-height: clamp(360px, 34vw, 496px);
}
.cs-who-card--pattern, .cs-who-card--light {
  background: #fff;
}
.cs-who-card--pattern::after, .cs-who-card--light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(59.27deg, rgba(231,249,240,0.44) 21.5%, #e7f9f0 76%);
  pointer-events: none;
  z-index: -1;
}
.cs-who-pattern-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.37;
}
.cs-who-pattern {
  position: absolute;
  right: -3%;
  bottom: -12%;
  width: 32%;
  color: rgba(20, 80, 60, 0.08);
  transform: rotate(-14deg);
  pointer-events: none;
}
.cs-who-pattern svg { width: 100%; height: auto; display: block; }
.cs-who-trace {
  fill: none;
  stroke: rgba(109,236,217,0.65);
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-dasharray: 12 88;
  stroke-dashoffset: 0;
  animation: csTrace 9s linear infinite;
  filter: drop-shadow(0 0 2px rgba(109,236,217,0.5));
}
@keyframes csTrace { to { stroke-dashoffset: -100; } }
.cs-who-pattern--live {
  position: absolute;
  top: -34%;
  left: -45%;
  width: 122.3%;
  right: auto;
  bottom: auto;
  transform: none;
  pointer-events: none;
  z-index: 3;
  -webkit-mask-image: linear-gradient(135deg, transparent 32%, rgba(0,0,0,0.5) 46%, #000 62%), linear-gradient(to right, #000 82%, transparent 97%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(135deg, transparent 32%, rgba(0,0,0,0.5) 46%, #000 62%), linear-gradient(to right, #000 82%, transparent 97%);
  mask-composite: intersect;
}
.cs-who-pattern--live svg { width: 100%; height: auto; display: block; }
.cs-who-pattern--live svg path.cs-outline {
  fill: none !important;
  stroke: rgba(23, 88, 65, 0.12);
  stroke-width: 1.2;
}
.cs-who-pattern--live svg path.cs-spot {
  fill: none !important;
  stroke: url(#csSpot);
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.cs-who-pattern--live svg path.cs-spot-halo {
  fill: none !important;
  stroke: url(#csSpot);
  stroke-width: 7;
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.5s ease;
}
.cs-who-card:hover .cs-spot { opacity: 1; }
.cs-who-card--green .cs-outline, .cs-who-card--dark .cs-outline, .cs-who-card--image .cs-outline, .cs-who-card--video .cs-outline { stroke: rgba(255,255,255,0.14) !important; }
.cs-who-card:hover .cs-spot-halo { opacity: 0.4; }
.cs-who-card--green, .cs-who-card--dark {
  background: radial-gradient(85% 100% at 0% 38%, rgba(151,243,219,0.75) 0%, rgba(58,214,172,0.35) 32%, rgba(58,214,172,0) 60%), radial-gradient(120% 90% at 90% 85%, rgba(30,201,162,0.75) 0%, rgba(30,201,162,0) 62%), radial-gradient(120% 100% at 10% 112%, #04231b 0%, rgba(4,35,27,0) 45%), linear-gradient(190deg, #0c3d30 0%, #0f4f3d 50%, #0a3a2e 100%);
}
.cs-who-card--green .cs-who-quote, .cs-who-card--dark .cs-who-quote { color: rgba(255,255,255,0.92); }
.cs-who-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-who-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 100%);
}
.cs-who-card--image .cs-who-quote, .cs-who-card--video .cs-who-quote { color: rgba(255,255,255,0.94); }
.cs-who-content { position: relative; }
.cs-who-quote {
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 400;
  line-height: 1.55;
  color: #2b2b2b;
  max-width: 900px;
  margin: 0 0 28px;
}
.cs-who-quote p { margin: 0 0 16px; }
.cs-who-quote p:last-child { margin-bottom: 0; }
.cs-who-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.cs-who-btn--dark, .cs-who-btn--mint, .cs-who-btn--neon, .cs-who-btn--glass { background: #473f3c; color: #fff; }
.cs-who-card--green .cs-who-btn, .cs-who-card--image .cs-who-btn, .cs-who-card--video .cs-who-btn { background: var(--mint, #6decd9); color: var(--black, #0d0d0d); }
.cs-who-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.22); }
.cs-who-media-cta { position: absolute !important; top: 16px; left: 16px; z-index: 4; }
.cs-who-content a[class*="cs-btn"]:not(.cs-who-media-cta) { position: relative; z-index: 4; }
.cs-who-media { position: relative;
  margin: 40px calc(16px - clamp(28px, 3.5vw, 50px)) calc(16px - clamp(36px, 4vw, 59px));
  border-radius: 12px;
  overflow: hidden;
}
.cs-who-media img, .cs-who-media video {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* == INFO CARDS == */
.cs-infocards {
  position: relative;
  padding: 72px 20px;
  background: var(--white, #fff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(clamp(340px, 28vw, 420px) + 144px);
}
.cs-infocards--large {
  padding: 96px 20px;
  min-height: calc(clamp(440px, 37vw, 560px) + 192px);
}
.cs-ic-label-row { display: flex; align-items: center; gap: 14px; margin: 0 0 8px 16px; }
.cs-ic-label-row .cs-ic-label { margin: 0; }
.cs-ic-arrows { display: flex; gap: 8px; }
.cs-ic-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--black, #0d0d0d);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.cs-ic-arrow:hover { background: var(--mint, #6decd9); border-color: var(--mint, #6decd9); }
.cs-ic-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black, #0d0d0d);
  margin: 0 0 8px 16px;
}
.cs-ic-rows { list-style: none; padding: 0; margin: 0; }
.cs-ic-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
}
.cs-ic-row:last-child { border-bottom: none; }
.cs-ic-row-title {
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: #c3c3c3;
  transition: color 0.3s;
}
.cs-ic-chevron { color: #c9c9c9; flex-shrink: 0; transition: color 0.3s, transform 0.3s; }
.cs-ic-row:hover .cs-ic-row-title { color: #8a8a8a; }
.cs-ic-row.active .cs-ic-row-title { color: var(--black, #0d0d0d); }
.cs-ic-row.active .cs-ic-chevron { color: var(--black, #0d0d0d); transform: translateX(4px); }
.cs-ic-cardwrap {
  position: absolute;
  top: 50%;
  left: calc(20px + (100% - 40px) * 0.45 + clamp(32px, 4vw, 64px));
  transform: translateY(-50%);
  width: clamp(300px, 25vw, 370px);
  height: clamp(340px, 28vw, 420px);
  z-index: 2;
  border-radius: 15px;
}
.cs-infocards--large .cs-ic-cardwrap {
  width: clamp(400px, 33vw, 500px);
  height: clamp(440px, 37vw, 560px);
}
.cs-ic-card {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #2b2b2b;
  opacity: 0;
  transition: opacity 0.9s var(--ease, ease);
  pointer-events: none;
  box-shadow: 0 14px 44px rgba(0,0,0,0.18);
}
.cs-ic-card.active { opacity: 1; pointer-events: auto; }
.cs-ic-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-ic-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 16px;
  border-radius: 43px;
  background: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.cs-ic-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 64px 22px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
}
.cs-ic-card-title { font-size: 15px; font-weight: 600; line-height: 1.4; color: #fff; margin: 0 0 6px; }
.cs-ic-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-ic-card-hover { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s var(--ease, ease), opacity 0.35s; }
.cs-ic-card:hover .cs-ic-card-hover { max-height: 140px; opacity: 1; }
.cs-ic-card-hover-text { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.62); margin: 0 0 12px; }
.cs-ic-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint, #6decd9);
  text-decoration: none;
}
.cs-ic-card-btn::after { content: '\2192'; transition: transform 0.2s; }
.cs-ic-card-btn:hover::after { transform: translateX(4px); }
.cs-ic-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--mint, #6decd9);
  box-shadow: 0 0 6px rgba(109,236,217,0.6);
  pointer-events: none;
  z-index: 10;
}
.cs-ic-card.active .cs-ic-progress { animation: newsProgress 4.5s linear forwards; }
.cs-infocards.paused .cs-ic-card.active .cs-ic-progress { animation-play-state: paused; }

/* == SEGMENT SLIDER == */
.cs-segment {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  padding: 16px;
  background: var(--white, #fff);
  align-items: start;
}
.cs-seg-left {
  position: sticky;
  top: 16px;
  overflow: hidden;
  border-radius: 15px;
  background: #111;
  height: calc(100vh - 32px);
  align-self: start;
}
.cs-seg-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.cs-seg-bg.active { opacity: 1; }
.cs-seg-bg img, .cs-seg-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.cs-seg-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.55) 100%);
}
.cs-seg-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  padding: 130px 48px 0;
}
.cs-seg-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.cs-seg-label-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.cs-seg-label-row .cs-seg-label { margin-bottom: 0; }
.cs-seg-arrows { display: flex; gap: 8px; }
.cs-seg-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cs-seg-arrow:hover {
  background: rgba(109,236,217,0.2);
  border-color: var(--mint, #6decd9);
  color: var(--mint, #6decd9);
}
.cs-seg-tabs { list-style: none; padding: 0; margin: 0; }
.cs-seg-tab {
  display: flex;
  align-items: center;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: color 0.25s;
}
.cs-seg-tab:hover { color: rgba(255,255,255,0.65); }
.cs-seg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.25s, transform 0.25s, margin-right 0.25s;
}
.cs-seg-tab.active { color: #fff; font-weight: 400; }
.cs-seg-tab.active .cs-seg-dot { opacity: 1; transform: scale(1); margin-right: 12px; }
.cs-seg-readmore-btn {
  position: absolute;
  left: 44px; bottom: 40px;
  z-index: 2;
  display: none;
  padding: 12px 26px;
  background: var(--mint, #6decd9);
  color: var(--black, #0d0d0d);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cs-seg-readmore-btn.active { display: inline-flex; }
.cs-seg-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--mint, #6decd9);
  box-shadow: 0 0 6px rgba(109,236,217,0.6);
  pointer-events: none;
  z-index: 3;
  animation: newsProgress 6s linear forwards;
}
.cs-segment.paused .cs-seg-progress { animation-play-state: paused; }
.cs-seg-readmore-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.cs-seg-right { position: relative; padding: 130px 44px 110px 0; min-width: 0; display: flex; flex-direction: column; align-self: stretch; }
.cs-seg-panel { display: none; }
.cs-seg-panel.active { display: flex; flex-direction: column; flex: 1; animation: segFade 0.45s ease; }
@keyframes segFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cs-seg-heading {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--black, #0d0d0d);
  margin: 0 0 20px;
  max-width: 580px;
}
.cs-seg-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.cs-seg-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--mint-light, #e7f9f0);
  color: #0d8a72;
  font-size: 13px;
  font-weight: 500;
}
.cs-seg-divider { height: 1px; background: rgba(0,0,0,0.1); margin-bottom: 26px; max-width: 580px; }
.cs-seg-body-wrap { max-width: 580px; margin-bottom: 40px; }
.cs-seg-body {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  max-height: 130px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.cs-seg-body::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  transition: opacity 0.3s;
}

.cs-seg-body-wrap.expanded .cs-seg-body::after { opacity: 0; }
.cs-seg-body-wrap.short .cs-seg-body { max-height: none; }
.cs-seg-body-wrap.short .cs-seg-body::after { display: none; }
.cs-seg-body-wrap.short .cs-seg-toggle { display: none; }
.cs-seg-body p { margin: 0 0 14px; }
.cs-seg-body p:last-child { margin-bottom: 0; }
.cs-seg-toggle {
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--black, #0d0d0d);
  cursor: pointer;
}
.cs-seg-toggle:hover { text-decoration: underline; }
.cs-seg-slider-wrap { position: relative; overflow: hidden; margin-top: auto; }
.cs-seg-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 220px;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.5) 55%, rgba(255,255,255,0.85) 80%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}
.cs-seg-next { z-index: 2; }
.cs-seg-slider { display: flex; gap: 12px; transition: transform 0.45s ease; }
.cs-seg-card {
  position: relative;
  flex: 0 0 clamp(220px, 19.5vw, 281px);
  height: clamp(290px, 26vw, 380px);
  border-radius: 15px;
  overflow: hidden;
  background: #2b2b2b;
}
.cs-seg-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-seg-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
}
.cs-seg-card-title { font-size: 14px; font-weight: 600; line-height: 1.4; color: #fff; margin: 0; }
.cs-seg-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(72.13deg, rgba(0,0,0,0.35) 22%, rgba(102,102,102,0) 79%);
}
.cs-seg-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 16px;
  border-radius: 43px;
  background: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.cs-seg-card-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-seg-card-hover {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease, ease), opacity 0.35s;
}
.cs-seg-card:hover .cs-seg-card-hover { max-height: 140px; opacity: 1; }
.cs-seg-card-hover-text { font-size: 12px; line-height: 1.65; color: rgba(255,255,255,0.72); margin: 8px 0 10px; }
.cs-seg-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint, #6decd9);
  text-decoration: none;
}
.cs-seg-card-link::after { content: '\2192'; transition: transform 0.2s; }
.cs-seg-card-link:hover::after { transform: translateX(4px); }
.cs-seg-next {
  position: absolute;
  left: clamp(220px, 19.5vw, 281px);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #0d0d0d;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 14px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.cs-seg-next:hover { transform: translate(-50%, -50%) scale(1.08); }

/* ââ RESPONSIVE ââ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px 32px; }
  .cs-nav { padding: 0 32px; }
  .cs-nav-menu { display: none; }
  .cs-hero { padding: 0 16px 72px; }
  .cs-hero-inner { grid-template-columns: 1fr; }
  .cs-products { grid-template-columns: 1fr; gap: 48px; }
  .cs-tech-inner { flex-direction: column; gap: 40px; }
  .cs-tech-stats { grid-template-columns: 1fr 1fr; }
  .cs-esg { grid-template-columns: 1fr; }
  .cs-esg-visual { position: relative; top: auto; }
  .cs-who { grid-template-columns: 1fr !important; padding: 56px 20px !important; }
  .cs-who-label-col { display: block !important; margin-bottom: 8px; }
  .cs-who-label-col { display: none; }
  .cs-contact { grid-template-columns: 1fr; }
  .cs-text-image { grid-template-columns: 1fr; }
  .cs-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cs-segment { grid-template-columns: 1fr; padding: 16px; gap: 32px; }
  .cs-seg-left { position: relative; top: auto; height: auto; min-height: 420px; }
  .cs-infocards { padding: 40px 16px; }
  .cs-ic-cardwrap { position: relative; top: auto; left: auto; transform: none; margin: 32px auto 0; }
  .cs-banner { min-height: 70vh; }
  .cs-banner-content { padding: 32px 24px 40px; }
  .cs-banner-body { margin-left: 0; }
  .cs-seg-right { padding: 8px 16px 32px; }
}

@media (max-width: 640px) {
  .cs-hero h1 { font-size: 34px; }
  .cs-hero-scroll { display: none; }
  .cs-form-row { grid-template-columns: 1fr; }
  .cs-tech-stats { grid-template-columns: 1fr; }
  .cs-footer-grid { grid-template-columns: 1fr; }
  .cs-product-images { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Footer (Figma 2069:453) ===== */
.cs-footer { padding: 80px 18px 0; background: #fff; }
.cs-footer-shell { position: relative; border-radius: 20px; overflow: hidden; isolation: isolate; padding: 26px 24px 70px;
  background: radial-gradient(75% 90% at 100% 42%, rgba(222,248,240,0.95) 0%, rgba(126,224,196,0.5) 22%, rgba(126,224,196,0) 45%), radial-gradient(110% 80% at 12% 78%, rgba(30,201,162,0.9) 0%, rgba(30,201,162,0) 60%), radial-gradient(120% 100% at 92% 108%, #04231b 0%, rgba(4,35,27,0) 45%), linear-gradient(175deg, #0d4234 0%, #0f4f3d 55%, #0b3f31 100%); }
.cs-footer-pattern { position: absolute; top: -20%; left: -35%; width: 115%; opacity: 0.18; z-index: -1; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 10%, transparent 75%); mask-image: linear-gradient(to bottom, #000 10%, transparent 75%); }
.cs-footer-top { display: grid; grid-template-columns: minmax(280px, 396px) 1fr; gap: clamp(24px, 4vw, 64px);
  background: rgba(0,0,0,0.16); border-radius: 15px; min-height: 428px; }
.cs-footer-card { border-radius: 15px; overflow: hidden; position: relative; min-height: 428px;
  background: #b9b9b9 center/cover no-repeat; display: flex; align-items: flex-end; padding: 30px; }
.cs-footer-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(72deg, rgba(0,0,0,0.3) 22%, rgba(102,102,102,0) 79%); mix-blend-mode: multiply; }
.cs-footer-card-logo { position: relative; z-index: 1; color: #fff; font-size: 15px; font-weight: 600; letter-spacing: 0.35em; }
.cs-footer-news { padding: 34px clamp(24px, 4vw, 64px) 34px 0; display: flex; flex-direction: column; }
.cs-footer-label { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.68); margin-bottom: 14px; }
.cs-footer-quote { font-size: clamp(20px, 2vw, 28px); line-height: 1.36; color: rgba(255,255,255,0.89); font-weight: 400; margin: 0 0 44px; max-width: 860px; }
.cs-footer-form-row { display: flex; align-items: center; gap: clamp(20px, 3vw, 60px); flex-wrap: wrap; }
.cs-footer-form { display: flex; gap: 14px; flex: 1 1 380px; max-width: 560px; }
.cs-footer-form input { flex: 1; background: rgba(0,0,0,0.19); border: none; border-radius: 39px; padding: 12px 20px 13px;
  color: #fff; font-size: 17px; font-family: inherit; outline: none; }
.cs-footer-form input::placeholder { color: rgba(255,255,255,0.49); }
.cs-footer-form button { background: rgba(109,236,217,0.94); color: #000; border: none; border-radius: 39px;
  padding: 12px 20px 13px; font-size: 17px; font-weight: 500; font-family: inherit; cursor: pointer; transition: background 0.3s; }
.cs-footer-form button:hover { background: #6decd9; }
.cs-footer-follow { display: flex; align-items: center; gap: 22px; color: #fff; }
.cs-footer-follow span { font-size: 14px; letter-spacing: 0.02em; opacity: 0.54; }
.cs-footer-follow a { color: #fff; display: inline-flex; opacity: 0.9; transition: opacity 0.3s; }
.cs-footer-follow a:hover { opacity: 1; }
.cs-footer-note { font-size: 14px; line-height: 20px; color: rgba(255,255,255,0.5); margin: 18px 0 0; max-width: 370px; }
.cs-footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.22); margin: 44px 0 40px; }
.cs-footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px, 3.5vw, 53px); position: relative; z-index: 1; padding: 0 6px; }
.cs-footer-col h5 { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.68); margin: 0 0 18px; }
.cs-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 17px; }
.cs-footer-col a { color: #fff; text-decoration: none; font-size: 16px; letter-spacing: 0.02em; transition: opacity 0.3s; }
.cs-footer-col a:hover { opacity: 0.75; }
.cs-footer-contact address { font-style: normal; font-size: 16px; line-height: 22px; letter-spacing: 0.02em; color: rgba(255,255,255,0.79); margin: 0 0 30px; }
.cs-footer-big { display: block; font-size: 21px; letter-spacing: 0.02em; margin-top: 10px; }
.cs-footer-bottom { display: flex; align-items: flex-start; gap: clamp(24px, 5vw, 90px); padding: 26px 24px 30px; flex-wrap: wrap; }
.cs-footer-bottom p { font-size: 15px; line-height: 22px; color: #717171; opacity: 0.72; margin: 0; }
.cs-footer-bottom-links { display: flex; gap: clamp(24px, 4vw, 80px); margin-left: auto; }
.cs-footer-bottom-links a { font-size: 15px; font-weight: 500; color: #717171; text-decoration: underline; }
@media (max-width: 900px) {
  .cs-footer-top { grid-template-columns: 1fr; }
  .cs-footer-news { padding: 0 24px 30px; }
  .cs-footer-cols { grid-template-columns: 1fr 1fr; }
}

/* Footer conversion box + ring animation (from banner arrow) */
@property --csRectA { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.cs-footer-top { position: relative; }
.cs-footer-top::before {
  content: ''; position: absolute; inset: -2px; border-radius: 17px; padding: 2px;
  background: conic-gradient(from var(--csRectA), transparent 0deg 250deg, rgba(109,236,217,0.9) 320deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.5s; pointer-events: none; z-index: 2;
}
.cs-footer-top:hover::before { opacity: 1; animation: csRectSpin 3.4s linear infinite; }
.cs-footer-top:hover { box-shadow: 0 0 34px rgba(109,236,217,0.14); transition: box-shadow 0.5s; }
@keyframes csRectSpin { to { --csRectA: 360deg; } }
.cs-footer-cta {
  display: inline-block; background: rgba(109,236,217,0.94); color: #000; text-decoration: none;
  border-radius: 39px; padding: 12px 26px 13px; font-size: 17px; font-weight: 500; transition: background 0.3s;
}
.cs-footer-cta:hover { background: #6decd9; }
.cs-footer-cta::after { content: ''; position: absolute; inset: 0; border-radius: 15px; }
.cs-footer-follow { position: relative; z-index: 1; }

/* Footer pattern spotlight */
.cs-footer-pattern { opacity: 1; }
.cs-footer-pattern svg { width: 100%; height: auto; display: block; }
.cs-footer-pattern .cs-outline { stroke: rgba(255,255,255,0.10); }
.cs-footer-shell:hover .cs-spot { opacity: 1; }
.cs-footer-shell:hover .cs-spot-halo { opacity: 0.4; }

/* Footer pattern spotlight */
.cs-footer-pattern { opacity: 1; }
.cs-footer-pattern svg { width: 100%; height: auto; display: block; }
.cs-footer-pattern .cs-outline { stroke: rgba(255,255,255,0.10); }
.cs-footer-shell:hover .cs-spot { opacity: 1; }
.cs-footer-shell:hover .cs-spot-halo { opacity: 0.4; }

/* Footer refinements */
.cs-footer-pattern path { fill: none !important; }
.cs-footer-pattern .cs-outline { stroke: rgba(255,255,255,0.07); }
.cs-footer-top { transition: background 0.5s, box-shadow 0.5s; }
.cs-footer-top:hover { background: linear-gradient(115deg, rgba(4,44,34,0.55) 0%, rgba(13,105,80,0.5) 55%, rgba(24,150,114,0.42) 100%); }

/* Center conversion box content vertically */
.cs-footer-news { justify-content: center; }
.cs-footer-quote { margin-bottom: 38px; }

/* Match Focus Text pattern stroke to footer elegance */
.cs-who-pattern--live .cs-outline { stroke-width: 0.75; stroke: rgba(23,88,65,0.09); }
.cs-who-card--green .cs-outline, .cs-who-card--dark .cs-outline, .cs-who-card--image .cs-outline, .cs-who-card--video .cs-outline { stroke: rgba(255,255,255,0.09) !important; }

/* Focus Text outline: same weight as footer (svg default 1) */
.cs-who-pattern--live svg path.cs-outline { stroke-width: 1; stroke: rgba(23,88,65,0.14); }

/* Focus Text: style ALL pattern paths like the footer does */
.cs-who-pattern--live svg path:not(.cs-spot):not(.cs-spot-halo) { fill: none !important; stroke: rgba(23,88,65,0.14); stroke-width: 1; }
.cs-who-card--green .cs-who-pattern--live svg path:not(.cs-spot):not(.cs-spot-halo),
.cs-who-card--dark .cs-who-pattern--live svg path:not(.cs-spot):not(.cs-spot-halo),
.cs-who-card--image .cs-who-pattern--live svg path:not(.cs-spot):not(.cs-spot-halo),
.cs-who-card--video .cs-who-pattern--live svg path:not(.cs-spot):not(.cs-spot-halo) { stroke: rgba(255,255,255,0.10); }

/* Identical pattern stroke everywhere: screen-pixel strokes independent of svg scale */
.cs-who-pattern--live svg path:not(.cs-spot):not(.cs-spot-halo),
.cs-footer-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { vector-effect: non-scaling-stroke; stroke-width: 0.15px; }

.cs-footer-bottom-logos { height: 34px; width: auto; margin-left: clamp(20px, 3vw, 60px); align-self: center; }

/* Focus Text spotlight: exact footer behaviour (always-on, 1px, no blur) */
.cs-who-pattern--live svg .cs-spot { stroke-width: 1 !important; opacity: 1 !important; transition: none !important; }
.cs-who-pattern--live svg .cs-spot-halo { stroke-width: 1 !important; opacity: 1 !important; filter: none !important; transition: none !important; }

/* ===== Hero variants: height + centered text ===== */
.cs-hero--h-compact { min-height: 0 !important; height: clamp(480px, 46vw, 650px) !important; }
.cs-hero--h-compact .cs-hero-inner { align-items: center; }
.cs-hero--t-center .cs-hero-news-slider { display: none; }
.cs-hero--t-center .cs-hero-inner { justify-content: center; }
.cs-hero--t-center .cs-hero-content { margin: 0 auto; text-align: center; align-items: center; max-width: 720px; }
.cs-hero--t-center .cs-hero-actions { justify-content: center; }

/* ===== Menu overlay: Focus Text backgrounds + pattern spotlight ===== */
.cs-nav-overlay-panel { position: relative; overflow: hidden; isolation: isolate; }
.cs-nav-pattern { position: absolute; top: -12%; left: -35%; width: 125%; z-index: -1; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 25%, transparent 90%); mask-image: linear-gradient(to bottom, #000 25%, transparent 90%); }
.cs-nav-pattern svg { width: 100%; height: auto; display: block; }
.cs-nav-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { fill: none !important; vector-effect: non-scaling-stroke; stroke-width: 0.15px; stroke: rgba(255,255,255,0.10); }
.cs-nav-pattern svg .cs-spot, .cs-nav-pattern svg .cs-spot-halo { stroke-width: 1 !important; opacity: 1 !important; filter: none !important; transition: none !important; }
.cs-nav-overlay-panel--dark { background: radial-gradient(85% 100% at 100% 38%, rgba(151,243,219,0.55) 0%, rgba(58,214,172,0.3) 32%, rgba(58,214,172,0) 60%), radial-gradient(120% 90% at 10% 85%, rgba(30,201,162,0.6) 0%, rgba(30,201,162,0) 62%), linear-gradient(170deg, #0c3d30 0%, #0f4f3d 50%, #0a3a2e 100%) !important; }
.cs-nav-overlay-panel--light { background: linear-gradient(59.27deg, rgba(231,249,240,0.9) 21.5%, #e7f9f0 76%) #fff !important; }
.cs-nav-overlay-panel--light .cs-nav-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { stroke: rgba(23,88,65,0.14); }

/* ===== Hero: Focus Text background colours + pattern spotlight ===== */
.cs-hero--bg-light { background: linear-gradient(59.27deg, rgba(231,249,240,0.9) 21.5%, #e7f9f0 76%) #fff; }
.cs-hero--bg-light .cs-hero-content, .cs-hero--bg-light .cs-hero-content h1, .cs-hero--bg-light .cs-hero-sub { color: #14322a; }
.cs-hero--bg-dark { background: radial-gradient(85% 100% at 100% 38%, rgba(151,243,219,0.6) 0%, rgba(58,214,172,0.3) 32%, rgba(58,214,172,0) 60%), radial-gradient(120% 90% at 10% 85%, rgba(30,201,162,0.6) 0%, rgba(30,201,162,0) 62%), linear-gradient(170deg, #0c3d30 0%, #0f4f3d 50%, #0a3a2e 100%); }
.cs-hero-pattern { position: absolute; top: -18%; left: -35%; width: 125%; z-index: 1; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 88%); mask-image: linear-gradient(to bottom, #000 20%, transparent 88%); }
.cs-hero-pattern svg { width: 100%; height: auto; display: block; }
.cs-hero-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { fill: none !important; vector-effect: non-scaling-stroke; stroke-width: 0.15px; stroke: rgba(255,255,255,0.10); }
.cs-hero--bg-light .cs-hero-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { stroke: rgba(23,88,65,0.14); }
.cs-hero-pattern svg .cs-spot, .cs-hero-pattern svg .cs-spot-halo { stroke-width: 1 !important; opacity: 1 !important; filter: none !important; transition: none !important; }
.cs-hero--bg-light .cs-hero-bg, .cs-hero--bg-dark .cs-hero-bg { display: none; }

/* Hero pattern: never any fill (same as footer/Focus Text) */
.cs-hero-pattern svg path { fill: none !important; }

/* ===== Technology sticky menu ===== */
.cs-tech-menu { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.07); }
.cs-tech-menu-inner { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); padding: 0 clamp(18px, 3vw, 42px); overflow-x: auto; scrollbar-width: none; }
.cs-tech-menu-inner::-webkit-scrollbar { display: none; }
.cs-tech-menu a { display: inline-block; padding: 15px 0 13px; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; color: #1d2327; text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; transition: color 0.25s, border-color 0.25s; }
.cs-tech-menu a:hover { color: #0f4f3d; }
.cs-tech-menu a.active { color: #0f4f3d; border-bottom-color: #6decd9; }
.cs-tech-menu-fixed { margin-left: auto; }

/* ===== Technology sections ===== */
.cs-tech { position: relative; margin: 18px; border-radius: 20px; overflow: hidden; min-height: clamp(480px, 44vw, 639px); scroll-margin-top: 80px; display: flex; }
.cs-tech-media { position: absolute; inset: 0; }
.cs-tech-media img, .cs-tech-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-tech-overlay { position: absolute; inset: 0; background: linear-gradient(86deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.66) 78%); }
.cs-tech-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(32px, 4vw, 60px); }
.cs-tech--full .cs-tech-content { margin-left: auto; width: min(560px, 52%); color: #fff; }
.cs-tech-content h2 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 500; margin: 0 0 18px; }
.cs-tech-text { font-size: 15px; line-height: 1.65; opacity: 0.85; margin: 0 0 26px; max-width: 574px; }
.cs-tech-cta { margin-bottom: 30px; }
.cs-tech-points { display: grid; gap: 14px; width: 100%; }
.cs-tech-points--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cs-tech-points--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cs-tech-points--1 { grid-template-columns: 1fr; }
.cs-tech-point { border-radius: 12px; padding: 14px 16px; background: rgba(255,255,255,0.1); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.cs-tech-point-icon { width: 28px; height: 28px; object-fit: contain; margin-bottom: 8px; display: block; }
.cs-tech-point-label { display: block; font-size: 12px; letter-spacing: 0.04em; opacity: 0.6; margin-bottom: 4px; }
.cs-tech-point p { margin: 0; font-size: 14px; line-height: 1.45; }

/* Split layout */
.cs-tech--split { display: grid; grid-template-columns: 1fr 1fr; }
.cs-tech--split .cs-tech-media { position: relative; inset: auto; min-height: 380px; }
.cs-tech--split.cs-tech--img-right .cs-tech-media { order: 2; }
.cs-tech--split.cs-tech--img-right .cs-tech-content { order: 1; }
.cs-tech--bg-light .cs-tech-content { background: #fff; color: #14322a; }
.cs-tech--bg-grey .cs-tech-content { background: #f2f2f2; color: #14322a; }
.cs-tech--bg-dark .cs-tech-content { background: radial-gradient(85% 100% at 100% 38%, rgba(151,243,219,0.5) 0%, rgba(58,214,172,0.28) 32%, rgba(58,214,172,0) 60%), radial-gradient(120% 90% at 10% 85%, rgba(30,201,162,0.55) 0%, rgba(30,201,162,0) 62%), linear-gradient(170deg, #0c3d30 0%, #0f4f3d 50%, #0a3a2e 100%); color: #fff; }
.cs-tech--split.cs-tech--bg-light .cs-tech-point, .cs-tech--split.cs-tech--bg-grey .cs-tech-point { background: rgba(20,50,42,0.06); backdrop-filter: none; }
@media (max-width: 860px) { .cs-tech--split { grid-template-columns: 1fr; } .cs-tech--split.cs-tech--img-right .cs-tech-media { order: 0; } .cs-tech-points--3, .cs-tech-points--2 { grid-template-columns: 1fr; } .cs-tech--full .cs-tech-content { width: auto; } }

/* ===== Tech Overview (FAQ) ===== */
.cs-tov { padding: clamp(50px, 6vw, 90px) clamp(18px, 3vw, 42px); scroll-margin-top: 80px; }
.cs-tov-label { display: block; font-size: 15px; font-weight: 500; color: rgba(20,50,42,0.6); margin-bottom: 34px; }
.cs-tov-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 396px); gap: clamp(30px, 4vw, 70px); align-items: start; }
.cs-tov-item { border-bottom: 1px solid rgba(0,0,0,0.18); }
.cs-tov-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 26px 6px; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; font-size: clamp(18px, 1.8vw, 26px); font-weight: 400; color: #14322a; }
.cs-tov-q svg { flex-shrink: 0; transition: transform 0.35s ease; color: #14322a; }
.cs-tov-item.open .cs-tov-q svg { transform: rotate(90deg); }
.cs-tov-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.cs-tov-a p { margin: 0 0 26px; font-size: 15px; line-height: 1.65; color: rgba(20,50,42,0.75); max-width: 640px; }
.cs-tov-card { background: linear-gradient(59.27deg, rgba(231,249,240,0.44) 21.5%, #e7f9f0 76%); border-radius: 12px; padding: clamp(26px, 3vw, 34px); position: sticky; top: 90px; }
.cs-tov-card h3 { margin: 0 0 16px; font-size: 21px; font-weight: 500; color: #14322a; }
.cs-tov-card p { font-size: 14px; line-height: 1.7; color: rgba(20,50,42,0.8); margin: 0 0 24px; }
@media (max-width: 860px) { .cs-tov-grid { grid-template-columns: 1fr; } .cs-tov-card { position: static; } }

/* ===== Navbar tech mode: burger + technology selector ===== */
.cs-nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 10px; margin-left: auto; margin-right: 14px; flex-direction: column; gap: 5px; }
.cs-nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.cs-tech-select { display: none; position: relative; margin-left: clamp(16px, 3vw, 40px); }
.cs-nav--tech .cs-nav-menu { display: none !important; }
.cs-nav--tech .cs-nav-burger { display: inline-flex; }
.cs-nav--tech .cs-tech-select { display: block; }
.cs-tech-select-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; border-radius: 39px; padding: 9px 18px 10px; font-size: 14px; font-family: inherit; cursor: pointer; transition: background 0.25s; }
.cs-tech-select-btn:hover { background: rgba(255,255,255,0.14); }
.cs-tech-select-btn em { font-style: normal; opacity: 0.55; }
.cs-tech-select-btn svg { transition: transform 0.25s; }
.cs-tech-select.open .cs-tech-select-btn svg { transform: rotate(180deg); }
.cs-tech-select-list { position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px; background: #fff; border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,0.18); list-style: none; margin: 0; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s; z-index: 60; }
.cs-tech-select.open .cs-tech-select-list { opacity: 1; visibility: visible; transform: none; }
.cs-tech-select-list button { display: block; width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 14px; color: #1d2327; padding: 10px 14px; border-radius: 9px; transition: background 0.2s; }
.cs-tech-select-list button:hover { background: #e7f9f0; }

/* ===== Tech sections: Figma corrections ===== */
.cs-tech { border-radius: 15px; }
.cs-tech-overlay { background: linear-gradient(266.18deg, rgba(0,0,0,0.765) 43.48%, rgba(102,102,102,0) 90.61%); mix-blend-mode: multiply; }
.cs-tech--full .cs-tech-content { width: min(620px, 55%); }
.cs-tech-content h2 { font-size: clamp(28px, 2.8vw, 40px); font-weight: 400; line-height: 1.32; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,0.28); width: 100%; margin: 0 0 26px; }
.cs-tech--split.cs-tech--bg-light .cs-tech-content h2, .cs-tech--split.cs-tech--bg-grey .cs-tech-content h2 { border-bottom-color: rgba(0,0,0,0.18); }
.cs-tech-text { font-size: 16px; line-height: 22px; opacity: 1; }
.cs-tech-cta { margin-bottom: 30px; }
.cs-tech-points { display: flex; flex-wrap: wrap; gap: 14px; }
.cs-tech-point { position: relative; border-radius: 15px; padding: 15px 19px 16px; min-width: 190px; max-width: 240px; flex: 0 1 214px; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; overflow: hidden; }
.cs-tech-point::before { content: ''; position: absolute; inset: 0; background: #a9a9a9; mix-blend-mode: multiply; border-radius: 15px; }
.cs-tech-point > * { position: relative; }
.cs-tech-point-label { font-size: 16px; font-weight: 600; color: #fff; opacity: 1; letter-spacing: 0; margin-bottom: 2px; }
.cs-tech-point p { font-size: 16px; line-height: 22px; color: #fff; }
.cs-tech--split.cs-tech--bg-light .cs-tech-point::before, .cs-tech--split.cs-tech--bg-grey .cs-tech-point::before { background: rgba(20,50,42,0.07); mix-blend-mode: normal; }
.cs-tech--split.cs-tech--bg-light .cs-tech-point-label, .cs-tech--split.cs-tech--bg-light .cs-tech-point p, .cs-tech--split.cs-tech--bg-grey .cs-tech-point-label, .cs-tech--split.cs-tech--bg-grey .cs-tech-point p { color: #14322a; }

/* ===== Selector dock + smooth nav transition ===== */
.cs-tech-dock { display: flex; padding: 22px clamp(18px, 3vw, 42px) 6px; min-height: 68px; }
.cs-tech-dock .cs-tech-select { display: block; }
.cs-tech-dock .cs-tech-select-btn { background: rgba(12,61,48,0.07); border: 1px solid rgba(12,61,48,0.16); color: #14322a; }
.cs-tech-dock .cs-tech-select-btn:hover { background: rgba(12,61,48,0.12); }
.cs-nav-menu { transition: opacity 0.3s ease, transform 0.3s ease; }
.cs-nav--tech .cs-nav-menu { opacity: 0; transform: translateY(-8px); pointer-events: none; position: absolute; left: 50%; }
.cs-nav-burger { opacity: 0; transform: translateY(-8px); transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s; pointer-events: none; display: inline-flex; }
.cs-nav--tech .cs-nav-burger { opacity: 1; transform: none; pointer-events: auto; }
@keyframes csSnapIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cs-tech-select--in { animation: csSnapIn 0.35s ease; }

/* ===== Tech sections: fixed split height, working columns, dock shelf ===== */
.cs-tech--split { height: clamp(480px, 44vw, 639px); min-height: 0; }
.cs-tech--split .cs-tech-media { min-height: 0; overflow: hidden; }
.cs-tech--split .cs-tech-media img, .cs-tech--split .cs-tech-media video { position: absolute; inset: 0; }
.cs-tech--split .cs-tech-content { overflow-y: auto; }
@media (max-width: 860px) { .cs-tech--split { height: auto; } .cs-tech--split .cs-tech-media { min-height: 300px; } }

.cs-tech-points--1 .cs-tech-point { flex: 1 1 100%; max-width: none; }
.cs-tech-points--2 .cs-tech-point { flex: 1 1 calc(50% - 7px); max-width: none; }
.cs-tech-points--3 .cs-tech-point { flex: 0 1 214px; max-width: 240px; }

.cs-tech-dock { min-height: 0; padding: 0; margin: 0 0 26px; display: block; }
.cs-tech-dock { background: #eef1f0; border-radius: 0 0 16px 16px; padding: 14px 24px 16px; margin: 0 18px 26px; }
.cs-tech-dock .cs-tech-select { width: fit-content; margin: 0; background: none; border-radius: 0; padding: 0; }
.cs-tech-dock .cs-tech-select-btn { border: none; background: rgba(12,61,48,0.08); }
.cs-tech-dock .cs-tech-select-btn:hover { background: rgba(12,61,48,0.14); }

/* Split media: rounded on all four corners */
.cs-tech--split .cs-tech-media img, .cs-tech--split .cs-tech-media video { border-radius: 15px; }

/* Info boxes: darkened-photo look like Figma (multiply) */
.cs-tech--full .cs-tech-point::before, .cs-tech--split.cs-tech--bg-dark .cs-tech-point::before {
  background: rgba(0,0,0,0.16); mix-blend-mode: normal;
  -webkit-backdrop-filter: brightness(0.6) saturate(0.95); backdrop-filter: brightness(0.6) saturate(0.95);
}

/* Split: panel colour on the whole section (no seam behind rounded image) */
.cs-tech--split.cs-tech--bg-light { background: #fff; }
.cs-tech--split.cs-tech--bg-grey { background: #f2f2f2; }
.cs-tech--split.cs-tech--bg-dark { background: radial-gradient(85% 100% at 100% 38%, rgba(151,243,219,0.5) 0%, rgba(58,214,172,0.28) 32%, rgba(58,214,172,0) 60%), radial-gradient(120% 90% at 10% 85%, rgba(30,201,162,0.55) 0%, rgba(30,201,162,0) 62%), linear-gradient(170deg, #0c3d30 0%, #0f4f3d 50%, #0a3a2e 100%); }
.cs-tech--split .cs-tech-content { background: none !important; }

/* Info box with icon: icon left, larger */
.cs-tech-point { display: flex; align-items: center; gap: 16px; }
.cs-tech-point-icon { width: 44px; height: 44px; margin-bottom: 0; flex-shrink: 0; }
.cs-tech-point-body { min-width: 0; }

/* Intro Text module */
.cs-intro { padding: clamp(48px, 6vw, 90px) clamp(18px, 3vw, 42px) clamp(30px, 4vw, 60px); }
.cs-intro-label { display: block; font-size: 15px; font-weight: 500; color: rgba(20,50,42,0.6); margin-bottom: 30px; }
.cs-intro-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 90px); align-items: start; }
.cs-intro-heading { font-size: clamp(32px, 3.6vw, 53px); font-weight: 400; line-height: 1.25; color: #14322a; margin: 0; }
.cs-intro-text { font-size: 16px; line-height: 22px; color: rgba(20,50,42,0.85); max-width: 520px; }
@media (max-width: 860px) { .cs-intro-grid { grid-template-columns: 1fr; } }

/* FAQ card reusing info-card style */
.cs-tov-card.cs-ic-card { position: sticky; top: 90px; opacity: 1; transform: none; width: 100%; height: auto; min-height: 480px; padding: 0; }

/* Info boxes: exact Figma colours (solid dark on photo/dark, light on light) */
.cs-tech--full .cs-tech-point::before, .cs-tech--split.cs-tech--bg-dark .cs-tech-point::before {
  background: rgba(20,20,20,0.72); mix-blend-mode: normal;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.cs-tech--split.cs-tech--bg-light .cs-tech-point::before { background: #f2f2f2; mix-blend-mode: normal; }
.cs-tech--split.cs-tech--bg-grey .cs-tech-point::before { background: #fbfbfb; mix-blend-mode: normal; }

/* Fix: burger must not affect nav flow when inactive */
.cs-nav-burger { display: none; margin-left: 0; opacity: 1; transform: none; pointer-events: auto; transition: none; }
.cs-nav--tech .cs-nav-burger { display: inline-flex; animation: csSnapIn 0.35s ease; }

/* Dock: label + selector like Figma (Phase: Technology | Explanations: ...) */
.cs-tech-dock { display: flex; align-items: center; gap: clamp(20px, 4vw, 60px); min-height: 93px; }
.cs-tech-dock-label { font-size: 15px; font-weight: 500; color: rgba(20,50,42,0.65); }

/* Intro per Figma: hairline top, heading left, text right offset down */
.cs-intro { margin: 0 18px; border-top: 1px solid rgba(0,0,0,0.25); padding: clamp(30px, 4vw, 56px) 24px clamp(40px, 5vw, 80px); }
.cs-intro-grid { grid-template-columns: 1fr minmax(0, 504px); gap: clamp(30px, 5vw, 90px); }
.cs-intro-heading { font-size: clamp(34px, 3.7vw, 53px); }
.cs-intro-text { margin-top: clamp(40px, 8vw, 116px); }
@media (max-width: 860px) { .cs-intro-text { margin-top: 0; } }

/* ===== FAQ: switching card like info-cards + compact hero h1 + green boxes ===== */
.cs-hero--h-compact .cs-hero-content h1 { font-size: clamp(32px, 3.6vw, 54px); }
.cs-tech--split.cs-tech--bg-light .cs-tech-point::before { background: #e9f4ee; }
.cs-tech--split.cs-tech--bg-grey .cs-tech-point::before { background: #eef7f2; }

.cs-tov-item { border-bottom: 1px solid rgba(0,0,0,0.14); }
.cs-tov-item .cs-tov-q { opacity: 0.35; transition: opacity 0.3s; }
.cs-tov-item.active .cs-tov-q { opacity: 1; }
.cs-tov-item .cs-tov-q:hover { opacity: 0.75; }
.cs-tov-cardwrap { position: relative; min-height: 480px; }
.cs-tov-card { position: absolute; inset: 0 auto auto 0; width: 100%; background: linear-gradient(59.27deg, rgba(231,249,240,0.6) 21.5%, #e7f9f0 76%); border-radius: 12px; padding: clamp(26px, 3vw, 34px);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s; }
.cs-tov-card.active { opacity: 1; visibility: visible; transform: none; }
.cs-tov-card h3 { margin: 0 0 16px; font-size: 21px; font-weight: 500; color: #14322a; }
.cs-tov-card p { font-size: 14px; line-height: 1.7; color: rgba(20,50,42,0.8); margin: 0 0 24px; }
.cs-tov-card-btn { display: inline-block; background: #fff; color: #14322a; text-decoration: none; border-radius: 39px; padding: 10px 22px 11px; font-size: 15px; font-weight: 500; transition: background 0.25s; }
.cs-tov-card-btn:hover { background: #d9f5e9; }
@media (max-width: 860px) { .cs-tov-cardwrap { min-height: 0; } .cs-tov-card { position: static; display: none; } .cs-tov-card.active { display: block; } }

/* Restore tech-mode positions: selector left, burger right before Contact */
.cs-nav--tech .cs-nav-burger { margin-left: auto; margin-right: 14px; }
.cs-nav--tech .cs-tech-select { margin-left: clamp(16px, 3vw, 40px); margin-right: 0; }

/* FAQ card wrap: reuse info-cards look 1:1 */
.cs-tov-wrap { position: relative; }

/* Consistent alignment: intro text + tech content start at the same 50%-line as section headings */
.cs-intro-grid { grid-template-columns: 1fr 1fr; }
.cs-intro-text { max-width: 504px; }
.cs-tech--full .cs-tech-content { width: calc(50% + clamp(32px, 4vw, 60px)); margin-left: calc(50% - clamp(32px, 4vw, 60px)); max-width: none; }
.cs-tech--full .cs-tech-content > * { max-width: 574px; }

/* Compact hero: content bottom-aligned like the front page (same baseline as cards) */
.cs-hero--h-compact .cs-hero-inner { align-items: flex-end; }
.cs-hero--h-compact .cs-hero-content { padding-bottom: 28px; }

/* FAQ card: keep the info-card inside its own column */
.cs-tov-wrap { position: relative; min-height: 520px; }
.cs-tov-wrap .cs-ic-card { position: absolute !important; top: 0 !important; left: 0 !important; right: auto !important; bottom: auto !important;
  width: 100% !important; height: 100% !important; max-width: none !important; margin: 0 !important; }

/* FAQ questions: smaller headings */
.cs-tov-q { font-size: clamp(16px, 1.4vw, 21px); padding: 22px 6px; }

/* FAQ wrap: neutralise the info-cards floating placement, stay in grid column */
.cs-tov-wrap.cs-ic-cardwrap { position: relative !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
  width: auto !important; height: auto !important; min-height: 520px; margin: 0 !important; transform: none !important; float: none !important; }

/* Lock intro + tech text to the exact banner text line (48.85vw) */
.cs-intro-grid { display: block; }
.cs-intro-heading { margin-bottom: 30px; }
.cs-intro-text { margin-left: calc(48.85vw - 42px); margin-top: clamp(30px, 5vw, 70px); max-width: 574px; }
.cs-tech--full .cs-tech-content { width: auto; max-width: none; margin-left: calc(48.85vw - 18px); padding-left: 0; }
.cs-tech--full .cs-tech-content > * { max-width: 574px; }
@media (max-width: 860px) {
  .cs-intro-text { margin-left: 0; margin-top: 0; }
  .cs-tech--full .cs-tech-content { margin-left: 0; padding-left: clamp(24px, 5vw, 40px); }
}

/* Dock tucks in under the banner (behind its rounded corners) */
.cs-hero { position: relative; z-index: 1; }
.cs-tech-dock { position: relative; z-index: 0; margin-top: -24px; padding-top: 34px; }

/* Positive nav on light green banner */
.cs-nav--positive .cs-nav-menu-item, .cs-nav--positive .cs-nav-logo, .cs-nav--positive .cs-nav-cta { color: #14322a; }
.cs-nav--positive .cs-nav-cta { border-color: rgba(20,50,42,0.4); }
.cs-nav--positive .cs-nav-burger span { background: #14322a; }
.cs-nav--positive .cs-tech-select-btn { background: rgba(12,61,48,0.08); border-color: rgba(12,61,48,0.2); color: #14322a; }

/* FAQ instance of info-cards: much smaller row titles */
#tech-overview + .cs-infocards .cs-ic-row-title { font-size: clamp(18px, 1.6vw, 24px); line-height: 1.35; }
#tech-overview + .cs-infocards .cs-ic-row { padding-top: 22px; padding-bottom: 22px; }
#tech-overview + .cs-infocards .cs-ic-chevron { width: 11px; height: 19px; }

/* FAQ card: small info boxes under the text */
.cs-tovp { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cs-tovp-box { flex: 1 1 45%; min-width: 130px; background: rgba(20,20,20,0.6); border-radius: 12px; padding: 11px 14px 12px; }
.cs-tovp-box span { display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.cs-tovp-box p { margin: 0; font-size: 13px; line-height: 1.45; color: rgba(255,255,255,0.85); }

/* FAQ card layout: no tag, text top, CTA after text, info boxes pinned bottom */
#tech-overview + .cs-infocards .cs-ic-card-tag { display: none; }
#tech-overview + .cs-infocards .cs-ic-card-body { position: absolute; inset: 0; height: auto; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
  padding: clamp(22px, 2vw, 30px); background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 100%); }
#tech-overview + .cs-infocards .cs-ic-card-title { margin-top: 0; }
#tech-overview + .cs-infocards .cs-ic-card-btn { margin-top: 14px; }
#tech-overview + .cs-infocards .cs-tovp { margin-top: auto; width: 100%; }

/* Tech info boxes: fill the full row width edge-to-edge per chosen columns */
.cs-tech-content > .cs-tech-points { max-width: none !important; width: 100%; }
.cs-tech-points--3 .cs-tech-point { flex: 1 1 calc(33.333% - 10px); max-width: none; }
.cs-tech-points--2 .cs-tech-point { flex: 1 1 calc(50% - 7px); max-width: none; }

/* Tech sections: more bottom padding */
.cs-tech .cs-tech-content { padding-bottom: clamp(56px, 6vw, 96px); }

/* Tech info boxes: same text sizes as the FAQ card boxes */
.cs-tech-point-label { font-size: 14px; }
.cs-tech-point p { font-size: 13px; line-height: 1.45; }

/* Heading divider spans the full content width (like the boxes) */
.cs-tech-content h2 { max-width: none !important; width: 100%; }

/* Box inner text flush with body text: pull boxes left by their padding */
.cs-tech-content > .cs-tech-points { margin-left: 0; width: 100% !important; }

/* Glass CTA readable on light split panels */
.cs-tech--split.cs-tech--bg-light .cs-tech-cta, .cs-tech--split.cs-tech--bg-grey .cs-tech-cta { color: #14322a; border-color: rgba(20,50,42,0.35); }

/* Split geometry per Figma (image 45.3%) so split text sits on the same 48.85vw line as fullscreen */
.cs-tech--split { grid-template-columns: 45.3% 1fr; }
.cs-tech--split .cs-tech-content { padding-left: calc(3.55vw - 2px); }
@media (max-width: 860px) {
  .cs-tech--split { grid-template-columns: 1fr; }
  .cs-tech--split .cs-tech-content { padding-left: clamp(24px, 5vw, 40px); }
}

/* Tech section headings: a notch smaller */
.cs-tech-content h2 { font-size: clamp(24px, 2.2vw, 32px); }

/* Hero: white / light grey background option */
.cs-hero--bg-white { background: #f2f2f2; }
.cs-hero--bg-white .cs-hero-content, .cs-hero--bg-white .cs-hero-content h1, .cs-hero--bg-white .cs-hero-sub { color: #14322a; }
.cs-hero--bg-white .cs-hero-bg { display: none; }
.cs-hero--bg-white .cs-hero-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { stroke: rgba(23,88,65,0.14); }

/* Tech mode: let the selector dropdown escape the nav pill */
.cs-nav--tech { overflow: visible !important; }

/* Positive nav only while at the top (transparent over light banner) */
.cs-nav--positive:not(.scrolled) .cs-nav-menu-item,
.cs-nav--positive:not(.scrolled) .cs-nav-logo,
.cs-nav--positive:not(.scrolled) .cs-nav-cta { color: #14322a !important; }
.cs-nav--positive:not(.scrolled) .cs-nav-cta { border-color: rgba(20,50,42,0.4) !important; }
.cs-nav--positive:not(.scrolled) .cs-nav-burger span { background: #14322a; }

/* Scrolled (dark pill): back to white regardless of positive */
.cs-nav--positive.scrolled .cs-nav-menu-item,
.cs-nav--positive.scrolled .cs-nav-logo,
.cs-nav--positive.scrolled .cs-nav-cta { color: #fff !important; }
.cs-nav--positive.scrolled .cs-nav-cta { border-color: rgba(255,255,255,0.35) !important; }
.cs-nav--positive.scrolled .cs-nav-burger span { background: #fff; }

/* Technology banner: 5th element pattern + mouse spotlight */
.cs-technology { position: relative; overflow: hidden; isolation: isolate; }
.cs-technology-pattern { position: absolute; top: -15%; left: -35%; width: 125%; z-index: 0; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 90%); mask-image: linear-gradient(to bottom, #000 20%, transparent 90%); }
.cs-technology-pattern svg { width: 100%; height: auto; display: block; }
.cs-technology-pattern svg path { fill: none !important; }
.cs-technology-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { vector-effect: non-scaling-stroke; stroke-width: 0.15px; stroke: rgba(255,255,255,0.14); }
.cs-technology-pattern svg .cs-spot, .cs-technology-pattern svg .cs-spot-halo { stroke-width: 1 !important; opacity: 1 !important; filter: none !important; transition: none !important; }
.cs-technology > *:not(.cs-technology-pattern) { position: relative; z-index: 1; }

/* Technology banner pattern: above image/content like Focus Text */
.cs-technology-pattern { z-index: 2; }
.cs-technology > *:not(.cs-technology-pattern) { z-index: 1; }
.cs-technology-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { stroke: rgba(255,255,255,0.18); }

/* Technology banner: clearly visible pattern strokes */
.cs-technology-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { stroke-width: 0.5px; stroke: rgba(255,255,255,0.22); }
