/* =========================================================================
   VATSPOWER AND ENERGY — main.css
   Design tokens: deep circuit-green + copper-wire accent + lime spark
   Type: Space Grotesk (display) / Inter (body) / JetBrains Mono (data)
   ========================================================================= */

:root {
  /* --- Color --- */
  --c-bg: #fafaf7;
  --c-surface: #ffffff;
  --c-surface-2: #f1f5ef;
  --c-ink: #14201a;
  --c-ink-soft: #46564c;
  --c-muted: #6e7c73;
  --c-border: #e4e8e1;

  --c-primary: #0f6b33;
  --c-primary-dark: #0a4a24;
  --c-primary-tint: #e5f1e7;
  --c-lime: #c9e86b;
  --c-lime-dark: #9dbe3d;
  --c-copper: #c0703a;
  --c-copper-dark: #9a5726;
  --c-copper-tint: #fbe9dc;

  --c-white: #ffffff;

  /* --- Type --- */
  --f-display: "Space Grotesk", "Segoe UI", sans-serif;
  --f-body: "Inter", "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* --- Layout --- */
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 32, 26, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 107, 51, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 107, 51, 0.16);

  --topbar-h: 38px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================== RESET ================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + var(--nav-h) + 12px);
}
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  margin: 0;
  line-height: 1.15;
  color: var(--c-ink);
}
p {
  margin: 0;
}
:focus-visible {
  outline: 2px solid var(--c-copper);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 30px 0;
}
.section--tight {
  padding: 48px 0;
}
.section--surface {
  background: var(--c-surface-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-tint);
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-pill);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-copper);
}

.section__head {
  max-width: 600px;
  margin-bottom: 32px;
}
.section__head--center {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.section__desc {
  margin-top: 10px;
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* =============================== BUTTONS =============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 107, 51, 0.18);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 107, 51, 0.25);
}
.btn--copper {
  background: var(--c-copper);
  color: #fff;
  box-shadow: 0 10px 24px rgba(192, 112, 58, 0.22);
}
.btn--copper:hover {
  background: var(--c-copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(192, 112, 58, 0.3);
}
.btn--ghost {
  background: #fff;
  color: var(--c-ink);
  border-color: var(--c-border);
}
.btn--ghost:hover {
  background: var(--c-primary-tint);
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.btn--block {
  width: 100%;
}
.btn--lg {
  min-height: 54px;
  padding: 0 34px;
  font-size: 15px;
}

/* =============================== TOPBAR ================================ */
.topbar {
  background: var(--c-primary-dark);
  color: rgba(255, 255, 255, 0.88);
  height: var(--topbar-h);
  font-size: 12.5px;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
  font-family: var(--f-mono);
  letter-spacing: 0.01em;
}
.topbar__item:hover {
  color: var(--c-lime);
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}
.topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s,
    transform 0.2s;
}
.topbar__social:hover {
  background: var(--c-lime);
  color: var(--c-primary-dark);
  transform: translateY(-1px);
}

/* =============================== NAVBAR ================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  transition:
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 250, 247, 0.98);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__logo {
  display: block;
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
.site-header.is-scrolled .brand__logo {
  height: 52px;
}
@media (max-width: 768px) {
  .brand__logo {
    height: 46px;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--c-ink-soft);
  border-radius: var(--radius-pill);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav__link:hover {
  color: var(--c-primary);
  background: var(--c-primary-tint);
}
.nav__link.is-active {
  color: var(--c-primary);
  background: var(--c-primary-tint);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__phone svg {
  color: var(--c-copper);
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-surface);
}
.hamburger span {
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--c-ink);
  border-radius: 2px;
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================== HERO ==================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 90px;
  background: var(--c-bg);
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--c-primary);
  position: relative;
}
.hero__title .underline {
  display: block;
  height: 10px;
  margin-top: -8px;
}
.hero__desc {
  margin-top: 20px;
  font-size: 17px;
  color: var(--c-ink-soft);
  max-width: 520px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.hero__trust-item svg {
  color: var(--c-primary);
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  z-index: 2;
}
.hero__card {
  position: relative;
  z-index: 2;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.hero__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero__stat {
  background: var(--c-surface-2);
  border-radius: var(--radius-md);
  padding: 18px;
}
.hero__stat b {
  display: block;
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--c-primary);
}
.hero__stat span {
  font-size: 12.5px;
  color: var(--c-muted);
}
.hero__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
}
.hero__badge--1 {
  top: -18px;
  left: -8px;
  background: var(--c-copper);
}
.hero__badge--2 {
  bottom: -16px;
  right: -6px;
  background: var(--c-primary);
}
.hero__badge svg {
  flex-shrink: 0;
}

/* Signature: dense wave-line bundle, background only — fades out under content */
.wave-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* -webkit-mask-image:
    linear-gradient(
      100deg,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 30%,
      #000 55%,
      #000 100%
    ),
    radial-gradient(
      480px 320px at 12% 45%,
      transparent 0%,
      transparent 55%,
      #000 90%
    ); */
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      100deg,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 30%,
      #000 55%,
      #000 100%
    ),
    radial-gradient(
      480px 320px at 12% 45%,
      transparent 0%,
      transparent 55%,
      #000 90%
    );
  mask-composite: intersect;
}

