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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a2e1a;
  background: #fff;
  overflow-x: hidden
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }
}

/* ── TOKENS ── */
:root {
  --green-950: #0d1f0d;
  --green-900: #1B4332;
  --green-800: #1e5128;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --green-400: #74C69D;
  --green-100: #D8F3DC;
  --green-50: #F0FBF4;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --orange: #EA6C1E;
  --white: #ffffff;
  --gray-50: #F8FAFB;
  --gray-100: #F1F5F0;
  --gray-200: #E2EAE0;
  --gray-500: #6B7B6B;
  --gray-700: #374B37;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .14);
  --shadow-green: 0 8px 32px rgba(27, 67, 50, .25);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 96px 0
}

.section-sm {
  padding: 64px 0
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px
}

.tag svg {
  width: 14px;
  height: 14px
}

h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2
}

h2.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.15
}

h2.section-title span {
  color: var(--green-600)
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 580px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  border: none
}

.btn-primary {
  background: var(--green-700);
  color: #fff
}

.btn-primary:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green)
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700)
}

.btn-outline:hover {
  background: var(--green-700);
  color: #fff;
  transform: translateY(-2px)
}

.btn-amber {
  background: var(--amber);
  color: var(--green-950)
}

.btn-amber:hover {
  background: #e08e00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, .35)
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform .2s
}

.btn:hover svg {
  transform: translateX(3px)
}

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all .25s ease
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-400)
}

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

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nav-logo img {
  height: 48px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12)
}

.nav-links a.active {
  color: var(--green-100)
}

#navbar.scrolled .nav-links a {
  color: var(--gray-700)
}

#navbar.scrolled .nav-links a:hover {
  color: var(--green-700);
  background: var(--green-50)
}

#navbar.scrolled .nav-links a.active {
  color: var(--green-700)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  transition: color .2s, background .2s, border-color .2s
}

.nav-phone:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border-color: rgba(255, 255, 255, .85)
}

#navbar.scrolled .nav-phone {
  color: var(--green-700);
  border-color: var(--green-600);
  background: transparent;
  backdrop-filter: none
}

#navbar.scrolled .nav-phone:hover {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700)
}

.nav-phone svg {
  width: 16px;
  height: 16px
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .95);
  border-radius: 2px;
  transition: background .3s
}

#navbar.scrolled .hamburger span {
  background: var(--green-900)
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 16px 24px 24px
}

#mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100)
}

#mobile-menu a:last-child {
  border: none
}

@media(max-width:900px) {

  .nav-links,
  .nav-phone {
    display: none
  }

  .hamburger {
    display: flex
  }
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--green-950);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 40%, #1a3a28 100%)
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: radial-gradient(circle, #52B788 1px, transparent 1px);
  background-size: 32px 32px
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(82, 183, 136, .15) 0%, transparent 65%);
  pointer-events: none
}

.hero-glow2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(245, 158, 11, .1) 0%, transparent 65%);
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, .15);
  border: 1px solid rgba(82, 183, 136, .3);
  color: var(--green-400);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {

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

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

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--green-400), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap
}

.hero-stat {
  display: flex;
  flex-direction: column
}

.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff
}

.hero-stat-num span {
  color: var(--green-400)
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  margin-top: 2px
}

.hero-visual {
  position: relative
}

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5)
}

.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 31, 13, .8));
  z-index: 1
}

.hero-card-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hero-card-icon svg {
  width: 22px;
  height: 22px;
  color: #fff
}

.hero-card-text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff
}

.hero-card-text span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6)
}

@media(max-width:768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 20px 60px
  }

  .hero-visual {
    display: none
  }
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--green-700);
  padding: 16px 0;
  overflow: hidden
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85)
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  flex-shrink: 0
}

/* ── ABOUT ── */
#about {
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.about-img-stack {
  position: relative;
  height: 500px
}

.about-img-main {
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  left: 0
}

.about-img-sub {
  width: 55%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0;
  right: 0
}

.about-badge-float {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  background: var(--green-700);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-green);
  min-width: 130px
}

.about-badge-float strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800
}

