:root {
  --cdt-primary: #2c9c3b;
  --cdt-primary-dark: #1f7d2d;
  --cdt-primary-soft: #e7f4e9;
  --cdt-secondary: #0f1728;
  --cdt-bg: #f3f5f2;
  --cdt-surface: #ffffff;
  --cdt-text: #10233c;
  --cdt-muted: #6b768b;
  --cdt-border: #d7dfd6;
}

/* ── Scroll Reveal Animation ── */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item--delay-1 {
  transition-delay: 0.1s;
}
.reveal-item--delay-2 {
  transition-delay: 0.22s;
}
.reveal-item--delay-3 {
  transition-delay: 0.34s;
}
.reveal-item--delay-4 {
  transition-delay: 0.46s;
}
.reveal-item--delay-5 {
  transition-delay: 0.58s;
}

/* ── About Dark Section ── */
.about-dark {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background:
    linear-gradient(
      135deg,
      rgba(8, 18, 12, 0.97) 0%,
      rgba(8, 30, 16, 0.95) 55%,
      rgba(10, 40, 20, 0.92) 100%
    ),
    #081812;
  color: #fff;
}
.about-dark__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.about-dark__glow--tr {
  width: 700px;
  height: 700px;
  top: -30%;
  right: -15%;
  background: rgba(44, 156, 59, 0.07);
}
.about-dark__glow--bl {
  width: 500px;
  height: 500px;
  bottom: -30%;
  left: -10%;
  background: rgba(44, 156, 59, 0.05);
}
.about-dark__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .about-dark__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-dark__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(44, 156, 59, 0.14);
  border: 1px solid rgba(44, 156, 59, 0.32);
  color: #7ef794;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.about-dark__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c9c3b;
  animation: ldg-pulse 2s infinite;
}
.about-dark__title {
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: #fff;
}
.about-dark__accent {
  color: #2c9c3b;
  display: block;
}
.about-dark__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.025rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.about-dark__body strong {
  color: #fff;
}
.about-dark__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #2c9c3b;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.about-dark__cta:hover {
  gap: 0.9rem;
  color: #3dba50;
}
.about-dark__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-stat {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1.85rem 1.5rem;
  text-align: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.about-stat:hover {
  background: rgba(44, 156, 59, 0.1);
  border-color: rgba(44, 156, 59, 0.3);
  transform: translateY(-3px);
}
.about-stat__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.9rem;
  background: var(--cdt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: #fff;
}
.about-stat__value {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  color: #2c9c3b;
  margin-bottom: 0.35rem;
  font-family: inherit;
}
.about-stat__label {
  font-size: 0.975rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.about-stat__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  --cdt-shadow: 0 20px 45px rgba(16, 35, 60, 0.08);
}

html {
  font-size: 16px;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--cdt-text);
  background:
    radial-gradient(
      circle at top left,
      rgba(44, 156, 59, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #f7f8f7 0%, #f2f4f1 100%);
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

.topbar {
  background: var(--cdt-secondary);
  color: #fff;
  font-size: 0.85rem;
}

.topbar__inner,
.brandbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__inner {
  min-height: 2.25rem;
}

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

.topbar__meta a,
.topbar__meta span {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.topbar__meta strong {
  color: #fff;
}

/* ── Site Header – unified single-bar dark ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.main-nav {
  background: var(--cdt-secondary);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.main-nav.is-scrolled {
  background: rgba(15, 23, 40, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.main-nav .container {
  min-height: 4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

/* ── Logo ── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  height: 56px;
  width: auto;
}
@media (max-width: 374px) {
  .brand img {
    height: 44px;
  }
}

.brand__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--cdt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
 
.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__company {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* ── Nav links ── */
.main-nav .navbar-toggler {
  filter: none;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Animated hamburger → X toggler */
.nav-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggler__hamburger,
.nav-toggler__close {
  position: absolute;
  transition:
    opacity .2s cubic-bezier(.4,0,.2,1),
    transform .25s cubic-bezier(.4,0,.2,1);
}
/* default: hamburger visible, X hidden */
.nav-toggler__hamburger {
  opacity: 1;
  transform: rotate(0deg);
}
.nav-toggler__close {
  opacity: 0;
  transform: rotate(-90deg);
}
/* open state: hamburger hidden, X visible */
.nav-toggler.is-open .nav-toggler__hamburger {
  opacity: 0;
  transform: rotate(90deg);
}
.nav-toggler.is-open .nav-toggler__close {
  opacity: 1;
  transform: rotate(0deg);
}

.main-nav .navbar-nav {
  gap: 0;
}

.main-nav .nav-link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  transition: color .15s cubic-bezier(.4,0,.2,1);
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--cdt-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: #fff;
  opacity: 1;
}

.main-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* ── Header actions ── */
.main-nav__cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color .15s cubic-bezier(.4,0,.2,1);
}

.site-header__phone:hover {
  color: #fff;
}

.site-header__phone-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(44, 156, 59, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cdt-primary);
  flex-shrink: 0;
}

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

.site-header__phone-text span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-header__phone-text strong {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
}

.site-header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.48rem 1rem;
  border-radius: 0.5rem;
  background: var(--cdt-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.site-header__cta-btn:hover {
  background: var(--cdt-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.main-nav__search {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  padding: 0;
}

.main-nav__search:hover,
.main-nav__search[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Mobile drawer ── */
.mobile-drawer {
  position: fixed;
  top: 5rem; /* ngay dưới navbar */
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--cdt-secondary);
  display: flex;
  flex-direction: column;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
  overflow-y: auto;
  max-height: calc(90vh - 5rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  border-radius: 0 0 1rem 1rem;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .mobile-drawer {
    display: none !important;
  }
  .mobile-drawer__backdrop {
    display: none !important;
  }
}

.mobile-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1199;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer__header {
  display: none;
}

.mobile-drawer__close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.mobile-drawer__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.mobile-drawer__nav {
  flex: 1;
  padding: 0.75rem 0;
}

.mobile-drawer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Stagger: mỗi li ẩn sẵn, xổ vào khi drawer mở */
.mobile-drawer__nav li {
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.is-open .mobile-drawer__nav li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.06s; }
.mobile-drawer.is-open .mobile-drawer__nav li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.10s; }
.mobile-drawer.is-open .mobile-drawer__nav li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.14s; }
.mobile-drawer.is-open .mobile-drawer__nav li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.18s; }
.mobile-drawer.is-open .mobile-drawer__nav li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.22s; }
.mobile-drawer.is-open .mobile-drawer__nav li:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.26s; }

.mobile-drawer__nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    color .15s cubic-bezier(.4,0,.2,1),
    background-color .15s cubic-bezier(.4,0,.2,1);
}