.wave-lines .wave {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 10 8;
  animation: waveFlow 24s linear infinite;
}

.wave-lines .wave--1  { stroke: var(--c-primary); opacity: 0.55; }
.wave-lines .wave--2  { stroke: #2f8fb0;            opacity: 0.45; }
.wave-lines .wave--3  { stroke: var(--c-copper);    opacity: 0.5;  }
.wave-lines .wave--4  { stroke: #6bc267;            opacity: 0.45; }
.wave-lines .wave--5  { stroke: var(--c-primary);   opacity: 0.4;  }
.wave-lines .wave--6  { stroke: #2f8fb0;            opacity: 0.35; }
.wave-lines .wave--7  { stroke: var(--c-copper);    opacity: 0.4;  }
.wave-lines .wave--8  { stroke: #6bc267;            opacity: 0.35; }
.wave-lines .wave--9  { stroke: var(--c-primary);   opacity: 0.3;  }
.wave-lines .wave--10 { stroke: #2f8fb0;            opacity: 0.3;  }

.wave-lines .wave--2  { animation-duration: 29s; animation-direction: reverse; }
.wave-lines .wave--3  { animation-duration: 21s; }
.wave-lines .wave--4  { animation-duration: 33s; animation-direction: reverse; }
.wave-lines .wave--5  { animation-duration: 26s; }
.wave-lines .wave--6  { animation-duration: 31s; animation-direction: reverse; }
.wave-lines .wave--7  { animation-duration: 23s; }
.wave-lines .wave--8  { animation-duration: 35s; animation-direction: reverse; }
.wave-lines .wave--9  { animation-duration: 27s; }
.wave-lines .wave--10 { animation-duration: 20s; animation-direction: reverse; }

.wave-lines .wave-dot {
  fill: var(--c-copper);
  opacity: 0.7;
}

@keyframes waveFlow {
  to { stroke-dashoffset: -600; }
}

@media (max-width: 860px) {
  .wave-lines {
    -webkit-mask-image:
      linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 35%,
        #000 60%,
        #000 100%
      );
    mask-image:
      linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 35%,
        #000 60%,
        #000 100%
      );
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }
}

@media (max-width: 640px) {
  .wave-lines { opacity: 0.6; }
}
/* =================  HERO SECTION END ================= */

/* Signature: animated circuit trace after about section*/
.circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.circuit path {
  fill: none;
  stroke: var(--c-copper);
  stroke-width: 1.4;
  stroke-dasharray: 6 10;
  animation: dash 26s linear infinite;
  opacity: 0.55;
}
.circuit circle {
  fill: var(--c-lime-dark);
}
@keyframes dash {
  to {
    stroke-dashoffset: -800;
  }
}

.trace-divider {
  position: relative;
  height: 46px;
}
.trace-divider svg {
  width: 100%;
  height: 100%;
}
.trace-divider path {
  fill: none;
  stroke: var(--c-border);
  stroke-width: 2;
}
.trace-divider circle {
  fill: var(--c-copper);
}
/* ================= PAGE HERO (Circuit Theme) ================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: linear-gradient(135deg, #0a3d24 0%, #0f4d2f 45%, #14653d 100%);
}

/* --- PCB trace pattern (lines + solder-point nodes) --- */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image:
    /* horizontal + vertical traces */
    linear-gradient(rgba(215, 235, 109, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 235, 109, 0.14) 1px, transparent 1px),
    /* solder point nodes at intersections */
    radial-gradient(circle, rgba(215, 235, 109, 0.55) 1.5px, transparent 2px);
  background-size:
    90px 90px,
    90px 90px,
    90px 90px;
  background-position:
    0 0,
    0 0,
    0 0;
  mask-image: radial-gradient(
    ellipse at center,
    #000 55%,
    transparent 92%
  ) !important;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 55%,
    transparent 92%
  );
}

/* --- subtle glow / vignette accent top-right, keeps brand feel --- */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at top right,
    rgba(215, 235, 109, 0.28) 0%,
    transparent 32%
  );
  pointer-events: none;
}

