/* Theme layout: red, black, white, grey – uses globals.css variables */
/* When theme nav is used inside site-header, give hero area top padding so content is not under fixed nav */
.site-header .site-hero-bg {
  padding-top: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Inter', sans-serif;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ─── Section theme: left = tag + title, right = description ─── */
.section-theme {
  display: grid;
  grid-template-columns: var(--section-head-width) var(--section-desc-width);
  gap: var(--section-gap);
  align-items: start;
  margin-bottom: 3rem;

  /* padding: var(--section-padding-y) 0; */
}

/* .section-theme .section-head {
  position: sticky;
  top: 6rem;
} */
section{
  margin-bottom: clamp(2rem, 6vw, 8rem);
}
.section-theme .section-tag {
  display: block;
  font-size: var(--section-tag-size);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-theme .section-title {
  font-size: var(--section-heading-size);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-theme .section-desc {
  font-size: var(--section-desc-size);
  color: var(--text-muted);
  line-height: var(--section-desc-line);
  max-width: 56ch;
}

@media (max-width: 1024px) {
  .section-theme {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    /* padding: 3.5rem 0; */
  }

  .section-theme .section-head {
    position: static;
  }

  .section-theme .section-desc {
    max-width: none;
  }
}

/* Dark section: light text on dark bg */
.dark-section .section-theme.dark-section-theme .section-tag,
.dark-section-theme .section-tag {
  color: var(--primary-muted);
}

.dark-section .section-theme.dark-section-theme .section-title,
.dark-section-theme .section-title {
  color: var(--text-inverse);
}

.dark-section .section-theme.dark-section-theme .section-desc,
.dark-section-theme .section-desc {
  color: var(--on-dark-85);
}

.dark-section-theme .section-desc p {
  color: inherit;
}

.cta-label {
  color: var(--on-dark-65) !important;
}

.hero-card-icon {
  color: var(--primary);
  font-size: 1.1rem;
  opacity: 0.5;
}

.product-card-img-wrap-alt {
  background: linear-gradient(135deg, var(--primary-light), var(--surface-hover));
}

.testimonial-controls-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.sustain-metric-sup {
  font-size: 0.6em;
  color: var(--on-dark-65);
}

.section-title.text-primary,
.text-primary {
  color: var(--primary);
  font-style: normal;
}

.about-cta-wrap {
  margin-top: 0.5rem;
}

.dark-section-theme .section-title.global-metric {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
}

.blog-section-header .section-desc {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
}

.faq-list-wrap {
  margin-top: 2rem;
}

.testimonials-after-theme {
  grid-template-columns: 1fr;
}

.testimonials-after-theme .testimonials-right {
  max-width: 100%;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-logo span {
  color: var(--text);
  font-weight: 600;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  font-size: .85rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--text-inverse);
  padding: .6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--shadow-primary);
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-icon:hover {
  background: var(--primary);
  color: var(--text-inverse);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--primary-alpha-04) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary-alpha-04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--primary-alpha-10) 0%, transparent 70%);
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 10%;
  background: radial-gradient(circle, var(--primary-alpha-08) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-fade);
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.hero h1 .hl {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: .6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: .875rem;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}


/* ─── SECTION WRAPPER ─── */
/* .section {
  padding: var(--section-padding-y) 0;
} */

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

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

.theme-container,
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section background: sustainability banner (theme overlay for readability) */
.section-bg-sustainability {
  position: relative;
  background-color: var(--surface);
  background-image:
    url("../img/sustainability-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 97%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}
@media (max-width:768px) {
  

.section-bg-sustainability {
 
  width: 90%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}
}

.section-bg-sustainability .container {
  position: relative;
  z-index: 1;
}

/* Section background: world map in theme red behind Global Presence */
.section-bg-world {
  position: relative;
}

.section-bg-world .container {
  position: relative;
  z-index: 1;
}

.section-bg-world::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--primary);
  opacity: 0.18;
  mask-image: url("../img/world.svg");
  mask-size: 85% auto;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../img/world.svg");
  -webkit-mask-size: 85% auto;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '//';
  font-style: italic;
  opacity: .6;
}

.section-label::after {
  content: '//';
  font-style: italic;
  opacity: .6;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── ABOUT ─── */
.about-grid {
  display: flex;
  grid-template-columns: var(--section-head-width) var(--section-desc-width);
  gap: 5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 6rem, 8rem);
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-stat-stack {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-stat-card {
  border: none;
  padding: 0;
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
}

.about-stat-value sup {
  font-size: 0.6em;
  vertical-align: super;
  color: inherit;
}

.about-stat-unit {
  color: var(--text-muted);
  font-weight: 700;
  margin-left: 0.15em;
}

.about-stat-desc {
  font-size: 0.875rem;
  color: var(--text-muted-2);
  font-weight: 400;
  margin-top: 0.35rem;
  line-height: 1.3;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-right .section-heading {
  margin-bottom: .5rem;
}

.about-right .section-sub {
  max-width: 100%;
}

.about-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-fade);
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary);
}

.product-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--primary-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img-wrap .product-placeholder-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: .25;
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--text-inverse);
  padding: .3rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex: 1;
}

