/* ââ 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; padding: clamp(30px, 4vw, 56px) 24px clamp(40px, 5vw, 80px); }
.cs-intro--divider { border-top: 1px solid rgba(0,0,0,0.25); }
.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); }



/* FAQ on Technology: keep 96px top, slimmer bottom (48px), no stretch */
#tech-overview + .cs-infocards { position: relative; padding-bottom: 48px; min-height: 704px !important; }
#tech-overview + .cs-infocards .cs-ic-cardwrap { top: 96px !important; bottom: auto !important; transform: none !important; }

/* Hero: hide the news card placeholder when no cards exist */
.cs-hero-news-slider.is-empty { visibility: hidden !important; }

/* Compact hero without news cards: lower banner height = less air above the h1 */
.cs-hero--h-compact:has(.cs-hero-news-slider.is-empty) { height: clamp(430px, 39vw, 590px) !important; }

/* Image banner: body text like the rest, aligned to the shared text line */
.cs-banner-body { font-size: 16px; line-height: 22px; max-width: 574px; margin-left: calc(45.85vw - 16px); }
@media (max-width: 860px) { .cs-banner-body { margin-left: 0; } }

/* Text module: light-weight heading scale against 16px body */
.cs-intro-text h2, .cs-intro-text h3, .cs-intro-text h4 { font-weight: 400; color: #14322a; margin: 1.4em 0 0.5em; line-height: 1.3; }
.cs-intro-text h2:first-child, .cs-intro-text h3:first-child, .cs-intro-text h4:first-child { margin-top: 0; }
.cs-intro-text h2 { font-size: clamp(26px, 2.2vw, 32px); }
.cs-intro-text h3 { font-size: 21px; }
.cs-intro-text h4 { font-size: 18px; }
.cs-intro-text p { margin: 0 0 1em; }
.cs-intro-text strong { font-weight: 600; }

/* Buttons inside the Text module content */
.cs-intro-text a[class*="cs-btn"] { display: inline-block; text-decoration: none; margin: 8px 12px 8px 0; }
.cs-intro-text .cs-btn-glass { color: #14322a; border-color: rgba(20,50,42,0.35); }

/* Text module buttons: light-context colours incl. hover (buttons were designed for dark surfaces) */
.cs-intro-text a.cs-btn-mint, .cs-intro-text a.cs-btn-mint:hover { color: #04231b !important; }
.cs-intro-text a.cs-btn-neon, .cs-intro-text a.cs-btn-neon:hover { color: #0f4f3d !important; border-color: rgba(15,79,61,0.5) !important; }
.cs-intro-text a.cs-btn-glass { color: #14322a !important; background: rgba(12,61,48,0.06) !important; border-color: rgba(20,50,42,0.16) !important; }
.cs-intro-text a.cs-btn-glass:hover { color: #14322a !important; background: rgba(12,61,48,0.12) !important; border-color: rgba(20,50,42,0.28) !important; }

/* Mint button in text content: no outline/border */
.cs-intro-text a.cs-btn-mint, .cs-intro-text a.cs-btn-mint:hover { border: none !important; outline: none !important; box-shadow: none !important; text-decoration: none !important; }

/* Glass button in text content: no mint glow */
.cs-intro-text a.cs-btn-glass, .cs-intro-text a.cs-btn-glass:hover { box-shadow: none !important; }

/* Module spacing control */
.cs-modwrap--micro { margin-bottom: -40px; }
.cs-modwrap--none { margin-bottom: -80px; }

/* Module spacing: top variants */
.cs-modwrap--top-micro { margin-top: -40px; }
.cs-modwrap--top-none { margin-top: -80px; }
.cs-modwrap { position: relative; }

/* ===== Text+Image v2: themes, rounding, alignment, play, lightbox, scrolly ===== */
.cs-text-image { padding-left: 42px; padding-right: 42px; transition: background 0.5s ease; }
.cs-ti--grey { background: #f7f7f7; }
.cs-ti--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%); color: #fff; }
.cs-ti--dark .cs-ti-body { color: rgba(255,255,255,0.78); }
.cs-ti-img { position: relative; border-radius: 15px; overflow: hidden; background: none; }
.cs-ti-img img { border-radius: 15px; display: block; }
.cs-text-image.img-right { direction: rtl; grid-template-columns: calc(51.15vw - 42px) minmax(0, 1fr); gap: clamp(30px, 4vw, 80px); }
.cs-text-image.img-right > * { direction: ltr; }
@media (max-width: 860px) { .cs-text-image.img-right { grid-template-columns: 1fr; } }

.cs-ti-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 74px; height: 74px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5); background: rgba(0,0,0,0.28); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s, transform 0.3s; }
.cs-ti-play svg { margin-left: 4px; }
.cs-ti-play:hover { background: rgba(0,0,0,0.45); transform: translate(-50%, -50%) scale(1.06); }

.cs-videobox { position: fixed; inset: 0; z-index: 200; background: rgba(4,20,15,0.82); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; padding: 4vw; }
.cs-videobox.open { opacity: 1; }
.cs-videobox-inner { position: relative; width: min(1100px, 92vw); }
.cs-videobox-inner video { width: 100%; border-radius: 15px; display: block; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.cs-videobox-close { position: absolute; top: -46px; right: 0; background: none; border: none; color: #fff; font-size: 34px; line-height: 1; cursor: pointer; opacity: 0.8; }
.cs-videobox-close:hover { opacity: 1; }

/* Sticky scroll groups (consecutive same-side text+image) */
.cs-tig { position: relative; transition: background 0.5s ease; }
.cs-tig[data-theme="grey"] { background: #f7f7f7; }
.cs-tig[data-theme="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-tig .cs-text-image { background: transparent !important; min-height: 68vh; }
.cs-tig .cs-text-image .cs-ti-img { opacity: 0; pointer-events: none; }
.cs-tig-sticky { position: absolute; top: 0; bottom: 0; pointer-events: none; z-index: 2; }
.cs-tig-stack { position: sticky; top: 0; }
.cs-tig-img { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; border-radius: 15px; overflow: hidden; pointer-events: none; }
.cs-tig-img.active { opacity: 1; pointer-events: auto; }
.cs-tig-img .cs-ti-play { pointer-events: auto; }
.cs-tig-img img { width: 100%; height: 100%; object-fit: cover; }

/* Text+Image: inline background video */
.cs-ti-video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 15px; }

/* ===== Scrollytelling v2: pinned screen, crossfading text/media ===== */
.cs-tig-screen { position: sticky; top: 0; height: 100vh; display: grid; grid-template-columns: minmax(0, 1fr) calc(51.15vw - 42px);
  gap: clamp(30px, 4vw, 80px); align-items: center; padding: 24px 42px; box-sizing: border-box; z-index: 1; }
.cs-tig-screen.img-left { direction: rtl; grid-template-columns: calc(51.15vw - 42px) minmax(0, 1fr); }
.cs-tig-screen.img-left > * { direction: ltr; }
.cs-tig-screen:not(.img-left) .cs-tig-texts { order: -1; }
.cs-tig-stack { position: relative; height: min(72vh, 100%); min-height: 380px; border-radius: 15px; }
.cs-tig-img { position: absolute; inset: 0; border-radius: 15px; overflow: hidden; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
.cs-tig-img.active { opacity: 1; pointer-events: auto; }
.cs-tig-img img, .cs-tig-img video { width: 100%; height: 100%; object-fit: cover; }
.cs-tig-texts { display: grid; }
.cs-tig-text { grid-area: 1 / 1; opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; pointer-events: none; }
.cs-tig-text.active { opacity: 1; transform: none; pointer-events: auto; }
.cs-tig-step { visibility: hidden !important; min-height: 60vh !important; height: 60vh; padding: 0 !important; overflow: hidden; background: transparent !important; }

/* ===== Scrollytelling: 16px frame like the front page slider, centered text, snappier fades ===== */
.cs-tig-screen { padding: 16px !important; gap: clamp(24px, 3vw, 60px); grid-template-columns: minmax(0, 1fr) calc(51.15vw - 16px); align-items: center; }
.cs-tig-screen.img-left { grid-template-columns: calc(51.15vw - 16px) minmax(0, 1fr); }
.cs-tig-stack { height: calc(100vh - 32px) !important; min-height: 0 !important; }
.cs-tig-texts { align-content: center; height: 100%; }
.cs-tig-text { align-self: center; transition: opacity 0.3s ease, transform 0.3s ease; }
.cs-tig-img { transition: opacity 0.4s ease; }
.cs-tig-step { min-height: 75vh !important; height: 75vh; }

/* Buttons readable on light module themes (also inside scroll groups) */
.cs-ti--light .cs-btn-glass, .cs-ti--grey .cs-btn-glass, .cs-tig[data-theme="light"] .cs-btn-glass, .cs-tig[data-theme="grey"] .cs-btn-glass {
  color: #14322a !important; border-color: rgba(20,50,42,0.3) !important; background: rgba(12,61,48,0.06) !important; box-shadow: none !important; }
.cs-ti--light .cs-btn-neon, .cs-ti--grey .cs-btn-neon, .cs-tig[data-theme="light"] .cs-btn-neon, .cs-tig[data-theme="grey"] .cs-btn-neon {
  color: #0f4f3d !important; border-color: rgba(15,79,61,0.5) !important; }

/* Scrolly text: align left edge with the image banner heading (16px + 3vw) */
.cs-tig-text { padding-left: 3vw; padding-right: 2vw; }

/* Scrolly stack: neutralise old sticky rule so the 16px bottom padding holds */
.cs-tig-screen .cs-tig-stack { position: relative !important; top: auto !important; transform: none !important; align-self: center; }

/* Scrolly clones: kill inherited 4/5 aspect so they stay inside the 16px frame */
.cs-tig-img.cs-ti-img { aspect-ratio: auto !important; height: 100% !important; width: 100% !important; }

/* ===== Text+Image background: rounded panel with the same 16px frame as the image ===== */
.cs-text-image, .cs-ti--grey, .cs-ti--dark { background: none !important; }
.cs-text-image { position: relative; isolation: isolate; }
.cs-text-image::before { content: ''; position: absolute; top: 16px; bottom: 16px; left: 16px; right: 16px; border-radius: 15px; z-index: -1; background: transparent; transition: background 0.5s ease; }
.cs-ti--grey::before { background: #f7f7f7; }
.cs-ti--dark::before { 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%); }

/* Dark panel: negative (white) text */
.cs-ti--dark .cs-ti-heading, .cs-ti--dark .cs-ti-label { color: #fff !important; }
.cs-ti--dark .cs-ti-body { color: rgba(255,255,255,0.82) !important; }

/* Scrolly groups: same rounded panel + negative text on dark */
.cs-tig, .cs-tig[data-theme="grey"], .cs-tig[data-theme="dark"] { background: none !important; }
.cs-tig { position: relative; isolation: isolate; }
.cs-tig::before { content: ''; position: absolute; top: 16px; bottom: 16px; left: 16px; right: 16px; border-radius: 15px; z-index: -1; background: transparent; transition: background 0.5s ease; }
.cs-tig[data-theme="grey"]::before { background: #f7f7f7; }
.cs-tig[data-theme="dark"]::before { 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-tig[data-theme="dark"] .cs-tig-text .cs-ti-heading, .cs-tig[data-theme="dark"] .cs-tig-text .cs-ti-label { color: #fff !important; }
.cs-tig[data-theme="dark"] .cs-tig-text .cs-ti-body { color: rgba(255,255,255,0.82) !important; }

/* v2.7.0: scrolly panel on sticky screen so 16px frame is always visible while pinned */
.cs-tig::before { display: none; }
.cs-tig-screen::before { content: ''; position: absolute; top: 16px; bottom: 16px; left: 16px; right: 16px; border-radius: 15px; z-index: -1; background: transparent; transition: background 0.5s ease; pointer-events: none; }
.cs-tig[data-theme='grey'] .cs-tig-screen::before { background: #f7f7f7; }
.cs-tig[data-theme='dark'] .cs-tig-screen::before { 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%); }

/* ===== v2.7.1: Text+Image mint theme + 5th element pattern with spotlight ===== */
.cs-ti--mint, .cs-tig[data-theme="mint"] { background: none !important; }
.cs-ti--mint::before { background: #fff linear-gradient(59.27deg, rgba(231,249,240,0.44) 21.5%, #e7f9f0 76%); }
.cs-tig[data-theme='mint'] .cs-tig-screen::before { background: #fff linear-gradient(59.27deg, rgba(231,249,240,0.44) 21.5%, #e7f9f0 76%); }
.cs-ti--mint .cs-btn-glass, .cs-tig[data-theme="mint"] .cs-btn-glass { color: #14322a !important; border-color: rgba(20,50,42,0.3) !important; background: rgba(12,61,48,0.06) !important; box-shadow: none !important; }
.cs-ti--mint .cs-btn-neon, .cs-tig[data-theme="mint"] .cs-btn-neon { color: #0f4f3d !important; border-color: rgba(15,79,61,0.5) !important; }
.cs-ti-pattern { position: absolute; top: 16px; bottom: 16px; left: 16px; right: 16px; border-radius: 15px; overflow: hidden; pointer-events: none; z-index: -1; opacity: 0; transition: opacity 0.5s ease; }
.cs-ti--dark .cs-ti-pattern, .cs-ti--mint .cs-ti-pattern, .cs-tig[data-theme='dark'] .cs-tig-screen > .cs-ti-pattern, .cs-tig[data-theme='mint'] .cs-tig-screen > .cs-ti-pattern { opacity: 1; }
.cs-tig-step .cs-ti-pattern { display: none; }
.cs-ti-pattern svg { position: absolute; right: -3%; bottom: -12%; width: 32%; height: auto; display: block; transform: rotate(-14deg); }
.cs-ti-pattern path { fill: none !important; }
.cs-ti--mint .cs-ti-pattern .cs-outline, .cs-tig[data-theme='mint'] .cs-ti-pattern .cs-outline { stroke: rgba(20,80,60,0.10); }
.cs-ti--dark .cs-ti-pattern .cs-outline, .cs-tig[data-theme='dark'] .cs-ti-pattern .cs-outline { stroke: rgba(255,255,255,0.08); }
.cs-ti-pattern .cs-spot, .cs-ti-pattern .cs-spot-halo { opacity: 0; transition: opacity 0.6s ease; }
.cs-text-image:hover .cs-ti-pattern .cs-spot, .cs-tig-screen:hover .cs-ti-pattern .cs-spot { opacity: 1; }
.cs-text-image:hover .cs-ti-pattern .cs-spot-halo, .cs-tig-screen:hover .cs-ti-pattern .cs-spot-halo { opacity: 0.4; }

/* v2.7.2: TI pattern strokes like footer/who - non-scaling, all paths, always-on spot */
.cs-ti-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { fill: none !important; vector-effect: non-scaling-stroke; stroke-width: 0.15px; }
.cs-ti--dark .cs-ti-pattern svg path:not(.cs-spot):not(.cs-spot-halo), .cs-tig[data-theme='dark'] .cs-ti-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { stroke: rgba(255,255,255,0.12); }
.cs-ti--mint .cs-ti-pattern svg path:not(.cs-spot):not(.cs-spot-halo), .cs-tig[data-theme='mint'] .cs-ti-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { stroke: rgba(23,88,65,0.14); }
.cs-ti-pattern svg .cs-spot { vector-effect: non-scaling-stroke; stroke-width: 1px !important; opacity: 1 !important; transition: none !important; }
.cs-ti-pattern svg .cs-spot-halo { vector-effect: non-scaling-stroke; stroke-width: 1px !important; opacity: 1 !important; filter: none !important; transition: none !important; }

/* v2.7.3: TI pattern spans the whole panel like the footer (was hidden behind the image in the corner) */
.cs-ti-pattern svg { position: absolute; left: 0; right: auto; top: 50%; bottom: auto; width: 100%; height: auto; transform: translateY(-50%); display: block; }

/* v2.7.4: standalone TI panel hugs the image (16px frame from the image, not the section box) */
.cs-text-image::before { top: 104px; bottom: 104px; }
.cs-text-image.img-right::before { right: 26px; left: 16px; }
.cs-text-image.img-left::before { left: 26px; right: 16px; }
.cs-text-image .cs-ti-pattern { top: 104px; bottom: 104px; }
.cs-text-image.img-right .cs-ti-pattern { right: 26px; left: 16px; }
.cs-text-image.img-left .cs-ti-pattern { left: 26px; right: 16px; }
/* scrolly screen keeps the plain 16px frame */
.cs-tig-screen::before, .cs-tig-screen > .cs-ti-pattern { top: 16px; bottom: 16px; left: 16px; right: 16px; }

/* v2.7.5: img-left actually puts the image left; tighter module rhythm (16px between panels) */
.cs-text-image.img-left { direction: ltr; grid-template-columns: calc(51.15vw - 42px) minmax(0, 1fr); }
.cs-text-image { padding-top: 24px; padding-bottom: 24px; }
.cs-text-image::before, .cs-text-image .cs-ti-pattern { top: 8px; bottom: 8px; }

/* v2.7.6: standalone TI media matches the scrolly format (viewport height, not 4/5 ratio) */
.cs-text-image .cs-ti-img { aspect-ratio: auto; height: calc(100vh - 32px); }
.cs-text-image .cs-ti-img img, .cs-text-image .cs-ti-img video { width: 100%; height: 100%; object-fit: cover; }

/* v2.7.7: aligned panels; pattern over image + on grey, faded middle; heading aligns with image banner */
.cs-text-image.img-right::before, .cs-text-image.img-left::before, .cs-text-image.img-right .cs-ti-pattern, .cs-text-image.img-left .cs-ti-pattern { left: 16px; right: 16px; }
.cs-ti-pattern { z-index: 1; -webkit-mask-image: radial-gradient(55% 55% at 50% 50%, transparent 0%, rgba(0,0,0,0.2) 45%, #000 78%); mask-image: radial-gradient(55% 55% at 50% 50%, transparent 0%, rgba(0,0,0,0.2) 45%, #000 78%); }
.cs-ti--grey .cs-ti-pattern, .cs-tig[data-theme='grey'] .cs-tig-screen > .cs-ti-pattern { opacity: 1; }
.cs-ti--grey .cs-ti-pattern svg path:not(.cs-spot):not(.cs-spot-halo), .cs-tig[data-theme='grey'] .cs-ti-pattern svg path:not(.cs-spot):not(.cs-spot-halo) { stroke: rgba(23,88,65,0.14); }
.cs-text-image .cs-ti-content { padding-left: 26px; }

/* v2.7.8: pattern lives inside the image only; image fills the panel side edge-to-edge */
.cs-ti-pattern { top: 0 !important; bottom: 0 !important; left: 0 !important; right: 0 !important; mask-image: none !important; -webkit-mask-image: none !important; }
.cs-ti-img { position: relative; }
.cs-tig-img .cs-ti-pattern, .cs-ti-img .cs-ti-pattern { opacity: 1; }
.cs-text-image .cs-ti-img { height: calc(100vh - 32px); margin-top: -16px; margin-bottom: -16px; }
.cs-text-image.img-right .cs-ti-img { margin-right: -26px; }
.cs-text-image.img-left .cs-ti-img { margin-left: -26px; }

/* v2.7.9: pattern at footer scale - viewport width, centered, cropped by the image */
.cs-ti-pattern svg { width: 100vw; height: auto; left: 50%; top: 50%; right: auto; bottom: auto; transform: translate(-50%, -50%); }

/* v2.8.0: play button above the pattern */
.cs-ti-play { z-index: 3; }

/* v2.8.1: adjustable spacing on Text+Image (Design tab); panel follows the padding */
.cs-text-image { padding-top: var(--ti-pt, 24px); padding-bottom: var(--ti-pb, 24px); }
.cs-text-image::before { top: calc(var(--ti-pt, 24px) - 16px); bottom: calc(var(--ti-pb, 24px) - 16px); }

/* v2.8.2: restore stacked (crossfading) clones in scroll groups - the standalone position:relative rule broke them */
.cs-tig-img.cs-ti-img { position: absolute !important; top: 0; left: 0; width: 100% !important; height: 100% !important; margin: 0 !important; }

/* ===== v2.8.5: Contact form + FAQ modules ===== */
.cs-cform { position: relative; margin: 16px; border-radius: 20px; overflow: hidden; padding: clamp(40px, 5vw, 70px) 42px; min-height: 620px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 60px; align-items: end; background: #3a4a44; }
.cs-cform-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cs-cform-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(62deg, rgba(0,0,0,0.45) 22%, rgba(102,102,102,0) 79%); }
.cs-cform-inner { display: contents; }
.cs-cform-panel { position: relative; z-index: 2; background: rgba(30,30,30,0.35); border-radius: 15px; padding: clamp(28px, 3vw, 48px); }
.cs-cform-label { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.68); display: block; margin-bottom: 18px; }
.cs-cform-quote { font-size: 28px; line-height: 38px; color: rgba(255,255,255,0.89); font-weight: 400; margin: 0 0 34px; }
.cs-cform-form { display: flex; flex-wrap: wrap; gap: 13px; }
.cs-cform-input { flex: 1 1 calc(50% - 13px); min-width: 180px; height: 49px; border-radius: 39px; border: 0; background: rgba(0,0,0,0.28); color: #fff; padding: 0 20px; font: 500 17px/23px Montserrat, sans-serif; }
.cs-cform-input::placeholder { color: rgba(255,255,255,0.49); }
.cs-cform-input.is-full { flex-basis: 100%; }
.cs-cform-input.is-area { height: 120px; border-radius: 20px; padding: 14px 20px; resize: vertical; }
.cs-cform-submit { margin-left: auto; }
.cs-cform-note { font-size: 14px; line-height: 20px; color: rgba(255,255,255,0.5); margin-top: 18px; max-width: 420px; }
.cs-cform-side { position: relative; z-index: 2; align-self: end; color: #fff; font-size: 16px; line-height: 22px; max-width: 504px; }
.cs-faq { padding: 60px 42px; }
.cs-faq-label { font-size: 15px; font-weight: 600; }
.cs-faq-wrap { position: relative; margin-top: 27px; }
.cs-faq-item { border-top: 1px solid rgba(0,0,0,0.15); }
.cs-faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.15); }
.cs-faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: 0; cursor: pointer; padding: 31px 0; font: 400 25px/35px Montserrat, sans-serif; color: #0d0d0d; opacity: 0.45; transition: opacity 0.3s; text-align: left; }
.cs-faq-q span { max-width: 515px; }
.cs-faq-item.active .cs-faq-q, .cs-faq-q:hover { opacity: 1; }
.cs-faq-chevron { flex: none; color: #0d0d0d; height: 20px; width: 12px; }
.cs-faq-cards { position: absolute; top: 27px; left: 49.64%; right: 22.15%; }
.cs-faq-card { display: none; background: #e7f9f0; border-radius: 15px; padding: 34px; }
.cs-faq-card.active { display: block; }
.cs-faq-card-title { font-size: 18px; font-weight: 500; line-height: 23px; margin: 0 0 20px; }
.cs-faq-card-body { font-size: 16px; line-height: 21px; opacity: 0.8; }
.cs-faq-card-btn { margin-top: 24px; display: inline-flex; }

/* v2.8.6: contact page polish - more space quote/fields, smaller FAQ questions, side text aligns with FAQ card */
.cs-cform-quote { margin-bottom: 56px; }
.cs-faq-q { font-size: 20px; line-height: 30px; }
.cs-cform { grid-template-columns: calc(49.64vw - 118px) minmax(0, 1fr); }

/* v2.8.7: left-aligned hero text variant (aligns with the 68px heading line) */
.cs-hero--t-left .cs-hero-content { margin-left: 48px; margin-right: auto; text-align: left; }

/* v2.8.8: hero t-left - pin the grid item to the left edge */
.cs-hero--t-left .cs-hero-content { justify-self: start !important; margin-left: 48px !important; margin-right: 0 !important; text-align: left; }

/* v2.8.9: hero t-left - swap grid columns (content left, empty card right) */
.cs-hero--t-left .cs-hero-content { grid-column: 1; grid-row: 1; }
.cs-hero--t-left .cs-hero-news-slider { grid-column: 2; grid-row: 1; }

/* v2.9.0: even more air between the quote and the form fields */
.cs-cform-quote { margin-bottom: 96px; }

/* v2.9.1: hero t-center - content spans the grid, centered, centered text */
.cs-hero--t-center .cs-hero-content { grid-column: 1 / -1; grid-row: 1; justify-self: center !important; margin: 0 auto !important; text-align: center; }
.cs-hero--t-center .cs-hero-content > * { margin-left: auto; margin-right: auto; }
.cs-hero--t-center .cs-hero-news-slider.is-empty { display: none; }

/* v2.9.2: quantity slider in the contact form with follow-along minimum-order popup */
.cs-cform-range { flex-basis: 100%; color: #fff; margin-top: 10px; }
.cs-cform-range-head { display: flex; justify-content: space-between; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.68); margin-bottom: 12px; }
.cs-cform-range-value { color: #fff; }
.cs-cform-range-track { position: relative; }
.cs-cform-range input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 3px; background: rgba(0,0,0,0.28); outline: none; display: block; }
.cs-cform-range input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #6decd9; cursor: pointer; border: 0; }
.cs-cform-range input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #6decd9; cursor: pointer; border: 0; }
.cs-cform-range-pop { position: absolute; bottom: calc(100% + 12px); transform: translateX(-50%); background: #0d0d0d; color: #fff; font-size: 13px; line-height: 18px; font-weight: 500; padding: 8px 12px; border-radius: 8px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s ease, left 0.05s linear; }
.cs-cform-range-pop::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #0d0d0d; }
.cs-cform-range-pop.show { opacity: 1; }

/* ===== v2.9.3: light green button variant + every button variant adapted to every background ===== */
.cs-btn-lightgreen { 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-lightgreen { background: #e7f9f0 !important; color: #0d0d0d !important; }
.cs-btn-lightgreen:hover { background: #d3f2e4 !important; }
/* glass + neon adapted on ALL light contexts */
.cs-ti--light .cs-btn-glass, .cs-ti--grey .cs-btn-glass, .cs-ti--mint .cs-btn-glass, .cs-tig[data-theme='light'] .cs-btn-glass, .cs-tig[data-theme='grey'] .cs-btn-glass, .cs-tig[data-theme='mint'] .cs-btn-glass, .cs-intro .cs-btn-glass, .cs-faq .cs-btn-glass, .cs-hero--bg-white .cs-btn-glass, .cs-hero--bg-light .cs-btn-glass, .cs-who-card--light .cs-btn-glass, .cs-who-card--pattern .cs-btn-glass { color: #14322a !important; border-color: rgba(20,50,42,0.3) !important; background: rgba(12,61,48,0.06) !important; box-shadow: none !important; }
.cs-ti--light .cs-btn-neon, .cs-ti--grey .cs-btn-neon, .cs-ti--mint .cs-btn-neon, .cs-tig[data-theme='light'] .cs-btn-neon, .cs-tig[data-theme='grey'] .cs-btn-neon, .cs-tig[data-theme='mint'] .cs-btn-neon, .cs-intro .cs-btn-neon, .cs-faq .cs-btn-neon, .cs-hero--bg-white .cs-btn-neon, .cs-hero--bg-light .cs-btn-neon, .cs-who-card--light .cs-btn-neon, .cs-who-card--pattern .cs-btn-neon { color: #0f4f3d !important; border-color: rgba(15,79,61,0.5) !important; }
/* light green gets a subtle outline on light contexts so it reads as a button */
.cs-ti--light .cs-btn-lightgreen, .cs-ti--grey .cs-btn-lightgreen, .cs-ti--mint .cs-btn-lightgreen, .cs-tig[data-theme='light'] .cs-btn-lightgreen, .cs-tig[data-theme='grey'] .cs-btn-lightgreen, .cs-tig[data-theme='mint'] .cs-btn-lightgreen, .cs-intro .cs-btn-lightgreen, .cs-faq .cs-btn-lightgreen, .cs-hero--bg-white .cs-btn-lightgreen, .cs-hero--bg-light .cs-btn-lightgreen, .cs-who-card--light .cs-btn-lightgreen, .cs-who-card--pattern .cs-btn-lightgreen { border: 1px solid rgba(15,79,61,0.18) !important; }

/* v2.9.4: mint focus ring on form fields (no default blue) */
.cs-cform-input:focus { outline: none; box-shadow: 0 0 0 2px rgba(109,236,217,0.6); }
.cs-cform-range input[type=range]:focus { outline: none; }
.cs-cform-range input[type=range]:focus-visible { box-shadow: 0 0 0 2px rgba(109,236,217,0.4); border-radius: 3px; }

/* v2.9.6: smaller range popup (wraps to two lines) so it can follow the thumb */
.cs-cform-range-pop { white-space: normal; width: max-content; max-width: 190px; text-align: center; font-size: 12px; line-height: 16px; padding: 7px 11px; }

/* v2.9.7: note aligns with the submit button top (sits beside it) */
.cs-cform-note { margin-top: -42px; max-width: calc(100% - 170px); }

/* v2.9.8: smaller text in the contact form fields */
.cs-cform-input { font-size: 15px; line-height: 21px; }

/* v2.9.9: soft mint glow on focused fields instead of a hard outline */
.cs-cform-input:focus { outline: none; box-shadow: 0 0 22px rgba(109,236,217,0.35), 0 0 6px rgba(109,236,217,0.22); transition: box-shadow 0.25s ease; }
.cs-cform-range input[type=range]:focus-visible { box-shadow: 0 0 16px rgba(109,236,217,0.35); }

/* v3.0.0: popup arrow follows the thumb even when the box is clamped */
.cs-cform-range-pop::after { left: var(--ax, 50%); }

/* v3.0.1: dropdown field styled like the pill inputs */
.cs-cform-selectwrap { position: relative; flex: 1 1 calc(50% - 13px); min-width: 180px; }
.cs-cform-selectwrap.is-full { flex-basis: 100%; }
.cs-cform-select { width: 100%; height: 49px; border-radius: 39px; border: 0; background: rgba(0,0,0,0.28); color: rgba(255,255,255,0.49); padding: 0 44px 0 20px; font: 500 15px/21px Montserrat, sans-serif; -webkit-appearance: none; appearance: none; cursor: pointer; }
.cs-cform-select:focus { outline: none; box-shadow: 0 0 22px rgba(109,236,217,0.35), 0 0 6px rgba(109,236,217,0.22); }
.cs-cform-select.has-value { color: #fff; }
.cs-cform-select option { color: #0d0d0d; background: #fff; }
.cs-cform-select-arrow { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.49); pointer-events: none; }

/* v3.0.5: select wrapper only controls width - no double pill */
.cs-cform-selectwrap { background: none !important; padding: 0 !important; height: auto !important; box-shadow: none !important; border-radius: 0; }
.cs-cform-selectwrap:focus-within { box-shadow: none !important; }

/* v3.0.7: submit dims and blocks while the range is below the minimum */
.cs-cform-submit { transition: opacity 0.3s ease; }
.cs-cform-submit.is-dimmed { opacity: 0.3; pointer-events: none; cursor: not-allowed; }

/* v3.0.8: nav overlay clips its children so the 20px corners show */
.cs-nav-overlay { overflow: hidden; }

/* v3.0.9: hero pattern fades out behind the text zone */
.cs-hero-pattern { -webkit-mask-image: radial-gradient(46% 36% at 50% 62%, transparent 0%, rgba(0,0,0,0.25) 55%, #000 85%); mask-image: radial-gradient(46% 36% at 50% 62%, transparent 0%, rgba(0,0,0,0.25) 55%, #000 85%); }

/* ===== v3.1.0: Certifications module - staggered scroll reveal + hover arrow ===== */
.cs-certs { padding: 60px 42px; display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 20px; align-items: start; }
.cs-certs-label { font-size: 15px; font-weight: 600; line-height: 57px; }
.cs-certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 26px; }
.cs-cert-card { display: block; text-decoration: none; color: inherit; opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); transition-delay: var(--d, 0s); }
.cs-cert-card.in-view { opacity: 1; transform: none; }
.cs-cert-media { position: relative; aspect-ratio: 320 / 182; border-radius: 15px; overflow: hidden; background: #f2f2f2; }
.cs-cert-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
a.cs-cert-card:hover .cs-cert-media img { transform: scale(1.04); }
.cs-cert-arrow { position: absolute; right: 14px; bottom: 14px; width: 48px !important; height: 48px !important; opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease; background: rgba(0,0,0,0.3); backdrop-filter: blur(6px); }
a.cs-cert-card:hover .cs-cert-arrow { opacity: 1; transform: none; }
.cs-cert-arrow svg { width: 18px !important; height: 18px !important; }
.cs-cert-title { font-size: 18px; font-weight: 500; line-height: 23px; margin: 18px 0 8px; }
.cs-cert-text { font-size: 16px; line-height: 21px; opacity: 0.8; margin: 0; }
@media (max-width: 900px) { .cs-certs { grid-template-columns: 1fr; } .cs-certs-grid { grid-template-columns: 1fr 1fr; } }

/* v3.1.1: certification cards - light/grey logo variant with adjustable logo size */
.cs-cert-media--light { background: #fafafa; }
.cs-cert-media--grey { background: #f0f0f0; }
.cs-cert-media .cs-cert-logo { position: absolute; inset: 0; margin: auto; width: auto; height: auto; max-width: 44%; max-height: 46%; object-fit: contain; }
.cs-cert-media .cs-cert-logo--small { max-width: 32%; max-height: 34%; }
.cs-cert-media .cs-cert-logo--large { max-width: 58%; max-height: 60%; }
a.cs-cert-card:hover .cs-cert-media .cs-cert-logo { transform: scale(1.06); }

/* v3.1.2: tighter gap between the last module and the footer site-wide */
.cs-footer { padding-top: 16px !important; }

/* v3.1.3: segment card hover panel fits longer texts (was clipped at 140px) */
.cs-seg-card:hover .cs-seg-card-hover { max-height: 360px; }

/* v3.1.4: rounded corners directly on the menu overlay children (bulletproof) */
.cs-nav-overlay-img { border-radius: 20px 0 0 20px; overflow: hidden; }
.cs-nav-overlay-img img, .cs-nav-overlay-img video { border-radius: 20px 0 0 20px; }
.cs-nav-overlay-panel { border-radius: 0 20px 20px 0; }

/* v3.1.5: menu overlay 16px inset; close button above the logo link */
.cs-nav-overlay { top: 16px !important; left: 16px !important; right: 16px !important; bottom: 16px !important; border-radius: 20px !important; overflow: hidden !important; }
.cs-nav-overlay-close { position: relative; z-index: 30; }
.cs-nav-logo--overlay { z-index: 5; }