/* --- animated "current" traveling lines (electricity feel) --- */
.page-hero .circuit-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.page-hero .circuit-lines svg {
  width: 100%;
  height: 100%;
}
.page-hero .circuit-lines path {
  fill: none;
  stroke: #d7eb6d;
  stroke-width: 2;
  opacity: 0.55;
  stroke-dasharray: 8 14;
  animation: currentFlow 3.5s linear infinite;
}
.page-hero .circuit-lines path:nth-child(2) {
  animation-duration: 5s;
  animation-direction: reverse;
  opacity: 0.35;
}
.page-hero .circuit-lines path:nth-child(3) {
  animation-duration: 4.2s;
  opacity: 0.4;
}
@keyframes currentFlow {
  to {
    stroke-dashoffset: -220;
  }
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: auto;
}

.page-hero h1 {
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* --- Breadcrumb styled like a circuit connector chip --- */
.breadcrumb {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(215, 235, 109, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 3px rgba(215, 235, 109, 0.06);
}
/* connector pins left/right, like a chip on a PCB */
.breadcrumb::before,
.breadcrumb::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(215, 235, 109, 0.55);
  transform: translateY(-50%);
}
.breadcrumb::before {
  left: -14px;
}
.breadcrumb::after {
  right: -14px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.breadcrumb a:hover {
  color: #d7eb6d;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumb .active {
  color: #d7eb6d;
  font-weight: 600;
  position: relative;
}
/* small glowing "LED" dot before active page */
.breadcrumb .active::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7eb6d;
  margin-right: 8px;
  box-shadow: 0 0 6px 2px rgba(215, 235, 109, 0.8);
  animation: ledPulse 1.6s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes ledPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@media (max-width: 991px) {
  .page-hero {
    padding: 70px 0;
  }
  .page-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 60px 0;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .breadcrumb {
    padding: 10px 18px;
    font-size: 14px;
  }
  .page-hero .circuit-lines {
    display: none;
  } /* keep mobile clean/light */
}

/* =============================== MARQUEE (Brands) ======================== */
.brands {
  padding: 20px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}
.brands__label {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 22px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: scroll 32s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0 32px;
}
.marquee__item img {
  max-width: 130px;
  max-height: 60px;
  width: auto;
  height: 60px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s var(--ease);
}
.marquee__item:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.08);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =============================== ABOUT =================================== */
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.about__art {
  position: relative;
}

.about__frame {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease);
}
.about__frame:hover img {
  transform: scale(1.04);
}
.about__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 107, 51, 0.16), transparent 45%);
  pointer-events: none;
}