.product-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}

.product-card-body h3 sup {
  font-size: .55em;
  color: var(--primary);
  vertical-align: super;
}

.product-card-body p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem 1.75rem;
}

.product-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap .2s;
}

.product-link-btn:hover {
  gap: .75rem;
}

.product-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: var(--transition);
}

.product-card:hover .product-arrow {
  background: var(--primary);
  color: var(--text-inverse);
}

/* Simple product cards: image has border-radius only, no card radius; no hover; arrow always visible */
.products-grid--simple {
  gap: 1.5rem;
}

.product-card--simple {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border-radius: 0;
  overflow: visible;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* No hover effect on simple product cards */
.product-card--simple:hover {
  box-shadow: var(--shadow-sm);
  transform: none;
  border-color: var(--border);
}

.product-card--simple .product-card-img-wrap {
  aspect-ratio: 4/3;
  border-radius: 0;
  background: var(--primary-light);
  overflow: hidden;
  border: none;
  box-shadow: none;
}

/* Image has border-radius (top corners); card does not */
.product-card--simple .product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card--simple .product-card-caption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
}

.product-card--simple .product-card-caption-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.product-card--simple .product-card-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}

.product-card--simple .product-card-caption h3 sup {
  font-size: 0.55em;
  vertical-align: super;
  color: inherit;
}

.product-card--simple .product-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Arrow always visible (Font Awesome), not only on hover */
.product-card--simple .product-card-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 1;
  visibility: visible;
}

/* ─── SUSTAINABILITY ─── */
.sustain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sustain-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sustain-left .section-heading {
  color: var(--dark);
}

.sustain-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sustain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}

.sustain-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateX(5px);
}

.sustain-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.sustain-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem;
}

.sustain-card-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Sustain visual */
.sustain-visual {
  position: relative;
}

.sustain-big-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--darkest) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.sustain-big-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--on-dark-06);
  pointer-events: none;
}

.sustain-big-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--on-dark-04);
  pointer-events: none;
}

.sustain-big-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  opacity: .9;
}

.sustain-big-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: .75rem;
}