.about-badge-float span {
  font-size: .75rem;
  opacity: .85
}

.about-tabs {
  display: flex;
  gap: 4px;
  margin: 24px 0 20px;
  border-bottom: 2px solid var(--gray-200)
}

.about-tab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-500);
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  border-radius: 6px 6px 0 0;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none
}

.about-tab.active {
  color: var(--green-700);
  border-bottom-color: var(--green-700);
  background: var(--green-50)
}

.about-tab-content {
  display: none;
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.75;
  animation: fadeIn .3s ease
}

.about-tab-content.active {
  display: block
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:768px) {
  .about-grid {
    grid-template-columns: 1fr
  }

  .about-img-stack {
    height: 300px
  }
}

/* ── BENEFITS ── */
#benefits {
  background: var(--green-900);
  position: relative;
  overflow: hidden
}

#benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(82, 183, 136, .08) 1px, transparent 1px);
  background-size: 28px 28px
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.benefits-left {
  background: var(--green-950);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.benefits-left .section-title {
  color: #fff;
  margin-bottom: 20px
}

.benefits-left .section-title span {
  color: var(--green-400)
}

.benefits-left .section-sub {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 36px
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  transition: all .2s
}

.benefit-item:hover {
  background: rgba(82, 183, 136, .12);
  border-color: rgba(82, 183, 136, .25)
}

.benefit-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
  color: #fff
}

.benefit-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: #fff
}

.benefits-right {
  background: var(--gray-50);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: center
}

.wheel-wrap {
  position: relative;
  width: 320px;
  height: 320px
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--green-700);
  box-shadow: var(--shadow-green)
}

.wheel-center img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.wheel-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -50%)
}

.wheel-bubble {
  background: #fff;
  border: 2px solid var(--green-600);
  border-radius: 100px;
  padding: 8px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  color: var(--green-700);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sm)
}

.wheel-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--green-600), transparent);
  transform-origin: top center;
  z-index: 0
}

@media(max-width:768px) {
  .benefits-grid {
    grid-template-columns: 1fr
  }

  .wheel-wrap {
    display: none
  }

  .benefits-right {
    padding: 32px 24px
  }
}

/* ── PRODUCTS ── */
#products {
  background: var(--gray-50)
}

.products-header {
  text-align: center;
  margin-bottom: 56px
}

.products-header .section-sub {
  margin: 12px auto 0
}

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

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all .25s;
  position: relative
}

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

.product-card-header {
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  padding: 28px 28px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}

.product-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-200);
  line-height: 1
}

.product-logo {
  width: 44px;
  height: 44px
}

.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.product-body {
  padding: 0 28px 28px
}

.product-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
  margin-bottom: 10px
}

.product-desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 18px
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--green-700);
  text-decoration: none;
  transition: gap .2s
}

.product-link:hover {
  gap: 10px
}

.product-link svg {
  width: 16px;
  height: 16px
}

@media(max-width:900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .products-grid {
    grid-template-columns: 1fr
  }
}

/* ── CLIENTS ── */
#clients {
  background: var(--green-700);
  padding: 64px 0
}

.clients-head {
  text-align: center;
  margin-bottom: 40px
}

.clients-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .06em;
  text-transform: uppercase
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px
}

.client-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 14px;
  padding: 12px 22px;
  min-height: 56px;
  transition: all .2s;
  cursor: default;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08)
}

.client-chip img {
  max-height: 36px;
  width: auto;
  max-width: 132px;
  object-fit: contain
}

.client-chip:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12)
}

/* ── INDUSTRIES ── */
#industries {
  background: #fff
}

.industries-header {
  text-align: center;
  margin-bottom: 56px
}

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

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.industry-card:hover img {
  transform: scale(1.07)
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(13, 31, 13, .85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px
}

.industry-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  line-height: 1.3
}

@media(max-width:900px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:500px) {
  .industries-grid {
    grid-template-columns: 1fr
  }
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--green-50)
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  position: relative
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-100);
  position: absolute;
  top: 16px;
  left: 28px;
  font-weight: 800
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  fill: var(--amber)
}