.mobile-drawer__nav li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-drawer__nav li a svg {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.mobile-drawer__nav-active a {
  color: var(--cdt-primary) !important;
}

.mobile-drawer__nav-active a svg {
  color: var(--cdt-primary) !important;
}

/* Footer stagger */
.mobile-drawer__footer {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease 0.30s, transform 0.28s ease 0.30s;
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.mobile-drawer.is-open .mobile-drawer__footer {
  opacity: 1;
  transform: none;
}

.mobile-drawer__phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cdt-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.mobile-drawer__phone:hover {
  opacity: 0.85;
  color: var(--cdt-primary);
}

.mobile-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  background: var(--cdt-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .15s cubic-bezier(.4,0,.2,1), color .15s cubic-bezier(.4,0,.2,1);
}

.mobile-drawer__cta:hover {
  background: var(--cdt-primary-dark);
  color: #fff;
}

/* ── Search overlay ── */
.nav-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(15, 23, 40, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 1rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-search-overlay__inner {
  width: 100%;
  max-width: 660px;
  transform: translateY(-16px);
  transition: transform 0.25s ease;
}

.nav-search-overlay.is-open .nav-search-overlay__inner {
  transform: translateY(0);
}

.nav-search-overlay__form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0.85rem;
  box-shadow: 0 24px 60px rgba(16, 35, 60, 0.28);
  overflow: hidden;
  padding: 0.25rem;
}

.nav-search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: var(--cdt-text);
  background: transparent;
}

.nav-search-overlay__input::placeholder {
  color: var(--cdt-muted);
}

.nav-search-overlay__submit {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.6rem;
  border: none;
  background: var(--cdt-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .15s cubic-bezier(.4,0,.2,1);
}

.nav-search-overlay__submit:hover {
  background: var(--cdt-primary-dark);
}

.nav-search-overlay__close {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.6rem;
  border: none;
  background: transparent;
  color: var(--cdt-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  margin-left: 0.1rem;
}

.nav-search-overlay__close:hover {
  color: var(--cdt-text);
  background: var(--cdt-bg);
}

.landing-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.landing-hero {
  position: relative;
  padding: 5.75rem 0 5.5rem;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(15, 23, 40, 0.9) 0%,
      rgba(15, 23, 40, 0.72) 38%,
      rgba(28, 126, 47, 0.6) 100%
    ),
    linear-gradient(180deg, rgba(52, 63, 81, 0.75), rgba(22, 73, 30, 0.82)),
    radial-gradient(
      circle at top right,
      rgba(78, 255, 124, 0.25),
      transparent 28%
    ),
    #16341a;
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.landing-hero::before {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: -8rem;
  background: rgba(104, 255, 95, 0.15);
}

.landing-hero::after {
  width: 20rem;
  height: 20rem;
  left: -5rem;
  bottom: -5rem;
  background: rgba(255, 255, 255, 0.08);
}

.landing-hero .container,
.category-section .container {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--cdt-primary);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-hero .section-kicker,
.cta-panel .section-kicker {
  color: #89f797;
}

.landing-hero__title {
  max-width: 50rem;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1rem;
}

.landing-hero__text {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-actions .btn {
  min-width: 12rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-pills span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f3f8f3;
  font-weight: 600;
}

.hero-panel {
  border-radius: 1.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-panel__card {
  padding: 1.35rem;
  border-radius: 1.35rem;
  background: rgba(10, 17, 31, 0.38);
  margin-bottom: 1rem;
}

.hero-panel__card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-panel__card p,
.hero-panel__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel__label {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.hero-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-panel__grid div {
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.16);
  padding: 1.25rem;
}

.hero-panel__grid strong {
  display: block;
  font-size: 2rem;
}

.hero-panel__grid span {
  color: rgba(255, 255, 255, 0.9);
}

.section-card,
.card,
.content-box,
.highlight-card,
.product-card,
.category-tile,
.news-card,
.stats-panel__item {
  background: var(--cdt-surface);
  border: 1px solid var(--cdt-border);
  box-shadow: var(--cdt-shadow);
}

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

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

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

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  padding: 1.4rem 1.5rem;
  border-radius: 1rem;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 35, 60, 0.1);
}

.highlight-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cdt-primary-soft);
  border-radius: 0.75rem;
  font-size: 1.2rem;
}

.highlight-card h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cdt-secondary);
  margin-bottom: 0.3rem;
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--cdt-muted);
  line-height: 1.55;
  margin: 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading__divider {
  display: block;
  margin: 0.75rem auto 0;
  height: 0.25rem;
  width: 4rem;
  border-radius: 999px;
  background: var(--cdt-primary);
}

