/* ============================================
   Fresh Print — Brand Design System
   Colors from logo: forest green, lime, yellow
   ============================================ */

:root {
  --green-dark: #1a6b3c;
  --green: #38a169;
  --green-light: #68d391;
  --green-lime: #9ae65c;
  --yellow: #f6e05e;
  --yellow-bright: #ecc94b;
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-600: #718096;
  --gray-800: #2d3748;
  --gray-900: #1a202c;

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 107, 60, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 107, 60, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --util-h: 34px;
  --ticker-h: 38px;
  --ticker-bottom-h: 44px;
  --site-top: calc(var(--ticker-h) + var(--util-h) + var(--header-h));
  --hero-controls-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-top);
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(56, 161, 105, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(56, 161, 105, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}

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

.btn--dark {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}

.btn--dark:hover {
  background: var(--gray-800);
  border-color: var(--gray-800);
  color: var(--white);
}

.btn--outline-dark {
  background: var(--white);
  color: var(--gray-900);
  border: 2px solid var(--gray-300);
}

.btn--outline-dark:hover {
  border-color: var(--gray-900);
  background: var(--white);
  color: var(--gray-900);
}

.btn--full { width: 100%; }

/* ---- Scrolling announcement tickers ---- */
.site-ticker {
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

.site-ticker__viewport {
  overflow: hidden;
  width: 100%;
}

.site-ticker__track {
  display: flex;
  width: max-content;
  animation: siteTickerScroll 42s linear infinite;
}

.site-ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-ticker__star {
  color: var(--green-lime);
  font-size: 0.75rem;
}

.site-ticker__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.site-ticker__icon svg {
  width: 16px;
  height: 16px;
}

.site-ticker--top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--ticker-h);
  overflow: hidden;
  background: var(--green-dark);
  background-image: none;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.site-ticker--top::before,
.site-ticker--top::after {
  display: none;
}

.site-ticker--top .site-ticker__item {
  color: var(--white);
}

.site-ticker--top .site-ticker__star {
  color: var(--white);
}

@keyframes tickerLiquidFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(3%, 0) scale(1.04); }
}

.site-ticker--top .site-ticker__viewport {
  position: relative;
  z-index: 2;
  height: 100%;
}

.site-ticker--top .site-ticker__track {
  height: 100%;
}

.site-ticker--top .site-ticker__group {
  height: 100%;
}

.site-ticker--top .site-ticker__item {
  height: 100%;
}

.site-ticker--bottom {
  background: var(--green-dark);
  background-image: none;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-ticker--bottom .site-ticker__item {
  color: var(--white);
}

.site-ticker--bottom .site-ticker__viewport {
  padding: 0.65rem 0;
}

.site-ticker--bottom .site-ticker__track {
  animation-duration: 36s;
}

.site-ticker--bottom .site-ticker__icon svg {
  stroke: var(--white);
  color: var(--white);
}

@keyframes siteTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .site-ticker__track {
    animation: none;
  }

  .site-ticker--top::before {
    animation: none;
  }
}

@media (max-width: 640px) {
  :root {
    --ticker-h: 34px;
    --util-h: 36px;
    --ticker-bottom-h: 40px;
  }

  .site-ticker__item {
    font-size: 0.72rem;
    padding: 0 1.25rem;
    gap: 0.4rem;
  }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: calc(var(--ticker-h) + var(--util-h));
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-color: var(--gray-100);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav__logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.nav__logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .nav__logo-tagline {
    display: none;
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

/* Lang/currency live in the top util bar — never in the nav list */
.nav__mobile-util {
  display: none !important;
}

@media (min-width: 1025px) {
  .header {
    background: var(--white);
  }

  .nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(0.5rem, 1.2vw, 1.25rem);
  }

  .nav__logo {
    flex: 0 0 auto;
    order: 1;
  }

  .nav__toggle {
    display: none;
  }

  .nav__links {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: clamp(0.45rem, 0.85vw, 1.1rem);
    min-width: 0;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .nav__links li {
    width: auto;
    flex-shrink: 0;
  }

  .nav__search-bar {
    order: 3;
    flex: 0 0 196px;
    width: 196px;
  }

  .nav__link {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(0.78rem, 0.82vw, 0.88rem);
    padding: 0;
    border: none;
  }

  .nav__link--cta {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.48rem 1rem;
    font-size: 0.82rem;
    line-height: 1.2;
    margin-left: 0.1rem;
  }

  .nav__search-bar .search-beam__inner {
    min-height: 38px;
    padding: 0.45rem 0.85rem;
  }

  .nav__search-bar .search-beam__label {
    display: inline;
  }
}

.nav__link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--green-dark);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav__link--cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
}

.nav__link--cta:hover {
  background: var(--green-dark);
}

.nav__link--cta::after { display: none; }

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero.hero-slider {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: visible;
}

@media (min-width: 901px) {
  .hero.hero-slider {
    min-height: calc(100dvh - var(--site-top) - var(--ticker-bottom-h));
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---- Welcome slide: floating brand shapes ---- */
.hero-slide--welcome {
  position: relative;
  overflow: visible;
  justify-content: flex-start;
  padding-top: clamp(2rem, 5.5vh, 3.25rem);
  background:
    radial-gradient(ellipse at 18% 0%, rgba(154, 230, 92, 0.18), transparent 45%),
    radial-gradient(ellipse at 82% 100%, rgba(246, 224, 94, 0.2), transparent 45%),
    linear-gradient(180deg, #f4fdf8 0%, var(--white) 55%, var(--gray-50) 100%);
}

.hero-slide:not(.hero-slide--welcome) {
  background:
    radial-gradient(ellipse at 92% 8%, rgba(104, 211, 145, 0.1), transparent 48%),
    radial-gradient(ellipse at 6% 92%, rgba(246, 224, 94, 0.12), transparent 48%),
    var(--white);
}

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

.hero-shapes__ambient {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(56, 161, 105, 0.16), transparent 58%),
    radial-gradient(ellipse at 85% 75%, rgba(246, 224, 94, 0.18), transparent 58%);
  filter: blur(40px);
  animation: ambientDrift 28s ease-in-out infinite;
}

@keyframes ambientDrift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(2%, -2%) scale(1.04);
  }
  66% {
    transform: translate(-2%, 2%) scale(1.02);
  }
}