.testimonial-text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 24px;
  position: relative;
  z-index: 1
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100)
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0
}

.testimonial-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--green-900)
}

.testimonial-role {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 2px
}

@media(max-width:768px) {
  .testimonials-grid {
    grid-template-columns: 1fr
  }
}

/* ── CTA BAND ── */
#cta-band {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

#cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 24px 24px
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center
}

.cta-inner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px
}

.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

/* ── BLOG ── */
#blog {
  background: #fff
}

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: #fff;
  transition: all .25s
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-400)
}

.blog-img {
  height: 200px;
  overflow: hidden
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.blog-card:hover .blog-img img {
  transform: scale(1.05)
}

.blog-body {
  padding: 24px
}

.blog-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 10px
}

.blog-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-900);
  line-height: 1.4;
  margin-bottom: 12px
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--gray-500)
}

.blog-meta svg {
  width: 14px;
  height: 14px
}

@media(max-width:900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr
  }

  .blog-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start
  }
}

@media(max-width:560px) {
  .blog-grid {
    grid-template-columns: 1fr
  }
}

/* ── FOOTER ── */
footer {
  background: var(--green-950);
  color: #fff
}

.footer-main {
  padding: 72px 0 48px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px
}

.footer-brand img {
  height: 52px;
  margin-bottom: 20px
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px
}

.footer-social {
  display: flex;
  gap: 10px
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: all .2s;
  cursor: pointer;
  text-decoration: none
}

.social-btn:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff
}

.social-btn svg {
  width: 16px;
  height: 16px
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px
}

.footer-col ul li a:hover {
  color: var(--green-400)
}

.footer-col ul li a svg {
  width: 12px;
  height: 12px;
  opacity: .5
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 2px
}

.footer-contact-item span {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none
}

.footer-contact-item a:hover {
  color: var(--green-400)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4)
}

.footer-bottom-inner a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none
}

.footer-bottom-inner a:hover {
  color: var(--green-400)
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

.delay-5 {
  transition-delay: .5s
}
/* ══════════════════════════════════════════
   LIGHT THEME + LOADER + ENHANCED ANIMATIONS
   ══════════════════════════════════════════ */

/* ── PAGE LOADER ── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}

#page-loader.loader-hide {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: loaderEnter .6s cubic-bezier(.34,1.56,.64,1) forwards;
}

@keyframes loaderEnter {
  from { opacity: 0; transform: scale(.85) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.loader-logo {
  height: 88px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(27,67,50,.18));
  animation: logoPulse 1.6s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 8px 24px rgba(27,67,50,.18)); }
  50%      { transform: scale(1.07); filter: drop-shadow(0 12px 32px rgba(27,67,50,.28)); }
}

.loader-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -.01em;
  text-align: center;
}

.loader-brand span {
  color: var(--green-600);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-600), var(--amber));
  border-radius: 100px;
  animation: loaderFill 1.3s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ── LIGHT THEME: HERO ── */
#hero {
  background: #f7fbf8;
}

.hero-bg {
  background: linear-gradient(135deg, #edf8f2 0%, #e4f4ea 45%, #f5fdf8 100%);
}

.hero-pattern {
  opacity: .045;
  background-image: radial-gradient(circle, var(--green-700) 1px, transparent 1px);
}

.hero-glow {
  background: radial-gradient(circle, rgba(64,145,108,.22) 0%, transparent 65%);
}

.hero-glow2 {
  background: radial-gradient(circle, rgba(245,158,11,.13) 0%, transparent 65%);
}

.hero-badge {
  background: rgba(45,106,79,.09);
  border: 1px solid rgba(45,106,79,.22);
  color: var(--green-800);
}

.hero-badge::before {
  background: var(--green-700);
}

.hero-title {
  color: var(--green-950);
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--green-700) 0%, #c7a200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: #4b6258;
}

.hero-stat-num {
  color: var(--green-900);
}

.hero-stat-num span {
  color: var(--green-600);
}

.hero-stat-label {
  color: var(--gray-500);
}