.sustain-big-desc {
  font-size: .95rem;
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sustain-metrics {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sustain-metric {
  display: flex;
  flex-direction: column;
}

.sustain-metric-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.sustain-metric-label {
  font-size: .78rem;
  opacity: .75;
  margin-top: .2rem;
}

/* Sustainability standalone page: match section theme spacing */
.section.sustainability-page .sustainability-row {
  margin-top: 2rem;
  gap: var(--section-gap);
}

.section.sustainability-page .sustainability-row:first-of-type {
  margin-top: 2rem;
}

.section.sustainability-page .sustainability-bottom {
  margin-top: 2rem;
  padding-top: 0;
}

.section.sustainability-page .sustainability-highlight-box {
  border-radius: var(--radius-lg);
}

.section.sustainability-page .sustainability-col-text p,
.section.sustainability-page .sustainability-bottom p {
  color: var(--text-muted);
  line-height: var(--section-desc-line);
}

/* About page: content below section-theme */
.section .section-theme + .about-intro-with-image,
.section .section-theme + .about-grid {
  margin-top: 2rem;
}

.section .section-theme + h3,
.section .section-theme + p {
  margin-top: 1.5rem;
}

/* ─── GLOBAL PRESENCE ─── */
.global-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.global-metric {
  font-family: 'Inter', sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--surface);
  line-height: 1;
  margin: 1rem 0 .5rem;
}

.global-metric sup {
  font-size: .35em;
  color: var(--primary);
  vertical-align: super;
}

.global-first {
  font-size: 1.05rem;
  color: var(--on-dark-85);
  line-height: 1.6;
  max-width: 340px;
}

.global-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--on-dark-65);
}

.global-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.global-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--on-dark-06);
  border: 1px solid var(--on-dark-08);
  border-radius: var(--radius-pill);
  padding: .5rem 1.1rem;
  font-size: .85rem;
  color: var(--on-dark);
  font-weight: 500;
}

.global-chip i {
  color: var(--primary);
}

.dark-section .section-label {
  color: var(--primary);
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  transition: all .3s;
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--text-inverse);
  transform: scale(1.05);
}

.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}

.why-card p {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
.testimonials-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.testimonial-left .section-label {
  margin-bottom: 1.5rem;
}

.testimonial-left h3 {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.testimonial-metric-num {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.testimonial-metric-num sup {
  font-size: .4em;
  color: var(--primary);
}

.testimonial-metric-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .4rem;
}

.testimonial-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.t-btns {
  display: flex;
  gap: .6rem;
}

.t-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: .9rem;
  transition: var(--transition);
}

.t-btn:hover {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}

.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-inverse);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.author-role {
  font-size: .83rem;
  color: var(--text-muted);
  margin-top: .1rem;
}

.brand-bar {
  margin-top: 3rem;
}

.brand-bar-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.brand-chip {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .65rem 1.3rem;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.brand-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* ─── FAQ ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-left .section-sub {
  max-width: 300px;
  margin-top: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.3rem 0;
  font-family: 'DM Sans', sans-serif;
}

.faq-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-alt);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  transition: var(--transition);
}

.faq-item.open .faq-num {
  background: var(--primary);
  color: var(--text-inverse);
}

.faq-q {
  flex: 1;
  font-size: .975rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: .7rem;
  color: var(--text-muted);
}

.faq-item.open .faq-icon-btn {
  background: var(--primary);
  color: var(--text-inverse);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-bottom .35s;
  padding-left: calc(32px + 1.25rem);
}

.faq-item.open .faq-body {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-body p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── BLOG ─── */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
}

.blog-empty-state i {
  font-size: 2.5rem;
  color: var(--border);
  margin-bottom: 1rem;
}

.blog-empty-state p {
  color: var(--text-muted);
  font-size: .95rem;
}

.blog-empty-state a {
  color: var(--primary);
  font-weight: 600;
}

/* ─── CTA ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--on-dark-04);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-banner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-inverse);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1rem;
  color: var(--on-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface);
  color: var(--primary);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-black-20);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--on-dark-30);
  color: var(--on-dark);
  padding: .73rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: .9rem;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--on-dark-65);
  background: var(--on-dark-08);
}

.cta-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.cta-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-stat-box {
  background: var(--on-dark-08);
  border: 1px solid var(--on-dark-12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(8px);
}

.cta-stat-val {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-inverse);
  line-height: 1;
}

.cta-stat-lbl {
  font-size: .78rem;
  color: var(--on-dark-65);
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* ─── FOOTER (theme) ─── */
footer.theme-footer {
  background: var(--dark-2);
  color: var(--on-dark-85);
  padding-top: 4rem;
}