.hero-shapes__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    transparent 22%,
    transparent 78%,
    rgba(247, 250, 252, 0.5) 100%
  );
}

.hero-shape {
  position: absolute;
  opacity: 0;
  transform: translateY(-150px);
  will-change: transform, opacity;
}

.hero-shape.is-entered {
  opacity: 1;
  transform: translateY(0);
}

.hero-shape.is-floating {
  animation: var(--shape-drift) var(--shape-drift-duration, 18s) ease-in-out infinite;
  animation-delay: var(--shape-drift-delay, 0s);
}

.hero-shape__inner {
  position: relative;
  border-radius: 9999px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 2px solid rgba(56, 161, 105, 0.28);
  box-shadow:
    0 8px 32px rgba(26, 107, 60, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  will-change: transform;
}

.hero-shape__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.45), transparent 65%);
  pointer-events: none;
}

.hero-shape--1 {
  left: -10%;
  top: 15%;
  --shape-drift: shapeDrift1;
  --shape-drift-duration: 18s;
  --shape-drift-delay: 0s;
}

.hero-shape--1 .hero-shape__inner {
  width: min(600px, 85vw);
  height: 140px;
  background: linear-gradient(to right, rgba(56, 161, 105, 0.42), rgba(56, 161, 105, 0.08) 70%, transparent);
}

.hero-shape--2 {
  right: -5%;
  top: 70%;
  --shape-drift: shapeDrift2;
  --shape-drift-duration: 22s;
  --shape-drift-delay: -4s;
}

.hero-shape--2 .hero-shape__inner {
  width: min(500px, 75vw);
  height: 120px;
  background: linear-gradient(to right, rgba(154, 230, 92, 0.48), rgba(154, 230, 92, 0.1) 70%, transparent);
}

.hero-shape--3 {
  bottom: 5%;
  left: 5%;
  --shape-drift: shapeDrift3;
  --shape-drift-duration: 20s;
  --shape-drift-delay: -8s;
}

.hero-shape--3 .hero-shape__inner {
  width: min(300px, 55vw);
  height: 80px;
  background: linear-gradient(to right, rgba(26, 107, 60, 0.38), rgba(26, 107, 60, 0.08) 70%, transparent);
}

.hero-shape--4 {
  right: 15%;
  top: 10%;
  --shape-drift: shapeDrift4;
  --shape-drift-duration: 16s;
  --shape-drift-delay: -2s;
}

.hero-shape--4 .hero-shape__inner {
  width: min(200px, 40vw);
  height: 60px;
  background: linear-gradient(to right, rgba(246, 224, 94, 0.55), rgba(246, 224, 94, 0.12) 70%, transparent);
}

.hero-shape--5 {
  left: 20%;
  top: 5%;
  --shape-drift: shapeDrift5;
  --shape-drift-duration: 24s;
  --shape-drift-delay: -6s;
}

.hero-shape--5 .hero-shape__inner {
  width: min(150px, 32vw);
  height: 40px;
  background: linear-gradient(to right, rgba(104, 211, 145, 0.45), rgba(104, 211, 145, 0.1) 70%, transparent);
}

@keyframes shapeEnter {
  0% {
    opacity: 0;
    transform: translateY(-150px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shapeDrift1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(18px, -28px); }
  50% { transform: translate(-12px, 24px); }
  75% { transform: translate(22px, 12px); }
}

@keyframes shapeDrift2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, 20px); }
  50% { transform: translate(14px, -26px); }
  75% { transform: translate(-16px, -10px); }
}

@keyframes shapeDrift3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, 22px); }
  66% { transform: translate(-18px, -18px); }
}

@keyframes shapeDrift4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-14px, -24px); }
  50% { transform: translate(20px, 16px); }
  75% { transform: translate(-8px, 20px); }
}

@keyframes shapeDrift5 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-16px, 18px); }
  66% { transform: translate(12px, -22px); }
}

@keyframes shapeFloatInner1 {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(12deg) translateY(-18px); }
}

@keyframes shapeFloatInner2 {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-15deg) translateY(20px); }
}

@keyframes shapeFloatInner3 {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-16px); }
}

@keyframes shapeFloatInner4 {
  0%, 100% { transform: rotate(20deg) translateY(0); }
  50% { transform: rotate(20deg) translateY(18px); }
}

@keyframes shapeFloatInner5 {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50% { transform: rotate(-25deg) translateY(-14px); }
}