.about__years {
  position: absolute;
  left: -16px;
  bottom: -16px;
  padding: 18px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about__years b {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--c-copper);
  line-height: 1;
  margin-bottom: 6px;
}
.about__years span {
  font-size: 11px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__content .section__title {
  margin-bottom: 14px;
}
.about__content .section__desc {
  margin-bottom: 18px;
}

.about__list {
  display: grid;
  gap: 10px;
  margin-top: 0;
}
.about__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-ink-soft);
}
.about__list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--c-primary);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--c-border);
}
.about__stats b {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--c-ink);
  line-height: 1;
  margin-bottom: 6px;
}
.about__stats span {
  display: block;
  font-size: 12px;
  color: var(--c-muted);
}

/*==================================================
CERTIFICATIONS
==================================================*/

#certifications {
  position: relative;
  overflow: hidden;
}

/* Decorative blur */

#certifications::before {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: rgba(30, 115, 56, 0.08);

  filter: blur(90px);

  top: -120px;
  left: -120px;

  pointer-events: none;
}

#certifications::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(255, 170, 0, 0.08);

  filter: blur(80px);

  right: -80px;
  bottom: -80px;
}

#certifications .section__title span {
  color: var(--primary);
}

.certification-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  margin-top: 55px;
}

/*====================================
CARD
====================================*/

.certification-card {
  position: relative;

  padding: 35px 25px;

  text-align: center;

  border-radius: 24px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.65);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transition: 0.4s ease;
}

.certification-card:hover {
  transform: translateY(-10px);

  border-color: rgba(16, 126, 60, 0.2);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(16, 126, 60, 0.08);
}

/* green glow */

.certification-card::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  border-radius: 50%;

  background: rgba(20, 140, 60, 0.1);

  filter: blur(40px);

  top: -40px;
  right: -40px;
}

/*====================================
ICON
====================================*/

.certification-icon {
  width: 110px;
  height: 110px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.7);

  border: 1px solid rgba(255, 255, 255, 0.8);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 10px 25px rgba(0, 0, 0, 0.06);
}

.certification-icon img {
  width: 72px;

  height: 72px;

  object-fit: contain;
}

/*====================================
TEXT
====================================*/

.certification-card h4 {
  margin-top: 24px;

  margin-bottom: 10px;

  font-size: 21px;

  font-weight: 700;

  color: #17212b;
}

.certification-card p {
  font-size: 15px;

  color: #666;

  margin: 0;

  line-height: 1.6;
}

/*====================================
HOVER
====================================*/

.certification-card:hover .certification-icon {
  transform: scale(1.08);

  transition: 0.35s;
}

.certification-card:hover img {
  transform: scale(1.08);

  transition: 0.35s;
}

/*====================================
RESPONSIVE
====================================*/

/* Tablet */
@media (max-width: 1200px) {
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .certification-card {
    padding: 22px 15px;
    border-radius: 18px;
  }

  .certification-icon {
    width: 75px;
    height: 75px;
  }

  .certification-icon img {
    width: 50px;
    height: 50px;
  }

  .certification-card h4 {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 6px;
  }

  .certification-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* =============================== VATSPOWER BRANDS ================================= */

.vp-brand-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- TOP ROW ---------- */

.vp-brand-grid-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

/* ---------- BOTTOM ROW ---------- */

.vp-brand-grid-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
}

/* ---------- CARD ---------- */

.vp-brand-card {
  position: relative;
  height:auto !important;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
        0 8px 18px rgba(0,0,0,.08),
        0 2px 6px rgba(0,0,0,.04);
  transition: all 0.35s var(--ease);
}

.vp-brand-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.18),
    0 6px 18px rgba(0, 0, 0, 0.08);
}

.vp-brand-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: unset;
  object-position: center;
  transition: transform 0.45s var(--ease);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.12))
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.08));
}

.vp-brand-card:hover img {
  transform: scale(1.04);
}

/* ---------- HEIGHT ---------- */

.vp-brand-grid-top .vp-brand-card {
  height: 240px;
}