.hero-img-wrap {
  box-shadow: 0 24px 64px rgba(27,67,50,.16), 0 4px 16px rgba(27,67,50,.08);
}

.hero-img-wrap::before {
  background: linear-gradient(180deg, transparent 45%, rgba(232,245,238,.65));
}

.hero-card-float {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(45,106,79,.16);
  box-shadow: 0 8px 32px rgba(27,67,50,.12);
}

.hero-card-text strong {
  color: var(--green-900);
}

.hero-card-text span {
  color: var(--gray-500);
}

/* ── NAVBAR: Light default state (hero is now light) ── */
.nav-links a {
  color: var(--green-900);
}

.nav-links a:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.nav-links a.active {
  color: var(--green-700);
  background: var(--green-50);
}

.nav-phone {
  color: var(--green-800);
  border: 2px solid rgba(45,106,79,.35);
  background: rgba(45,106,79,.07);
  backdrop-filter: none;
}

.nav-phone:hover {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}

.hamburger span {
  background: var(--green-900);
}

/* Keep scrolled state the same (already good) */
#navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

#navbar.scrolled .nav-phone {
  color: var(--green-700);
  border-color: var(--green-600);
  background: transparent;
}

/* ── LOGO PROMINENT ── */
.nav-logo {
  gap: 12px;
}

.nav-logo img {
  height: 68px;
  filter: drop-shadow(0 2px 6px rgba(27,67,50,.12));
  transition: transform .25s ease, filter .25s ease;
}

.nav-logo:hover img {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 4px 14px rgba(27,67,50,.24));
}

.nav-logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -.01em;
  white-space: nowrap;
}

.nav-logo-name span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── BENEFITS: Light version ── */
#benefits {
  background: linear-gradient(180deg, #edf8f2 0%, #fff 100%);
}

#benefits::before {
  background-image: radial-gradient(circle, rgba(45,106,79,.07) 1px, transparent 1px);
}

.benefits-grid {
  box-shadow: 0 8px 48px rgba(27,67,50,.1);
  border: 1px solid var(--gray-200);
}

.benefits-left {
  background: #fff;
}

.benefits-left .section-title {
  color: var(--green-900);
}

.benefits-left .section-title span {
  color: var(--green-600);
}

.benefits-left .section-sub {
  color: var(--gray-500);
}

.benefits-left .tag {
  background: var(--green-100);
  color: var(--green-700);
}

.benefit-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.benefit-item:hover {
  background: var(--green-50);
  border-color: var(--green-400);
}

.benefit-text {
  color: var(--green-900);
}

/* ── CLIENTS: Light ── */
#clients {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.clients-head h2 {
  color: var(--gray-500);
  font-size: .9rem;
}

/* ── HERO ENTRANCE ANIMATIONS ── */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: scale(.95) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-badge {
  animation: heroSlideUp .5s cubic-bezier(.34,1.3,.64,1) .2s both;
}

.hero-title {
  animation: heroSlideUp .6s cubic-bezier(.34,1.2,.64,1) .35s both;
}

.hero-desc {
  animation: heroSlideUp .55s ease .5s both;
}

.hero-actions {
  animation: heroSlideUp .55s ease .62s both;
}

.hero-stats {
  animation: heroSlideUp .55s ease .74s both;
}

.hero-visual {
  animation: heroSlideIn .8s cubic-bezier(.34,1.1,.64,1) .45s both;
}

.hero-card-float {
  animation: heroSlideUp .55s ease .95s both, floatY 4.5s ease-in-out 1.6s infinite;
}

/* ── MARQUEE: keep green but slightly lighter ── */
.marquee-bar {
  background: var(--green-700);
}

/* ── ENHANCED CARD HOVER ANIMATIONS ── */
.product-card {
  transition: all .3s cubic-bezier(.34,1.2,.64,1);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 48px rgba(27,67,50,.14);
}