.hero-shape.is-floating .hero-shape__inner {
  animation-duration: 15s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-shape--1.is-floating .hero-shape__inner { animation-name: shapeFloatInner1; animation-duration: 14s; }
.hero-shape--2.is-floating .hero-shape__inner { animation-name: shapeFloatInner2; animation-duration: 17s; animation-delay: -3s; }
.hero-shape--3.is-floating .hero-shape__inner { animation-name: shapeFloatInner3; animation-duration: 15s; animation-delay: -5s; }
.hero-shape--4.is-floating .hero-shape__inner { animation-name: shapeFloatInner4; animation-duration: 13s; animation-delay: -2s; }
.hero-shape--5.is-floating .hero-shape__inner { animation-name: shapeFloatInner5; animation-duration: 19s; animation-delay: -7s; }

.hero-slide__inner--welcome {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding-top: clamp(0.5rem, 1.5vh, 1rem);
}
.hero-slide__content--welcome .hero__eyebrow,
.hero-slide__content--welcome .hero__title,
.hero-slide__content--welcome .hero__desc,
.hero-slide__content--welcome .hero__actions {
  opacity: 0;
  transform: translateY(30px);
  animation: welcomeFadeUp 1s cubic-bezier(0.25, 0.4, 0.25, 1) forwards;
}

.hero-slide__content--welcome .hero__eyebrow { animation-delay: 0.5s; }
.hero-slide__content--welcome .hero__title { animation-delay: 0.7s; }
.hero-slide__content--welcome .hero__desc { animation-delay: 0.9s; }
.hero-slide__content--welcome .hero__actions { animation-delay: 1.1s; }

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

@media (min-width: 901px) {
  .hero-slide--welcome {
    overflow: visible;
  }

  .hero-shape--1 { left: -5%; top: 20%; }
  .hero-shape--2 { right: 0; top: 75%; }
  .hero-shape--3 { bottom: 10%; left: 10%; }
  .hero-shape--4 { right: 20%; top: 15%; }
  .hero-shape--5 { left: 25%; top: 10%; }
}

@media (max-width: 640px) {
  .hero-shape--1 .hero-shape__inner { height: 100px; }
  .hero-shape--2 .hero-shape__inner { height: 85px; }
  .hero-shape--3 .hero-shape__inner { height: 60px; }
  .hero-shape--4 .hero-shape__inner { height: 48px; }
  .hero-shape--5 .hero-shape__inner { height: 32px; }
}

.hero__inner {
  position: relative;
  z-index: 1;
}

/* ---- Full-page hero slider ---- */
.hero-slider {
  padding-bottom: 0;
}

.hero-slider__viewport {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  align-items: stretch;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 1.25rem 0 0.75rem;
  box-sizing: border-box;
}

.hero-slide > .container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-slide__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.hero-slide > .container.hero-slide__inner {
  display: grid;
}

/* Desktop hero — natural height so nothing is clipped */
@media (min-width: 901px) {
  .hero-slider__viewport,
  .hero-slider__track {
    height: auto;
  }

  .hero-slide {
    min-height: clamp(460px, calc(100dvh - var(--site-top) - var(--ticker-bottom-h) - var(--hero-controls-h)), 820px);
    padding: clamp(1.25rem, 3vh, 2rem) 0 1rem;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    align-items: center;
    max-width: min(1140px, 92vw);
    margin-inline: auto;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__eyebrow {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    margin-bottom: 0.5rem;
    line-height: 1.15;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__desc {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    line-height: 1.5;
    margin-bottom: 0.65rem;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero-slide__tag {
    font-size: 0.88rem;
    padding: 0.45rem 1rem;
    margin-top: 0.5rem;
  }

  .hero-slide__visual:not(.hero-slide__visual--duo) {
    max-height: min(340px, 42vh);
    padding: 0.5rem 1rem;
  }

  .hero-slide__visual:not(.hero-slide__visual--duo) .hero-slide__photo {
    max-height: min(300px, 38vh);
  }

  .hero-slide__visual--duo {
    max-height: min(360px, 44vh);
    padding: 1.25rem 1rem 0.65rem;
  }

  .hero-slide__visual--duo .hero-slide__photo--duo {
    max-height: min(260px, 32vh);
  }

  .hero-slide__visual--duo .hero-slide__photo--hoodie {
    max-height: min(250px, 31vh);
    transform: translateY(10%);
  }

  .hero-slide--welcome {
    padding-top: clamp(2.5rem, 6vh, 3.75rem);
  }

  .hero-slide__inner--welcome {
    max-width: min(720px, 90vw);
    padding: clamp(0.75rem, 2vh, 1.25rem) 0 0.5rem;
  }

  .hero-slide--welcome .hero__eyebrow {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
  }

  .hero-slide--welcome .hero__title {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    margin-bottom: 0.75rem;
    line-height: 1.15;
  }

  .hero-slide--welcome .hero__desc {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    max-width: 520px;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .hero-slide--welcome .hero__actions .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.92rem;
  }

  .hero-slider__controls {
    flex-shrink: 0;
    padding: 0.25rem 0 0.5rem;
  }

  .hero-slider__labels {
    gap: 0.45rem;
    margin-bottom: 0.5rem;
  }

  .hero-slider__label {
    font-size: 0.95rem;
    padding: 0.55rem 1.15rem;
  }
}

@media (min-width: 1200px) {
  .hero-slide__inner:not(.hero-slide__inner--welcome) {
    gap: 2.5rem;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__title {
    font-size: clamp(2rem, 3vw, 3rem);
  }

  .hero-slide--welcome .hero__title {
    font-size: clamp(2.2rem, 3.8vw, 3.35rem);
  }

  .hero-slide__visual:not(.hero-slide__visual--duo) {
    max-height: min(380px, 46vh);
  }

  .hero-slide__visual:not(.hero-slide__visual--duo) .hero-slide__photo {
    max-height: min(340px, 42vh);
  }

  .hero-slide__visual--duo {
    max-height: min(400px, 48vh);
  }

  .hero-slide__visual--duo .hero-slide__photo--duo {
    max-height: min(280px, 34vh);
  }

  .hero-slide__visual--duo .hero-slide__photo--hoodie {
    max-height: min(270px, 33vh);
  }

  .hero-slider__label {
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
  }
}

.hero-slide__inner--welcome .hero__desc {
  margin-inline: auto;
}

.hero-slide__inner--welcome .hero__actions {
  justify-content: center;
}

.hero-slide__content:not(.hero-slide__content--welcome) {
  animation: slideContentIn 0.6s ease both;
}

.hero-slide__visual {
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(26, 107, 60, 0.1);
  animation: slideContentIn 0.6s ease 0.1s both;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.65rem;
}

.hero-slide__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-slide__visual--duo .hero-slide__photo {
  height: auto;
  width: auto;
  max-width: 100%;
}

.hero-slide__visual--duo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 0.85rem 0.5rem;
}

.hero-slide__visual--duo .hero-slide__photo--duo {
  flex: 1 1 50%;
  width: 50%;
  min-width: 0;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.hero-slide__visual--duo .hero-slide__photo--hoodie {
  object-position: center bottom;
  transform: translateY(8%);
}

.hero-slide__pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(26, 107, 60, 0.1);
  padding: 0.35rem 0.55rem;
  overflow: hidden;
  min-height: 0;
  min-width: 0;
}

.hero-slide__pill .hero-slide__photo {
  height: 100%;
  width: 100%;
  flex: 1;
}

.hero-slide__inner:not(.hero-slide__inner--welcome) .hero__desc {
  margin-bottom: 0.75rem;
}

.hero-slide__inner:not(.hero-slide__inner--welcome) .hero__title {
  margin-bottom: 0.65rem;
}

.hero-slide__tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-lime));
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
}

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider__controls {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding: 0 0 0.5rem;
}

.hero-slider__labels {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.45rem;
}

.hero-slider__label {
  padding: 0.55rem 1rem;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
}

.hero-slider__label:hover {
  color: var(--green-dark);
}

.hero-slider__label.active {
  color: var(--green-dark);
  background: rgba(56, 161, 105, 0.18);
  box-shadow: 0 0 0 1px rgba(56, 161, 105, 0.25);
}

.hero-slider__progress {
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.hero-slider__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-lime));
  transition: width 0.1s linear;
}