.vp-brand-grid-bottom .vp-brand-card {
  height: 155px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1199px) {
  .vp-brand-grid-top {
    grid-template-columns: 1.7fr 1fr;
  }

  .vp-brand-grid-bottom {
    grid-template-columns:1.6fr 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .vp-brand-grid-top,
  .vp-brand-grid-bottom {
    grid-template-columns: 1fr;
  }

  .vp-brand-grid-top .vp-brand-card,
  .vp-brand-grid-bottom .vp-brand-card {
    height: 190px;
  }
}

@media (max-width: 767px) {
  .vp-brand-grid {
    gap: 18px;
  }

  .vp-brand-grid-top,
  .vp-brand-grid-bottom {
    gap: 18px;
  }

  .vp-brand-grid-top .vp-brand-card,
  .vp-brand-grid-bottom .vp-brand-card {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .vp-brand-grid-top .vp-brand-card,
  .vp-brand-grid-bottom .vp-brand-card {
    height: 170px;
    border-radius: 18px;
  }
}

/* =============================== PRODUCTS ================================ */

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 116, 58, 0.35);
  box-shadow: 0 16px 32px rgba(15, 33, 20, 0.1);
}

.product-card__plate {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--c-border);
  border-radius: 5px;
}

.product-card__code {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  font-weight: 600;
}

.product-card__image {
  height: 190px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f9fbf8, #f1f5f2);
  border-bottom: 1px solid var(--c-border);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__content {
  padding: 12px 16px 14px;
}

.product-card__title {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.3;
}

.product-card__trace {
  height: 2px;
  width: 22px;
  margin: 9px 0 12px;
  background: var(--c-copper);
  border-radius: 2px;
  transition:
    width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
}

.product-card:hover .product-card__trace {
  width: 100%;
  box-shadow: 0 0 8px rgba(184, 116, 58, 0.5);
}

.product-card__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 3px 9px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  background: #eef7f0;
  color: var(--c-primary);
  border: 1px solid rgba(15, 107, 51, 0.1);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.product-card:hover .tag {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.tag--outline {
  background: transparent;
  color: var(--c-copper);
  border: 1px solid rgba(184, 116, 58, 0.35);
}

.product-card:hover .tag--outline {
  background: var(--c-copper);
  color: #fff;
  border-color: var(--c-copper);
}

.product-card--custom .product-card__image {
  background: linear-gradient(180deg, #fbf6ef, #f4ebdd);
}
.products__cta {
  margin-top: 50px;
  text-align: center;
}

.products__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 980px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================== SERVICES ================================ */

.services-slider {
  overflow: hidden;
}

.services-track {
  display: flex;
  gap: 20px;
}

.service-card {
  flex: 0 0 calc(25% - 15px);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 22px;
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(15, 107, 51, 0.18);
}

.service-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff3ea;
  color: var(--c-copper);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff6ef;
  color: var(--c-copper);
  margin-bottom: 18px;
}

.service-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}
.servicesSwiper {
  padding: 10px 2px 55px;
}

.servicesSwiper .swiper-slide {
  height: auto;
}

.service-card {
  height: 100%;
}

/* =============================== WHY CHOOSE =============================== */
.why {
  background: linear-gradient(180deg, #d7eb6d 0%, #eef7c8 100%);
  /* color: #fff; */
  position: relative;
  overflow: hidden;
}
.why .section__title,
.why .eyebrow {
  color: var(--c-primary-dark);
}
.why .eyebrow {
  background: rgba(15, 77, 47, 0.08);
  color: var(--c-primary-dark);
}
.why .eyebrow::before {
  background: var(--c-primary-dark);
}
.why .section__desc {
  color: rgba(15, 77, 47, 0.75);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.why-strip {
  margin-top: 40px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  position: relative;
  transition: 0.3s;
}

.why-feature:not(:last-child) {
  border-right: 1px solid #edf0e8;
}

.why-feature:hover {
  background: #f8fbf0;
}

.why-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #0f4d2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-feature h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #173b2d;
}

.why-feature p {
  margin: 0;
  font-size: 12px;
  color: #6b756d;
}

@media (max-width: 991px) {
  .why-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-feature:nth-child(2) {
    border-right: none;
  }

  .why-feature:nth-child(-n + 2) {
    border-bottom: 1px solid #edf0e8;
  }
}

@media (max-width: 575px) {
  .why-strip {
    grid-template-columns: 1fr;
  }

  .why-feature {
    border: none !important;
    border-bottom: 1px solid #edf0e8 !important;
  }

  .why-feature:last-child {
    border-bottom: none !important;
  }
}

/* =============================== CTA =============================== */

.cta {
  padding: 50px 0;
  background: #fff;
}

.cta__strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 28px 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f6b33, #14733a);
  box-shadow: 0 18px 45px rgba(15, 107, 51, 0.18);
}

.cta__content {
  max-width: 700px;
}

.cta__content h3 {
  margin: 10px 0 8px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.cta__content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.cta__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.cta__actions .btn {
  min-width: 170px;
}
@media (max-width: 991px) {
  .cta__strip {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .cta__actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .cta__content h3 {
    font-size: 26px;
  }
}

/*==========================
Testimonials
==========================*/

#testimonials .section__title span{
    color:var(--primary);
}

#testimonials .section__desc{
    max-width:520px;
    margin:auto;
}

.testimonialSwiper{
    margin-top:45px;
    padding-bottom:45px;
}

.testimonial-card{

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

    border-radius:18px;

    padding:24px;

    transition:.35s;

    height:100%;
}

.testimonial-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

    border-color:rgba(15,125,60,.18);

}

