:root {
  --c-primary: #10B981;
  --c-primary-dark: #059669;
  --c-text-main: #111827;
  --c-text-muted: #6B7280;
  --c-bg: #FFFFFF;
  --c-bg-light: #F9FAFB;
  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--c-text-main);
  background: var(--c-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════ */
/* HEADER                                      */
/* ═══════════════════════════════════════════ */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 700;
  font-size: 20px;
}

.logo__icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.nav {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 999px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s;
}

.nav__link:hover {
  color: white;
}

.nav__link.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: white;
  min-width: 150px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  z-index: 100;
}

.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li a {
  display: block;
  padding: 8px 20px;
  color: var(--c-text-main);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.lang-dropdown li a:hover {
  background: #ECFDF5;
  color: var(--c-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--white {
  background: white;
  color: var(--c-primary);
  padding: 10px 24px;
  font-size: 14px;
}

.btn--white:hover {
  background: var(--c-bg-light);
}

.btn--primary {
  background: var(--c-primary);
  color: white;
}

.btn--primary:hover {
  background: var(--c-primary-dark);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════ */
/* HERO                                        */
/* ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 120px;
  color: white;
}

.hero__bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.hero__circles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.circle {
  position: absolute;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
}

.circle-1 {
  width: 600px; height: 600px; top: -100px; left: -100px;
}
.circle-2 {
  width: 800px; height: 800px; bottom: -200px; right: -200px;
}
.circle-3 {
  width: 300px; height: 300px; top: 30%; right: 10%;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge--glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--c-primary);
  margin-bottom: 24px;
}

.dot {
  width: 8px; height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
}

.hero__title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.text-green {
  color: var(--c-primary);
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════ */
/* STATS SECTION                               */
/* ═══════════════════════════════════════════ */
.stats-section {
  position: relative;
  z-index: 20;
  margin-top: -60px;
}

.stats-wrapper {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #E5E7EB;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: #ECFDF5;
  color: var(--c-primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════ */
/* ABOUT SECTION                               */
/* ═══════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: white;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about__image-col {
  flex: 1;
  position: relative;
}

.about__image-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}

.about__floating-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--c-primary);
  color: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.about__floating-badge strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about__content-col {
  flex: 1;
}

.badge--light-green {
  background: #ECFDF5;
  color: var(--c-primary);
  margin-bottom: 24px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--c-text-main);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-text {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.text-center { text-align: center; }
.section-subtitle { font-size: 18px; color: var(--c-text-muted); margin-bottom: 48px; }



/* ═══════════════════════════════════════════ */
/* PROJECTS                                    */
/* ═══════════════════════════════════════════ */
.projects {
  padding: 100px 0;
}

.project-card {
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.project-card__content {
  position: relative;
  z-index: 10;
  padding: 30px;
  color: white;
}

.project-card__tag {
  background: var(--c-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.project-card__title {
  font-size: 24px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════ */
/* SOLUTIONS                                   */
/* ═══════════════════════════════════════════ */
.solutions {
  padding: 100px 0;
  background: white;
}

.solutions__header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}

.solutions__header-left {
  flex: 1;
}

.solutions__header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.btn--outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.btn--outline-green:hover {
  background: var(--c-primary);
  color: white;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sol-card {
  position: relative;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transition: transform 0.3s;
  cursor: pointer;
}

.sol-card:hover {
  transform: translateY(-6px);
}

.sol-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  border-radius: 20px;
  transition: background 0.4s ease;
}

.sol-card:hover .sol-card__overlay {
  background: linear-gradient(to bottom, rgba(6, 95, 70, 0.85), rgba(6, 95, 70, 0.95));
}

.sol-card__icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #6EE7B7;
  backdrop-filter: blur(4px);
}

.sol-card__body {
  position: relative;
  z-index: 2;
  color: white;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol-card:hover .sol-card__body {
  transform: translateY(-90px);
}

.sol-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.sol-card__cat {
  font-size: 13px;
  font-weight: 500;
  color: #6EE7B7;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sol-card:hover .sol-card__cat {
  opacity: 0;
}

.sol-card__hidden {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  padding-top: 12px;
}

.sol-card:hover .sol-card__hidden {
  opacity: 1;
  visibility: visible;
}

.sol-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sol-card__link {
  font-size: 14px;
  font-weight: 600;
  color: #10B981;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s;
}

.sol-card__link:hover {
  color: #6EE7B7;
}

.sol-card__link i {
  transition: transform 0.2s;
}

.sol-card__link:hover i {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════ */
/* PROJECTS — Asymmetric Layout                */
/* ═══════════════════════════════════════════ */
.projects {
  padding: 100px 0;
  background: #F9FAFB;
}

.projects__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 24px;
  margin-top: 48px;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card--large {
  height: 520px;
}

.projects__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-card--sm {
  height: calc((520px - 48px) / 3);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 60%);
}

.project-card__content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: white;
  width: 100%;
}

.project-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.project-card__tag {
  background: rgba(16, 185, 129, 0.85);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.project-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-card--sm .project-card__title {
  font-size: 16px;
}

.project-card__loc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════ */
/* PRODUCTS                                    */
/* ═══════════════════════════════════════════ */
.products {
  padding: 100px 0;
  background: #F9FAFB;
}

.products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.products__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--c-text-main);
  margin-bottom: 12px;
}

.products__subtitle {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.products__browse-link {
  color: var(--c-primary);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap 0.2s;
}

.products__browse-link:hover { gap: 10px; }

/* Filter Tabs */
.products__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ptab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid #E5E7EB;
  background: white;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.ptab:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.ptab--active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: white;
}

/* Cards Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Product Card */
.pcard {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Image wrapper — holds badge, category pill, image, icon button */
.pcard__image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #F3F4F6;
}

.pcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.pcard:hover .pcard__img {
  transform: scale(1.06);
}

/* Top-left badge */
.pcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.3px;
}

.pcard__badge--bestseller {
  background: #10B981;
  color: white;
}

.pcard__badge--new {
  background: #F59E0B;
  color: white;
}

.pcard__badge--saas {
  background: #6366F1;
  color: white;
}

/* Top-right category pill */
.pcard__cat-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  color: #374151;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  text-transform: lowercase;
}

/* Bottom-right icon button */
.pcard__icon-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--c-primary);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pcard__icon-btn:hover { background: white; }

/* Card Body */
.pcard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text-main);
  margin-bottom: 6px;
}

.pcard__desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Feature checklist — 2-column grid matching reference */
.pcard__features {
  list-style: none;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.pcard__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}

.pcard__features .ri-checkbox-circle-fill {
  color: var(--c-primary);
  font-size: 16px;
  flex-shrink: 0;
}

/* Footer: price + button */
.pcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #F3F4F6;
}

.pcard__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text-main);
}