@media (max-width: 900px) {
  .hero.hero-slider {
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .hero-slider__viewport {
    flex: none;
    min-height: auto;
  }

  .hero-slider__track {
    height: auto;
  }

  .hero-slide {
    min-height: auto;
    height: auto;
    padding: 1rem 0 0.5rem;
  }

  .hero-slide > .container {
    height: auto;
  }

  .hero-slide__inner {
    display: grid;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) {
    height: auto;
    max-height: none;
  }

  /* Welcome slide stays stacked & centered */
  .hero-slide--welcome {
    padding-top: clamp(2.25rem, 6vh, 3.5rem);
  }

  .hero-slide__inner--welcome {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: clamp(0.75rem, 2vh, 1.25rem);
  }

  .hero-slide__inner--welcome .hero__title {
    font-size: clamp(2rem, 7.5vw, 2.85rem);
  }

  .hero-slide__inner--welcome .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-slide__inner--welcome .hero__actions .btn {
    width: 100%;
  }

  /* Service slides: words on top, image below on phone */
  .hero-slide .container {
    width: min(1140px, 94vw);
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: left;
    align-items: stretch;
    max-width: none;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__desc {
    margin-inline: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    max-width: none;
  }

  .hero-slide__content .hero__eyebrow {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
  }

  .hero-slide__content .hero__title {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    margin-bottom: 0.55rem;
    line-height: 1.15;
  }

  .hero-slide__tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    margin-top: 0.5rem;
  }

  .hero-slide__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-slide__visual {
    min-height: clamp(200px, 36vh, 300px);
    max-height: none;
    width: 100%;
    align-self: stretch;
    padding: 0.5rem 1rem;
  }

  .hero-slide__photo {
    min-height: clamp(180px, 32vh, 270px);
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .hero-slide__visual--duo {
    flex-direction: row;
    align-items: flex-end;
    min-height: clamp(180px, 32vh, 260px);
    max-height: none;
    gap: 0.5rem;
    padding: 1rem 0.85rem 0.45rem;
  }

  .hero-slide__visual--duo .hero-slide__photo--duo {
    flex: 1 1 50%;
    max-width: 50%;
    height: auto;
    min-height: 0;
    max-height: clamp(150px, 26vh, 210px);
    object-position: center bottom;
  }

  .hero-slide__visual--duo .hero-slide__photo--hoodie {
    max-height: clamp(140px, 24vh, 200px);
    transform: translateY(8%);
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__title {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__desc {
    font-size: 1rem;
  }

  .hero-slider__label {
    font-size: 0.95rem;
    padding: 0.55rem 1.1rem;
  }
}

@media (max-width: 640px) {
  .hero-slide {
    min-height: calc(100vh - var(--site-top) - var(--ticker-bottom-h) - 110px);
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) {
    gap: 1rem;
  }

  .hero-slide__content .hero__title {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__desc {
    font-size: 0.95rem;
  }

  .hero-slide__visual {
    min-height: clamp(190px, 34vh, 280px);
    padding: 0.45rem 0.75rem;
  }

  .hero-slide__photo {
    min-height: clamp(170px, 30vh, 250px);
  }

  .hero-slide__visual--duo {
    min-height: clamp(170px, 30vh, 240px);
    padding: 0.85rem 0.75rem 0.4rem;
  }

  .hero-slide__visual--duo .hero-slide__photo--duo {
    max-height: clamp(130px, 24vh, 190px);
  }

  .hero-slide__visual--duo .hero-slide__photo--hoodie {
    transform: translateY(6%);
  }

  .hero-slider__label {
    font-size: 0.88rem;
    padding: 0.5rem 0.85rem;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-lime) 50%, var(--yellow-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slide--welcome .hero__title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Desktop slide typography */
@media (min-width: 901px) {
  .hero-slide .hero__eyebrow {
    margin-bottom: 0.5rem;
  }

  .hero-slide .hero__title {
    margin-bottom: 0.55rem;
  }

  .hero-slide .hero__desc {
    margin-bottom: 0.85rem;
  }

  .hero-slide--welcome .hero__title {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    line-height: 1.15;
  }

  .hero-slide--welcome .hero__desc {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    max-width: 520px;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 0.5rem;
  }

  .hero-slide__inner:not(.hero-slide__inner--welcome) .hero__desc {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    max-width: none;
    margin-bottom: 0.65rem;
  }
}

/* ---- Moving Tabs Showcase ---- */
.tabs-showcase {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.tabs-showcase__header {
  padding: 1rem 1rem 0;
  background: var(--gray-50);
}

.tabs-nav {
  position: relative;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tabs-nav__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-lime));
  border-radius: 3px 3px 0 0;
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.tabs-nav__btn {
  flex: 1;
  min-width: max-content;
  padding: 0.85rem 1.1rem;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
  z-index: 1;
}

.tabs-nav__btn:hover {
  color: var(--green-dark);
}

.tabs-nav__btn.active {
  color: var(--green-dark);
}

.tabs-panels {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.tabs-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tabs-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.tabs-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(104, 211, 145, 0.15) 100%);
  border-radius: var(--radius);
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.tabs-panel__info h3 {
  font-size: 1.35rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.tabs-panel__info p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.tabs-panel__tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-lime));
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
}

/* Print visual mockups */
.print-card {
  width: 120px;
  height: 72px;
  border-radius: 6px;
  position: absolute;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.print-card--1 {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  transform: rotate(-8deg) translateX(-20px);
  animation: cardFloat1 3s ease-in-out infinite;
}

.print-card--2 {
  background: linear-gradient(135deg, var(--green-lime), var(--yellow));
  transform: rotate(6deg) translateX(30px);
  animation: cardFloat2 3s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%, 100% { transform: rotate(-8deg) translateX(-20px) translateY(0); }
  50% { transform: rotate(-8deg) translateX(-20px) translateY(-8px); }
}

@keyframes cardFloat2 {
  0%, 100% { transform: rotate(6deg) translateX(30px) translateY(0); }
  50% { transform: rotate(6deg) translateX(30px) translateY(-10px); }
}

.print-banner {
  width: 85%;
  height: 60%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-lime) 40%, var(--yellow) 100%);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(26, 107, 60, 0.25);
  animation: bannerPulse 4s ease-in-out infinite;
}

@keyframes bannerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.print-flyer {
  width: 60px;
  height: 80px;
  border-radius: 3px;
  position: absolute;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.print-flyer--1 {
  background: var(--green-dark);
  left: 25%;
  animation: flyerStack1 3s ease-in-out infinite;
}

.print-flyer--2 {
  background: var(--green);
  left: 42%;
  animation: flyerStack2 3s ease-in-out infinite;
}

.print-flyer--3 {
  background: linear-gradient(180deg, var(--green-lime), var(--yellow));
  left: 58%;
  animation: flyerStack3 3s ease-in-out infinite;
}

@keyframes flyerStack1 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-6px) rotate(-5deg); }
}

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

@keyframes flyerStack3 {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}

.print-shirt {
  width: 100px;
  height: 110px;
  background: var(--white);
  border-radius: 20px 20px 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  position: relative;
}

.print-shirt::before {
  content: 'FP';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--green), var(--green-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Progress bar for auto-rotation */
.tabs-progress {
  height: 3px;
  background: var(--gray-100);
}

.tabs-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-lime), var(--yellow));
  transition: width 0.1s linear;
}