.testimonial-stars{

    color:#FFB400;

    font-size:15px;

    margin-bottom:12px;

    letter-spacing:1px;

}

.testimonial-text{

    font-size:15px;

    line-height:1.75;

    color:#555;

    margin-bottom:18px;

    min-height:78px;

}

.testimonial-user h5{

    margin:0;

    font-size:18px;

    font-weight:700;

}

.testimonial-user span{

    font-size:14px;

    color:#777;

}

#testimonials .swiper-pagination{

    bottom:0 !important;

}

#testimonials .swiper-pagination-bullet{

    width:9px;

    height:9px;

    background:#cfd8cf;

    opacity:1;

}

#testimonials .swiper-pagination-bullet-active{

    width:24px;

    border-radius:20px;

    background:var(--primary);

    transition:.3s;

}

/* =============================== FAQ ======================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--c-ink);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-primary-tint);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s var(--ease),
    background 0.25s;
}
.faq-item__icon svg {
  transition: transform 0.25s var(--ease);
}
.faq-item.is-open .faq-item__icon {
  background: var(--c-primary);
  color: #fff;
}
.faq-item.is-open .faq-item__icon svg {
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-item__a p {
  padding: 0 4px 22px;
  color: var(--c-ink-soft);
  font-size: 14.8px;
  max-width: 680px;
}
/* ================= FAQ Layout ================= */

.faq-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.faq {
  max-width: 100%;
  margin: 0;
}

.faq-help {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.faq-help__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-primary-tint);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.faq-help h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.faq-help p {
  color: var(--c-ink-soft);
  line-height: 1.4;
  margin-bottom: 20px;
}

.faq-help ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-help ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.faq-help ul li i {
  color: var(--c-primary);
}

.faq-help__btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.faq-help__btns .btn {
  flex: 1;
  justify-content: center;
}

/* Responsive */

@media (max-width: 991px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-help {
    position: static;
  }
}

@media (max-width: 575px) {
  .faq-help__btns {
    flex-direction: column;
  }
}