.pcard__unit {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-text-muted);
  margin-left: 2px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* Products CTA Banner */
.products__cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F3F4F6;
  border-radius: 20px;
  padding: 32px 40px;
  margin-top: 48px;
}

.products__cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.products__cta-icon {
  width: 56px;
  height: 56px;
  background: #ECFDF5;
  color: var(--c-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.products__cta-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text-main);
  display: block;
  margin-bottom: 4px;
}

.products__cta-text {
  font-size: 14px;
  color: var(--c-text-muted);
}

.products__cta-buttons {
  display: flex;
  gap: 12px;
}

.btn--outline-gray {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  background: white;
  border: 1px solid #D1D5DB;
  color: var(--c-text-main);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn--outline-gray:hover {
  border-color: #9CA3AF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ═══════════════════════════════════════════ */
/* NEWS & INSIGHTS                             */
/* ═══════════════════════════════════════════ */
.news {
  padding: 100px 0;
  background: white;
}

.news__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news__grid {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 32px;
}

/* Featured article (large) */
.news__featured-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.news__featured-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.news__cat-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.news__featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.news__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.news__meta-dot {
  color: #D1D5DB;
}

.news__featured-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-text-main);
  line-height: 1.3;
  margin-bottom: 12px;
}

.news__featured-desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* Sidebar articles */
.news__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news__sidebar-card {
  display: flex;
  gap: 16px;
  padding: 12px;
  border-radius: 16px;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.news__sidebar-card:hover {
  background: #F9FAFB;
}

.news__sidebar-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.news__sidebar-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news__sidebar-cat {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}

.news__sidebar-cat--innovation {
  background: #EEF2FF;
  color: #6366F1;
}

.news__sidebar-cat--sustainability {
  background: #ECFDF5;
  color: #10B981;
}

.news__sidebar-cat--partnership {
  background: #FEF3C7;
  color: #D97706;
}

.news__sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text-main);
  line-height: 1.4;
}

.news__sidebar-date {
  font-size: 13px;
  color: var(--c-text-muted);
}

/* CTA card at bottom of sidebar */
.news__sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1F2937;
  color: white;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  transition: background 0.2s;
}