/* ---- Stats ---- */
.stats {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  background: linear-gradient(155deg, #dcefe4 0%, #eef8f2 38%, #e4f2ea 72%, #d6ebe1 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.stats::before,
.stats::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.6;
  pointer-events: none;
  animation: statsLiquidFloat 14s ease-in-out infinite alternate;
}

.stats::before {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -45%;
  left: -8%;
  background: radial-gradient(circle, rgba(56, 161, 105, 0.55) 0%, transparent 68%);
}

.stats::after {
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  bottom: -55%;
  right: -6%;
  background: radial-gradient(circle, rgba(154, 230, 92, 0.5) 0%, transparent 70%);
  animation-delay: -7s;
}

@keyframes statsLiquidFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(28px, 18px) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .stats::before,
  .stats::after {
    animation: none;
  }
}

.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.stat {
  padding: 1.35rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(22px) saturate(185%);
  -webkit-backdrop-filter: blur(22px) saturate(185%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 10px 36px rgba(26, 107, 60, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 16px 44px rgba(26, 107, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.28);
}

.stat__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.stat__label {
  font-size: 0.9rem;
  color: rgba(26, 107, 60, 0.82);
  font-weight: 500;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-header__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.section-header__desc {
  color: var(--gray-600);
  max-width: 520px;
  margin-inline: auto;
}

/* ---- Services ---- */
.services {
  padding: 6rem 0;
  background: var(--gray-50);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card__media {
  height: 190px;
  overflow: hidden;
  background: var(--gray-100);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(56, 161, 105, 0.15), rgba(154, 230, 92, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.service-card__link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: color var(--transition);
}

.service-card__link:hover {
  color: var(--green);
}

/* ---- About ---- */
.about {
  padding: 6rem 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__logo-wrap {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.about__accent--1 {
  width: 200px;
  height: 200px;
  background: var(--green-light);
  top: -20px;
  right: 0;
}

.about__accent--2 {
  width: 160px;
  height: 160px;
  background: var(--yellow);
  bottom: -10px;
  left: 0;
}

.about__content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.about__features {
  margin-top: 1.5rem;
}

.about__features li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-800);
  font-weight: 500;
}

.about__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* ---- Contact ---- */
.contact {
  padding: 6rem 0;
  background: var(--gray-50);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-800);
  font-weight: 500;
}

.contact__detail svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.contact__detail a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact__detail a:hover {
  color: var(--green);
}

.contact__form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-map {
  padding: 4rem 0 5rem;
  background: var(--white);
}

.contact-map__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-map__frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-map__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---- Footer ---- */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

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

.footer__beam-canvas,
.footer__noise-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer__beam-canvas {
  z-index: 0;
}

.footer__noise-canvas {
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

.footer--beams-static {
  background: linear-gradient(180deg, var(--gray-900) 0%, #152a22 55%, var(--green-dark) 100%);
}

.footer__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand img {
  margin-inline: auto;
  opacity: 0.95;
  filter: brightness(1.1);
}

.footer__brand .footer__logo {
  width: 72px;
  height: auto;
  filter: none;
  opacity: 1;
}

.footer__brand p {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: var(--green-light);
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--green-light);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
}

.footer__aside {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1.75rem 2.5rem;
  width: 100%;
  max-width: 720px;
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.footer__social-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.footer__social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__social-link:hover {
  color: var(--green-light);
  border-color: rgba(125, 211, 176, 0.45);
  background: rgba(125, 211, 176, 0.08);
  transform: translateY(-2px);
}

@media (min-width: 640px) {
  .footer__aside {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .footer__contact {
    text-align: left;
  }

  .footer__social {
    align-items: flex-start;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 2.5rem;
  }
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--green-light);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ---- Page Banner (customize per page) ---- */
.page-banner {
  position: relative;
  min-height: 320px;
  margin-top: var(--site-top);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-lime) 100%);
}

.page-banner__bg {
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  animation: bannerKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bannerKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -1%); }
}

.page-banner__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.page-banner__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(0.5px);
  animation: bannerShapeFloat 10s ease-in-out infinite;
}

.page-banner__shape--1 {
  width: 140px;
  height: 140px;
  top: 8%;
  right: 6%;
  background: linear-gradient(135deg, var(--yellow), var(--green-lime));
  animation-duration: 11s;
}

.page-banner__shape--2 {
  width: 90px;
  height: 90px;
  bottom: 15%;
  left: 5%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  animation-duration: 9s;
  animation-delay: -3s;
}

.page-banner__shape--3 {
  width: 60px;
  height: 60px;
  top: 35%;
  left: 18%;
  background: var(--yellow);
  animation-duration: 8s;
  animation-delay: -5s;
}

@keyframes bannerShapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(12px, -10px) rotate(6deg); }
  66% { transform: translate(-8px, 8px) rotate(-4deg); }
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 107, 60, 0.58) 0%, rgba(56, 161, 105, 0.42) 100%);
  z-index: 2;
}