.theme-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--on-dark-07);
}

.theme-footer .footer-cta-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-inverse);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.theme-footer .footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--on-dark-55);
  transition: color .2s;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--on-dark-08);
}

.theme-footer .footer-email-link:hover {
  color: var(--primary);
}

.theme-footer .footer-email-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--on-dark-08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: var(--transition);
}

.theme-footer .footer-email-link:hover .footer-email-arrow {
  background: var(--primary);
  color: var(--text-inverse);
}

.theme-footer .footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-top: 1.5rem;
}

.theme-footer .footer-contact-label {
  font-size: .7rem;
  color: var(--on-dark-35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .3rem;
}

.theme-footer .footer-contact-val {
  font-size: .9rem;
  color: var(--on-dark-65);
}

.theme-footer .footer-contact-val a {
  color: var(--on-dark-65);
  transition: color .2s;
}

.theme-footer .footer-contact-val a:hover {
  color: var(--primary);
}

.theme-footer .footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--on-dark-07);
}

.theme-footer .footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--on-dark-30);
  margin-bottom: 1.25rem;
}

.theme-footer .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.theme-footer .footer-links a {
  font-size: .9rem;
  color: var(--on-dark-55);
  transition: color .2s;
}

.theme-footer .footer-links a:hover {
  color: var(--on-dark);
}

.theme-footer .footer-social {
  display: flex;
  gap: .6rem;
}

.theme-footer .footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--on-dark-06);
  border: 1px solid var(--on-dark-08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-65);
  font-size: .85rem;
  transition: var(--transition);
}

.theme-footer .footer-social-icon:hover {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}

.theme-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.theme-footer .footer-logo-txt {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--on-dark);
}

.theme-footer .footer-copy {
  font-size: .82rem;
  color: var(--on-dark-30);
}

.theme-footer .footer-legal {
  display: flex;
  gap: 1.5rem;
}

.theme-footer .footer-legal a {
  font-size: .82rem;
  color: var(--on-dark-35);
  transition: color .2s;
}

.theme-footer .footer-legal a:hover {
  color: var(--on-dark-65);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stat-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sustain-layout {
    grid-template-columns: 1fr;
  }

  .global-layout {
    grid-template-columns: 1fr;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-left .section-sub {
    max-width: 100%;
  }

  .cta-banner {
    flex-direction: column;
    padding: 3rem 2rem;
  }

  .theme-footer .footer-top {
    grid-template-columns: 1fr;
  }

  .theme-footer .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(14px);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open+.nav-cta {
    display: flex;
    position: fixed;
    top: calc(68px + 260px);
    left: 2rem;
    z-index: 999;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-banner {
    border-radius: var(--radius-lg);
  }

  .theme-footer .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .theme-footer .footer-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-divider {
    display: none;
  }

  .theme-footer .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .theme-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Page hero (subpages): short height, left-aligned, no breadcrumb background ─── */
.site-hero-bg:has(.page-hero-bg-wrap) {
  min-height: 0;
  display: block;
  padding-bottom: 0;
  height: 70vh;
}

.site-header-hero.container {
  height: auto;
  min-height: 0;
  padding: 18rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.site-header-hero.container h1 {
  position: static;
  margin-bottom: 0.25rem;
}

.site-header-hero.container .breadcrumb,
.site-header-hero .breadcrumb {
  position: static;
  background: none;
  padding: 0;
  color: #d8d5d5;
}

.site-hero-bg .site-header-hero,
.site-header-hero .hero-inner {
  text-align: left;
}

/* No section content center-aligned */
.main-content .section,
.main-content .page-section,
.main-content [class*="section"] .container {
  text-align: left;
}

.main-content .section-theme {
  text-align: left;
}
.main-content .section-theme .section-head,
.main-content .section-theme .section-desc {
  text-align: left;
}