.industry-card {
  transition: all .3s cubic-bezier(.34,1.2,.64,1);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.client-chip {
  transition: all .25s cubic-bezier(.34,1.3,.64,1);
}

.client-chip:hover {
  transform: translateY(-4px) scale(1.04);
}

/* ── STAGGER ANIMATION FOR REVEAL ── */
.reveal, .reveal-left, .reveal-right {
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}

/* ── SMOOTH NAVBAR TRANSITION ── */
#navbar {
  background: rgba(247,251,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(27,67,50,.06);
}

#navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
}

/* ── LIGHT FOOTER ── */
footer {
  background: var(--gray-50);
  color: var(--green-900);
  border-top: 1px solid var(--gray-200);
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-brand p {
  color: var(--gray-500);
}

.footer-social .social-btn {
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
}

.footer-social .social-btn:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

.footer-col h4 {
  color: var(--gray-500);
}

.footer-col ul li a {
  color: var(--gray-700);
}

.footer-col ul li a:hover {
  color: var(--green-700);
}

.footer-col ul li a svg {
  opacity: .4;
}

.footer-contact-item svg {
  color: var(--green-600);
}

.footer-contact-item span,
.footer-contact-item a {
  color: var(--gray-700);
}

.footer-contact-item a:hover {
  color: var(--green-700);
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  background: #fff;
}

.footer-bottom-inner {
  color: var(--gray-500);
}

.footer-bottom-inner a {
  color: var(--gray-500);
}

.footer-bottom-inner a:hover {
  color: var(--green-700);
}

/* ── BIGGER NAV LOGO ── */
.nav-inner {
  height: 80px;
}

/* ── LIGHT GREEN PAGE GRADIENT ── */
html {
  background: linear-gradient(180deg,
    #d8f0e3 0%,
    #e8f7ef 8%,
    #f2fbf6 18%,
    #ffffff 38%,
    #ffffff 100%
  );
  background-attachment: fixed;
}

body {
  background: transparent;
}

/* ── FOOTER GRADIENT BACKGROUND ── */
footer {
  background: linear-gradient(135deg,
    #c8e8d5 0%,
    #d8f0e3 20%,
    #e8f7ef 45%,
    #fdf8ec 75%,
    #f0fbf4 100%
  );
  border-top: 1px solid rgba(45,106,79,.12);
}

.footer-bottom {
  background: rgba(200, 232, 213, 0.35);
  border-top: 1px solid rgba(45,106,79,.1);
}

.footer-brand p {
  color: #3d5e4a;
}

.footer-col h4 {
  color: #5a7a67;
}

.footer-col ul li a {
  color: #2d4a38;
}

.footer-col ul li a:hover {
  color: var(--green-800);
}

.footer-contact-item span,
.footer-contact-item a {
  color: #2d4a38;
}

.footer-bottom-inner {
  color: #5a7a67;
}

.footer-bottom-inner a {
  color: #5a7a67;
}

.footer-social .social-btn {
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(45,106,79,.2);
  color: var(--green-700);
  backdrop-filter: blur(8px);
}

.footer-social .social-btn:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}