.page-banner__content {
  position: relative;
  z-index: 3;
  padding: 4rem 0;
  color: var(--white);
}

.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.page-banner__breadcrumb a {
  opacity: 0.85;
  transition: opacity var(--transition);
}

.page-banner__breadcrumb a:hover {
  opacity: 1;
}

.page-banner__breadcrumb span {
  opacity: 0.6;
}

.page-banner__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-banner__desc {
  font-size: 1.1rem;
  max-width: 560px;
  opacity: 0.92;
}

.page-content {
  padding: 4rem 0 6rem;
}

.page-content--gray {
  background: var(--gray-50);
}

/* ---- Showcase carousels (products & industries) ---- */
.showcase {
  padding-bottom: 4rem;
}

.showcase .section-header {
  margin-bottom: 2rem;
}

.showcase__carousel {
  margin-bottom: 1.75rem;
}

.showcase__track-wrap {
  position: relative;
}

.showcase__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem calc((100vw - min(1140px, 92vw)) / 2 + 0.5rem) 0.5rem;
}

.showcase__track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  flex: 0 0 clamp(150px, 28vw, 210px);
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition);
}

.showcase-card:hover {
  transform: translateY(-4px);
}

.showcase-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 0.85rem;
}

.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.showcase-card:hover .showcase-card__media img {
  transform: scale(1.05);
}

.showcase-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  padding: 0.28rem 0.65rem;
  border-radius: 50px;
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.showcase-card__badge--trending {
  background: var(--yellow);
}

.showcase-card__badge--service {
  background: var(--green-lime);
}

.showcase-card h3 {
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--gray-900);
}

.showcase__float-next {
  position: absolute;
  top: 50%;
  right: max(1rem, calc((100vw - min(1140px, 92vw)) / 2));
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--gray-800);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.showcase__float-next svg {
  width: 20px;
  height: 20px;
}

.showcase__float-next:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.showcase__float-next:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

.showcase__controls {
  margin-top: 1rem;
}

.showcase__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.showcase__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), background var(--transition);
}

.showcase__arrow svg {
  width: 18px;
  height: 18px;
}

.showcase__arrow:hover:not(:disabled) {
  color: var(--gray-900);
  background: var(--gray-100);
}

.showcase__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.showcase__scrollbar {
  flex: 1;
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.showcase__scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 48px;
  background: var(--gray-500);
  border-radius: 4px;
  transition: left 0.12s ease, width 0.12s ease;
}

.showcase__cta {
  margin-top: 0.5rem;
}

.showcase__cta .btn {
  padding: 0.85rem 1.65rem;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .showcase {
    padding-bottom: 3rem;
  }

  .showcase__track {
    gap: 0.85rem;
    padding-inline: 4vw;
  }

  .showcase__float-next {
    right: 0.75rem;
    width: 38px;
    height: 38px;
  }

  .showcase-card {
    flex-basis: clamp(140px, 42vw, 180px);
  }
}

/* ---- Home quick links ---- */
.home-links {
  padding: 5rem 0;
  background: var(--white);
}

.home-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.home-link-card {
  display: block;
  padding: 0;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.home-link-card__media {
  height: 140px;
  overflow: hidden;
  background: var(--gray-100);
}

.home-link-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-link-card:hover .home-link-card__media img {
  transform: scale(1.06);
}

.home-link-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.home-link-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(56, 161, 105, 0.15), rgba(154, 230, 92, 0.25));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.home-link-card__icon svg {
  width: 26px;
  height: 26px;
}

.home-link-card h3 {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.home-link-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ---- Blog ---- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-lime) 100%);
  background-image: var(--blog-image, none), linear-gradient(135deg, var(--green) 0%, var(--green-lime) 100%);
  background-size: cover;
  background-position: center;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.blog-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: color var(--transition);
}

.blog-card__link:hover {
  color: var(--green);
}

/* ---- CTA strip ---- */
.cta-strip {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(155deg, #eef8f2 0%, #f7fafc 50%, #e8f3ec 100%);
  text-align: center;
}

.cta-strip .container {
  position: relative;
  overflow: hidden;
  max-width: min(680px, 92vw);
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 14px 44px rgba(26, 107, 60, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14);
}

.cta-strip .container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(56, 161, 105, 0.95) 0%, transparent 46%),
    radial-gradient(circle at 82% 72%, rgba(154, 230, 92, 0.82) 0%, transparent 48%),
    radial-gradient(circle at 52% 50%, rgba(26, 107, 60, 0.55) 0%, transparent 72%);
  animation: ctaLiquidFloat 13s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-strip .container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  background: rgba(26, 107, 60, 0.28);
  backdrop-filter: blur(22px) saturate(185%);
  -webkit-backdrop-filter: blur(22px) saturate(185%);
  pointer-events: none;
}

@keyframes ctaLiquidFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(22px, -14px) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-strip .container::before {
    animation: none;
  }
}

.cta-strip h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin-bottom: 0.65rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.12);
}

.cta-strip p {
  position: relative;
  z-index: 2;
  opacity: 0.95;
  margin-bottom: 1.35rem;
  max-width: 420px;
  margin-inline: auto;
  font-size: 0.95rem;
}