.section-heading.text-center {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.about-section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: var(--cdt-text);
}

.section-heading p,
.about-section__text,
.news-card__body p,
.category-tile p {
  color: var(--cdt-muted);
  line-height: 1.7;
}

/* ── Product Card Component (see also product-card.css) ── */

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.product-card:hover,
.product-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 35, 60, 0.18);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cdt-bg);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.5s ease;
}

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

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(44, 156, 59, 0.12),
    rgba(15, 23, 40, 0.08)
  );
  color: var(--cdt-primary);
  font-size: 3rem;
  font-weight: 800;
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(16, 35, 60, 0);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    background 0.3s ease;
}

.product-card:hover .product-card__overlay {
  background: rgba(16, 35, 60, 0.1);
  opacity: 1;
}

.product-card__overlay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(16, 35, 60, 0.15);
  color: var(--cdt-text);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.product-card__overlay-btn:hover {
  background: var(--cdt-primary);
  color: #fff;
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card__badge.is-hot {
  background: #ef4444;
}
.product-card__badge.is-new {
  background: #3b82f6;
}

.product-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-card__body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cdt-text);
  margin-bottom: 0.25rem;
  transition: color .15s cubic-bezier(.4,0,.2,1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card:hover .product-card__body h3 {
  color: var(--cdt-primary);
}

.product-card__body strong {
  color: var(--cdt-primary);
  font-size: 0.875rem;
  font-weight: 700;
}

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

.news-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(44, 156, 59, 0.12),
    rgba(15, 23, 40, 0.08)
  );
  color: var(--cdt-primary);
  font-size: 3rem;
  font-weight: 800;
}