/* ── FOOTER LOGO BIGGER ── */
.footer-brand img {
  height: 80px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   BEAUTIFUL ANIMATIONS — LAYER
   ══════════════════════════════════════════ */

/* ── FLOATING ORBS IN HERO ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: 8%;
  background: radial-gradient(circle, rgba(74,175,119,.18) 0%, transparent 70%);
  animation: orbDrift1 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(245,158,11,.13) 0%, transparent 70%);
  animation: orbDrift2 11s ease-in-out infinite;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 2%;
  background: radial-gradient(circle, rgba(45,106,79,.12) 0%, transparent 70%);
  animation: orbDrift3 7s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-18px, 22px) scale(1.05); }
  66%      { transform: translate(12px, -14px) scale(.97); }
}

@keyframes orbDrift2 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -16px) scale(1.08); }
}

@keyframes orbDrift3 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(-12px, 18px); }
}

/* ── HERO ACCENT SHIMMER ── */
.hero-title .accent.shimmer-word {
  display: inline;
  background: linear-gradient(
    90deg,
    var(--green-700) 0%,
    #c7a200 25%,
    #a8e6c4 50%,
    #c7a200 75%,
    var(--green-700) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerSweep 4s linear infinite;
}

@keyframes shimmerSweep {
  from { background-position: 250% center; }
  to   { background-position: -250% center; }
}

/* ── STAT COUNTER NUMBER ── */
.hero-stat-num {
  display: inline-block;
  transition: transform .2s ease;
}

.hero-stat-num.count-pop {
  animation: statPop .45s cubic-bezier(.34,1.56,.64,1);
}

@keyframes statPop {
  0%   { transform: scale(.7); opacity: .3; }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── BUTTON PULSE RING ── */
.btn-primary {
  position: relative;
  overflow: visible;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid var(--green-500);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: .5;
  transform: scale(1.04);
}

/* ── ENHANCED CARD ENTRANCE (plugs into existing .reveal → .visible) ── */
/* Override reveal transition for cards with springy easing */
.product-card.reveal,
.industry-card.reveal,
.blog-card.reveal {
  transform: translateY(32px) scale(.97);
  transition: opacity .55s cubic-bezier(.4,0,.2,1),
              transform .6s cubic-bezier(.34,1.12,.64,1),
              box-shadow .3s cubic-bezier(.34,1.2,.64,1);
}

.product-card.reveal.visible,
.industry-card.reveal.visible,
.blog-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── TESTIMONIAL CARD ENTRANCE ── */
.testimonial-card.reveal {
  transform: translateY(24px) scale(.98);
  transition: opacity .6s ease, transform .65s cubic-bezier(.34,1.1,.64,1);
}

.testimonial-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── BENEFIT ITEM ENTRANCE (already has .reveal) ── */
.benefit-item.reveal {
  transform: translateX(-22px);
  transition: opacity .5s ease, transform .52s cubic-bezier(.34,1.1,.64,1),
              background .25s ease, border-color .25s ease;
}

.benefit-item.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── CLIENT CHIP ENTRANCE ── */
.client-chip {
  opacity: 0;
  transform: scale(.82) translateY(10px);
  transition: opacity .45s ease, transform .5s cubic-bezier(.34,1.3,.64,1);
}

.client-chip.chip-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.client-chip.chip-visible:hover {
  transform: translateY(-4px) scale(1.04);
}

/* ── FOOTER SECTION ENTRANCE ── */
.footer-brand,
.footer-col {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.34,1.1,.64,1);
}

.footer-brand.card-visible,
.footer-col.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MARQUEE ENHANCED ── */
.marquee-item {
  transition: transform .3s cubic-bezier(.34,1.3,.64,1), opacity .3s ease;
}

.marquee-item:hover {
  transform: scale(1.06) translateY(-2px);
  opacity: .85;
}

/* ── ABOUT SECTION ENTRANCE (already uses .reveal-left / .reveal-right) ── */
.about-visual.reveal-left {
  transform: translateX(-36px) scale(.98);
  transition: opacity .7s ease, transform .72s cubic-bezier(.34,1.08,.64,1);
}

.about-visual.reveal-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.about-content.reveal-right {
  transform: translateX(36px) scale(.98);
  transition: opacity .7s ease .1s, transform .72s cubic-bezier(.34,1.08,.64,1) .1s;
}

.about-content.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ── STAT / CONTACT CARDS ── */
.stat-card.reveal,
.contact-item.reveal {
  transform: translateY(22px) scale(.96);
  transition: opacity .5s ease, transform .52s cubic-bezier(.34,1.2,.64,1);
}

.stat-card.reveal.visible,
.contact-item.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── ICON WIGGLE ON HOVER ── */
.benefit-icon,
.product-icon,
.industry-icon {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.benefit-item:hover .benefit-icon,
.product-card:hover .product-icon,
.industry-card:hover .industry-icon {
  transform: rotate(-8deg) scale(1.18);
}

/* ── SCROLL PROGRESS INDICATOR ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-600), var(--amber));
  z-index: 100000;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── REDUCED MOTION OVERRIDE ── */
@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3 { animation: none !important; }

  .section-title .shimmer-word {
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: inherit !important;
    color: var(--green-900);
  }

  .client-chip,
  .footer-brand,
  .footer-col {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