.cta-strip .btn--outline {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-strip .btn--outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.95);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__inner,
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tabs-panel {
    grid-template-columns: 1fr;
  }

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

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

  .home-links__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 1024px) {
  .nav__toggle {
    display: flex;
    flex-shrink: 0;
    order: 3;
  }

  .nav__logo {
    flex: 1 1 auto;
    min-width: 0;
    order: 1;
  }

  .nav__search-bar {
    order: 2;
    width: 42px;
    flex-shrink: 0;
    margin-right: 0.35rem;
  }

  .nav__search-bar .search-beam__label {
    display: none;
  }

  .nav__search-bar .search-beam__inner {
    justify-content: center;
    padding: 0.55rem;
    min-width: 38px;
  }

  .nav__links {
    position: fixed;
    top: var(--site-top);
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    max-height: calc(100dvh - var(--site-top) - 1rem);
    overflow-y: auto;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav__link--cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .tabs-nav__btn {
    font-size: 0.78rem;
    padding: 0.75rem 0.7rem;
  }

  .tabs-panels {
    min-height: 380px;
  }

  .home-links__grid,
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Mobile: softer palette (less green on phone) ---- */
@media (max-width: 900px) {
  .hero-shape__inner {
    opacity: 1;
  }

  .site-ticker--top {
    background: var(--green-dark);
    background-image: none;
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .site-ticker--top::before,
  .site-ticker--top::after {
    display: none;
  }

  .site-ticker__star {
    color: var(--white);
  }

  .site-ticker--top .site-ticker__item {
    color: var(--white);
  }

  .site-ticker--bottom {
    background: var(--green-dark);
    background-image: none;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .site-ticker--bottom .site-ticker__item {
    color: var(--white);
  }

  .site-ticker--bottom .site-ticker__icon svg {
    stroke: var(--white);
    color: var(--white);
  }

  .hero__eyebrow {
    color: var(--gray-600);
  }

  .hero__title-accent {
    background: none;
    -webkit-text-fill-color: var(--green-dark);
    color: var(--green-dark);
  }

  .hero-slide__tag {
    background: var(--yellow);
    color: var(--gray-800);
  }

  .hero-slider__label.active {
    color: var(--gray-800);
    background: rgba(0, 0, 0, 0.06);
  }

  .hero-slider__progress-bar {
    background: linear-gradient(90deg, var(--gray-600), var(--gray-800));
  }

  .stats {
    background: linear-gradient(155deg, #e8f3ec 0%, #f4faf7 50%, #e6f0ea 100%);
    border-top-color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }

  .stat {
    background: rgba(255, 255, 255, 0.45);
  }

  .stat__num {
    color: var(--green-dark);
  }

  .stat__label {
    color: var(--gray-800);
  }

  .section-header__eyebrow {
    color: var(--gray-600);
  }

  .home-link-card__icon {
    background: var(--gray-100);
    color: var(--gray-800);
  }

  .home-link-card:hover {
    border-color: var(--gray-200);
  }

  .cta-strip {
    background: var(--gray-900);
  }

  .cta-strip .container {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
      0 12px 36px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .cta-strip .container::before {
    background:
      radial-gradient(circle at 18% 28%, rgba(56, 161, 105, 0.75) 0%, transparent 46%),
      radial-gradient(circle at 82% 72%, rgba(104, 211, 145, 0.6) 0%, transparent 48%),
      radial-gradient(circle at 52% 50%, rgba(45, 55, 72, 0.65) 0%, transparent 72%);
  }

  .cta-strip .container::after {
    background: rgba(45, 55, 72, 0.35);
  }

  .page-banner {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-600) 100%);
  }

  .page-banner__overlay {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.75) 0%, rgba(45, 55, 72, 0.55) 100%);
  }

  .nav__link--cta {
    background: var(--gray-900);
  }

  .nav__link--cta:hover {
    background: var(--gray-800);
  }
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---- Process steps ---- */
.process {
  padding: 4rem 0 5rem;
  background: var(--white);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.process-step__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-lime));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.45rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---- Gallery / portfolio ---- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(26, 107, 60, 0.88));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

/* ---- Our Work mosaic (homepage) ---- */
.work-showcase {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.work-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.65rem, 1.2vw, 1rem);
}

.work-mosaic__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 1;
}

.work-mosaic__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.work-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.work-mosaic__item:hover img {
  transform: scale(1.05);
}

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

  .work-mosaic__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .work-showcase {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .work-mosaic {
    grid-template-columns: 1fr;
  }

  .work-mosaic__item,
  .work-mosaic__item--wide {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }
}

/* ---- Values / info cards ---- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.value-card__media {
  height: 160px;
  overflow: hidden;
}

.value-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card__body {
  padding: 1.25rem;
}

.value-card h3 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---- About workspace photo ---- */
.about__photo {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.about__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__stats {
  padding: 4rem 0;
}

/* ---- Contact visual & hours ---- */
.contact__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.contact__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact__hours {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.contact__hours h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.contact__hours dl {
  display: grid;
  gap: 0.45rem;
}

.contact__hours dt {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
}

.contact__hours dd {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0 0 0.35rem;
}

/* ---- Blog newsletter ---- */
.newsletter {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
}

.newsletter h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.newsletter p {
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__form input {
  flex: 1 1 220px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px;
  font: inherit;
}

.newsletter__form .btn {
  flex-shrink: 0;
}

.newsletter .btn--outline {
  border-color: var(--white);
  color: var(--white);
}

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

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

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

@media (max-width: 640px) {
  .process__grid,
  .values__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    min-height: 260px;
  }

  .page-banner__content {
    padding: 3rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-banner__bg,
  .page-banner__shape {
    animation: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-shape,
  .hero-shape__inner,
  .hero-slide__content--welcome .hero__eyebrow,
  .hero-slide__content--welcome .hero__title,
  .hero-slide__content--welcome .hero__desc,
  .hero-slide__content--welcome .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Utility bar (contact, language, currency) ---- */
.site-util {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 105;
  height: var(--util-h);
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-util__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.site-util__contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.site-util__contact a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--transition);
}

.site-util__contact a:hover {
  color: var(--green-lime);
}

.site-util__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switcher,
.currency-switcher {
  display: flex;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.15rem;
}

.lang-switcher__btn,
.currency-switcher__btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-switcher__btn.active,
.currency-switcher__btn.active {
  background: var(--green);
  color: var(--white);
}

/* ---- Search beam (revolving border) ---- */
.search-beam {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  border: none;
  padding: 2px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
}

.search-beam--modal {
  width: 100%;
}

.search-beam__track {
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 250deg,
    #ec4899 280deg,
    #a855f7 310deg,
    #6366f1 340deg,
    #38bdf8 360deg
  );
  animation: searchBeamSpin 2.8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.search-beam__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #0f1117;
  color: rgba(255, 255, 255, 0.55);
  min-height: 42px;
  box-sizing: border-box;
}

.search-beam__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.45);
}

.search-beam__label {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-beam__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

.search-beam__input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.search-beam__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.search-beam__close svg {
  width: 16px;
  height: 16px;
}

.search-beam__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.search-beam:hover .search-beam__inner,
.search-beam:focus-visible .search-beam__inner {
  background: #12151c;
}

.search-beam:focus-visible {
  outline: 2px solid rgba(168, 85, 247, 0.45);
  outline-offset: 2px;
}

@keyframes searchBeamSpin {
  to { transform: rotate(360deg); }
}

/* Nav search pill — must follow .search-beam so width is not overridden */
.nav__search-bar.search-beam {
  flex-shrink: 0;
}

@media (min-width: 1025px) {
  .nav__search-bar.search-beam {
    width: 196px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .nav__search-bar.search-beam {
    width: 42px;
  }
}

/* ---- Search modal ---- */
.site-search[hidden] {
  display: none;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--site-top) + 1.25rem) 1rem 1rem;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.72);
  backdrop-filter: blur(8px);
}