.category-tile h3,
.news-card__body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background: var(--cdt-primary);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-view-all:hover {
  opacity: 0.88;
  color: #fff;
}

/* ── Product Swiper ── */
.product-swiper {
  padding-bottom: 3rem !important;
}

.product-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-swiper-pagination .swiper-pagination-bullet {
  background: var(--cdt-border);
  opacity: 1;
}

.product-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--cdt-primary);
}

.product-swiper-prev,
.product-swiper-next {
  --swiper-navigation-size: 0.875rem;
  width: 2.25rem !important;
  height: 2.25rem !important;
  background: #fff;
  border: 1px solid var(--cdt-border);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(16, 35, 60, 0.1);
  color: var(--cdt-text) !important;
}

.product-swiper-prev::after,
.product-swiper-next::after {
  font-size: 0.75rem !important;
  font-weight: 800;
  color: var(--cdt-text);
}

.product-swiper-prev:hover,
.product-swiper-next:hover {
  background: var(--cdt-primary);
  border-color: var(--cdt-primary);
}

.product-swiper-prev:hover::after,
.product-swiper-next:hover::after {
  color: #fff;
}

.landing-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 5rem 0;
  background: linear-gradient(180deg, #eef2ee 0%, #e8ede8 100%);
}

.category-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  height: 100%;
  padding: 1.35rem;
  border-radius: 1.35rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.category-tile:hover,
.category-tile:focus {
  transform: translateY(-4px);
  box-shadow: 0 26px 44px rgba(16, 35, 60, 0.12);
}

.category-tile__icon {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 156, 59, 0.12);
  font-size: 1.4rem;
}

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
  margin-top: 2rem;
}

.about-checks span {
  position: relative;
  color: var(--cdt-text);
  font-weight: 600;
}

/* .about-checks span::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cdt-primary);
  font-weight: 800;
} */

.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 1.75rem;
  background: #e7ece7;
}

.stats-panel__item {
  border-radius: 1.4rem;
  padding: 1.8rem 1.2rem;
  text-align: center;
}

.stats-panel__item strong {
  display: block;
  color: var(--cdt-primary);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
}

.stats-panel__item span {
  color: var(--cdt-muted);
  font-size: 1.05rem;
}

.news-card {
  display: block;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.news-card:hover,
.news-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 26px 44px rgba(16, 35, 60, 0.12);
}

.news-card__media {
  height: 14rem;
  background: linear-gradient(180deg, #eef1ef 0%, #e7ece8 100%);
  padding: 1rem;
}

.news-card__body {
  padding: 1.35rem;
}

.news-card__body span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--cdt-primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  border-radius: 1.75rem;
  background: linear-gradient(
    135deg,
    var(--cdt-primary) 0%,
    var(--cdt-primary-dark) 100%
  );
  color: #fff;
  box-shadow: 0 26px 44px rgba(44, 156, 59, 0.18);
}

.cta-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.cta-panel p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

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