/* =============================== FOOTER ==================================== */
.footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding-top: 64px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 7px;
}
.footer__about {
  margin-top: 14px;
  font-size: 13.8px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.footer__social a:hover {
  background: var(--c-lime);
  color: var(--c-ink);
  transform: translateY(-2px);
}
.footer__heading {
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer__list {
  display: grid;
  gap: 11px;
  font-size: 13.8px;
}
.footer__list a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}
.footer__list a:hover {
  color: var(--c-lime);
}
.footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
}
.footer__list--contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-lime);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================== MOBILE MENU (base, shown via responsive.css) === */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 14, 0.55);
  backdrop-filter: blur(2px);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease);
}
.mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(86vw, 340px);
  max-height: 100dvh;
  background: var(--c-surface);
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.18);
}
.mobile-menu.is-active {
  transform: translateX(0);
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.mobile-menu__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
  font-size: 20px;
  line-height: 1;
  color: var(--c-ink-soft);
}
.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 10px;
}
.mobile-menu__list {
  display: grid;
}
.mobile-menu__link {
  display: block;
  padding: 14px 12px;
  font-weight: 600;
  font-size: 15.5px;
  border-radius: var(--radius-sm);
  color: var(--c-ink);
}
.mobile-menu__link:hover,
.mobile-menu__link:active {
  background: var(--c-primary-tint);
  color: var(--c-primary);
}
.mobile-menu__social {
  display: flex;
  gap: 10px;
  padding: 16px 12px 4px;
}
.mobile-menu__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-soft);
}
.mobile-menu__foot {
  flex-shrink: 0;
  padding: 16px 16px 20px;
  border-top: 1px solid var(--c-border);
  display: grid;
  gap: 12px;
  background: var(--c-surface);
}
.mobile-menu__foot-row {
  display: flex;
  gap: 10px;
}
.mobile-menu__foot-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 11px;
  border-radius: var(--radius-sm);
  background: var(--c-surface-2);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-ink-soft);
}

.mobile-bottombar {
  display: none;
}
/* ========================== PRODUCT CATALOGUE ========================== */

.catalogue {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf7 100%);
}

.catalogue__wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.catalogue__content {
  max-width: 620px;
}

.catalogue__features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.catalogue__features span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border);
  font-size: 14px;
  font-weight: 500;
}

.catalogue__features i {
  color: var(--c-primary);
}

.catalogue__buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.catalogue__image {
  position: relative;
  text-align: center;
}

.catalogue__image img {
  width: 100%;
  max-width: 300px;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  transition: 0.35s;
}

.catalogue__image:hover img {
  transform: translateY(-8px);
}

.catalogue__badge {
  position: absolute;
  bottom: 20px;
  right: 30px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.catalogue__badge strong {
  display: block;
  font-size: 26px;
  color: var(--c-primary);
}

.catalogue__badge span {
  font-size: 13px;
  color: var(--c-muted);
}
@media (max-width: 991px) {
  .catalogue__wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .catalogue__content {
    max-width: 100%;
    text-align: center;
  }

  .catalogue__features {
    justify-content: center;
  }

  .catalogue__buttons {
    justify-content: center;
  }

  .catalogue__badge {
    right: 20px;
  }
}

@media (max-width: 576px) {
  .catalogue__buttons {
    flex-direction: column;
  }

  .catalogue__buttons .btn {
    width: 100%;
  }

  .catalogue__badge {
    position: static;
    width: max-content;
    margin: 20px auto 0;
  }
}
/* ================= Floating Buttons ================= */

.floating-whatsapp,
.scroll-top {
  position: fixed;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: 0.35s var(--ease);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp {
  left: 24px;
  background: #25d366;
  color: #fff;
  font-size: 30px;
}
@media (max-width: 767px) {
  .floating-whatsapp,
  .scroll-top {
    display: none;
  }
}

.scroll-top {
  right: 24px;
  background: var(--c-primary);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* Show */

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  background: #1ebe5d;
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--c-primary-dark);
}

/* Pulse Animation */

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .floating-whatsapp,
  .scroll-top {
    width: 52px;
    height: 52px;
    bottom: 18px;
  }

  .floating-whatsapp {
    left: 16px;
  }

  .scroll-top {
    right: 16px;
  }
}
/* ================= Counter Strip ================= */
.counter-strip {
  background: #0f4d2f;
  padding: 22px 0;
  /* margin-bottom: 10px; */
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.counter-item {
  text-align: center;
  position: relative;
}

.counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
}

.counter-number {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item p {
  margin: 0;
  color: #d7e8dc;
  font-size: 14px;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 767px) {
  .counter-strip {
    padding: 30px 0;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .counter-item {
    padding: 15px 10px;
  }

  .counter-item::after {
    display: none;
  }

  .counter-item:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .counter-number {
    font-size: 28px;
  }

  .counter-item p {
    font-size: 13px;
  }
}