.site-search__panel {
  position: relative;
  width: min(560px, 100%);
  animation: searchPanelIn 0.28s ease;
}

.search-beam--modal {
  cursor: default;
  box-shadow:
    0 0 40px rgba(168, 85, 247, 0.12),
    0 0 80px rgba(236, 72, 153, 0.08);
}

.search-beam--modal .search-beam__inner {
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  min-height: 52px;
}

.search-beam--modal .search-beam__icon {
  width: 18px;
  height: 18px;
}

@keyframes searchPanelIn {
  from { opacity: 0; transform: translateY(-14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.site-search__results {
  margin-top: 0.65rem;
  max-height: min(360px, 50vh);
  overflow-y: auto;
  background: rgba(15, 17, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.site-search__result {
  display: block;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.site-search__result:last-child {
  border-bottom: none;
}

.site-search__result:hover {
  background: rgba(168, 85, 247, 0.1);
}

.site-search__result strong {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.15rem;
}

.site-search__result span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

.site-search__empty {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

body.search-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .search-beam__track {
    animation: none;
    background: linear-gradient(90deg, #ec4899, #a855f7, #6366f1);
    inset: 0;
  }
}

@media (max-width: 900px) {
  .search-beam__label {
    font-size: 0.82rem;
  }
}

/* ---- Pricing cards ---- */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.price-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(56, 161, 105, 0.2);
}

.price-card__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: linear-gradient(135deg, var(--yellow), var(--green-lime));
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.price-card__body {
  padding: 1.75rem;
}

.price-card h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.price-card__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0.75rem 0;
}

.price-card__price-old {
  font-size: 1rem;
  color: var(--gray-600);
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-weight: 500;
}

.price-card__list {
  margin: 1rem 0 1.25rem;
}

.price-card__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.price-card__note {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 0.75rem;
}

.deals__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ---- Product catalog ---- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-item__media {
  height: 160px;
  overflow: hidden;
  background: var(--gray-100);
}

.product-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item__body {
  padding: 1.25rem;
}

.product-item h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.product-item__price {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.product-item p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.product-item__link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.industry-card {
  display: block;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.industry-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-light);
  box-shadow: var(--shadow);
}

.industry-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-100);
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.industry-card:hover .industry-card__media img {
  transform: scale(1.05);
}

.industry-card h3 {
  font-size: 0.95rem;
  color: var(--gray-900);
  padding: 1rem 0.75rem 1.15rem;
  font-weight: 700;
}

.industry-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, rgba(56, 161, 105, 0.12), rgba(154, 230, 92, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.industry-card__icon svg {
  width: 24px;
  height: 24px;
}

/* Legacy icon cards — hidden when media image is present */
.industry-card:has(.industry-card__media) .industry-card__icon {
  display: none;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 5rem 0;
  background: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonials__showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial-showcase-card {
  display: block;
}

.testimonial-showcase-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 0.85rem;
  border: 1px solid var(--gray-100);
}

.testimonial-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-showcase-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gray-900);
  text-align: center;
}

@media (max-width: 640px) {
  .testimonials__showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .testimonial-showcase-card h3 {
    font-size: 0.82rem;
  }
}

.testimonial-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(26, 107, 60, 0.06);
}

.testimonial-card__stars {
  color: var(--yellow-bright);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-800);
  line-height: 1.55;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-lime));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-900);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ---- FAQ accordion ---- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-900);
  text-align: left;
  cursor: pointer;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* ---- Trust strip ---- */
.trust-strip {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
}

.trust-strip p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.client-logos {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-logos__viewport {
  overflow: hidden;
  width: 100%;
}

.client-logos__track {
  display: flex;
  width: max-content;
  animation: clientLogosScroll 40s linear infinite;
}

.client-logos__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: 0 1rem;
}

.client-logos__group img {
  height: clamp(28px, 4vw, 38px);
  width: auto;
  max-width: clamp(90px, 14vw, 130px);
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter var(--transition), opacity var(--transition);
}

.client-logos__group img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes clientLogosScroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .client-logos__track {
    animation: none;
  }
}

.trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  opacity: 0.85;
}

@media (max-width: 900px) {
  .site-util__contact a:last-child {
    display: none;
  }

  .deals__grid,
  .products__grid,
  .testimonials__grid,
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-util {
    font-size: 0.68rem;
  }

  .site-util .container {
    width: min(1140px, 96vw);
  }

  .site-util__inner {
    gap: 0.35rem;
  }

  .site-util__contact {
    gap: 0.45rem;
    flex: 1;
    min-width: 0;
  }

  .site-util__contact a {
    font-size: 0.65rem;
  }

  .site-util__controls {
    gap: 0.35rem;
  }

  .site-util .lang-switcher__btn,
  .site-util .currency-switcher__btn {
    font-size: 0.6rem;
    padding: 0.18rem 0.4rem;
  }

  .deals__grid,
  .products__grid,
  .testimonials__grid,
  .industries__grid {
    grid-template-columns: 1fr;
  }
}