.btn {
  border-radius: 0.95rem;
  font-weight: 700;
}

.btn-primary {
  background-color: var(--cdt-primary);
  border-color: var(--cdt-primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--cdt-primary-dark);
  border-color: var(--cdt-primary-dark);
}

.section-card,
.card,
.content-box,
.filter-bar {
  border-radius: 1.25rem;
}

.product-card,
.article-card,
.category-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover,
.article-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(16, 35, 60, 0.12);
}

.rich-content {
  line-height: 1.8;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin-top: 1.35rem;
  margin-bottom: 0.75rem;
}

.rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.rich-content table td,
.rich-content table th {
  border: 1px solid var(--cdt-border);
  padding: 0.75rem;
}

.rich-content img {
  max-width: 100%;
  border-radius: 0.9rem;
  margin: 0.75rem 0;
}

.filter-bar {
  background: #fff;
  border: 1px solid var(--cdt-border);
  padding: 1rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 4rem 0 0;
  background: linear-gradient(180deg, #101826 0%, #0b1320 100%);
  color: #d7e0eb;
}

.footer-brand {
  color: #48eb61;
  font-size: 2.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  max-width: 22rem;
  color: rgba(215, 224, 235, 0.82);
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(72, 235, 97, 0.16);
  color: #7dff91;
  text-decoration: none;
  font-weight: 700;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.85rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(215, 224, 235, 0.88);
  text-decoration: none;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(215, 224, 235, 0.74);
}

@media (max-width: 1199.98px) {
  .brand__company {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .main-nav .navbar-collapse {
    padding: 0.75rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.25rem;
  }

  .landing-hero {
    padding: 4.5rem 0;
  }

  .landing-hero__text {
    font-size: 1.12rem;
  }
}

@media (max-width: 575.98px) {
  .brand__name {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .page-content {
    padding-top: 0;
  }

  .hero-swiper-wrap {
    margin-top: 0;
  }

  .hero-panel__grid,
  .stats-panel,
  .about-checks {
    grid-template-columns: 1fr;
  }

  .landing-band {
    padding: 3.5rem 0;
  }

  .cta-panel,
  .cta-panel__actions {
    align-items: stretch;
  }

  .cta-panel__actions .btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE — NEW SECTIONS (2026 redesign)
═══════════════════════════════════════════════════════════════ */

/* ── Hero Slider ── */
.hero-swiper-wrap {
  overflow: hidden;
  position: relative;
  height: calc(100dvh - 5rem);
  min-height: 480px;
}
.hero-swiper {
  height: 100%;
  min-height: 480px;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s linear;
}
.hero-swiper .swiper-slide-active .hero-slide__bg {
  transform: scale(1);
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(8, 18, 12, 0.88) 0%,
    rgba(8, 18, 12, 0.62) 45%,
    rgba(15, 60, 25, 0.3) 100%
  );
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-slide__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(44, 156, 59, 0.18);
  border: 1px solid rgba(44, 156, 59, 0.4);
  color: #7ef794;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-slide__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c9c3b;
  animation: ldg-pulse 2s infinite;
}
@keyframes ldg-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}
.hero-slide__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.hero-slide__subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #2c9c3b;
  margin-bottom: 1.25rem;
}
.hero-slide__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 34rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: 0.65rem;
  background: var(--cdt-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.975rem;
  text-decoration: none;
  border: 2px solid var(--cdt-primary);
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-hero-primary:hover {
  background: var(--cdt-primary-dark);
  border-color: var(--cdt-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: 0.65rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.975rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.hero-inline-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-inline-stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: #2c9c3b;
  line-height: 1;
}
.hero-inline-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.1rem;
  display: block;
}
.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: all 0.3s;
}
.hero-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: var(--cdt-primary);
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: #fff;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-swiper-wrap:hover .swiper-button-prev,
.hero-swiper-wrap:hover .swiper-button-next {
  opacity: 1;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 1rem;
}

/* ── Scroll-down indicator ── */
.hero-swiper-pagination {
  bottom: 5.5rem !important;
}
.hero-scroll-down {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
  animation: scroll-hint 2.5s ease-in-out infinite;
}
.hero-scroll-down:hover {
  color: #2c9c3b;
}
.hero-scroll-down__text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-down__icon svg {
  display: block;
  animation: bounce-down 1.5s ease-in-out infinite;
}
@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes scroll-hint {
  0%,
  60%,
  100% {
    opacity: 1;
  }
  80% {
    opacity: 0.35;
  }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--cdt-secondary);
  color: #fff;
  padding: 1.35rem 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-bar__item:last-child {
  border-right: none;
}
.stats-bar__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  background: rgba(44, 156, 59, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c9c3b;
}
.stats-bar__value {
  font-size: 1.65rem;
  font-weight: 900;
  color: #2c9c3b;
  line-height: 1;
}
.stats-bar__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  margin-top: 0.1rem;
}
@media (max-width: 767.98px) {
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar__item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stats-bar__item:nth-child(2n) {
    border-right: none;
  }
  .stats-bar__item:nth-child(n + 3) {
    border-bottom: none;
  }
}