.news__sidebar-cta:hover {
  background: #111827;
}

.news__sidebar-cta-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 4px;
}

.news__sidebar-cta-title {
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.news__sidebar-cta i {
  font-size: 24px;
  background: rgba(255,255,255,0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════ */
/* PARTNERS                                    */
/* ═══════════════════════════════════════════ */
.partners {
  padding: 100px 0;
  background: #F9FAFB;
}

.partners__marquee {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 10px 0; /* space for box shadows */
}

.partners__logos {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: scrollMarquee 40s linear infinite;
  padding: 0 16px;
}

.partners__logos:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); } /* -50% and half of the gap to match perfectly */
}

.partners__logo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  transition: box-shadow 0.2s;
  width: 280px; /* fixed width for marquee items */
  flex-shrink: 0;
}

.partners__logo-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.partners__logo-icon {
  width: 44px;
  height: 44px;
  background: #F3F4F6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #6B7280;
  flex-shrink: 0;
}

.partners__logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-main);
  display: block;
}

.partners__logo-role {
  font-size: 12px;
  color: var(--c-text-muted);
}

.partners__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.partners__stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
}

.partners__stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.partners__stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-text-main);
  display: block;
  line-height: 1;
}

.partners__stat-label {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════ */
/* CTA SECTION                                 */
/* ═══════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: white;
}

.cta-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.cta-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,95,70,0.88) 0%, rgba(16,185,129,0.7) 100%);
}

.cta-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 60px;
  gap: 40px;
}

.cta-card__left { flex: 1; }

.cta-card__title {
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin: 16px 0;
  line-height: 1.2;
}

.cta-card__text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.cta-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  background: white;
  color: var(--c-text-main);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn--white:hover {
  background: #F9FAFB;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn--outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* ═══════════════════════════════════════════ */
/* FOOTER                                      */
/* ═══════════════════════════════════════════ */
.footer {
  background: #111827;
  color: #9CA3AF;
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer .logo-icon {
  background: var(--c-primary);
}

.footer .logo-text {
  color: white;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__address {
  font-size: 13px;
  line-height: 1.8;
}

.footer__address i {
  color: var(--c-primary);
  margin-right: 4px;
}

.footer__heading {
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer__links a i {
  font-size: 16px;
  color: var(--c-primary);
}

.footer__links a:hover {
  color: white;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #1F2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s;
}

.footer__social-btn:hover {
  background: var(--c-primary);
  color: white;
}

.footer__nl-text {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer__nl-form {
  display: flex;
  gap: 0;
}

.footer__nl-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #374151;
  background: #1F2937;
  color: white;
  border-radius: 12px 0 0 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.footer__nl-input::placeholder {
  color: #6B7280;
}

.footer__nl-input:focus {
  border-color: var(--c-primary);
}

.footer__nl-btn {
  padding: 12px 18px;
  background: var(--c-primary);
  color: white;
  border: none;
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.footer__nl-btn:hover {
  background: #059669;
}

.footer__bottom {
  border-top: 1px solid #1F2937;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: white;
}

/* ═══════════════════════════════════════════ */
/* RESPONSIVE                                  */
/* ═══════════════════════════════════════════ */

@media (max-width: 992px) {
  .solutions__header { flex-direction: column; gap: 20px; }
  .solutions__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 48px; }
  .about__inner { flex-direction: column; }
  .stats-wrapper { flex-wrap: wrap; gap: 20px; padding: 20px; }
  .stat-item { min-width: 40%; }
  .stat-item::after { display: none; }

  .nav { display: none; }
  .projects__grid { grid-template-columns: 1fr; }
  .project-card--large { height: 360px; }
  .project-card--sm { height: 160px; }
  .products__grid { grid-template-columns: 1fr; }
  .products__cta-banner { flex-direction: column; text-align: center; gap: 20px; }
  .news__grid { grid-template-columns: 1fr; }
  .news__featured-img img { height: 280px; }
  .partners__stats { grid-template-columns: repeat(2, 1fr); }
  .cta-card__content { flex-direction: column; text-align: center; padding: 40px; }
  .cta-card__buttons { flex-direction: row; justify-content: center; }
  .cta-card__title { font-size: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 576px) {
  .partners__stats { grid-template-columns: 1fr; }
  .cta-card__buttons { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .news__top { flex-direction: column; gap: 16px; align-items: flex-start; }
  .products__header { flex-direction: column; align-items: flex-start; }
}