/* ── Truck Scales Section ── */
.truck-scales-section {
  padding: 5rem 0;
  background: var(--cdt-bg);
}
.truck-scale-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1400px) {
  .truck-scale-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .truck-scale-grid {
    grid-template-columns: 1fr;
  }
}
.truck-scale-card {
  background: var(--cdt-surface);
  border: 1px solid var(--cdt-border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  cursor: pointer;
}
.truck-scale-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.truck-scale-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(16, 35, 60, 0.14);
}
.truck-scale-card.is-popular {
  border-color: rgba(44, 156, 59, 0.45);
  box-shadow: 0 0 0 2px rgba(44, 156, 59, 0.12);
}
.popular-badge {
  position: absolute;
  top: 0;
  left: 1.5rem;
  background: var(--cdt-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: 0 0 0.6rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.truck-scale-card__inner {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  padding-top: 1.75rem;
}
@media (max-width: 479.98px) {
  .truck-scale-card__inner {
    flex-direction: column;
  }
}
.truck-scale-card__img {
  width: 9.5rem;
  height: 8.5rem;
  flex-shrink: 0;
  border-radius: 0.875rem;
  overflow: hidden;
  position: relative;
  background: var(--cdt-bg);
}
.truck-scale-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.truck-scale-card:hover .truck-scale-card__img img {
  transform: scale(1.08);
}
.truck-scale-card__tonnage {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(8, 18, 12, 0.78);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.2rem 0.5rem;
  line-height: 1;
}
.truck-scale-card__tonnage strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: #2c9c3b;
}
.truck-scale-card__tonnage small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
}
.truck-scale-card__body {
  flex: 1;
}
.truck-scale-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cdt-text);
  margin-bottom: 0.45rem;
}
.truck-scale-card__desc {
  font-size: 0.85rem;
  color: var(--cdt-muted);
  line-height: 1.55;
  margin-bottom: 0.875rem;
}
.truck-scale-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.truck-scale-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--cdt-muted);
}
.truck-scale-features li::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cdt-primary-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232c9c3b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    no-repeat center;
}
.truck-scale-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cdt-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: gap 0.2s;
  position: relative;
  z-index: 2;
}
.truck-scale-card__cta:hover {
  gap: 0.6rem;
  color: var(--cdt-primary-dark);
}
/* Feature pills bar */
.truck-scale-features-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.tsf-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}
.tsf-pill svg { color: #2c9c3b; flex-shrink: 0; }
/* Card actions row */
.truck-scale-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* ── Process Steps ── */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #eef2ee 0%, #e8ede8 100%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 3rem;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(44, 156, 59, 0.35),
    transparent
  );
}
@media (max-width: 991.98px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps::before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step__num {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(44, 156, 59, 0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.process-step__icon {
  position: relative;
  z-index: 1;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 1.25rem;
  background: var(--cdt-bg);
  border: 2px solid var(--cdt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--cdt-primary);
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.process-step:hover .process-step__icon {
  background: var(--cdt-primary-soft);
  border-color: var(--cdt-primary);
  box-shadow: 0 0 0 4px rgba(44, 156, 59, 0.1);
}
.process-step__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cdt-text);
  margin-bottom: 0.4rem;
}
.process-step__desc {
  font-size: 0.78rem;
  color: var(--cdt-muted);
  line-height: 1.55;
}

/* ── Gallery ── */
.gallery-section {
  padding: 5rem 0;
  background: var(--cdt-bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.875rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.875rem;
  cursor: pointer;
  background: var(--cdt-border);
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 18, 12, 0.72) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__caption {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery-item__zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(44, 156, 59, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.gallery-item:hover .gallery-item__zoom {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item {
    height: 160px;
  }
  .gallery-item--large {
    grid-column: span 2;
    height: 220px;
  }
}
/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 8, 6, 0.96);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 0.75rem;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.gallery-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s;
}
.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.gallery-lightbox__caption {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--cdt-surface);
  font-size: 0.875rem;
}

/* ── Benefits ── */
.benefits-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #eef2ee 0%, #e8ede8 100%);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479.98px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cdt-surface);
  border: 1px solid var(--cdt-border);
  border-radius: 1rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 35, 60, 0.1);
  border-color: rgba(44, 156, 59, 0.3);
}
.benefit-card__icon {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1rem;
  background: var(--cdt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  transition: transform 0.25s;
}
.benefit-card:hover .benefit-card__icon {
  transform: scale(1.1);
}
.benefit-card__title {
  font-size: 0.975rem;
  font-weight: 800;
  color: var(--cdt-text);
  margin-bottom: 0.55rem;
}
.benefit-card__desc {
  font-size: 0.83rem;
  color: var(--cdt-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Landing CTA ── */
.landing-cta {
  padding: 5.5rem 0;
  text-align: center;
  background: var(--cdt-bg);
  color: #111827;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.landing-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(44, 156, 59, 0.1);
  border: 1px solid rgba(44, 156, 59, 0.3);
  color: #1a7a2a;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.landing-cta__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c9c3b;
  animation: ldg-pulse 2s infinite;
}
.cta-accent {
  color: #2c9c3b;
}
.landing-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #111827;
}
.landing-cta p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.landing-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 2.5rem;
  border-radius: 1rem;
  background: var(--cdt-primary);
  color: #fff;
  text-decoration: none;
  margin-bottom: 3rem;
  transition:
    transform 0.2s,
    background 0.2s;
}
.landing-cta__phone:hover {
  transform: scale(1.02);
  background: var(--cdt-primary-dark);
  color: #fff;
}
.landing-cta__phone-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.landing-cta__phone-body {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.landing-cta__phone-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.1rem;
}
.landing-cta__phone-number {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
}
.landing-cta__phone-arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.8);
}
.cta-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .cta-contacts {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}
.cta-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.4rem 1.75rem;
  background: var(--cdt-surface);
  border: 1px solid var(--cdt-border);
  border-radius: 1rem;
  text-decoration: none;
  color: var(--cdt-text);
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.cta-contact-card:hover {
  background: #f0fdf4;
  border-color: rgba(44, 156, 59, 0.35);
  color: #111827;
}
.cta-contact-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  background: rgba(44, 156, 59, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c9c3b;
}
.cta-contact-card__label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
}
.cta-contact-card__value {
  font-size: 0.8rem;
  color: var(--cdt-muted);
  text-align: center;
}

/* ── Scroll fade-up ── */
@media (prefers-reduced-motion: no-preference) {
  .ldg-fade {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }
  .ldg-fade.ldg-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .ldg-d1 {
    transition-delay: 0.1s;
  }
  .ldg-d2 {
    transition-delay: 0.2s;
  }
  .ldg-d3 {
    transition-delay: 0.3s;
  }
  .ldg-d4 {
    transition-delay: 0.4s;
  }
}
